This file contains 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
<?php | |
## Generate a Github user token at https://github.com/settings/tokens | |
$githubToken = 'EnterYourGithubTokenHere'; | |
## Your organization name (from https://github.com/yourOrganizationName) | |
$organization = 'yourOrganizationName'; | |
## Enter the name of the remote file you want to place | |
$remoteFile = "pull_request_template.md"; |
This file contains 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
#!/usr/bin/env perl | |
use 5.016; | |
use common::sense; | |
use utf8::all; | |
# Use fast binary libraries | |
use EV; | |
use Web::Scraper::LibXML; | |
use YADA 0.039; |
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Benchmark qw/:all/; | |
# 입력 (A,(B,(D,(d,_,_),_),(E,_,_)),(C,(F,_,(f,_,_)),(G,(g,_,_),_))) | |
# 위 입력을 받아 A를 root로 하는 트리 구조를 구성 | |
# | |
# G | |
# g |
This file contains 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
import static com.sun.btrace.BTraceUtils.*; | |
import java.lang.reflect.Field; | |
import java.util.Map; | |
import com.sun.btrace.BTraceUtils.Sys; | |
import com.sun.btrace.annotations.BTrace; | |
import com.sun.btrace.annotations.OnEvent; | |
import com.sun.btrace.annotations.OnMethod; | |
import com.sun.btrace.annotations.Self; |