Milano-Sanremo 2013
Un bellissimo video del Servizio Corse Vittoria: Una Milano-Sanremo da sportivi tosti!
Un bellissimo video del Servizio Corse Vittoria: Una Milano-Sanremo da sportivi tosti!
Lyncinsider Lync Connectivity Analizer
On windows CLI we can use find’s /c parameter to count the row: /C Displays only the count of lines containing the string. in cooperation with netstat: netstat -an | find /c “YOUR_PORT” i.e: how many https connection on my FE server ? C:\Documents and Settings\gianluca>netstat -an | find /c “443″ 982
Load balancing Jboss with Jakarta Connector and IIS isapi filter could be tricky, especially if you need to use session stickyness. However is only a matter of jvmroute configuration, in fact you need to have worker nodename and jvmroute parameter equal to use sticky session. Jboss 5 – server.xml: <Engine name=”jboss.web” defaultHost=”localhost” jvmRoute=”loadbalancer”> JBoss 7.0 – standalone.xml: <server xmlns=”urn:jboss:domain:1.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”>… Read more →
If you want to install Jboss AS as windows service, you need to download jboss native, extract it and copy the content under the jboss_dir\bin. Then download this service.bat that contain a fix for this behaviour: shutdown the service shutdowns the windows server. I put this line call jboss-cli.bat –connect command=:shutdown >> shutdown.log 2>&1 instead of call shutdown -S < .s.lock >> shutdown.log 2>&1 service on… Read more →
This was a simple python script [ Source Code: drop.py ] I wrote some time ago to download Spamhaus DROP List and automatically send an email with the ip route xxx null0 format. It’s based on regular expression, it’s able to track change to the list. You can schedule with cron, i.e daily, and receive on mail list’s change and then decide to deploy… Read more →
Questa la pagina sul sito di Aaron Swartz, datata 2002, in cui detta il suo testamento virtuale. L’idea che nasce come uno scherzo all’interno della comunità dei programmatori, è purtroppo oggi reale. Aaron si è tolto la vita pochi giorni fa probabilmente sopraffatto dal peso di una condanna legata ai fatti dell’hacking di JSTOR. Ma quello che salta fuori dal… Read more →
Nel campo dell’ IT molte volte si verificano dei comportamenti non attesi e di non immediata comprensione, soprattutto avendo a che fare con numerosi sistemi, dove le casistiche crescono esponenzialmente in funzione del numero di server. L’inizio anno mi ha lasciato un pò di tempo in più per scrivere, speriamo non sia solo il botto iniziale, così torno ad analizzare… Read more →
Uno studio di IDC sponsorizzato da EMC. The Digital Universe in 2020: Big Data, Bigger Digital Shadows, and Biggest Growth in the Far East
To check cluster size on a windows volume, you can issue this on a command promt: fsutil fsinfo ntfsinfo DRIVELETTER | find “Bytes Per Cluster” A sample: C:\Users\lini>fsutil fsinfo ntfsinfo E: | find “Bytes Per Cluster” Bytes Per Cluster : 4096 Keep in mind that for NTFS max volume size is (2^32) * cluster size.