Useful ็ญใฎๅ ฌ้ใในใใงใชใใใฎใๅ ฌ้ใใใฆใใใ ๅใๆธใใใฆใใชใ public ใชใกใณใใๅคใใAPI ใซๅฏพใใๆ่ญใไฝใใ
Pk, Id, NoAssigned ็ญใฏ Magic ใฎใใใซๅฐๅ ฅใใใๅใ ใใ
#ifndef __macrounit_h__ | |
#define __macrounit_h__ | |
#define mu_prn_failed(file,line,expr) printf( "%s:%u: failed assertion `%s'\n",file,line,expr) | |
#define mu_prn_test(test,passed) printf( " Test: %s ... %s\n",test,(passed)?"passed":"FAILED") | |
#define mu_prn_suite(suite) printf( "Suite: %s\n",suite) | |
#define mu_assert(file,line,expr) do { ++mu_asserts; if (!(expr)) { ++mu_failures; mu_prn_failed(file,line,#expr); }} while (0) | |
#define MU_ASSERT(expr) mu_assert(__FILE__,__LINE__,expr) | |
#define mu_run_test(test) do { int f=mu_failures; ++mu_tests; test(); mu_prn_test(#test,(f==mu_failures)); } while (0) |
(defun _zizo (begin end format) | |
(let ( | |
(str (buffer-substring-no-properties begin end)) | |
(rules '((" " "+") ("|" "%7C") ("\n" "|") ("?" "%3F") ("&" "%26"))) | |
(rule nil)) | |
(while rules | |
(setq rule (car rules)) | |
(setq rules (cdr rules)) | |
(let ( | |
(a (car rule)) |
// 2 space ใฎๅ ดๅ | |
// cond_c ใฎๅใฎindent, ใใใชๆใใง่ชฟ็ฏใงใใ!! | |
if ((cond_a || cond_b || | |
cond_c || cond_d) || cond_e) { | |
} | |
// ๅผๆฐใฎๅ ดๅใจใใงใ | |
test(value1, value2, | |
value3, value4); |
--- | |
:consumer_key: consumer_key | |
:consumer_secret: consumer_secret | |
:oauth_token: oauth_token | |
:oauth_token_secret: oauth_token_secret |
NOUN_PREFIX = %w|ใใใใใใ ๆฅใใใใใใช ใใใใซๅฎใ ็ใใ | |
็ใใ ๆฟกใใ ้ปๅ ใใใ ใณใฃใใใจๅฏ็ใใ ใใใใใฃใ | |
็็พใช ใณใใๆฟกใใฎ ใใใๆฟกใใฎ ใใฃใกใใจใใ ใใฃใกใใใ ๆใใใช | |
็ช่ตทใใ ็ใไธใใฃใ ๅๅฝใซใไผผใ ใใณใฏ่ฒใฎ ่็ดซ่ฒใฎ | |
ไธ็ณธ็บใใฌ ๅ ๆฒขใฎใใ ็ฑใฎใใใฃใ ใใกใใกใจใใ ใใซใใซใจใใ | |
| | |
VERB_PREFIX = %w|ใใใใใจ ๆฅใใใใชใใ ๆฅใใใใใใซ ใใใใซๅฎใใใฆ | |
ใใฃใใใใจ ใณใฃใใใใจ ใใใใซ ๅพฎใใซ ๅคง่ใซใ ใใใใใจ | |
| |
#!/usr/bin/env ruby | |
#coding:utf-8 | |
require 'mechanize' | |
alice = Mechanize.new | |
page = alice.get ARGV[0] | |
url = CGI.unescape page.root.xpath('//*[@id="flash-player-embed"]')[0]['flashvars'].split('&flv_url=').last.split('&').first | |
title = page.root.xpath('//td/strong')[0].inner_text.gsub(/\//, '๏ผ')+'.flv' |
Useful ็ญใฎๅ ฌ้ใในใใงใชใใใฎใๅ ฌ้ใใใฆใใใ ๅใๆธใใใฆใใชใ public ใชใกใณใใๅคใใAPI ใซๅฏพใใๆ่ญใไฝใใ
Pk, Id, NoAssigned ็ญใฏ Magic ใฎใใใซๅฐๅ ฅใใใๅใ ใใ
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
package DBIx::Lite::ResultSet::Role::Slave; | |
use strict; | |
use warnings; | |
use Role::Tiny; | |
around $_ => sub { | |
my ($ORIG, $self, @args) = @_; | |
local $self->{dbix_lite} = $self->{dbix_lite}->master; | |
return $self->$ORIG(@args); | |
} for qw( |