Risorse
Ultimi & popolari
Aiuti & Utilities
Comunity
Goosh, the Unofficial Google Shell. Google come il terminale
Stefan Grothkopp ha sviluppato un nuovo strumento attraverso il quale, i veri appassionati della linea di comando, potranno compiere ricerche in Google, tramite un interfaccia simile alla Shell Unix. Sto parlando di goosh.org, the Unofficial Google Shell.
Commenti
Principale
*richiede autenticazione
Qui
trovi RAM per Eee PC a
partire da 19,90 euro.
Garantita a vita
Inoltre
Secure Digital HC
Eee PC per espanderne la capienza fino a 20 GB.
A partire da 14,90 Euro
Sondaggio*
Ti piace la nuova grafica?
Si, è bellissima
18%
Si, abbastanza
40%
Si, è nella norma
13%
E' meglio dell'altra, ma nulla di che
12%
Non proprio
6%
No
2%
No, per nulla
5%
Chi ha fatto sto obrobrio?
4%
Voti totali
- 976 reads
- Older polls
Inserisci...
*richiede autenticazione
Collabora
ZioBudda.net sta crescendo sempre di più, ma mi serve una mano per portare avanti i progetti e per rendere il sito sempre più bello e pieno di informazioni.


Per chi fosse interessato inserisco qualche plugin.
Basta salvarli in un file js e caricarlo col comando load percorsodelfile.
/*
IMDB plugin
by RolloPack
for Goosh.org (c) 2008 - Stefan Grothkopp
*/
function search_imdb(){
this.name = "imdb";
this.aliases = new Array("imdb", "film");
this.mode = true;
this.help = "search in imdb.com";
this.call = function(args){
this.start = 0;
this.args = "site:www.imdb.com "+args.join(" ");
this.query("web",this.args);
}
this.next = function(){
this.start += 4;
if(this.args)
this.query("web",this.args);
}
this.render = function(context, results, status, details, unused){
if(results && results.results != "") this.hasmore = true;
else this.hasmore = false;
this.renderResult(context, results, status, details, unused);
}
}
register_searcher("imdb","web");
/*
IAFD plugin
by RolloPack
for Goosh.org (c) 2008 - Stefan Grothkopp
*/
function search_iafd(){
this.name = "iafd";
this.aliases = new Array("iafd", "adult");
this.mode = true;
this.help = "search in iafd.com";
this.call = function(args){
this.start = 0;
this.args = "site:www.iafd.com "+args.join(" ");
this.query("web",this.args);
}
this.next = function(){
this.start += 4;
if(this.args)
this.query("web",this.args);
}
this.render = function(context, results, status, details, unused){
if(results && results.results != "") this.hasmore = true;
else this.hasmore = false;
this.renderResult(context, results, status, details, unused);
}
}
register_searcher("iafd","web");
/*
Commons plugin
by RolloPack
for Goosh.org (c) 2008 - Stefan Grothkopp
*/
function search_commons(){
this.name = "commons";
this.aliases = new Array("commons");
this.mode = true;
this.help = "search in commons";
this.call = function(args){
this.start = 0;
this.args = "site:commons.wikimedia.org "+args.join(" ");
this.query("web",this.args);
}
this.next = function(){
this.start += 4;
if(this.args)
this.query("web",this.args);
}
this.render = function(context, results, status, details, unused){
if(results && results.results != "") this.hasmore = true;
else this.hasmore = false;
this.renderResult(context, results, status, details, unused);
}
}
register_searcher("commons","web");