View es6-reverse-string.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const name = 'Hello World'; | |
[...name].reverse().join(''); // dlroW olleH |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="js-view grid"> | |
<div class="js-item grid__item"> | |
<img src="https://images.unsplash.com/uploads/1413142095961484763cf/d141726c?dpr=2&auto=format&crop=entropy&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb" alt="" class="grid__image"/> | |
<p class="grid__text">Lorem</p> | |
</div> | |
<div class="js-item grid__item"> | |
<img src="http://cdn.magdeleine.co/wp-content/uploads/2016/10/pexels-photo-131051-860x1147.jpeg" alt="" class="grid__image"/> | |
<p class="grid__text">Ipsum</p> | |
</div> |
View .tmux.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remap prefix to Control + a | |
set -g prefix C-a | |
# bind 'C-a C-a' to type 'C-a' | |
bind C-a send-prefix | |
unbind C-b | |
# bind clear scrollbar | |
bind -n C-k clear-history | |
# clipboard | |
setw -g mode-keys vi |
View search.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import | |
import { dom } from 'core' | |
import Tween from 'gsap' | |
import Packery from 'packery' | |
import Bigwheel from 'bigwheel' | |
import { debounce } from 'underscore' | |
import Handlebars from 'bw-handlebars' | |
import Views from '../../views/' | |
import Model from '../../models/search/search' | |
// Define |
View gist:cfc44b8d299133c5a219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import | |
import Core from 'core' | |
import Tween from 'gsap' | |
import Packery from 'packery' | |
import Bigwheel from 'bigwheel' | |
import { debounce } from 'underscore' | |
import Handlebars from 'bw-handlebars' | |
import Model from '../../models/seenapse/seenapse' | |
import Views from '../../views/' | |
// Define |