Ho finalmente completato una presentazione powerpoint sul P2P anonimo. Gli argomenti trattati sono:
- anonymizer proxy
- reti friend-to-friend
- waste
- freenet
- small worlds
- diffie-hellman
- tor
# Default Server List for podget
# FORMAT:
# NOTES:
# 1. The Category must be one word, however you can use underscores.
# 2. Any spaces in the urls needs to be converted to %20
# Find more servers at: http://www.ipodder.org/directory/4/podcasts
http://www.radio.rai.it/radio2/podcast/rssradio2.jsp radio Radio 2
http://rss.kataweb.it/videopodcasting/repubblicaradio.xml news Repubblica Radio
45 16 * * * /usr/bin/podget.sh
VIDEO_ITEMS = [ ('Cartoni', '/home/davide/video/cartoni'),
('Google Video', '/home/davide/video/google'),
('Altro',''),
('Web TV','/home/davide/video/webtv.fxd')]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAbhj-186VADZlDiZlpmGsnhQlY8WJo1SwYVJ9qIhz_Dm_G3sGrhRMXGaAErINNDXYAcJkaLzil5Vm4Q"
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GOverviewMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(42.0, 9.5), 5);
GEvent.addListener(map,'click',onClick);
GEvent.addListener(map,'moveend',function(){
GLog.write('new map center is\n '+map.getCenter());
});
}
}
function onClick(overlay,latlng){
alert("Ciao Mondo! Sei in "+latlng.lat()+","+latlng.lng());
}
//]]>
</script>
</head>
<body onload="load()" onunload="GUnload()">
<div id="map" style="width: 500px; height: 300px"></div>
</body>
</html>