he sir thanks for uploading these projects, can you please share the making tutorial of this AR video please
@pozil28 күн бұрын
@@Ekdmmast sorry I didn't capture the steps back then. This is likely outdated given how fast things evolve in this space. I recommend that you try to look for a recent tutorial with Vuforia and Unity.
@lucamiglioli40505 ай бұрын
Hello Philippe, very nice app! Is there a way to access the records from the "Table" view directly from the platform? Thanks!
@pozil5 ай бұрын
Hi @@lucamiglioli4050, no, streaming events are not stored as regular records (they are not persisted in the database).
@AlissaSchlosser5 ай бұрын
Do you have any tips on this integration? I am getting the error saying "Field is Required' when clicking on the 5 star rating. Not sure what is going on with this add on.
@AlissaSchlosser5 ай бұрын
Cannot find error page to redirect to. Please use your browser back button. Please correct the following errors:~~~ - This field is required.~~~
@nikkikent7677 Жыл бұрын
It is a shame that you can't change the font and size of the question label. It is ugly. It would be great if you could have a Leave a comment field too. The text feedback doesn't allow you to do this either. Almost there .. but not quite
@vio6862 Жыл бұрын
@Philppe Ozil, does the Heroku platform still allow for a free tier in order to set up the quiz?
@pozil Жыл бұрын
Unfortunately, Heroku no longer offers free tiers. However, you could install the player app on another free hosting service as long as it supports Node js.
@glendellera60562 жыл бұрын
Hello is there a way to export them? Thank u
@pozil2 жыл бұрын
Hi Glen. It's not possible right now but it's a great feature request. I'll keep it mind and I may include it in future releases.
@pozil2 жыл бұрын
This feature is now available as of v3.9.
@glendellera60562 жыл бұрын
@@pozil thank you philippe
@tejaswakchoure39032 жыл бұрын
Sir plz help I am install in windows os so which terminal can I use for step no 2 of cloning git
@tejaswakchoure39032 жыл бұрын
How to import zip file and run project in sales force plz help
@starman90002 жыл бұрын
Hi Philippe, I am getting error "403:unknown client ", I didn't find anything to setup up any security permission, can you please answer, i am trying in one of my sandbox.
@sportyfive42043 жыл бұрын
Superbe vidéo merci. Elle m'a beaucoup aidé pour un projet.
@sportyfive42043 жыл бұрын
Les détails sont parfait. Je découvre de nouveau concept. Je vais recommander votre page à mes amis. Je sens qu'il vont kiffer 😉👍
@renatoassuncao67903 жыл бұрын
Hey Philippe, does the subscription of the platform events from the tool count towards the daily limit of platform events?
@pozil3 жыл бұрын
Unfortunately yes. There's no other way to do it.
@cxteamweeklyupdate78014 жыл бұрын
Hi Phillippe, I am having issues setting up in my Dev environment. Am receiving errors for all - 403:denied_by_security_policy:create_denied . I have confirmed as Admin I have CRUD permissions for the object and have system permission " View real time event monitoring data" but am receiving this message "403:denied_by_security_policy:create_denied" for each event. What am I missing?
@pozil4 жыл бұрын
Hi, looking at similar issues, it could be that you're not using the right event's API name (did you forget the "__e" suffix?). Can you check that?
@cxteamweeklyupdate78014 жыл бұрын
@@pozil Sorry Phillippe I've clearly missed a step or two.. Do you have any set up instructions published anywhere? I'm really in a jam!
@pozil4 жыл бұрын
@@cxteamweeklyupdate7801 I assumed earlier that you had an issue creating a Platform Event but you didn't confirm this explicitly. Am I on the right track? If yes, you can see how to do this at 3:10 in this video. If this is not your issue, can you clarify what you were trying to do when the error happened? The only instructions that I have are the installation steps in the GitHub repository (github.com/pozil/streaming-monitor) and this presentation video.
@cxteamweeklyupdate78014 жыл бұрын
@@pozil I have taken a screenclip of the error kzbin.info/www/bejne/l2S5hYCfipmld9U it is available in my videos. Your assistance is very much appreciated
@pozil4 жыл бұрын
@@cxteamweeklyupdate7801 thanks for the video, I get it now. These are standard monitoring events. They're not enabled by default. If you want to try those out, you have to enable them first in Setup > Events > Event Manager.
@AZeeee4 жыл бұрын
Hello. I just installed this package to monitor my Platform Events. However once I go to this page I just see the top "Streaming Monitor" banner. nothing below it. Any ideas why ?
@pozil4 жыл бұрын
Hi, make sure that My Domain is configured in your Org.
@AZeeee4 жыл бұрын
@@pozil So I did that. also published some events to a Platform Event I have created. However I still see nothing. Is there any other config I need to do ?
@pozil4 жыл бұрын
@@AZeeee can you double check the domain is enabled for all users (not just admins)? Also, just to clarify, the issue is that you don't see the Actions or Subscriptions components as shown in the video?
@quizzphone4 жыл бұрын
Hello, I wanted to know if it was possible to install on a Nas?
@pozil4 жыл бұрын
Hi Florent. You can install the player app on any server but you'll need a static IP address. The host app only runs on a Salesforce org.
@restiafatmasaris.pd.i36864 жыл бұрын
wow, great work! how to score factor make using time answer of player? so, if fast answer and answer is correct score is 1000,
@pozil4 жыл бұрын
Thanks. Here's how the scoring system works: - wrong answers are worth 0 points - fastest answer (FA) gets 1000 points - slowest answer (SA) gets 500 points - we measure the delay (DA) between current answer (CA) and FA - we measure the current answer's speed factor (SF) with DA/(SA-FA). This gives us a number between 0 and 1 where 0 = fastest, 1 = slowest. - we calculate the current answer score with this formula: 1000 * (1.00 - (SF / 2.00)); Check out the implementation for more details: github.com/pozil/quiz-host-app/blob/d3b535ab7c76ee440dc80f69cb9037a95f8e5ad5/src/main/default/classes/QuizSessionHelper.cls#L13
@restiafatmasaris.pd.i36864 жыл бұрын
@@pozil yes, i see, a question, can do it run in small board computer? like raspberry?
@pozil4 жыл бұрын
@@restiafatmasaris.pd.i3686 you could but you'll likely need something more powerful than that if you play with a group of players. I recommend using a dedicated hosted server like Heroku.