Skip to content

Instantly share code, notes, and snippets.

View skyend's full-sized avatar
🐢
Slow and pierce the world

Skyend skyend

🐢
Slow and pierce the world
View GitHub Profile
@skyend
skyend / cat2
Created January 31, 2013 03:57
#!/usr/bin/perl
use strict;
use warnings;
for my $file_name ( @ARGV ){
open my $fh, '<', $file_name;
print "\n$file_name\n\n";
@skyend
skyend / create_module.pl
Last active December 11, 2015 09:09
Node.js Module creator 생성자를 포함하는 형식의 모듈 템플릿을 생성하는 스크립트
#!/usr/bin/perl
use strict;
use warnings;
use 5.010;
# Use
# ./create_module.pl ./lib/Model/A
@skyend
skyend / create_bin_from_one_cpp.pl
Last active December 11, 2015 07:49
C++ 단일 컴파일 펄스크립트
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;
for(@ARGV) {
/$(\w+)\.cpp^/;
say "confile $_ to $1";
@skyend
skyend / gist:3969092
Created October 28, 2012 16:35
QtSDK install for ubuntu
sudo apt-get update
sudo apt-get install libqt4-dev qt4-qmake cmake r-base-dev libcurl4-gnutls-dev