Hello.
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
CREATE TRIGGER person_notify AFTER INSERT OR UPDATE OR DELETE ON income | |
FOR EACH ROW EXECUTE PROCEDURE notify_trigger( | |
'id', | |
'email', | |
'username' | |
); | |
CREATE TRIGGER income_notify AFTER INSERT OR UPDATE OR DELETE ON income | |
FOR EACH ROW EXECUTE PROCEDURE notify_trigger( | |
'id', |
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
--- | |
# Exemple de service et de route pour une application fictive | |
# "ask-camera-awake-everywhere" (le nom est quelconque bien sûr) | |
# | |
# Va bien avec | |
# | |
# oc run --restart=Never -it --image=busybox ask-camera-awake-everywhere | |
# | |
# dans lequel on peut par exemple lancer | |
# |
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
#Rules for ic.epfl.ch (natalie) | |
RedirectMatch 301 ^/$ https://www.epfl.ch/schools/ic/ | |
RedirectMatch 301 ^/en/?$ https://www.epfl.ch/schools/ic/ | |
RedirectMatch 301 ^/fr/?$ https://www.epfl.ch/schools/ic/fr/ | |
RedirectMatch 301 ^/computer-science/?$ https://www.epfl.ch/schools/ic/education/ | |
RedirectMatch 301 ^/informatique/?$ https://www.epfl.ch/schools/ic/fr/education-fr/ | |
RedirectMatch 301 ^/communication-systems/?$ https://www.epfl.ch/schools/ic/education/ | |
RedirectMatch 301 ^/systemes-communication/?$ https://www.epfl.ch/schools/ic/fr/education-fr/ | |
RedirectMatch 301 ^/data-science/?$ https://www.epfl.ch/schools/ic/education/master/data-science/ | |
RedirectMatch 301 ^/science-donnees/?$ https://www.epfl.ch/schools/ic/fr/education-fr/master-fr/data-science/ |
I hereby claim:
- I am domq on github.
- I am domq (https://keybase.io/domq) on keybase.
- I have a public key ASASSXzh-SuLy32a4ibB50ujvZfaT4az_fIH_7wJDS3-5wo
To claim this, I am signing this object:
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/perl -w | |
use strict; | |
use utf8; | |
use Encode qw(decode); | |
use Text::CSV; | |
use Net::LDAP; | |
use Error qw(:try); |
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
;; .emacs, fichier de configuration d'emacs de Dom | |
;; | |
;; MODE D'EMPLOI | |
;; | |
;; Ce .emacs ambitionne de fonctionner tel quel sur toute installation fraîche | |
;; d'Emacs 23 ou ultérieur. | |
;; | |
;; Ce .emacs fonctionne main dans la main avec la fonction "Customize" d'Emacs, | |
;; de sorte qu'il est possible de tout personnaliser sans modifier ni même | |
;; comprendre l'Emacs Lisp. Essayez les combinaisons de touches suivantes : |
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
Homebrew build logs for libtool on Mac OS X 10.10.5 | |
Build date: 2016-06-29 10:40:23 |
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
Homebrew build logs for libtool on Mac OS X 10.10.5 | |
Build date: 2016-06-29 09:53:59 |
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
/** | |
* Search-as-you-type support. | |
* | |
* Inspired from meteorhacks:search-source, but uses a subscription instead of | |
* a call. Streams results. Signals end of search with success or error. | |
* Throttles searches to match the server-side speed. | |
*/ | |
Search = function Search(name) { | |
this.name = name; |
NewerOlder