Skip to content

Instantly share code, notes, and snippets.

View mtorchiano's full-sized avatar

Marco Torchiano mtorchiano

View GitHub Profile
@mtorchiano
mtorchiano / Incremental Transformation of an Iterable Sequence in Java.md
Last active April 3, 2017 09:28
Incremental Transformation of an Iterable Sequence in Java
@mtorchiano
mtorchiano / ScaricaMarcatori
Last active March 14, 2016 07:51
Classifica Marcatori Serie A
## Python 3 script per scaricare la classifica dei marcatori
##
import urllib.request
from bs4 import BeautifulSoup
print("Downloading page...")
page=urllib.request.urlopen("http://sport.repubblica.it/marcatori/A").read()
print("Parsing and extracting data...")
soup = BeautifulSoup(page,"html.parser")
@mtorchiano
mtorchiano / .block
Last active February 16, 2016 15:57
Yoda Pie Chart D3js
license: gpl-3.0
@mtorchiano
mtorchiano / YodaPieChart.R
Created February 10, 2016 17:02
Yoda Pie Chart
d=c("Do"=.5,"Do not"=.5,"Try"=0)
par(mar=c(0,0,1,5))
pie(d,col=0:2,main="Your options according to Yoda")
legend(1,1,legend=names(d),fill=0:2,bty="n",xpd=T)