pngcrush -res 350 card-ja.png card-ja350.png
identify -units PixelsPerInch -format '%x,%y\n' card-ja350.png
This file contains 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
イントロ / Intro | |
A C A A#m | |
A ||--0-0-1-0-3-0-1-0--------|--0-0-1-0-3-0-1-0--------| | |
E ||-------------------------|-------------------------| | |
C ||-------------------------|-------------------------| | |
G ||-------------------------|-------------------------| | |
A C A#m A | |
A ||--0-0-1-0-3-0-1-0--------|--1-0-----------1--------| | |
E ||-------------------------|------3-1-0-1-3----------| |
This file contains 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
Em C Em | |
En el fondo de tus ojos brilla | |
C G D | |
Una luna que está a punto de llorar | |
Em C Em | |
Lágrimas rojas se derraman | |
Am C D | |
Tiñendo el cielo de la noche | |
G B Em D |
This file contains 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
赤鼻のトナカイ (Bajo) | |
Estrofa | |
G|---------|---------|---------|---------|---------|---------|---------|---------| | |
D|---5---5-|---5---5-|---5---5-|-0-5---5-|-0-5---5-|-0-5---5-|-0-5---5-|---5-----| | |
A|-3---3---|-3---3---|-3---3---|---------|---------|---------|---------|-3---3---| | |
E|---------|---------|---------|-----3---|-----3---|-----3---|-----3---|---------| | |
Estribillo |
This file contains 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
fs = require 'fs' | |
request = require 'request' | |
gm = require 'gm' | |
.subClass {imageMagick: true} | |
filenames = ['bg-title.jpg', 'bg-otona.jpg', 'bg-kodomo.jpg', 'bg-denshi.jpg', 'bg-timetable.jpg', 'bg-map.jpg'] | |
filenamesg = ['bgg-title.jpg', 'bgg-otona.jpg', 'bgg-kodomo.jpg', 'bgg-denshi.jpg', 'bgg-timetable.jpg', 'bgg-map.jpg'] | |
filename_index = -1 | |
lineReader = require 'readline' |
I hereby claim:
- I am alecrem on github.
- I am alecrem (https://keybase.io/alecrem) on keybase.
- I have a public key ASB2yAsuQIe8vk6BLcKyegiSyPQiyB5TLTeMmJMzlZhbnAo
To claim this, I am signing this object:
This file contains 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
set ssl:verify-certificate no | |
#set net:timeout 2 | |
#set net:max-retries 2 | |
#set net:reconnect-interval-base 5 | |
alias dir ls | |
alias ll 'ls -l' | |
alias less more | |
alias zless zmore | |
alias bzless bzmore |
This file contains 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
<?php | |
if(strpos($_SERVER['argv'][0], '=')){ | |
$newurl = 'Location: http://PON_ALGO_AQUI?' . str_replace('=', '', $_SERVER['argv'][0]); | |
header($newurl, true, 301); | |
die(); | |
} |
This file contains 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
networksetup -getdnsservers Wi-Fi | |
networksetup -getdnsservers Wi-Fi | while read n | |
do | |
if [ "$n" = "There aren't any DNS Servers set on Wi-Fi." ] ; then | |
echo "none -> google" | |
sudo networksetup -setdnsservers Wi-Fi 8.8.8.8 8.8.4.4 | |
else | |
echo "google -> none" | |
sudo networksetup -setdnsservers Wi-Fi Empty | |
fi |