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 / 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 / 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 / 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 / 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 / schema.json
Created March 30, 2019 19:11
AJV + Jest - gits #2
{
"fullname": "your full name"
}
@moshfeu
moshfeu / basic-validation.js
Created March 30, 2019 19:18
AJV + Jest - gits #3
import users from './users.json';
const shema = {
"type": "array",
"items": {
"type": "object",
"properties": {
"fullname": {
"type": "string",
"minLength": 2
@moshfeu
moshfeu / wrap-validation-with-it.js
Last active February 20, 2022 17:15
AJV + Jest - gits #4
it.only(`should user's schema be valid`, () => {
const schema = {
"type": "array",
"items": {
"type": "object",
"properties": {
"fullname": {
"type": "string",
"minLength": 2
},
@moshfeu
moshfeu / meaningful-message-custom-matcher.js
Last active December 26, 2019 17:30
AJV + Jest - gits #5
expect.extend({
toBeValid(isValid, errorMessage) {
return {
message: () => isValid ? '' : errorMessage,
pass: isValid
}
}
});
it(`should user's schema be valid`, () => {
@moshfeu
moshfeu / use-custom-keyword.js
Created March 30, 2019 20:12
AJV + Jest - gits #6
const validateSecuredUrl = function (schema, uri) {
return uri.indexOf('https://') === 0;
};
ajv.addKeyword('securedUrl', {
validate: validateSecuredUrl,
errors: true
});
it(`should user's schema be valid`, () => {
@moshfeu
moshfeu / final-code.js
Created March 30, 2019 20:57
AJV + Jest - gits #7
const validateSecuredUrl = function (schema, uri) {
validateSecuredUrl.errors = [{keyword: 'secured', message: 'avatar url must be "https" schema', params: {keyword: 'secured'}}];
return uri.indexOf('https://') === 0;
};
ajv.addKeyword('securedUrl', {
validate: validateSecuredUrl,
errors: true
});