This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.
Tempo does not collect any user data, and does not require internet to function.
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
| Macro.to_string( | |
| (fn x -> | |
| quote do | |
| unquote(x).( | |
| quote do | |
| quote do | |
| (unquote_splicing(x)) | |
| end | |
| end | |
| ) |
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
| console.log("Hello World"); |
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
| name: Generate README every 1 hour | |
| on: | |
| schedule: | |
| - cron: "0 * * * *" | |
| workflow_dispatch: | |
| jobs: | |
| stuff: | |
| runs-on: ubuntu-latest |
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
| require("isomorphic-unfetch"); | |
| const { promises: fs } = require("fs"); | |
| const path = require("path"); | |
| const clientId = process.env.SPOTIFY_CLIENT_ID; | |
| const clientSecret = process.env.SPOTIFY_CLIENT_SECRET; | |
| const refreshToken = process.env.SPOTIFY_REFRESH_TOKEN; | |
| async function main() { | |
| const readmeTemplate = ( |
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
| [ | |
| { | |
| "name": "Journeys to Bagdad", | |
| "provider": "Librivox", | |
| "img": "https://upload.wikimedia.org/wikipedia/commons/5/5d/Matamoros004.JPG", | |
| "audio": [ | |
| "https://res.cloudinary.com/paperplane-00/video/upload/v1577890027/paperplane/the_unpaprd/journeys_to_bagdad/journeystobagdad_01_brooks_64kb_b6cnox.mp3", | |
| "https://res.cloudinary.com/paperplane-00/video/upload/v1577890030/paperplane/the_unpaprd/journeys_to_bagdad/journeystobagdad_02_brooks_64kb_xur45a.mp3", | |
| "https://res.cloudinary.com/paperplane-00/video/upload/v1577890020/paperplane/the_unpaprd/journeys_to_bagdad/journeystobagdad_03_brooks_64kb_rkgv9k.mp3", | |
| "https://res.cloudinary.com/paperplane-00/video/upload/v1577890025/paperplane/the_unpaprd/journeys_to_bagdad/journeystobagdad_04_brooks_64kb_uru8uw.mp3", |
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
| function State() { | |
| this.actions = {}; | |
| this.subscriptions = []; | |
| this.history = []; | |
| } | |
| State.prototype.subscribe = function(element, action, callback) { | |
| this.subscriptions[action] = this.subscriptions[action] || []; | |
| this.subscriptions[action].push(function(data) { | |
| callback.apply(element, data); |