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
var Ajv = require('ajv'); | |
var ajv = new Ajv(); | |
var validate = ajv.compile(schema); | |
var valid = validate(data); | |
if (!valid) console.log(validate.errors); |
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 { DefinePlugin } = require('webpack'); | |
module.exports = { | |
entry: './src/components/main.tsx', | |
module: { | |
rules: [ | |
{ | |
test: /\.ts|.tsx?$/, | |
use: 'ts-loader', | |
exclude: /node_modules/ |
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
// convert mov to gif | |
ffmpeg -i video.mov -vf palettegen palette.png | |
ffmpeg -i video.mov -i palette.png -lavfi paletteuse=bayer_scale=4:dither=bayer -r 18 -s 320x399 video.gif | |
// crop gif | |
// https://stackoverflow.com/a/14036766/863110 | |
convert input.gif -coalesce -repage 0x0 -crop WxH+X+Y +repage output.gif |
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
// ---- | |
// Sass (v3.4.25) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin parent($with-selector: '') { | |
@each $selector in & { | |
$l: length($selector) + 1; |
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
{% raw %} | |
{% for tag in site.tags %} | |
... | |
{% endfor %} | |
{% endraw %} |
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 { spawn } = require('child_process'); | |
module.exports = { | |
entry: { | |
// ... | |
// add this to let webpack watch on the test files changes | |
tests: './test/path-to-the-tests-entry.js' | |
}, | |
// .. | |
plugins: [ |
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
{% for tag in site.tags %} | |
<li><a href="/tags/{{ tag[0] | slugify }}" class="post-tag">{{ tag[0] }}</a></li> | |
{% endfor %} |
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
#!/bin/bash | |
# run chmod +x .git/hooks/pre-commit | |
TAGS=() | |
for f in $(find . -name '*.md' -mindepth 1 -maxdepth 10 -type f) ; | |
do | |
# echo "$f" | |
while read line | |
do | |
if [[ $line =~ (tags: )(\[(.*)\]) ]]; |
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 {text} = activeEditor.document.lineAt(activeEditor.selection.active.line); |