Skip to content

Instantly share code, notes, and snippets.

View fabiendem's full-sized avatar

Fabien Demangeat fabiendem

  • London, UK
View GitHub Profile
@fabiendem
fabiendem / sdis-twitter.csv
Last active June 7, 2020 11:47 — forked from ThomasG77/sdis-twitter.csv
Comptes SDIS sur Twitter au 6 juin 2020 - Fork pour corriger le format
departement compte url commentaires
01 sdis01 https://twitter.com/sdis01
02 Sdis02 https://twitter.com/Sdis02
03 sdis03 https://twitter.com/sdis03
04 Pompiers04 https://twitter.com/Pompiers04
05 sdis05 https://twitter.com/sdis05
06 Sdis_06 https://twitter.com/Sdis_06
07 SDISPompiers07 https://twitter.com/SDISPompiers07
08 sdis08 https://twitter.com/sdis08
09 sdis09 https://twitter.com/sdis09
alias.ec=config --global -e
alias.co=checkout
alias.cob=checkout -b
alias.ci=commit
alias.st=status
alias.br=branch
alias.di=diff
alias.dl=pull
alias.up=push
@fabiendem
fabiendem / check_nvm_fish.md
Last active April 24, 2020 10:17
Check nvm - Fish shell [:fish:]
@fabiendem
fabiendem / saved_replies.md
Last active November 15, 2023 19:22
Saved replies for PR Reviews
@fabiendem
fabiendem / Android_db_creator
Last active August 29, 2015 14:20
Android DB Creator
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@fabiendem
fabiendem / serve_cors
Created March 25, 2015 17:39
Serve local files with Allow-origin: *
#!/usr/bin/env python
import SimpleHTTPServer
class MyHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def end_headers(self):
self.send_my_headers()
SimpleHTTPServer.SimpleHTTPRequestHandler.end_headers(self)
def send_my_headers(self):