Skip to content

Instantly share code, notes, and snippets.

@simon2k
simon2k / .tmux.conf
Created August 15, 2015 16:26
tmux config
# set-option start index
set-option -g base-index 1
# default time to repeat
set-option -g repeat-time 1000
# reload..
bind-key r source-file ~/.tmux.conf \; display "Reloaded!"
# bind-key keys for split window
class User
# created by session id to identify children
field :sessionId, String
end
class Card
field :frontMeaning, String
field :frontPicture, Picture
field :backMeaning, String
field :backPicture, Picture
// JavaScript Document
function escape_frame()
{
if (window != top)
{
alert(location.href);
top.location.href = location.href+'?checkJS=true';
}
}
// JavaScript Document
function escape_frame()
{
if (window != top)
{
alert(location.href);
top.location.href = location.href+'?checkJS=true';
}
}
// under-test.ts
import { myFunc } from './service';
export class UnderTest {
display() {
const val = myFunc('abc');
console.log('display');
return val;
}
@simon2k
simon2k / git_verification.md
Last active September 3, 2018 21:01 — forked from stevo/git_verification.md
GIT Skills Verification

Be prepared to show following GIT CLI skills in action. All skills are required to get :

Working with GIT using CLI 🔹

  • can checkout new branch
  • can switch between branches
  • can display and understand git log
  • can add changes (progressively, all at once, selected files)
    • can split changesets when adding changes progressively
  • can edit changesets when adding changes progressively