How to read RSS feed http://picasaweb.google.com/ using c# net 2? - feed

How to read feed http://picasaweb.google.com/data/feed/base/user/... using c# net 2 ?

Can't you use the API to get this done?
https://developers.google.com/picasa-web/?csw=1

Related

Save images for my web server in SPIFFS on esp32-S2

Hi it's my first time using esp32-S2 because now its not recommended to use esp32. I'm looking for saving images in SPIFFS for my web server. In esp32 i used to use esp32fs plugin (https://github.com/me-no-dev/arduino-esp32fs-plugin) but it doesn't work for esp32-S2. I would like to know if there is any plugin like esp32fs and if not how can i save my images (I'm using arduinoIDE 1.8.19). I've been searching but i didn't found anything. Any orientation is welcomed. Thank you for your time and assistance.
You can try my ESP32_FSWebServer_DRD or ESP_FSWebServer example of ESP_WiFiManager library
Follow the instructions in ESP_FSWebServer Example
You can use either deprecated SPIFFS or the better LittleFS

Agora.io - How to share video timestamps using mediaPlayer? - iOS

Here's what I'm trying to do: Using Agora.io's MediaPlayer API, I want to be able to publish video to a channel (which I can do using RtcChannelPublishPlugin), but I need to be able to then receive the media's current timestamp on the non-publishing device. Then, I will be able to "re-publish" the video from the other user starting at the same timestamp.
I've tried using AgoraRtm, but I don't think messages sent using rtm can be saved as variables.
I've found a way to get the timestamp and print it out, but the trouble is getting it to the other users in the channel and using it as a variable.
Has anyone experienced something like this? Any help would be greatly appreciated.
I'm using Agora's API example project as a base.
I would recommend the use of meta data that goes with the video stream. See the following API:
https://docs.agora.io/en/Interactive%20Broadcast/API%20Reference/oc/Classes/AgoraRtcEngineKit.html#//api/name/setMediaMetadataDataSource:withType:

how to getch rawresults.zip in alm (performance)

Is there any way to fetch rawresults.zip / results.zip files of HP ALM (performance) using REST or OTA?
If so can any one please help me out. Also the server link is with HTTPS.
Its like https://****.saas.hp.com/qcbin/start_a.jsp.
Many thanks
I've been able to have a little bit of success with this using the REST API. I used the following REST address to try and retrieve the entire results as a zip. I then used the ZIP file to try and process the results I wanted:
http://{server:port}/qcbin/rest/domains/{domain}/projects/{project}/results/{file-id}/logical-storage/

Using charts in iPhone applications

I want to add charts feature in my application..
I have gone through with various links in OLD posts.Most of the links are not working.
And I am unable to checkout core plot API with below link
core plot api
getting error Server sent unexpected return value (405 Method Not Allowed)
So can any one suggest OR provide link for Any latest libraries or API which i can use ?
Thanks.
You can download latest Core Plot chart library release from this link:
https://code.google.com/p/core-plot/downloads/detail?name=CorePlot_1.1.zip&can=2&q=
You will get core clot library and an example using the above downloaded link.
Below is the link for instructions to integrate this in your application:
https://code.google.com/p/core-plot/wiki/UsingCorePlotInApplications
Hope this would be helpful for you.

How can i parse following data in iPhone?

Hello i am working on web service base iPhone application but the problem is my client provide web service which is in following formate and i don't know how to parse it. i will appreciate for any help or anybody share their experience.
{"message":"[{\"APPROVER_ID\":\"DAMIN_V\",\"APPROVER_USER_NAME\":\"DAMIN\",\"START_DATE\":\"04/04/12\",\"END_DATE\":\"
\",\"SUBSTITUTE_ID\":\"HLAD\",\"SUBSTITUTE_USER_NAME\":\"James\"},{\"APPROVER_ID\":\"DAMIN_V\",\"APPROVER_USER_NAME\":\"DAMIN\",\"START_DATE\":\"06/01/12\",\"END_DATE\":\"
\",\"SUBSTITUTE_ID\":\"LucyE\",\"SUBSTITUTE_USER_NAME\":\"Lucy\"},{\"APPROVER_ID\":\"HLAD\",\"APPROVER_USER_NAME\":\"James\",\"START_DATE\":\"04/16/12\",\"END_DATE\":\"
\",\"SUBSTITUTE_ID\":\"HT\",\"SUBSTITUTE_USER_NAME\":\"HTx\"},{\"APPROVER_ID\":\"HLAD\",\"APPROVER_USER_NAME\":\"James\",\"START_DATE\":\"06/13/12\",\"END_DATE\":\"
\",\"SUBSTITUTE_ID\":\"SUPERMAN\",\"SUBSTITUTE_USER_NAME\":\"james\"},{\"APPROVER_ID\":\"MY
ORG USER\",\"APPROVER_USER_NAME\":\"My ORG user
1\",\"START_DATE\":\"06/13/12\",\"END_DATE\":\"06/16/12\",\"SUBSTITUTE_ID\":\"NFALPR1\",\"SUBSTITUTE_USER_NAME\":\"Prince\"},{\"APPROVER_ID\":\"PEK\",\"APPROVER_USER_NAME\":\"Lucy
E\",\"START_DATE\":\"03/01/12\",\"END_DATE\":\"08/08/12\",\"SUBSTITUTE_ID\":\"HRL\",\"SUBSTITUTE_USER_NAME\":\"James\"},{\"APPROVER_ID\":\"PNAIR\",\"APPROVER_USER_NAME\":\"Carl\",\"START_DATE\":\"03/01/12\",\"END_DATE\":\"03/09/12\",\"SUBSTITUTE_ID\":\"SCHITRE\",\"SUBSTITUTE_USER_NAME\":\"Fun
bobby\"},{\"APPROVER_ID\":\"LucyE\",\"APPROVER_USER_NAME\":\"Lucy\",\"START_DATE\":\"03/01/12\",\"END_DATE\":\"03/31/12\",\"SUBSTITUTE_ID\":\"HLAD\",\"SUBSTITUTE_USER_NAME\":\"James\"},{\"APPROVER_ID\":\"LucyE
E\",\"APPROVER_USER_NAME\":\"Lucy\",\"START_DATE\":\"04/01/12\",\"END_DATE\":\"04/30/12\",\"SUBSTITUTE_ID\":\"DAMIN_V\",\"SUBSTITUTE_USER_NAME\":\"DAMIN\"},{\"APPROVER_ID\":\"LucyE
E\",\"APPROVER_USER_NAME\":\"Lucy\",\"START_DATE\":\"05/04/12\",\"END_DATE\":\"05/25/12\",\"SUBSTITUTE_ID\":\"JOSHIA\",\"SUBSTITUTE_USER_NAME\":\"Joye\"}]","statusFlag":true}
Thanks In Advance,
Nitin.
this is JSON data.
use SBJSON.h http://stig.github.com/json-framework/ to parse, which is light and easy
You can use the jsonkit for json parsing.
Here is the code for the json kit library which is editing my simple class added and create one demo you can download the demo and easily identify the your problem
Download the Demo from here.
Also refer the tutorial for the how to use json kit from here.