Skip to content

Instantly share code, notes, and snippets.

View Charliechin's full-sized avatar
🏠
Working from home

Carlos Diaz Charliechin

🏠
Working from home
View GitHub Profile
@Bananattack
Bananattack / Instructions - Pico8 Sublime.md
Last active February 5, 2021 19:36
PICO-8 syntax highlighting and theme in Sublime Text 2.

PICO-8 in Sublime Text 2

Syntax Highlighting

  1. Open up your Packages folder by going Preferences >> Browse Packages...
  2. Create a new folder named "Pico8"
  3. Save the Pico8.tmLanguage file there.

Color Scheme

alert('hello ' + document.location.href);
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active November 20, 2025 19:40
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')