start new:
tmux
start new with session name:
tmux new -s myname
| // ---- | |
| // libsass (v3.2.4) | |
| // ---- | |
| @mixin animation($animate...) { | |
| $max: length($animate); | |
| $animations: ''; | |
| @for $i from 1 through $max { | |
| $animations: #{$animations + nth($animate, $i)}; |
| 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 |
| 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'); |
| # 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. |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.