View search_tweet.py
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
# -*- coding: utf-8 -*- | |
from requests_oauthlib import OAuth1Session | |
import json | |
import settings | |
import os | |
import sys | |
if len(sys.argv) != 2: | |
print("Please input search keyword!") |
View gce-startup.sh
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
#!/bin/sh | |
USERNAME="s4kr4m4" | |
INITIALIZED_FLAG=".initialize_completed" | |
main() | |
{ | |
if test -e $INITIALIZED_FLAG; then | |
update | |
else |
View upload-gmusic.py
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
from gmusicapi import Musicmanager | |
import sys | |
argv = sys.argv | |
exts = ['.mp3', '.m4a', '.wma', '.flac', '.ogg', '.m4p'] | |
mm = Musicmanager() | |
mm.login() | |
for ext in exts: |
View github_contributions.rb
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
require 'no_proxy_fix' | |
require 'open-uri' | |
require 'oga' | |
base_uri = "https://github.com/s4kr4" | |
html = open(base_uri) do |f| | |
f.read | |
end |
View rainbow
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
#!/bin/bash | |
colors=("[38;5;160m" "[38;5;208m" "[38;5;226m" "[38;5;046m" "[38;5;033m" "[38;5;129m") | |
color_end="[0m" | |
length=$((${#1} - 1)) | |
for i in `seq 0 1 $length` | |
do | |
index=$((i%6)) |
View get_ssid_tmux
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
#!/bin/zsh | |
. "$DOTPATH"/.zsh/20_functions.zsh | |
if [ is_cygwin ]; then | |
network_info=(`netsh wlan show interfaces | sed -e 's/\s//g' | awk -F : '{print $2}'`) | |
state=${network_info[5]} | |
ssid=${network_info[6]} | |
signal=${network_info[15]} |
View lifegame.py
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
#LIFEGAME | |
from random import * | |
from Tkinter import * | |
cell = 10 | |
height = 60 + 2 | |
width = 60 + 2 | |
frame = 5 | |
field = [] |
View scraping.rb
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
require 'open-uri' | |
require 'Oga' | |
base_uri = "http://imas.gamedbs.jp" | |
def open_uri(uri) | |
html = open(uri) do |f| | |
f.read | |
end |
View cvim.css
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
#cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, | |
.cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, | |
.cVim-completion-item .cVim-right { | |
font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial; | |
font-size: 10pt !important; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
#cVim-command-bar { | |
position: fixed; |
View init.lua
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
local prefix = {"cmd", "ctrl"} | |
hs.hotkey.bind(prefix, "Up", function() | |
local win = hs.window.focusedWindow() | |
local f = win:frame() | |
local screen = win:screen() | |
local max = screen:frame() | |
f.x = max.x | |
f.y = max.y |
NewerOlder