Skip to content

Instantly share code, notes, and snippets.

View watagashi's full-sized avatar
🏠
Working from home, except for the weekend.

WADA Takashi watagashi

🏠
Working from home, except for the weekend.
View GitHub Profile
diff -r 3331756e4232 .hgignore
--- a/.hgignore Thu Jul 08 22:27:55 2010 +0200
+++ b/.hgignore Fri Jul 09 19:13:29 2010 +0900
@@ -42,3 +42,7 @@
*.mo
*.swp
*~
+
+# KaoriYa
+src/Obj/*/pathdef.c
/* twicli plugin (http://twicli.neocat.jp/)
* multi-users.js
* 一度タイムラインを表示したことのあるユーザーのタイムラインを簡単に再表示することができます。
* 複数のユーザーのタイムラインを表示することも可能です。
* http://twitter.com/edvakf/status/20406609758
* http://twitter.com/edvakf/status/20406753129
*/
var viewed_users = [];
@azu
azu / twicli_post_canceler.js
Created September 7, 2010 07:10
5秒以内なら送信中止できるtwicli plugin
// ==UserScript==
// @name twicli post canceler
// @namespace http://efcl.info/
// @description twicliのポストを行うのに5秒の猶予を設けて、その間にキャンセルボタンを押せばポストをキャンセルできます。
// @author azu
// @homepage http://efcl.info/
// @twitter https://twitter.com/azu_re
// ==/UserScript==
/* http://gist.github.com/567983.txt をプラグインにロード */
(function(){
@NeoCat
NeoCat / tweet_URL_with_twicli.js
Created October 9, 2010 01:52
Open twicli and input tweet with current URL and title
javascript:void(window.open('http://twicli.neocat.jp/twicli.html?status="'+encodeURIComponent(document.title)+'":%20'+location.href,'twicli'))
@azu
azu / switchViewedSearches.js
Created September 4, 2010 05:11
検索結果のタブを一覧表示するタブを作るtwicli plugin
/* twicli plugin (http://twicli.neocat.jp/)
* switchViewedSearches.js
* 検索結果のタブを一覧表示するタブを作る - サイドバーなど狭い場所で使ってる人向け
* Pluginsに http://gist.github.com/564921.txt を読み込む
*/
registerPlugin({
switchTo: function(tab) {
if (tws_list.length > 1 && !$('viewed_searches')) {
var newTab = document.createElement('a');
newTab.href = 'javascript:void switchViewedSearches()';
@watagashi
watagashi / .babelrc
Last active September 23, 2018 07:43
{
"presets": ["@babel/env"]
}
@mala
mala / covid19-twitter-research_01.md
Last active December 31, 2021 05:58
生活と意見: ソーシャルディスタンスなどと称してユーザー名や文章にスペースを挟む行為についての苦情

生活と意見: ソーシャルディスタンスなどと称してユーザー名や文章にスペースを挟む行為についての苦情

更新履歴

2020-05-13 追記

@koyopro
koyopro / amazon-calc.js
Last active April 2, 2022 08:23 — forked from polamjag/amazon-calc.js
Amazonで一年間に使った金額と、注文履歴のTSVを出力するブックマークレット【2015年版】
// Amazonの注文履歴をTSV形式で出力するスクリプト
//
// 2015-01-01 時点での DOM 構造に対応, GoogleCrome, Opera でテスト済。
// formatEntry関数を書き換えれば自由な書式で出力できます。
//
// 参考:
// - Amazonの注文履歴をCSV形式にして出力するスクリプト
// https://gist.github.com/arcatdmz/8500521
// - Amazon で使った金額の合計を出す奴 (2014 年バージョン)
// https://gist.github.com/polamjag/866a8af775c44b3c1a6d

2016年にJavaScriptを学んでどう感じたか

※この記事は"How it feels to learn JavaScript in 2016"著者であるJose Aguinaga氏による、以下のツイートの本文を確認して記事を翻訳しています。
https://twitter.com/jjperezaguinaga/status/784058480613322752?lang=ja
As long as you reference the original article, please feel free to translate/quote “How it feels to learn JavaScript in 2016” in any media.
また、このような素晴らしい記事を書いて頂いたJose Aguinaga氏に感謝致します。 ありがとうございました。

※追記2016_11_23