更新: | 2021-05-23 |
---|---|
作者: | @voluntas |
バージョン: | 2021.1 |
URL: | https://voluntas.github.io/ |
- オープンβ(2017/04/12現在)
- Native Dockerサポート
- より自由度の高い設定
- やたら早い(当社比二倍)
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
class Nyan | |
def replace_method(a, b) | |
(class << self; self end).module_exec do | |
alias_method "#{a}_backup", a | |
alias_method "#{b}_backup", b | |
alias_method b, "#{a}_backup" | |
alias_method a, "#{b}_backup" | |
end | |
end |
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/perl | |
use POSIX qw(setuid setgid); | |
use Unix::Groups qw(setgroups); | |
die "usage: setusergroups username child\n" | |
unless @ARGV >= 2; | |
my $username = shift @ARGV; | |
# get user entry |
サイズがあまりに大きくなってしまったので、gist ではなくて github 上で管理するようにしました。
https://github.com/Shinpeim/process-book
URL 変わっちゃうの申し訳ないんだけど、一覧性が高くなるのと pull req が受け取れるメリットのほうを取ります。せっかく読みにきてくれたのにひと手間かかっちゃってすみません。
Vim Advent Calendar 2012の102日目(2013-03-12)の記事です。
-
W,E,BでのWORD移動を文節単位にする jasegment.vimを作りました。
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
use strict; | |
use warnings; | |
use IO::File; | |
my $filename = shift or die "usage: $0 source > dest"; | |
my $fp = IO::File->new($filename,"r"); | |
my $pcm = ""; | |
while ($fp->read(my $buff,1024)) { | |
$pcm .= $buff; |
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
お (*・ρ・)ジュルリ 名詞 | |
お (*>ヮ<)(>ヮ<*)ネー 名詞 | |
お ヾ(๑╹◡╹)ノ"♡ 名詞 | |
お (╹⌓╹ ) 名詞 | |
お (/ω\) 名詞 | |
お (ヾノ・ω・`)ナイナイ 名詞 | |
お ☆(ゝω・)v 名詞 | |
お ヾ(>ヮ<*)ナデナデ 名詞 | |
お (*/ω\*) 名詞 | |
お (=△=`歩) 名詞 |
NewerOlder