Skip to content

Instantly share code, notes, and snippets.

View jeremyben's full-sized avatar
🐔
NaN hopefully.

Jeremy Bensimon jeremyben

🐔
NaN hopefully.
  • France
View GitHub Profile
@jeremyben
jeremyben / generators.scss
Last active October 8, 2019 08:36
Size Generators (margin, padding, font-size) #scss #stylus
// Generate class helpers for size properties such as margin, padding, font-size
// Usage :
// @include marginer(5, 60, 5)
// .mt5 will then add margin-top:5px to the element,
// and so on for each side, from 5px to 60px with a 5px step.
@mixin marginer($min, $max, $step) {
.mt#{$min} {margin-top: $min*1px}
.mb#{$min} {margin-bottom: $min*1px}
.ml#{$min} {margin-left: $min*1px}
/**
* Use with await to have synchrone delay
*/
const delay = (ms: number) => new Promise<void>(resolve => setTimeout(resolve, ms))
/**
* Retry a promise a number of times if it failed
*/
async function retry<T>(promise: Promise<T>, maxRetries: number, delayBetweenRetriesMs: number = 0) {
let res: T
// https://www.typescriptlang.org/docs/handbook/advanced-types.html
// https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-8.html
/**
* Enlève les clés K de T (plus précis que le Omit natif).
*/
type OmitStrict<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>
/**
* Récupère la version promisifiée d'une fonction.
/**
* Defines a getter on a specified object that will be created upon first use.
*
* https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/XPCOMUtils.jsm#defineLazyGetter()
* https://dxr.mozilla.org/mozilla-central/source/js/xpconnect/loader/XPCOMUtils.jsm#120
*/
function defineMemoizedGetter(object: any, prop: string, fn: Function) {
let redefining = false
Object.defineProperty(object, prop, {
@jeremyben
jeremyben / express-assets-storage-proxy.ts
Created November 24, 2018 19:08
Express Proxy Requests for Local and Remote Service Parity
// High availability apps require that no distinction be made between local and remote services.
// Attached resources should be accessed by environment variables,
// and in doing so allow you to swap out one attached resource for another.
// Let's setup a reverse proxy that directs image path requests and routes them through a defined server URL.
// By doing so, we decouple server requests for images which allows for easy switching
// from locally served image assets to a CDN by simply updating an environment variable.
import * as express from 'express'
import * as proxy from 'express-http-proxy'
// pipe's operator function maps an Observable<T> to an Observable<R>
// lift's operator function maps an Observer<R> to an Observer<T>
//
// This is just another way to represent the idea of either:
// building an Observable chain down from the source to the sink
// or building an Observer chain up from the sink to the source
//
// Pipe Implementation
//
@jeremyben
jeremyben / _functions.scss
Created December 11, 2018 11:33
Sass Functions
/**
* Clamp number between min and max
*/
@function clamp($value, $min, $max) {
@return if($value > $max, $max, if($value < $min, $min, $value));
}
/**
* Get a list from all possible abbreviations of a string
* Ex : abbr(yolo) => (y, yo, yol, yolo)
@jeremyben
jeremyben / proper-fork-node.md
Last active August 9, 2023 02:09
Proper fork workflow for a node module repo that does'nt want to merge your perfectly fine pull request.

Fork it

Clone your fork :

git clone git@github.com:YOU/FORK
{
"$id": "https://lerna.js.org/",
"type": "object",
"properties": {
"version": {
"$id": "/properties/version",
"type": "string",
"description": "The current version of the repository.",
"examples": [
"1.1.3"
@jeremyben
jeremyben / ts-build-api.ts
Last active April 6, 2024 19:38
Typescript programmatic build with tsconfig.json (run with `ts-node -T`)
import * as path from 'path'
import ts from 'typescript'
function build(
override: {
compilerOptions?: ts.CompilerOptions
include?: string[]
exclude?: string[]
files?: string[]
extends?: string