search/tweets
では一週間以上前のツイートは検索できないので注意
search/universal
は公式のConsumerKey/ConsumerSecretでないと使用できない
当方では一切の責任を負いません
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
A file below this one contains the steps for doing this with Travis CI. However, these days I recommend GitHub Actions, for the following reasons:
var readline = require('readline'); | |
var color = require("ansi-color").set; | |
var mc = require('../'); | |
var c = new Buffer("§", "utf-8") | |
var colors = new Array(); | |
colors[c.toString('utf-8') + '0'] = 'black+white_bg'; | |
colors[c.toString('utf-8') + '1'] = 'white+blue_bg'; | |
colors[c.toString('utf-8') + '2'] = 'green'; | |
colors[c.toString('utf-8') + '3'] = 'blue'; |
<?php | |
define('NICONICO_MAILADDRESS', '<アカウントアドレス>'); | |
define('NICONICO_PASSWORD' , '<アカウントパスワード>'); | |
$id = @$argv[1]; | |
if(!$id) exit('Usage (sm|lv)[\d]+'.PHP_EOL); | |
if(strpos($id, 'sm') === 0) getVideoComment($id); | |
if(strpos($id, 'lv') === 0) getLiveComment($id); | |
if(strpos($id, 'co') === 0) getLiveComment($id); |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |