Skip to content

Instantly share code, notes, and snippets.

@proshunsuke
proshunsuke / howToCoding.js
Last active January 2, 2016 23:49
JavaScriptを書く時のルール
// jsの書き方
// 以下の通りに書く
// letによるブロックスコープを用いる
// 利点: まっとうな方法
// hack ではなく非常にシンプル
// private 変数のアクセスには prefix 不要
// 欠点: let によるブロックスコープをサポートするブラウザ限定
// Firefox 2.0 からサポートされているので拡張機能開発では問題ない
// public 変数のアクセスには prefix が必要
@nicolashery
nicolashery / solarized-dark.css
Last active March 25, 2022 08:38 — forked from scotu/solarized.css
Solarized theme stylesheets for Jekyll and Pygments
/* Solarized Dark
For use with Jekyll and Pygments
http://ethanschoonover.com/solarized
SOLARIZED HEX ROLE
--------- -------- ------------------------------------------
base03 #002b36 background
base01 #586e75 comments / secondary content
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 1, 2024 03:34
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@Rarst
Rarst / deprecated.md
Last active February 21, 2023 11:21
WordPress coding standards configuration for PhpStorm

Now Native

PhpStorm now bundles WordPress coding style natively, starting from version 8.

  1. Go to Project Settings > Code Style > PHP.
  2. Select Set From... (top right of window) > Predefined Style > WordPress.

No longer need to muck with this import! :)