<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| # Custom status bar | |
| # # Powerline symbols: ⮂ ⮃ ⮀ ⮁ ⭤ | |
| set -g status-left-length 32 | |
| set -g status-right-length 150 | |
| set -g status-interval 5 | |
| set -g status-left '#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold]⮀' | |
| set -g status-right '#[fg=colour245]⮃ %R ⮃ %d %b #[fg=colour254,bg=colour234,nobold]#(~/Documents/AppleScripts/itunes-current-track-tmux.sh)⮂#[fg=colour16,bg=colour254,bold] #h ' | |
| # set -g status-right '#(~/Documents/AppleScripts/itunes-current-track-tmux.sh)' | |
| set -g window-status-format "#[fg=white,bg=colour234] #I #W " | |
| set -g window-status-current-format "#[fg=colour234,bg=colour39]⮀#[fg=colour16,g=colour39,noreverse,bold] #I ⮁ #W #[fg=colour39,bg=colour234,nobold]⮀" |
| #dropbox { | |
| position: relative; | |
| } | |
| #dropbox > input { | |
| position: absolute; | |
| top: 0px; | |
| right: 0px; | |
| bottom: 0px; | |
| left: 0px; |
| Mac OS: | |
| sudo bash -c 'echo RTMFPP2PDisable=1 >> /Library/Application\ Support/Macromedia/mms.cfg' | |
| Windows: | |
| echo RTMFPP2PDisable=1 >> %windir%\system32\Macromed\Flash\mms.cfg | |
| echo RTMFPP2PDisable=1 >> %windir%\syswow64\Macromed\Flash\mms.cfg | |
| echo RTMFPP2PDisable=1 >> %windir%\system32\mms.cfg | |
| Linux: | |
| sudo mkdir -p /etc/adobe |
| #!/usr/bin/env python | |
| #vi: encoding=utf-8 | |
| """ Interval tool for check buyvm.net activate Instance send email to inform your by email | |
| http://huangx.in | |
| """ | |
| import time | |
| import json | |
| import urllib2 |
| require 'date' | |
| author = "Saito" | |
| email = "[email protected]" | |
| date = Date.new(2012, 7, 30) | |
| s = %w{ | |
| . . . . . . . | |
| . . o o o . . | |
| . o . . . . . |
| function Add-Path() { | |
| [Cmdletbinding()] | |
| param([parameter(Mandatory=$True,ValueFromPipeline=$True,Position=0)][String[]]$AddedFolder) | |
| # Get the current search path from the environment keys in the registry. | |
| $OldPath=(Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).Path | |
| # See if a new folder has been supplied. | |
| if (!$AddedFolder) { | |
| Return 'No Folder Supplied. $ENV:PATH Unchanged' | |
| } | |
| # See if the new folder exists on the file system. |
| #!/usr/bin/env node | |
| 'use strict'; | |
| var fs = require('fs'); | |
| var http = require('http'); | |
| var https = require('https'); | |
| var net = require('net'); | |
| var url = require('url'); | |
| var util = require('util'); |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.shadowsocks.chinadns</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/bin/chinadns</string> | |
| <string>-c</string> |
| // junkterm is a quick and dirty serial terminal. | |
| package main | |
| import ( | |
| "io" | |
| "log" | |
| "os" | |
| "github.com/pkg/term" | |
| "github.com/spf13/cobra" |