This file contains hidden or 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
| document.addEventListener("DOMContentLoaded", function() { | |
| var style = document.createElement("style"), collapse = "collapse", none = "none"; | |
| style.innerHTML = "." + collapse + ">:first-child::after{content:'(click to open/close)';font-size:80%}"; | |
| document.head.appendChild(style); | |
| [].forEach.call(document.getElementsByClassName(collapse), function(elem) { | |
| var children = elem.children, cstyle; | |
| if(children.length == 2) { | |
| cstyle = children[1].style; | |
| children[0].style.cursor = "pointer"; |
This file contains hidden or 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
| テンプレ略 |
This file contains hidden or 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
| // C++ 11 | |
| // Library | |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| // Type Name | |
| #define TMPL template<class T> | |
| #define TMPL2 template<class T, class U> | |
| #define TMPL_A template<class T, class ...U> |
This file contains hidden or 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
| use utf8; | |
| use strict; | |
| use Data::Dumper "Dumper"; | |
| binmode(STDOUT, ":utf8"); | |
| use constant BLOCKS => [ | |
| [ | |
| [0, 0, 1, 0, 0], | |
| [0, 0, 1, 0, 0], | |
| [0, 0, 1, 0, 0], |
This file contains hidden or 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
| .icon-favorite-color, .is-favorite .icon-favorite-toggle { | |
| color: #f1c933 !important; | |
| } | |
| .sprite { | |
| background-image: url(http://akouryy.net/tweetdeck.png) !important; | |
| } | |
| .stream-item[data-key^=favorite_] .activity-header>.nbfc { | |
| font-size: 0px !important; |
This file contains hidden or 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
| Client -> Server | |
| favorite {ids: [Int]} | |
| unfavorite {ids: [Int]} | |
| retweet {ids: [Int]} | |
| Server -> Client | |
| tweet {content: String, url: String, favorited: Bool, id: Int, userName: String, userScreenName: String, userImageURL: String} |
This file contains hidden or 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
| +[]; // 0 | |
| ![]; // false | |
| !![]; // true | |
| []._; // undefined | |
| ({}) // Object {} | |
| +[]+""; // "0" | |
| ![]+""; // "false" | |
| !![]+""; // "true" | |
| []._+""; // "undefined" |
This file contains hidden or 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
| _=-~[$$=![$=!![]+""]+""];_[__=($_=(__=""+{})[-~-~(_$=-~-~_)])+__[_]+(_._+"")[_]+$$[_$]+$[+[]]+$[_]+$[-~_]+$_+$[+[]]+__[_]+$[_]][__]($$[_]+$$[-~_]+$[_$]+$[_]+$[--_]+"("+_+")")() |
This file contains hidden or 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
| -- http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=10002 | |
| main = getLine >>= putStrLn . unwords . map show . flip map [product, (2*) . sum] . flip ($) . map read . words |
This file contains hidden or 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
| def yu; gets.to_i end | |
| class Integer | |
| def yu sym = nil | |
| if sym | |
| yu &sym | |
| elsif block_given? | |
| times.map{|i| yield gets.chomp} | |
| else | |
| times.map{gets.chomp} |