Paprika doesn't have their API documented, so this is me reverse-engineering it from an Android device
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
| @font-face { | |
| font-family: "Fira Code Nerd Font"; | |
| font-style: normal; | |
| font-weight: 200; | |
| src: url("https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/FiraCode/Light/complete/Fira%20Code%20Light%20Nerd%20Font%20Complete.ttf?raw=true") | |
| format("truetype"); | |
| } | |
| @font-face { | |
| font-family: "Fira Code Nerd Font"; | |
| font-style: normal; |
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
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=US | |
| network={ | |
| ssid="YOURSSID" | |
| psk="YOURPASSWORD" | |
| scan_ssid=1 | |
| } |
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
| ARG RUBY_VERSION=2.6.1 | |
| FROM ruby:$RUBY_VERSION-alpine as development | |
| RUN apk add --no-cache \ | |
| git build-base yarn nodejs mariadb-dev imagemagick \ | |
| chromium-chromedriver chromium tzdata \ | |
| && rm -rf /var/cache/apk/* | |
| ENV RAILS_ENV=development |
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
| interface=usb0 | |
| dhcp-range=10.55.0.2,10.55.0.6,255.255.255.248,1h | |
| dhcp-option=3 | |
| leasefile-ro |
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
| interface=usb0 | |
| dhcp-range=10.55.0.2,10.55.0.6,255.255.255.248,1h | |
| dhcp-option=3 | |
| leasefile-ro |
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
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=<Insert country code here> | |
| network={ | |
| ssid="<Name of your WiFi>" | |
| psk="<Password for your WiFi>" | |
| } |
| 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | |
|---|---|---|---|---|---|---|---|---|
| A | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| B | 1 | 3 | 4 | 5 | 6 | 7 | 8 | |
| C | 1 | 2 | 8 | 10 | 3 | 2 | ||
| D | 2 | 2 | 2 | 2 | 2 | 2 | 2 | 2 |
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
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files | |
| GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up | |
| # (if you're backing up a user's repos instead, this should be your GitHub username) | |
| GHBU_UNAME=${GHBU_UNAME-"<CHANGE-ME>"} # the username of a GitHub account (to use with the GitHub API) | |
| GHBU_PASSWD=${GHBU_PASSWD-"<CHANGE-ME>"} # the password for that account | |
| GHBU_GITHOST=${GHBU_GITHOST-"github.com"} # the GitHub hostname (see comments) | |
| GHBU_PRUNE_OLD=${GHBU_PRUNE_OLD-true} # when `true`, old backups will be deleted |
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 'stripe' | |
| # Find the MRR for a given Stripe account. | |
| # | |
| # (To do this it simply finds the total amount for all active | |
| # subscriptions (in cents). For most SAAS accounts, this is | |
| # enough, though modification is necessary to account for | |
| # things like trials, discounts, pro-rated cancellations, etc.) | |
| # | |
| # {stripe_id: YOUR_STRIPE_SECRET_KEY} - A hash with the key "stripe_id" and the correct secret key |
NewerOlder