split -b 1024m filename.tar.gz 'filename.tar.gz.part-'cat filename.tar.gz.part-* > filename.tar.gz | // Tailwind colors for Flexoki theme by Steph Ango. https://stephango.com/flexoki | |
| const colors = { | |
| base: { | |
| black: '#100F0F', | |
| 950: '#1C1B1A', | |
| 900: '#282726', | |
| 850: '#343331', | |
| 800: '#403E3C', | |
| 700: '#575653', |
| #!/bin/sh | |
| # An hook script to verify changes to be committed do not contain | |
| # any 'FIXME:' comments. Called by "git commit" with no arguments. | |
| # | |
| # The hook should exit with non-zero status after issuing an appropriate | |
| # message if it stops the commit. | |
| # | |
| # To bypass this hook, use the "--no-verify" parameter when committing. |
| /** | |
| * Given "0-360" returns the nearest cardinal direction "N/NE/E/SE/S/SW/W/NW" | |
| */ | |
| export function getCardinal(angle) { | |
| /** | |
| * Customize by changing the number of directions you have | |
| * We have 8 | |
| */ | |
| const degreePerDirection = 360 / 8; |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |