Skip to content

Instantly share code, notes, and snippets.

View cmalard's full-sized avatar

Cédric Malard cmalard

View GitHub Profile
@cmalard
cmalard / package.json
Last active February 7, 2020 14:01
Swagger - script to automate generation of client library
// For JavaScript project - `npm run update:api`
{
"scripts": {
"update:api": "./tools/update-api-swagger.sh"
}
}
@cmalard
cmalard / History|-13d00fb2|entries.json
Last active April 26, 2022 13:10
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///home/cedric/Projects/front-end/apps/client/test.md","entries":[{"id":"6TJ8.md","timestamp":1649269142872}]}
@cmalard
cmalard / subl
Last active February 13, 2019 20:23 — forked from versedi/.sh
Cygwin + Sublime Text 3 : works with files and Git
#!/bin/bash
# To create in [.babun/]cygwin/usr/local/bin/subl with chmod +x
ARGS=""
while test $# -gt 0
do
ARGS="$ARGS ${1#/cygdrive/[a-zA-Z]}"; # Remove /cygdrive and disk letter from the path
shift
done