Data sharing through any kind of platform from public Cloudkit container - cloudkit

I need some help! I have built my front end app + set up perfectly my public CloudKit container. I am just trying to share the data of my app between not iCloud users…it’s a hell… The knowledge request is over my skills. I have spent several weeks to try to solve this problem..,.and still…haven’t found the solution.
I don’t think I need vapor framework (because I don’t need to edit the data I am sharing).
Up to now I was able to download the data from iCloud public container inside the terminal following this old tutorial of 2016 (following the bonus "server-side cloudkit access” part two, cf. link under)
https://www.kodeco.com/997-cloudkit-js-tutorial-for-ios
but I am not able then to put the data inside a html page to share the data of my app through any kind of my platform.
I have tried to follow these two examples to put the data of my cloud kit container inside a notion html page
https://www.twilio.com/blog/manipulate-notion-database-using-node-js
https://developers.notion.com/page/examples
I am lost … I am not able to adapt this two examples inside my project.
Is there some one around to help me and make a simple example or give me some guidelines?

Related

Unable to save locally in Flutter Personal Expenses App

I took Flutter & Dart course on Udemy. In Section4 after making the personal expenses app. Whenever I restart my app the transaction history is gone. I wanted to know how to save them locally. I am aware in section6 some way of saving is shown but it just is too cumbersome.
Could anyone help me with it.
Thanks.
You can ask directly in the Udemy course forum, they will know about the sections that you are talking about.
Also here you have a cookbook about reading and writing files: https://flutter.dev/docs/cookbook/persistence/reading-writing-files
Also, you can use packages like Local Storage

Simplest CMS ever?

I’m building a super simple website with 5 pages and I want a CMS that allows me to change the text and the pictures in a couple of them.
In the past I used wordpress, but it has way too many features that i don’t need in this case.
I’ve been trying to learn gatsby.js so I would like to build it on that, but trying to see how to source from Netlify-CMS I started facing an overwhelming amount of information which I'm not sure I need.
Any tips?
Thanks!
M
Netlify has a built in CMS, and it's compatible with Gatsby! You can find examples online. It should be good for smaller sites, but for larger projects, I really like Prismic.io. Contentful is another popular one, but it's a bit pricier than prismic.
Edit: reread your comment about sourcing from Netlify. Netlify is not a "source" plug in in Gatsby. You use a local file +markdown source, and do the configuration for netlify, which adds an admin interface at an endpoint. You configure your data models in the interface, create login, etc. Then, when you submit changes, it modifies files in your connected git repo, so the local file + remark will make the data available in the graphql queries.
In the end I used Forestry.io, a good simple solution that did exactly what I needed in combination with Jekyll.

rest content not appearing in Xamarin.forms examples

I am experimenting with two of the examples ToDoRest and the XamarinForms3RestApiApp. I am looking specifically at the UWP client.
I have made sure that I have the same code on my computer as the examples in GIT.
When I run them they compile without error and the form comes up. However in both examples the existing data from the rest backend does not appear as content on the UWP page. clicking on the api link shows that the json formatted data does come up when accessed directly
In both cases its the 'vanilla' example on GIT -nothing changed.
Has anyone else experienced this on these examples?If so, what might be preventing data from showing?

OwnCloud enhance core features with App (eg. user registration)

I started looking into OwnCloud app development to add some capabilities I would like to my server. To me it seems like Apps can't modify anything like the Login page or User Management page. Is this the case?
I want to build a user registration app and would love to integrate it into the user management page (if not and it has to exist as its own app page not a big deal). The one big problem I see so far is not being able to add a "Register" link to the login page. I could just go in and add it to the source manually, but I would like to keep the App self contained so others can use it too.
If this is not possible to do in an App I may just need to modify the core application and then see if they will accept my feature addition in a pull request.
Thanks to anyone who can shed some light on this for me. I don't want to waste my time trying to figure out how to do it with an App on the platform if it wont be doable.
After a lot of digging around I did figure out a way to do this.
In the App's app.php file, you can force a script to be loaded if the plugin is enabled:
$api->addScript('script_name'); // without .js
In that script jQuery can be used to add the elements to the page where you need them.
This was a good solution for me since I only needed to add a single button to the login page. I can see this being a bad idea if you want to make vast modifications. At that point you might as well just create a separate page that you have full control over.

wiki iphone project

I'm currently working on an iPhone project where i want to present to the user spesific terms from wikipedia. I'm facing tow difficulties right now:
1. I want the specific content to work offline.
2. I want to show the relevant pictures as well.
I need to find the most efficient way to do it, can someone advise ?
You could get the content online and cache them in the app DB. If necessary you could prepolutate the db directly in you app. That way some terms would already be available.