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
| 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 |
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
| 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; |
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/bin/env ruby | |
| # | |
| # Convert blogger (blogspot) posts to jekyll posts | |
| # | |
| # Basic Usage | |
| # ----------- | |
| # | |
| # ./blogger_to_jekyll.rb feed_url | |
| # | |
| # where `feed_url` can have the following format: |
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
| 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} |
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
| import re | |
| from subprocess import call | |
| import sys | |
| import os | |
| rootdir = '.' | |
| dictOfFilms = {} |
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
| 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" |
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 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) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| daemon off; | |
| #Heroku dynos have at least 4 cores. | |
| worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>; | |
| events { | |
| use epoll; | |
| accept_mutex on; | |
| worker_connections 1024; | |
| } |
OlderNewer