Skip to content

Instantly share code, notes, and snippets.

View masaponto's full-sized avatar
🍣
🍣

Ponto masaponto

🍣
🍣
View GitHub Profile
@knishioka
knishioka / install-emacs-packages.sh
Last active August 25, 2022 00:30
コマンドラインからemacsのpackageのインストール
emacs --batch --eval "(require 'package)" \
--eval "(add-to-list 'package-archives '(\"melpa\" . \"https://melpa.org/packages/\") t)" \
--eval "(package-refresh-contents)" \
--eval "(package-initialize)" \
--eval "(package-install 'flymake-python-pyflakes))" \
--eval "(package-install 'guru-mode))" \
--eval "(package-install 'helm))"
@y2q-actionman
y2q-actionman / a_road_to_common_lisp_jp.md
Last active January 6, 2024 11:32
A Road to Common Lisp 翻訳

この文章は、 Steve Losh 氏の記事 "A Road to Common Lisp" の翻訳です。

原文はこちらです: http://stevelosh.com/blog/2018/08/a-road-to-common-lisp/


A Road to Common Lisp (Common Lisp への道)

これまで、「最近のCommon Lispをどう学ぶとよいでしょう?」と助言を求めるメールをたくさん受け取ってきました。そこで私は、これまでメールやソーシャルメディアに投稿した全てのアドバイスを書き下すことにしました。これが誰かに有益ならば幸いです。

@yutopp
yutopp / 温泉.md
Last active February 10, 2020 03:28

適当に感想を書くので、ググって行ってどうぞ。 多分全部日帰りで使えるところです。

北海道

名前 感想 行った回数 行った時期 オススメ感
第一滝本館 登別の地獄谷が窓から全部見られる。温泉の種類も多く、露天風呂からは季節によっては紅葉とかも見られそうだった。少し割高なものの、1日中居られそうな気がするくらい充実していると思う。 1 晩夏/昼 95点

会津(若松のほう)

|名前|感想|行った回数|行った時期|オススメ感|

@mono0926
mono0926 / commit_message_example.md
Last active March 29, 2024 03:40
[転載] gitにおけるコミットログ/メッセージ例文集100
@icm7216
icm7216 / listings-setup.tex
Created June 13, 2016 14:50
PandocとLuaLaTeXを使ったPDF出力でコードブロックをきれいに表示する。 lstlisting 環境の設定ファイル。
\usepackage{luatexja}
\usepackage[ipa]{luatexja-preset}
\usepackage[a4paper,margin=2cm,truedimen]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{listings}
\usepackage{xcolor}
\lstset{
basicstyle=\ttfamily,
keywordstyle=\color[RGB]{33,74,135}\bfseries,
@sanukin39
sanukin39 / removeAlpha.sh
Created May 2, 2016 06:39
imagemagickを使って一括でpngの透過除去を行うスクリプト(変換された画像はサブフォルダに出力される)
#!bin/sh
# 保存用のサブフォルダを作成
mkdir nonalpha
# 同フォルダ内にあるpngを取得
for file in `\find . -maxdepth 1 -type f -name '*.png'`; do
echo convert ${file}
convert ${file} \( +clone -alpha opaque -fill SkyBlue -colorize 100% \) +swap -geometry +0+0 -compose Over -composite -alpha off nonalpha/${file}
done
@matsubara0507
matsubara0507 / introduction2Pwn.md
Last active January 6, 2024 15:21
楽しいPwn入門

たのしいPwn入門

What is This ?

IGGG Advent Calender 2015のために書いた記事です。
常設CTFで遊んでたらPwnable系の問題を解いてるうちにいろいろと勉強になったのでまとめます。

Pwnable

PwnableとはCTFのジャンルの1つで、プログラムの脆弱性をつき、本来アクセスできないメモリ領域にアクセスして操作し、フラグを取得する感じの問題です。
別名としてExploitがあります。

@hashrock
hashrock / diag.md
Last active February 26, 2024 05:51
作図系ツール・ライブラリまとめ

シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ

GraphViz

http://www.graphviz.org/

  • C製
  • Doxygen, Moinmoinなどと連携可能
  • ブロック図、クラス図、ネットワーク図など
@griffin-stewie
griffin-stewie / github.css
Last active April 27, 2021 00:46 — forked from andyferra/github.css
Pandoc で github 風 CSS を使った standalone な html を生成するための CSS(要 pandoc 1.12.3) http://griffin-stewie.hatenablog.com/entry/2014/03/28/125029
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@dashed
dashed / github-pandoc.css
Created September 26, 2013 13:42
GitHub-like CSS for pandoc standalone HTML files (perfect for HTML5 output). Based on Marked.app's GitHub CSS. Added normalize.css (v2.1.3) in the prior to GitHub css.
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/