Skip to content

Instantly share code, notes, and snippets.

View msh5's full-sized avatar
Vamos Kobe !

Sho Minagawa msh5

Vamos Kobe !
View GitHub Profile
@kotakanbe
kotakanbe / mohikan_slack_channels.md
Last active November 22, 2024 11:30
モヒカンslack( https://mohikan.slack.com )のチャネルリスト
@jemc
jemc / supervisor.rb
Last active November 22, 2017 21:31
Controlling supervisord from Ruby using XMLRPC over Unix sockets.
require "net/http"
require "socket"
gem "libxml-xmlrpc"
require "xml/libxml/xmlrpc"
module Supervisor
class << self
attr_accessor :socket_path
@maxtruxa
maxtruxa / Antonyms.md
Last active August 3, 2025 17:13
A list of common terms used in programming and their respective antonyms.

Antonym List

Note: The table headings (positive/negative) are not necessarily meaningful.

Positive Negative
acquire release
add remove (e.g. an item), subtract (arithmetic)
advance retreat
allocate deallocate (correct), free (common)
allow deny
@hail2u
hail2u / cycle-metasyntactic-variables.vim
Created September 14, 2013 11:55
'foo', 'bar', 'baz', 'qux', 'quux', 'corge', 'grault', 'garply', 'waldo', 'fred', 'plugh', 'xyzzy', 'thud'の上で<C-a>/<C-x>すると順にサイクルしてくれるやつ。レジスター使ってる。
" Cycle metasyntactic variables
function! s:CycleMetasyntacticVariables(num)
if type(a:num) != type(0)
return
endif
let vars = ['foo', 'bar', 'baz', 'qux', 'quux', 'corge', 'grault', 'garply', 'waldo', 'fred', 'plugh', 'xyzzy', 'thud']
let cvar = expand('<cword>')
let i = index(vars, cvar)
@kozy4324
kozy4324 / launchd_memo.md
Last active March 11, 2024 03:56
launchd, launchctlについて(導入編)

launchd, launchctl

man

$ man launchd
$ man launchctl
$ man launchd.plist

$ man plutil

@tav
tav / rust.lang
Created October 6, 2012 22:32
Rust syntax highlighter for less via source-highlight
preproc = "import","package"
include "c_comment.lang"
include "number.lang"
string delim "\"" "\"" escape "\\"
string delim "'" "'" escape "\\"
string delim "`" "`" escape "\\" multiline