GifVJ
これがクールだったのでどうにかこれを JavaScript で作れないか頑張ってみた(頑張ってる途中)
Burrn!
ランダムで GIF アニメを全画面表示
Enter で再生/停止
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* Japanese translated by hissy | |
* | |
* CODEX: http://wpdocs.sourceforge.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
* Original: https://gist.github.com/luetkemj/2023628/9e911982440141a13cb1dd8ba1ad6b35cd7bbdd7 | |
*/ |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
#!perl | |
use 5.14.2; | |
use WWW::Mechanize; | |
use Getopt::Long; | |
use Term::Prompt; | |
use URI; | |
my $username; | |
my $baseurl; |
# | |
# File compressor plugin for jekyll | |
# ================================= | |
# | |
# By [mytharcher](https://github.com/mytharcher) | |
# 2012-05-20 | |
# | |
# Updated by [nicoespeon](https://github.com/nicoespeon) | |
# 2013-04-12 | |
# |
# -*- coding: utf-8 -*- | |
describe Array do | |
let(:array) { [1,2,3,4,5] } | |
subject &:array | |
it "先頭の要素(1)を返すこと" do | |
subject.first.should == 1 | |
subject[0].should == 1 | |
end |
# 全部の問題で e = [1,2,3,4,5] を対象に回答してください | |
e = [1,2,3,4,5] | |
e[0] # 1 | |
# 末尾の要素(5)を返すメソッド | |
e[4] # 5 | |
e.slice(4) | |
e.last | |
e.at(4) |
# -*- encoding: utf-8 -*- | |
describe Array do | |
let(:e) { [1,2,3,4,5] } | |
it "先頭の要素(1)を返すメソッド" do | |
e[0].should == 1 | |
e.at(0).should == 1 | |
e.first.should == 1 |
# -*- encoding: utf-8 -*- | |
describe Array do | |
let(:e) { [1,2,3,4,5] } | |
it "先頭の要素(1)を返すメソッド" do | |
e[0].should == 1 | |
e.at(0).should == 1 | |
e.first.should == 1 |