| Telerik Platform | SashiDo and Parse Server |
|---|---|
| Id | id |
| ModifiedAt | updatedAt |
| CreatedAt | createdAt |
| CreatedBy | configured with ACL |
| Owner | configured with ACL |
| ModifiedBy | N\A |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <script src="./sashido-responsive.js"></script> | |
| <title>SashiDo Responsive Images</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <script src="./everlive.all.min.js"></script> | |
| <title>Everlive Responsive Images</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _ _ _ ____ _ _ | |
| | \ | | ___ | |_ / ___| _ _ _ __ _ __ ___ _ __| |_ ___ __| | | |
| | \| |/ _ \| __| \___ \| | | | '_ \| '_ \ / _ \| '__| __/ _ \/ _` | | |
| | |\ | (_) | |_ ___) | |_| | |_) | |_) | (_) | | | || __/ (_| | | |
| |_| \_|\___/ \__| |____/ \__,_| .__/| .__/ \___/|_| \__\___|\__,_| | |
| |_| |_| | |
| Telerik Platform | SashiDo and Parse Server |
|---|---|
| Type-Level permissions | Class-level permissions |
| Item-Level permissions | Object-Level access control |
| Roles content type | Role collection |
| Users content type | User collection |
| Devices content type | Installation collection |
| Relations | Relations and Pointers |
| Images | Images |
| Telerik Platform | SashiDo and Parse Server |
|---|---|
| Cloud Code for Data | Triggers |
| Cloud Functions | Cloud Functions |
| Scheduled Jobs | Cloud Jobs |
| Stored Procedures | N/A |
| N/A | Webhooks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //First: get the ANDROID_ID | |
| String android_id = Settings.Secure.getString(this.getContentResolver(), Settings.Secure.ANDROID_ID); | |
| Parse.initialize(this, "APP_ID", "CLIENT_KEY"); | |
| //Now: add ANDROID_ID value to your Installation before saving. | |
| ParseInstallation.getCurrentInstallation().put("androidId", android_id); | |
| ParseInstallation.getCurrentInstallation().saveInBackground(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Parse.Cloud.beforeSave(Parse.Installation, function(request, response) { | |
| var androidId = request.object.get("androidId"); | |
| if (!androidId) { | |
| console.warn("No androidId found, save and exit"); | |
| return response.success(); | |
| } | |
| var query = new Parse.Query(Parse.Installation); | |
| query.equalTo("androidId", androidId); | |
| query.ascending("createdAt"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const puppeteer = require('puppeteer'); | |
| (async () => { | |
| const browser = await puppeteer.launch(); | |
| const page = await browser.newPage(); | |
| await page.goto('https://news.ycombinator.com', {waitUntil: 'networkidle2'}); | |
| await page.pdf({path: 'hn.pdf', format: 'A4'}); | |
| await browser.close(); | |
| })(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| env: | |
| TERM: xterm-256color | |
| window: | |
| dimensions: | |
| columns: 80 | |
| lines: 24 | |
| padding: | |
| x: 2 |