Bixby: Is there a way to mock profile data in the Bixby Studio simulator? Such as Email, Phone, etc (viv.self) - bixbystudio

I'd like to test out some of the viv.self functionality but I'm only seeing the ability to change Geo/Time/Etc. Is there a way to mock other profile data?

I see MOCK DEVICE DATA in simulator. But nothing happens OnClick(). May be something is coming up.

Sorry not an answer but an additional question of this..
Is it possible to alter this data during a session? ie, I want my capsule to be aware of movement taking place so I need the data of location to vary through time during the session.
Also the mock data seems to be in place with the latest release/update.

Related

How to make Create/Join group with Firebase in Flutter

I want to make a Create/Join group feature in the app where anyone can Create the group
and share group ID and let others people to join(By using firebase as backend). How can I achieve something like that. I need some explanation. What do I need to do or to implement?
Just to keep in mind I don’t want to create chat group. This is more like a group that let users do things together like puzzle. Or like quizzes in Kahoot.
Example
I haven’t start to write yet so there won't be any code
Something i'm actually doing myself though my scenario is a little different as it's more focused on financial groups.
I can point you to a resource that's working for me though i'm still figuring it out myself,maybe it'll be of some help to you too(Note:it only shows how to create and join but doesn't go into how to make invites,but i think its a good start)
Source: this video

Has anyone displayed a Salesforce Dashboard component on WordPress site? If so, how?

I work for a nonprofit which help disabled military veterans. We have all our participants register with us using Salesforce as the repository of their registrations. We have dashboard components in Salesforce Lighting which totals up the number of active participants we have. I would like to display the component on our WordPress site but have never done anything like that before. I was hoping to find someone who has done something like that and offer some direction on how to go about doing it.
I tried looking up WordPress plugins which integrate with Salesforce. Most seem to be geared towards sending registrations back and forth but not displaying information. From a little bit of research, it seems like coding might need to be involved. Maybe doing a REST API with a Post option which will send the data through an HTTP URI? But to my understanding is that it would require WordPress to be an API. I am sure there are gaps in my logic.
I dont have an extensive amount of programing language experience but am willing to learn. I have taken a few Java and JavaScript classes in school.
I have not attempted this yet. I am just looking for feedback and direction.
Few options here, in no specific order...
Do Wordpress users have real Salesforce accounts or is their data simply stored in SF? Ask your Salesforce admin if there's a "customer community" configured (if your SF org is really old he might refer to it as customer portal). Communities offer nice way of exposing SF to poeple who don't need full SF user licenses. Think like collaborating with real SF users on "My Cases", viewing reports & dashboards... But for this you'd really need people logged in to SF so it won't work if you want just something anonymous. Some more info
Another option might be using Sites (Visualforce pages that expose SF data to guest users). Think like displaying a product catalog, FAQ, web-to-lead form or some other generic "contact us" page that's anonymous. So if you have SF developer (or admin with good copy-paste skills) you could use some Visualforce charts. They can be 100% coded (like this) or fed data from a report (like this) so it's simpler for admin to change the report filters or something without really writing code. Not sure if the simple route will work on a Site, there are some old answers that say "No", you might have to try it out. Worst case you'd need Apex code (or JavaScript) to query SF for results and display them. And display that SF Site page as <iframe> in Wordpress.
A slight twist on the Sites option - do you use Chatter (bit like Twitter inside SF)? There's way to take a snapshot of a report when a milestone has been met and post it to chatter ("congrats for hitting X participants"). And embed feeds on Visualforce pages too. Docs
What SF edition you're on (Group/Professional/Enterprise...)? If you have API access to Salesforce you could query the info yourself from Wordpress and display it using whatever charting library's easiest for you (Google Charts, Flot...). There are tons of examples how to connect to SF from PHP (or maybe you could cannibalize a WP plugin). Technically it's one POST message to log in to SF and one GET to run a query (something as simple as SELECT COUNT() FROM Contact WHERE isActive__c = true?)
That'd be more or less everything in terms of pulling data out of Salesforce. I mean if you have API access enabled you can slice & dice it how you want, extract data with raw PHP code or use some middleware but overall idea doesn't change. Write queries yourself or use "Analytics API" to access report results (so your administrator has power to change it without coding)...
So how about pushing? SF could notify you about current participants count. At scheduled intervals or even realtime. That'd be "just" raw data though, you'd have to write visualisation yourself.
Plenty of options here
workflow rules (code-free), sends XML message to specified URL so you'd need a WP page that can "capture" the result. Could be sent on creation of new record or update of existing. Won't give you totals, it'd be data related to that particular record so you'd have to build kind of +1 / -1 counter... Or if you use a report + analytic snapshot (helper object to store report results) and have workflow on that - that could be really close to what's needed.
scheduled apex job to run some queries and send the results to you. Again - you'd need a WP url that can be called from SF
if there's a CometD plugin for Wordpress you should look at Salesforce Streaming API, Platform Events or (newer and even simpler to configure) Change Data Capture. Basically you "subscribe" to a topic (a SF query) and whenever SF data changes and SF decides it'd change the results of the query - it'd push the results to you. It's almost realtime. Too much to write about them, perhaps best if you'd try to click through some trailheads - SF self-paced training courses:
https://trailhead.salesforce.com/en/content/learn/modules/api_basics/api_basics_streaming
https://trailhead.salesforce.com/en/content/learn/modules/change-data-capture
https://trailhead.salesforce.com/en/content/learn/modules/platform_events_basics

How to set up a Phone 8.1 pivot with an infinite number of pivotitems using caliburn micro?

I am working on a Phone 8.1 Universal app using the excellent framework caliburn micro 2.0. The application is rather simple, it will show statistics fetched from a WCF service and this information will be filtered by year and month. So I figured the best way to do this is to use the same approach as the Phone 8 native calendar app, which uses the pivot for scrolling each month, and when scrolling from december to january, the year is increased by 1.
I have tried several approaches by following tutorials on how to set this up, but I am totally confused. Every single example suggests that I should set the PivotPage as a Conductor, and then every single pivotItem as a screen, and then when activating the conductor, add every single viewmodel(1 for each pivotitem) in an Items list. That sounds reasonable, when there is a finite number of pivotitems and when the mapping between pivotitem and pivotheader is 1:1. But in my case I have ONE pivotItem that is supposed to be reloaded(disposed/created) every time the user changes pivot, and the data is not filtered by the header itself but rather on a DateTime property in my viewmodel that has the currently selected Year and Month which is used to fetch data from the backend. Not exactly what all the caliburn micro pivot tutorials are about.
So, can anyone guide me on how to design this the "caliburn micro way"...? I have tried something by adding a pivot.itemtemplate and then refresh this by hooking up to the selectionchanged event on the pivot, but this has some rather nasty sideeffects, like when I change the pivot, the previous pivot is not disposed of correctly, causing the visual tree for the app to increase by 30% for each pivot change. I have no idea why it is like that, but it tells me that I should do this 100% caliburn micro instead.
I have a very simple example that I can share if anyone wants to have a go at this, depending on how simple the solution is?
Please help!
/Henrik

get request parameter from url in HP loadrunner

I am using HP loadrunner for my automatic tests.
Every time, when i run my application, it creates some transfer and also generates id in URL.
How can i get the id from URL?
Thanks in advance!
The web_reg_save_param function in LoadRunner is used for this. The following line will save the current page URL to the parameter (URL).
web_reg_save_param("URL", "LB/ic=Location: ", "RB=\r\n", "Search=Headers", LAST);
If you know what the ID is that your looking for, ie. http://www.example.com/?id=298374293847 you can adjust the call accordingly.
web_reg_save_param("URL", "LB/ic=Location: http://www.example.com/?id=", "RB=\r\n", "Search=Headers", LAST);
Hope this helps.
Recording with Siebel 8.1 on Loadrunner 11 having issues,posted a question on HP and got the same comment. But usually we can try the below mentioned option
You can record in Siebel-Web or web (http/html) and playback as
either too (if you want to record in Siebel-Web and play back in
regular web, just copy the contents of the script to a regular web
script and save).
Try a proxy mode recording in LR.
Changing registry and disables NTLM.
Turn off all autocorrelation rules
Turn on record as URL mode (as an alternate use web_custom_requests())
Use a sniffer to capture the traffic and then build a script by hand.(Best Option)
Change settings on the Siebel server side as well (Enable Automation=True, EnableWebClientAutomation = TRUE)
If you are recording your scripts using Web http/html you can use automatic correlation. For automatic correlation go to Design Studio
If you are unable to find the value there,then you must correlate manually using web_reg_save_param by giving the left and right boundaries.
This is going to sound belligerent, condescending and downright offensive. It is not to be meant as a reflection on you, but upon your management who has placed you in this position.
The topic of Correlation is one covered extensively in the class for LoadRunner web script development. It is the topic of a full 1/3 of the class and an additional appendix. All told some four different techniques for collecting dynamic data are covered, presented or documented as a part of the class materials. This capability, the handling of dynamic data, is a foundation tool skill.
Vardges, your management has placed you in a tough spot. Personally I would bolt for greener fields, for any management which is willing to do this to a line-of-business employee is also willing to toss that same person under the bus to salvage their own hide or a client relationship. Blaming you for something that management is unwilling to address is not a question of "if?" when training and mentoring does not occur, but only "when?" will the blame be placed on you.
James Pulley
Moderator: YahooGroups Advanced-LoadRunner, YahooGroups LoadRunner, SQAForums LoadRunner, LinkedIn LoadRunner, GoogleGroups lr-loadrunner

How close can you identify a user using asp.net and webservices

The task is simple, and the answers might be many.
But here goes: On my website I'll make an InfoAboutYou.aspx page. So far i got the IP and the browser name and version, but ill like to expand, with just about every thing i can look up about the curret user/ip and hes Browser/OS
Does it exists any free webservices that kan lookup more information about a specific IP?
The idea is to see how specific a random user can be pin pointet
Thank you
You can use various service to determine a geographic location.
One example is:-
http://www.ipgeo.com/
There are plenty of things that you can determine by using JavaScript and having it post back to the server like some of the stats that Google Analytics does. You can determine screen size, etc.

Resources