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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Copied from https://gist.github.com/eugenet8k/535bf3c51d1fc7c31cb8784e55d4dae4.
I have tweaked a bit the console logs.
Add to ~/.config/fish/config.fish
:
function __check_nvm --on-variable PWD --description 'Checking nvm'
if test -f .nvmrc
- Add saved replies at: https://github.com/settings/replies
- How to use those: https://help.github.com/en/github/writing-on-github/using-saved-replies
🛑 Blocking:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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): |