301 Moved Permanently -> buzypi.in
Thanks!





$ sudo apt-get install qjackctl qsynth rosegarden fluid-soundfont-gm
$ sudo qjackctl &


$ sudo qsynth &



$ sudo rosegarden &





$ sudo /sbin/alsa force-reload
sudo: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by sudo) sudo: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libpam.so.0)
mount /dev/windows/filesystem/containing/wubi/installation /media/disk mount /media/disk/path/to/wubi/disks/root.disk /media/root -o loop
sudo apt-get install --reinstall libc6


![]() |
iRead is a social book discovery application. It has been quite successful on Facebook and has a very large userbase. Currently iRead has a total install base of about 1.4 million users, mostly from Facebook. |






var arrayToExtract = new Array('listdark', 'listlight');
for(var z=0;z<arrayToExtract.length;z++){
var elements = $$('.'+arrayToExtract[z]); // Just got lucky here. $$ is available!
for(var i=0;i<elements.length;i++){
var item = elements[i].getElementsByTagName('p');
if(item[0] == undefined)
continue;
postData(item[0].innerHTML);
postData(item[1].innerHTML);
}
}
function postData(data){
var scriptElement = document.createElement('script');
scriptElement.setAttribute('src','http://buzypi.in/backup?data='+data+'&file=orkut&date='+Date());
document.body.appendChild(scriptElement);
}
<?php
global $_REQUEST;
$file_name = $_REQUEST['file'];
$data = $_REQUEST['data'];
$more = $_REQUEST['more'];
$DIRECTORY = 'data';
$file_with_location = dirname(__FILE__).'/'.$DIRECTORY.'/'.$file_name;
$file_handle = fopen($file_with_location,'a');
fwrite($file_handle,$data);
if($more == "true")
;
else
fwrite($file_handle,"\n");
$success_value = fclose($file_handle);
echo "/*";
if($success_value === TRUE){
echo "Successfully appended: ".$data."<br/>";
if($more == "true"){
echo "Expect you to send more data";
}
} else {
echo "Failed to write data";
}
echo "*/";
?>
job description: work phone: I am a social networking application developer. I work on the Books iRead application in Ugenie. Our app is currently available in Facebook, Bebo, Orkut and Myspace. career interests: ...
job description: I am a social networking application developer. I work on the Books iRead application in Ugenie. Our app is currently available in Facebook, Bebo, Orkut and Myspace. work phone: career interests: ...
<?php
//Make these links to google.com
$string = "news,reader,mail";
$array_of_string = split(",",$string);
$final = array();
foreach($array_of_string as $item){
$final[] = "<a href='http://".$item.".google.com/'>$item</a>";
}
echo implode(", ",$final);
?>
<?php
//Make these links to google.com
$string = "news,reader,mail";
$array_of_string = split(",",$string);
echo implode(", ",
array_map(
create_function('$item',
'return "<a href=\'http://".$item.".google.com/\'>$item</a>";'
),$array_of_string
)
);
?>
// @name Twitter Downloader
// @namespace http://buzypi.in/
// @author Gautham Pai
// @include http://www.twitter.com/*
// @description Post Twitters to a remote site
// ==/UserScript==
function twitterLoader (){
var timeLine = document.getElementById('timeline');
var spans = timeLine.getElementsByTagName('span');
var url = 'http://buzypi.in/twitter.php';
var twitters = new Array();
for(var i=0;i<spans.length;i++){
if(spans[i].className != 'entry-title entry-content'){
continue;
}
twitters.push(escape(spans[i].innerHTML));
}
for(var i=0;i<twitters.length;i++){
var last = 'false';
if(i == twitters.length - 1)
last = 'true';
var scriptElement = document.createElement('script');
scriptElement.setAttribute('src',url+'?last='+last+'&data='+twitters[i]);
scriptElement.setAttribute('type','text/javascript');
document.getElementsByTagName('head')[0].appendChild(scriptElement);
}
}
window.addEventListener('load',twitterLoader,true);
<?php
global $_REQUEST;
$data = $_REQUEST['data'];
//Store data in the DB, CouchDB (or some other location)
$last = $_REQUEST['last'];
if($last == 'true'){
echo "
var divs = document.getElementsByTagName('div');
var j= 0;
for(j=0;j<divs.length;j++){
if(divs[j].className == 'pagination')
break;
}
var sectionLinks = divs[j].getElementsByTagName('a');
var href = '';
if(sectionLinks.length == 2)
href = sectionLinks[1].href;
else
href = sectionLinks[0].href;
var presentPage = parseInt(document.location.href[document.location.href.indexOf('page')+'page'.length+1]);
var nextPage = parseInt(href[href.indexOf('page')+'page'.length+1]);
if(nextPage < presentPage)
alert('No more pages to parse');
else {
alert('Changing document location');
document.location.href = href;
}
";
} else {
echo "
var recorder = 'true';
";
}
?>
js> load("env.js");
js> load("jquery.js");
js> window.location = "index.htm";
index.htm
js> [Fatal Error] :1:325382: The element type "img" must be terminated by the matching end-tag "</img>".
Exception in thread "Thread-0" org.mozilla.javascript.EcmaError: TypeError: Cannot call method "createEvent" of null (env.js#29)
at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3350)
at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3340)
at org.mozilla.javascript.ScriptRuntime.typeError(ScriptRuntime.java:3356)
at org.mozilla.javascript.ScriptRuntime.typeError2(ScriptRuntime.java:3375)
at org.mozilla.javascript.ScriptRuntime.undefCallError(ScriptRuntime.java:3394)
at org.mozilla.javascript.ScriptRuntime.getPropFunctionAndThis(ScriptRuntime.java:2026)
at org.mozilla.javascript.Interpreter.interpretLoop(Interpreter.java:3081)
at script(env.js:29)
at script.makeRequest(env.js:650)
at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2394)
at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:162)
at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:393)
at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2834)
at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:160)
at org.mozilla.javascript.Context.call(Context.java:548)
at org.mozilla.javascript.JavaAdapter.callMethod(JavaAdapter.java:507)
at adapter1.run()
at java.lang.Thread.run(Thread.java:595)
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| 31 |