Skip to content

Instantly share code, notes, and snippets.

@s4kr4
s4kr4 / followers.py
Created February 20, 2016 15:16
リムーブ検知(tweepy使用)
# -*- coding:utf-8 -*-
import tweepy
from tweepy.error import TweepError
import pickle
import os
import os.path
def check(screen_name):
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
import sys, time
import tweepy
from tweepy.streaming import StreamListener, Stream
import csv
import threading
import time
from datetime import datetime
from pprint import pprint
import keys
@s4kr4
s4kr4 / init.lua
Created January 15, 2017 01:09
hammerspoon
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
@s4kr4
s4kr4 / cvim.css
Created February 10, 2017 01:07
CSS for cVim
#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;
@s4kr4
s4kr4 / .cvimrc
Last active April 13, 2017 04:33
Settings for cVim
set smoothscroll
set noautofocus
set defaultnewtabpage
let barposition = "bottom"
let blacklists = ["https://mail.google.com/*","https://tweetdeck.twitter.com/"]
let hintcharacters = "qwerasdfuopjkl"
" keymaps
unmapAll
@s4kr4
s4kr4 / scraping.rb
Last active May 10, 2017 08:31
Get Cinderella Girls
require 'open-uri'
require 'Oga'
base_uri = "http://imas.gamedbs.jp"
def open_uri(uri)
html = open(uri) do |f|
f.read
end
#LIFEGAME
from random import *
from Tkinter import *
cell = 10
height = 60 + 2
width = 60 + 2
frame = 5
field = []
@s4kr4
s4kr4 / .vimiumrc
Last active June 20, 2017 04:26
Settings for Vimium
unmapAll
map j scrollDown
map k scrollUp
map h scrollLeft
map l scrollRight
map gg scrollToTop
map G scrollToBottom
map f scrollPageDown
map b scrollPageUp
#!/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]}
#!/bin/bash
colors=("" "" "" "" "" "")
color_end=""
length=$((${#1} - 1))
for i in `seq 0 1 $length`
do
index=$((i%6))