This file contains hidden or 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
// ==UserScript== | |
// @name Sketchfab Model tools | |
// @namespace http://svay.com/ | |
// @version 0.1 | |
// @description Useful tools for Sketchfab models | |
// @author Maurice Svay | |
// @match https://sketchfab.com/models/* | |
// @grant GM_addStyle | |
// @require http://code.jquery.com/jquery-latest.js | |
// ==/UserScript== |
This file contains hidden or 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
{ | |
"require": { | |
"suin/php-rss-writer": "^1.3", | |
"erusev/parsedown": "^1.6" | |
} | |
} |
This file contains hidden or 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
#!/bin/bash | |
# update hooks; note that this hook will still execute its current version and not | |
# the updated one | |
#git pull --rebase &>/dev/null | |
branch_name=$( git rev-parse --abbrev-ref HEAD ) | |
is_special_branch=$( echo "${branch_name}" | grep -i "^\(hotfix\|develop\|master\|HEAD\)" ) | |
if [ ! "${is_special_branch}" ] |
This file contains hidden or 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
// | |
// This program is free software; you can redistribute it and/or | |
// modify it under the terms of the GNU General Public License | |
// as published by the Free Software Foundation; either version 2 | |
// of the License, or (at your option) any later version. | |
// | |
// This program is distributed in the hope that it will be useful, | |
// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
// GNU General Public License for more details. |
Ces sites sont spécialisés dans les nouvelles technologies en France : postes dans une startup, agence, éditeurs, SSII, etc.
This file contains hidden or 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/local/bin/node | |
var http = require('http'); | |
var exec = require('child_process').exec; | |
var url = 'http://api.citybik.es/velib.json'; | |
// var lat = '48.8836694'; | |
// var lon = '2.3736453'; | |
var id = 19030; | |
command = '/home/pi/blink1-tool -m 100 --rgb 50,50,50'; |
This file contains hidden or 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
var exec = require('child_process').exec; | |
var http = require("http"); | |
var fs = require('fs'); | |
var APIKEY = 'c8c4da831d5c'; | |
function showScrape(filename, callback) { | |
var url = "http://api.betaseries.com/shows/scraper.json?key=" + APIKEY + "&file="; | |
url = url + encodeURIComponent(filename); | |
http.get(url, function(res) { |