Skip to content

Instantly share code, notes, and snippets.

View adelin-b's full-sized avatar
🎯
Focusing

Adelin Berard adelin-b

🎯
Focusing
  • Paris
View GitHub Profile
@adelin-b
adelin-b / norgtion.org
Last active January 6, 2021 18:39
Notion attempt in orgmode

[1/4] Media

La fin du monde en 80 jours

@adelin-b
adelin-b / spleeter.ipynb
Last active May 10, 2021 19:27
spleeter.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adelin-b
adelin-b / afiaka-dall-e-generation.ipynb
Created August 29, 2021 20:54
Afiaka DALL-E Generation.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adelin-b
adelin-b / TransformBooleanPipe.ts
Last active August 31, 2021 07:55
Nest js pipe to transform query string boolean into boolean using open api metadata
import { PipeTransform, Injectable, ArgumentMetadata } from "@nestjs/common";
type TrueArgumentMetadata = ArgumentMetadata & {
metatype: { _OPENAPI_METADATA_FACTORY: () => Record<string, any> };
};
@Injectable()
export class TransformBooleanPipe implements PipeTransform<any> {
transform(value: any, { metatype }: TrueArgumentMetadata) {
if (!metatype || !this.toValidate(metatype)) {
@adelin-b
adelin-b / open-all-links-in-new-tab.js
Last active March 3, 2022 09:50
Click all link on a page matching regex or css selector and open in new tab