Skip to content

Instantly share code, notes, and snippets.

View moshfeu's full-sized avatar
🇮🇱
Standing for

Mosh Feu moshfeu

🇮🇱
Standing for
View GitHub Profile
@moshfeu
moshfeu / basic-example.js
Last active March 30, 2019 19:10
AJV + Jest - gits #1
var Ajv = require('ajv');
var ajv = new Ajv();
var validate = ajv.compile(schema);
var valid = validate(data);
if (!valid) console.log(validate.errors);
@moshfeu
moshfeu / webpack.config.js
Last active February 5, 2019 20:29
Electron post - step 2
const { DefinePlugin } = require('webpack');
module.exports = {
entry: './src/components/main.tsx',
module: {
rules: [
{
test: /\.ts|.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
@moshfeu
moshfeu / itags.ts
Created January 6, 2019 10:27
enum for audio youtube qualities
// https://gist.github.com/sidneys/7095afe4da4ae58694d128b1034e01e2
export enum ITagYtQuality {
m4a_48k = 139,
webm_50k = 249,
webm_70k = 250,
m4a_128k = 140,
webm_128k = 171,
webm_160k = 251,
m4a_256k = 141,
}
@moshfeu
moshfeu / commands.sh
Created December 2, 2018 06:07
videos and gifs manipulation in terminal
// 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
@moshfeu
moshfeu / SassMeister-input.scss
Last active November 20, 2018 07:11
sass mixin for parent with class
// ----
// Sass (v3.4.25)
// Compass (v1.0.3)
// ----
@mixin parent($with-selector: '') {
@each $selector in & {
$l: length($selector) + 1;
@moshfeu
moshfeu / some-post.html
Last active October 28, 2018 06:51
Using {% raw %} in Jekyll
{% raw %}
{% for tag in site.tags %}
...
{% endfor %}
{% endraw %}
@moshfeu
moshfeu / webpack.config.js
Created October 27, 2018 20:06
A webpack.config to run jest tests after compile
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: [
@moshfeu
moshfeu / example.rb
Created October 22, 2018 21:07
display tags list in jekyll page
{% for tag in site.tags %}
<li><a href="/tags/{{ tag[0] | slugify }}" class="post-tag">{{ tag[0] }}</a></li>
{% endfor %}
@moshfeu
moshfeu / pre-commit
Last active September 28, 2018 11:26
pre-commit file to github pages to generate tags pages
#!/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: )(\[(.*)\]) ]];
@moshfeu
moshfeu / extension.js
Created September 22, 2018 22:02
Get current line content in vscode extension
const {text} = activeEditor.document.lineAt(activeEditor.selection.active.line);