Skip to content

Instantly share code, notes, and snippets.

View nicolinuxfr's full-sized avatar
🏠
Working from home

Nicolas Furno nicolinuxfr

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am nicolinuxfr on github.
  • I am nicolasfurno (https://keybase.io/nicolasfurno) on keybase.
  • I have a public key whose fingerprint is 14C5 6C57 4543 745F 9AD7 77A9 4AEE D6BE 09DD 7D2C

To claim this, I am signing this object:

@nicolinuxfr
nicolinuxfr / MAJ auto Chrome.scpt
Last active August 29, 2015 14:10
Script pour couper les mises à jour automatiques de Chrome
-- Affichage d'une notification
on notif(message)
display notification message with title "Mises à jour Chrome"
delay 1
end notif
-- Lecture du paramètre actuel
set majAuto to do shell script "defaults read com.google.Keystone.Agent checkInterval" as string
-- Modification : si les mises à jour étaient coupées, alors les relancer. Et vice-versa.
@nicolinuxfr
nicolinuxfr / gist:304a20815f0922dc88e4
Last active August 29, 2015 14:04
Lettre résiliation Free Mobile
Prenom NOM
XX rue adresse
XXXXX VILLE
Free Mobile
Service abonnés
75371 PARIS Cedex 08
Référence client : XXXXXXXX
@nicolinuxfr
nicolinuxfr / search.js
Last active January 2, 2016 18:19 — forked from amyinorbit/search.js
Ajout : gestion des caractères accentués.
var searchIndex = null;
var results = [];
jQuery(document).ready(function() {
Search.getSearchIndex();
jQuery('#s').keyup(function() {
// get search term
var search_term = jQuery(this).val().toLowerCase();
// run the search
Search.doSearch(search_term);