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
    
  
  
    
  | Public Domain | 
  
    
      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/sh | |
| ## | |
| # Run this script with Synology Task Scheduler: | |
| # Settings > Task Scheduler > Create > Scheduled Task > User-defined script | |
| # Name: LE Wildcard Cert copy | |
| # User: root | |
| # Schedule: Repeat Monthly | |
| # User-defined script: See below. | |
| # | |
| # Based on: | 
  
    
      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 os | |
| import argparse | |
| from twilio.rest import Client | |
| # Load .env file and overwrite existing environment vars if they exist | |
| from dotenv import load_dotenv, find_dotenv | |
| load_dotenv(find_dotenv(), override=True) | |
| # Your Account Sid and Auth Token from twilio.com/console | |
| account_sid = os.getenv("TWILIO_ACCOUNT_SID") | 
  
    
      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
    
  
  
    
  | # Save this file | |
| # mac - "~/Library/Application Support/Sublime Text 3/Packages/" | |
| # linux - "~/.config/sublime-text-3/Packages/" | |
| # NOTE! | |
| # ~/.nvm/alias/default must contain full version name. | |
| # $ nvm alias default v4.3.5 | |
| import os | 
  
    
      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 python | |
| # -*- coding: utf-8 -*- | |
| import os, json | |
| import requests | |
| # Configure variables | |
| ACCOUNT_SID = 'AC*********************' | |
| AUTH_TOKEN = '***********************' | |
| FLOW_SID = 'FW**********************' | 
  
    
      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 python | |
| # -*- coding: utf-8 -*- | |
| import settings | |
| from twilio.rest import Client | |
| import csv, datetime | |
| # put your own credentials here | |
| account_sid = 'YOUR TWILIO ACCOUNT SID' | |
| auth_token = 'YOUR TWILIO AUTH TOKEN' | 
  
    
      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 | |
| # Get Homebrew in the new location | |
| git clone git@github.com:Homebrew/homebrew.git ~/Homebrew | |
| # Move all your installed packages to the new location | |
| mv /usr/local/Cellar ~/Homebrew/Cellar | |
| mv /usr/local/Library ~/Homebrew/Library | |
| # Remove "root" directory files left behind | |
| rm -rf /usr/local/.git /usr/local/{.gitignore,.yardopts,CODEOFCONDUCT.md,CONTRIBUTING.md,LICENSE.txt,README.md,SUPPORTERS.md} | 
  
    
      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
    
  
  
    
  | server { | |
| listen 80; | |
| root /var/www/craft.dev/public; | |
| index index.php index.html index.htm; | |
| server_name craft.dev; | |
| location / { | |
| try_files $uri $uri/ @rewrites; | 
  
    
      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
    
  
  
    
  | /** | |
| * PLUGIN CODE | |
| */ | |
| // create a simple javascript plugin that gets the current video ID and sets up ads: | |
| videojs.plugin('setupAds', function() { | |
| 'use strict'; | |
| var player = this, | |
| currentVideoId = player.el().getAttribute('data-video-id'); | |
| player.ima3({ | 
NewerOlder