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
// Author: Ae | |
// License: MIT | |
uniform vec2 direction; // = vec2(-1.0, 1.0) | |
const float smoothness = 0.5; | |
const vec2 center = vec2(0.5, 0.5); | |
vec4 transition (vec2 uv) { | |
vec2 v = normalize(direction); |
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 |
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> |
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 |
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 |
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 |