Skip to content

Instantly share code, notes, and snippets.

View lolobosse's full-sized avatar

Lolobosse (old JN) lolobosse

View GitHub Profile
@lolobosse
lolobosse / Clodogamev1.0
Created April 11, 2015 08:46
Clodogame v1 get Tickets every 10 minutes [IMACRO]
VERSION BUILD=8070701 RECORDER=CR
URL GOTO=http://www.clodogame.fr/overview/
TAG POS=2 TYPE=SPAN ATTR=TXT:Actions
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:BUTTON ATTR=NAME:Submit2
WAIT SECONDS=600
URL GOTO=http://www.clodogame.fr/overview/
TAG POS=2 TYPE=SPAN ATTR=TXT:Actions
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=NAME:Submit2
radiusOfMotorShape = 2.5;
radiusOfLinkToMotor = radiusOfMotorShape + 1;
radiusOfHoleInTheMiddleOfBigPlatform = radiusOfLinkToMotor + 1;
radiusOfScrewToFixToMotor = 1.5;
// See: http://www.tid-inox.com/visserie/934a4,41.html
// M3
ePartOfTheThingToCatch = 6.01;
m = 3;
diameterOfLittleHole = (ePartOfTheThingToCatch) + 0.3;
diameterOfBigHole = diameterOfLittleHole + 2;
for(var total=0,i=0;i<$("tbody").children().size();i++){var string=$($("tbody").children()[i]).children()[6].innerHTML,split=string.split(" ");value=parseFloat(split[0])*("MB"==split[1]?1:1e3),total+=value}
@lolobosse
lolobosse / gist:6ce504ff3b53427defe0
Created December 24, 2015 17:11
To regroup x avis files which have been splitted
import re
from subprocess import call
import sys
import os
rootdir = '.'
dictOfFilms = {}
alias ip="ifconfig | egrep -o '([[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3})[[:space:]]netmask[[:space:]]0x[[:xdigit:]]{8}[[:space:]]broadcast'|egrep -o '([[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3})' | pbcopy"
var i = 0;
db.getCollection('fs.files').find({}).forEach(function(element){
if (!db.getCollection('_User').find({profilePicture: element.filename}).toArray().length > 0){
i++;
db.getCollection('fs.files').remove({filename: element.filename})
}
})
print(i)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
daemon off;
#Heroku dynos have at least 4 cores.
worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>;
events {
use epoll;
accept_mutex on;
worker_connections 1024;
}
create table task_tb
(
id serial not null
constraint task_tb_pkey
primary key,
type varchar(110),
arguments varchar(2000),
created_at timestamp,
constraint unique_task
unique (type, arguments)