Skip to content

Instantly share code, notes, and snippets.

Avatar

JobNinja Lolobosse lolobosse

View GitHub Profile
@lolobosse
lolobosse / Clodogamev1.0
Created April 11, 2015 08:46
Clodogame v1 get Tickets every 10 minutes [IMACRO]
View Clodogamev1.0
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
View Screw counter (tbd)
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;
View Get sum of t411 column in Future Téléchargements
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
View gist:6ce504ff3b53427defe0
import re
from subprocess import call
import sys
import os
rootdir = '.'
dictOfFilms = {}
View gist:1dd21daf81d24fa712757a88ef7b61bd
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"
View Cleanup Parse Direct from Mongo
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)
View Jobninja logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Jobninja_red logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:127b767a5ba14c5dcaea1bb09f601642
daemon off;
#Heroku dynos have at least 4 cores.
worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>;
events {
use epoll;
accept_mutex on;
worker_connections 1024;
}
View task_db.sql
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)