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 nocompatible " be iMproved, required | |
filetype off " required | |
set clipboard+=unnamed " for yank and paste | |
" let g:python3_host_prog="/Users/horiuchiryousuke/.pyenv/shims/python3" | |
" ########################################### | |
"文字コードをUFT-8に設定 | |
set fenc=utf-8 | |
" バックアップファイルを作らない | |
set nobackup | |
" スワップファイルを作らない |
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
timer = setInterval(function(){ | |
arrow = document.getElementsByClassName('play__cursor')[1]; | |
if(window.getComputedStyle(arrow, null).getPropertyValue('display') == "none"){ | |
document.getElementsByClassName('play__attack')[0].click(); | |
clearInterval(timer); | |
} | |
}, 190); |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# This program crawls the specified site and generates a text to represent it. | |
# | |
# This collects internal nodes only. | |
# | |
# Usage: crawler.py url [limit] [i|d|e] | |
# The option ''url'' is the start page of the crawling. | |
# The crawling continues while it can find unvisited pages on the same host. |
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
@echo off | |
setlocal | |
rem FROM refers to the source of your folder or file that you want to backup. | |
set FROM=<ABSOLUTE_PATH> | |
rem TO refers to the destination. | |
set TO=Z:<ABSOLUTE_PATH> | |
set LOG=%~dp0\autocopy.log | |
rem EXCEPT refers to files that you don't want to backup. | |
set EXCEPT=<ABSOLUTE_PATH> | |
set OPT=/MIR /R:3 /W:10 /V /FP /DCOPY:T /LOG:%LOG% /XD:%EXCEPT% /TEE |