Skip to content

Instantly share code, notes, and snippets.

@straggler7
straggler7 / iterm2-solarized.md
Created July 28, 2022 11:49 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@straggler7
straggler7 / introrx.md
Created September 5, 2019 15:57 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@straggler7
straggler7 / tmux-cheatsheet.markdown
Created September 10, 2018 13:49 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@straggler7
straggler7 / Makefile
Created August 15, 2018 14:11 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@straggler7
straggler7 / user.controller.js
Created October 18, 2017 18:57 — forked from annebione/user.controller.js
A simple AngularJS CRUD using $resource and following Todd Motto's style guide. You must install Angular's $resource before anything else. (For example, you can install through Bower: bower install angular-resource)
function UserController($location, UserService) {
var vm = this;
var userInsert = UserSerice.createUser;
var userControl = UserService.userFactory;
vm.createUser = function () {
userInsert.create(vm.user);
$location.path('/users');
@straggler7
straggler7 / railscasts_episodes.txt
Created October 12, 2016 18:51 — forked from ryanb/railscasts_episodes.txt
List of all RailsCasts episode names with numbers
001-caching-with-instance-variables
002-dynamic-find-by-methods
003-find-through-association
004-move-find-into-model
005-using-with-scope
006-shortcut-blocks-with-symbol-to-proc
007-all-about-layouts
008-layouts-and-content-for
009-filtering-sensitive-logs
010-refactoring-user-name-part-1
@straggler7
straggler7 / SassMeister-input.scss
Created June 9, 2015 16:03
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
@mixin animation($animate...) {
$max: length($animate);
$animations: '';
@for $i from 1 through $max {
$animations: #{$animations + nth($animate, $i)};