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 | |
| set -e | |
| TEMPLATE_ID="tpl_q56GMFtgY6JEEfzASd" | |
| API_TOKEN_ID="api_test_7tKsjEfES39ENnNThX" | |
| API_TOKEN_SECRET="EvpFND320XPPffPHz2OSrGISg2x1Ms0zjoX8FPfPgng" | |
| read -r -d '' SUBMISSION_DATA <<'JSON' | |
| { | |
| "data": { |
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
| data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASgAAAFOCAYAAAA1qoBeAAAAAXNSR0IArs4c6QAADDJJREFUeAHt3c+PZEUdAPCqtw0bQWYPHICoyapHhZUTHJZkD5oYD3Lai1zFXaNXNST+A3I1MboJN057g5s/iG7ACKcFyeIJWKMkaMKBLB6Gme6y3mT6x0y/nul5093zfnxeUul69arqVX1q8p3unurpGBwECBDYgMDNq+ncB7c+3h3fKoY4/MV/Hx2Mz6sei6pCZQQIEGiCgADVhFUwBgIEKgUEqEoWhQQINEFAgGrCKhgDAQKVAgJUJYtCAgSaICBANWEVjIEAgUqBWFmqkAABAjUFXnzk49+OUvrGguaXZ8pTzv915vxAdlDcf+3IPQgHajshQIDAEgI56lzK1Z5eomr5BGk2YB1oMkw7W17iHSBxQoBAkwQEqCathrEQIHBAwEu8AxxOCBA4rUCR4rXhoNia6yeFIgyHt8blMRTDNIhXxudzjw/FO94kn1NRQIDAOgR8Fm8dqvokQODMBLwHdWb0bkyAwHECAtRxQq4TIHBmAgLUmdG7MQECxwkIUMcJuU6AwJkJ2GZwZvRuTKBfAldvhtGvHo0vjGedYhqN8x4JECBAgAABAgQIECBAgAABAgQIECBAgACBQwLHfhYv3Uzndj75/fS7rGIY3nf9u/76dwjSKQECqxewD2r1pnokQGBFAgLUiiB1Q4DA6gUEqNWb6pEAgRUJCFArgtQNAQKrFxCgVm+qRwIEViQgQK0IUjcECKxeYG+bQbrxh2/tjka/XtR9StOvhokxHP1dVmFwLV7/9nuL+lJOgACBZQX29jPlTU4XZoPQUY1zvTKoLfwuq51Bmv9n6Ud16BoBAgQWCNhwuQBG8WoEUkrfyT19P6ev7/f4fn58Ncb4x/1zDwQWCghQC2lcOI1ADkyP5Pa/y+nZin5+mq+/ksuv5UD1n4rrigjsCewFqMEDW7d3/3fvmUqTVBQp7dwaX8 |
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
| # frozen_string_literal: true | |
| require 'rails_helper' | |
| # This test makes sure that Oj is used to parse and generate all JSON. | |
| # Your application needs to call: Oj.optimize_rails | |
| # See: https://github.com/ohler55/oj/blob/develop/pages/Rails.md#notes | |
| RSpec.describe 'Oj gem' do | |
| it 'uses OJ to parse and generate JSON' do |
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
| class VoidForgivenInvoicesService | |
| LIMIT = 100 | |
| class << self | |
| def log(str) | |
| puts str | |
| end | |
| def void_forgiven_invoices! | |
| invoices = [] |
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 | |
| set -eo pipefail | |
| DATABASE_NAME="$1" | |
| if [ -z "$PARALLEL_TEST_PROCESSORS" ]; then | |
| PARALLEL_TEST_PROCESSORS="$2" | |
| fi | |
| ACTION="$3" | |
| if [ -z "$ACTION" ]; then | |
| ACTION="create" |
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
| /* base32 */ | |
| /* | |
| Copyright (c) 2011, Chris Umbel | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
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
| FROM debian:stretch-slim | |
| # Set up a node group + user, minimal .bashrc, .gemrc, install packages | |
| RUN groupadd --gid 1000 node \ | |
| && useradd --uid 1000 --gid node --shell /bin/bash --create-home node \ | |
| && echo 'export LS_OPTIONS="--color=auto"\ | |
| \nalias ls="ls $LS_OPTIONS"\ | |
| \nalias ll="ls $LS_OPTIONS -l"\ | |
| \nalias l="ls $LS_OPTIONS -lA"' >> "$HOME/.bashrc" \ | |
| && echo "gem: --no-rdoc --no-ri" > "$HOME/.gemrc" |
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
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title> | |
| sample-coi.pdf | |
| - FormAPI.io</title> | |
| <link rel="stylesheet" media="all" href="/assets/bootstrap-4e3cebc9fbc5fb97aaa32ed51a086b63d9fef4e3ce46082c4ecd8fa5dc3ddc2d.css" /> | |
| <link rel="stylesheet" media="all" href="/assets/web_form-be7376ecee212758c2e2f9e8c0ddd9f280c703b32cc8bb0a7afe3da0139d8336.css" /> |
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 | |
| # Proof of concept: | |
| # * Build two Docker images | |
| # * Deconstruct them into a directory with skopeo | |
| # * Merge the layers together, and update digests in manifest/config | |
| # * Reconstruct a merged Docker image with skopeo | |
| # * Show the Docker history of the reconstructed image, and show that | |
| # files from both images can be accessed in the merged image. |
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
| group :development, :test do | |
| gem 'spring-commands-rspec', require: false | |
| gem 'spring-watcher-listen', require: false | |
| gem 'spring', require: false | |
| # ... | |
| end |