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 bash | |
# repopulate music links when drive plugged in | |
shopt -s nullglob | |
export DISPLAY=:0 | |
export XAUTHORITY=/home/jason/.Xauthority | |
music=(/media/Apollo/Music/*) | |
find /home/jason/Music -type l -exec rm {} \; |
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
Total discovered scoped packages: 843 | |
Total users who published discovered scoped packages: 304 | |
Total published npm modules dependent on discovered scoped packages: 587 | |
Total scoped modules depended upon by open source github repos: 599 | |
Total open source github repos dependent on discovered scoped packages: 1105 (944 not forks) | |
Total github users/orgs depending upon discovered scoped packages: 412 |
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 'btcruby' | |
require 'bitcoin' | |
require 'bech32' | |
require './segwit_addr' | |
require 'active_support' | |
require 'active_support/core_ext' | |
require 'ffi' | |
# Computation of P2SH-P2WPKH address |
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
var Base64 = { | |
characters: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" , | |
encode: function( string ) | |
{ | |
var characters = Base64.characters; | |
var result = ''; | |
var i = 0; | |
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
port=53 | |
address=/lo0/127.0.0.1 | |
server=127.0.0.1#54 | |
user=nobody | |
group=nobody | |
interface=lo0 | |
listen-address=127.0.0.1 | |
no-dhcp-interface=lo0 | |
bind-interfaces |
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
if(('orientation' in screen) && !player.settings.embeds.enabled) { | |
screen.orientation.addEventListener('change', function (e) { | |
if (screen.orientation.type === 'landscape-primary' || screen.orientation.type === 'landscape-secondary') { | |
player.fullscreen.enter(); | |
} else { | |
player.fullscreen.exit(); | |
} | |
e.preventDefault(); | |
e.stopPropagation(); | |
}); |
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
PlayStation®3 system includes following third-party open source software.<br/> | |
<br/> | |
<br/> | |
AVM+<br/> | |
<br/> | |
The source code version of this software is made available to you under the terms of the Mozilla Public License Version 1.1 at http://www.scei.co.jp/ps3-license/avm.html<br/> | |
<br/> | |
<br/> | |
<br/> | |
eCOS<br/> |
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
ACE, ACTION, ADDRESS, AIRPORT, ALARM, ALBUM, AMP, ANIMAL, ARM, ASSEMBLE, BACK, BAIT, BAKE, BALANCE, BALL, BAR, BARK, BARREL, BASIC, BASS, BAT, BEANS, BEAT, BED, BELLOWS, BICYCLE, BIG, BILL, BITTER, BLACK, BLOCK, BLOOD, BLUBBER, BLUE, BLUFF, BOOK, BOOKMARK, BOW, BOWLING, BOX, BRAIN, BRAVE, BREACH, BREEZE, BRIDGE, BROOD, BUBBLE, BUNCH, BURNOUT, BUST, BUTT, CAMPAIGN, CAN, CAPITAL, CAPTURE, CAR, CARD, CARRIER, CAST, CATCH, CELL, CHAIN, CHAIR, CHANGE, CHARGE, CHARM, CHECK, CHEST, CHILDREN, CHIN, CHIP, CHOICE, CLOCK, CLOTHES, CLUB, CLUTCH, COACH, COAT, CODE, COLD, COLLECT, COLOR, COMBINE, CONFLICT, CONVERSE, COOL, COPY, COSTUME, COUNTER, COUPLE, COURAGE, COURSE, CRADLE, CRANE, CRANK, CRASH, CRASH, CREDIT, CROSS, CROSS, CROWN, CRUMBLE, CRY, CUP, CURL, DATE, DEAL, DECK, DEEP, DEGREES, DICTATE, DIRTY, DIVINE, DIVING, DOMINATE, DOT, DOWN, DRAIN, DRAW, DREAM, DRIVER, DRY, DUCK, DULL, EDGE, EFFECTS, EMO, FACE, FAIR, FALL, FAN, FAST, FATHER, FILE, FIRE, FISH, FIT, FLASH, FLOAT, FLUSH, FLY, FOAM, FRANCE, FROST, FRUIT, FULL |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/yingray_lu/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="agnoster" |
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
var DOMTokenListSupports = function(tokenList, token) { | |
if (!tokenList || !tokenList.supports) { | |
return; | |
} | |
try { | |
return tokenList.supports(token); | |
} catch (e) { | |
if (e instanceof TypeError) { | |
console.log("The DOMTokenList doesn't have a supported tokens list"); | |
} else { |