How to enable email alerts for Firebase crash reports [duplicate] - email

This question already has answers here:
Firebase Crash report email
(3 answers)
Closed 5 years ago.
In the Firebase crash reporting guide, there is a list of key capabilities where it lists one capability as:
Enable email alerts to receive frequent updates when new crashes are uncovered or regressions are detected.
I would like to activate that feature, but I can't seem to find the way of doing so. I found two things related in the console:
If I navigate to Settings -> Service Accounts -> Crash Reporting, I can see some links to the docs.
If i click on the three dot next to my picture in the upper right corner of the console, there are the users settings, in which I can select Alert subscriptions. I select my app and I can see all email check-boxes checked
I still don't receive anything when a new bug or regression is created.

Well, I just received an email for a test I did yesterday. Basically, the reports appear in the console in a matter of minutes, but it took almost 20 hours to get the email. I guess the emails are sent on a daily basis containing the reports of the day before. Note that I did not change anything in the settings in that project, meaning the emails were enabled by default.

Related

Swift Notifications Action

I'm trying to add "actions" for the notifications like the below screenshot. It's simply a question and based on user tap action, either question is not asked again for a certain time or changes to be done in Settings to disable notifications.
I tried to search for a code sample, but could not find any.
After a very long search with different keywords, I came to know that this is a feature that was first introduced in iOS 12 as Provisional Authorization for Quiet Notifications.
I found a source code on github here that can be investigated further. Another tutorial can also be found here.

Query Result widget on Dashboard does not allow me to zoom-in into work item's details

I built a dashboard that uses query results widget showing open work items across departments in the firm. But I cannot double click on the item and bring up the detail window anymore. I used to be able to do that couple of weeks ago. Is this some new 'feature' of Devops?
I am administrator on the project so I should have all the rights. Running query in the query editor works as expected (meaning I can zoom in on item's detail by double clicking)
No, this is not the new "feature" of Azure Devops.
Until now, we have been received several issue report tickets which are all encounter the same issue with you. There seems some problem occurred, and our team is trying to fixed this issue.
You can follow this DC ticket to get the latest progress about this issue: https://developercommunity.visualstudio.com/content/problem/625883/azure-devops-dashboard-queries-no-longer-clickable.html
You can also vote this issue report ticket, so that we can archive the issue affected.

editing a google form response and data lost

I have created a standard google form and added a record. i have set options to edit the response . one of the questions i have added allows me to jump straight to submit or continue editing .
However When i am editing a response and i choose the my option to jump to submit and then press submit , i find the information is lost when i go back to edit the response.
However if i scroll through all my answers and submit at the end, then the data is saved.
Is there an issue with google forms ? i am not using any scripts - it is standard editing and form options.
This appears to be an issue with Google Forms when editing responses and changing the "go to" path from the initial submission. I've opened a question with a Google "Community Specialist" in the Google Help forums but so far she has not identified how to avoid this problem nor reported escalating it to get it fixed.
For those curious what to avoid, here is the scenario that causes a form to lose data:
Create a form with multiple Go To paths
Fill out a response using one Go To path of questions
Submit response
Click Edit Response
Choose an option that takes you down a different Go To path of questions
Submit the edited response
Click Edit Response
Going back to the original option Go To path, the earlier submitted data will now be gone.
Here is a form I've created that demonstrates the issue.
Here is the thread that as of this writing the Google Community Specialist has not yet solved. Perhaps if more people were to comment that it really is an issue she will pay more attention to it and bring it to the attention of who might be able to fix it.

script for converting Google Forms checkbox results into individual line items [duplicate]

This question already has answers here:
Google Apps Script e.namedValues format multiple choice
(2 answers)
Closed 7 years ago.
I have a google form that I use to log the clients that I see each day. At the end of the day I go to the form, check the boxes next to the clients that I have seen, and that gets logged in a spread sheet.
For easy reporting, I am trying to take the comma deliniated responses that the checkbox option gives and copy them into a new sheet with each reponse on a new line
I am at a bit of a loss as to how to go about it. I am new to java and still getting the hang of it. My first thought was to getRespnce and put it into an array that I could for loop. but I really have no idea how to do that :)
I found one answer here How to split and transpose results over 2 columns though I am running into trouble with that code.
Ideally I would have something that would run on form submit, take the answers from the first item, and log them line by line in a new sheet
Any help would be amazing.
Thanks!
(This is mostly a challenge that I gave myself to help learn how to code in app scripts. I have done a lot of work trying to figure it out but I realize that it is beyond my scope at the moment)
I did some more research and found the answer that I was looking for with the e.namedValues()
the helpful post: Google Apps Script e.namedValues format multiple choice

Plone send e-mail twice when deleting an item (Content rules) [duplicate]

This question already has answers here:
Plone: reacting to object removal
(4 answers)
Closed 9 years ago.
I defined a Content Rule that send an e-mail when deleting an item in my Plone site.
The problem I had is when I choose "Actions/Delete" and Plone shows the floating window asking for a confirmation, the e-mail is already beign sent, even before I confirm, so I receive two e-mails: One when I select "delete" and another one when I confirm it. If I decide not to delete, the e-mail is sent.
Why is Plone sending an e-mail before I confirm the item remove?
Plone 4.2.4 (4210)
CMF 2.2.7
Zope 2.13.19
Thanks
The reason may be that the delete action actually deletes things twice. The first time happens when you select the action and is used to trigger a check for related and linked items that refer to the item you are about to delete. This first 'delete' is then rolled back. The second delete happens after you actually click confirm.