public static final void strictfp volatile transient java() {
while (Boolean.TRUE.booleanValue()) {
try {
throw new OutOfMemoryError("Please upgrade your RAM");
} catch (Throwable t) {
System.err.println(t.toString());
}
}
}
Name:
Anonymous2008-12-24 2:21
>>12
public static final void strictfp volatile transient java()
Java<JavaScript
Name:
Anonymous2008-12-24 2:31
>>13
JavaScript is faster.
Every page with javascript executing seamlessly and in real-time.
Java requires loading its runtimes,garbage collection and checkign for signed applets.Its like 100 times slower then Flash.
Lojban (pronounced [ˈloʒban]) is a constructed, syntactically unambiguous human language based on predicate logic. Its predecessor is Loglan, the original logical language by James Cooke Brown.
Development of the language began in 1987 by The Logical Language Group (LLG), who intended to realize Loglan's purposes as well as further complement the language by making it more usable, and freely available (as indicated by its official full English name "Lojban: a realization of Loglan"). After a long initial period of debating and testing, the baseline was completed in 1998 with the publication of The Complete Lojban Language.
The name "Lojban" is a combination of loj and ban, which are short forms of logji (logic) and bangu (language), respectively. Due to its name, Lojban is sometimes misunderstood to be within some exclusive domains such as formal logic or computer programming; however, it is usable for daily conversation. While it is meant to be capable of handling highly logical concepts, it is also highly flexible. To whatever degree the speaker wishes, it can resemble its natural, programming, or other constructed counterparts, and it can be poetic, ambiguous, precise, or neutral.
The principal sources of its basic vocabulary were the six (at the time) most widely spoken languages: Chinese, English, Hindi, Spanish, Russian, and Arabic, chosen to reduce the unfamiliarity or strangeness of the root words to people of diverse linguistic backgrounds. The language has drawn on other constructed languages' components, a notable instance of which is Láadan's set of indicators[1]. Also Toki Pona and Esperanto have mutuality with Lojban to some extent.
In this article, explanations of its grammatical aspects will mostly be based on The Complete Lojban Language; the Latin alphabet mode will be used for the orthography.
Name:
Anonymous2008-12-24 8:01
x86 in one function:
fun:
push ebp
mov ebp, esp
mov eax, 1
pop ebp
ret
Name:
Anonymous2008-12-24 8:05
Assembly code size=20*Typical C
Assembly speed=2*Typical C
Assembly usage =1/200 of C
Name:
Anonymous2008-12-24 8:17
PHP in one function:
function set_name(){
$name=$_GET['name'];
/*
if(!$name){
$name=$_POST['name'];
if(!$name){
$name=$_COOKIE['name'];
if(!$name){
die("No name found");
}
}
}
*/
$name=$_REQUEST['name'];
if(!$name){
die("<html><META http-equiv=\"refresh\" content=\"5;URL=javascript:back()\"><body><h1>No name found<p>Please enter your name in the field.</body></html>");
}
if(get_magic_quotes_gpc()) {
$name2=stripslashes($name);
}
$name3=mysql_real_escape_string($name2);
$result=mysql_query("INSERT INTO ".$NAME_TABLE." (name) VALUES (".$name3.")"."");
if(!$result)
die("<html><body><h1>Invalid query:<h1>".mysql_error()."</p></body></html>");
}