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 django import template | |
| from django.template import Context | |
| from django.template.base import parse_bits | |
| from wagtail.wagtailimages.templatetags.wagtailimages_tags import ImageNode | |
| from wagtail.wagtailimages.models import Filter, SourceImageIOError, InvalidFilterSpecError | |
| from britishswimming.utils.models import SocialMediaSettings | |
| register = template.Library() |
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
| # Make mouse useful in copy mode | |
| setw -g mode-mouse on | |
| # Allow mouse to select which pane to use | |
| set -g mouse-select-pane on | |
| # Allow mouse dragging to resize panes | |
| set -g mouse-resize-pane on | |
| # Allow mouse to select windows |
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
| #!/usr/bin/env ruby | |
| require 'json' | |
| require 'restclient' | |
| auth_token = ENV["AUTH_TOKEN"] | |
| api_url = ENV["SCALINGO_API_URL"] || "https://api.scalingo.com/v1" | |
| auth_url = ENV["SCALINGO_AUTH_URL"] || "https://auth.scalingo.com/v1" | |
| app = ENV["APP"] |
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
| import datetime | |
| import json | |
| import multiprocessing | |
| import stripe | |
| import sys | |
| import threading | |
| import time | |
| from pprint import pprint |
OlderNewer