markfiend wrote:Translation:d00mw0lf wrote:17 /-\1|\|7 633|<-5|*33|<Mrs RicheyJames wrote:Stop geek speaking!
175 1337 5|*33|<!
"It ain't geek speak
it's Leet speak!"
I think I'm getting the hang of it now.
just for d00mw0lf
you mean you DON'T use firefox?!Quiff Boy wrote:it dont work in IE anyway, so you must be using firefox or something...? unless you've done something in the IE settings to override stylesheet stuff?!?
I'm so VERY dissapointed in you.
- lazarus corporation
- Lord Protector
- Posts: 3444
- Joined: 09 May 2004, 17:42
- Location: out there on a darkened road
- Contact:
you really should specify font sizes in ems rather than %s - much better practice. And obviously pxs and pts are out of the question.Quiff Boy wrote:yep, we aint too "accessible" i'm afraid
the joys of using pixel sizes in stylesheets rather than specifying percentages...
- Brideoffrankenstein
- Overbomber
- Posts: 2883
- Joined: 15 Jan 2004, 01:51
Ahaaaaaa.....markfiend wrote:Translation:d00mw0lf wrote:17 /-\1|\|7 633|<-5|*33|<Mrs RicheyJames wrote:Stop geek speaking!
175 1337 5|*33|<!
"It ain't geek speak
it's Leet speak!"
I think I'm getting the hang of it now.
me too. Having a translation did help a bit though thanks MF
- nodubmanshouts
- Utterly Bastard Groovy Amphetamine Filth
- Posts: 557
- Joined: 19 Oct 2003, 06:50
- Location: California
Shouldn't it be
LET A$="IDIOT"
PRINT A$
or are we not talking Sinclair?
Just confirm my true geekizms
label string
org 8000h
ld hl, string
ld bc, 5
rst 16
ret
string db 'i','d','i','o','t'
Gawd, its gotta be 20 years since I did that...
LET A$="IDIOT"
PRINT A$
or are we not talking Sinclair?
Just confirm my true geekizms
label string
org 8000h
ld hl, string
ld bc, 5
rst 16
ret
string db 'i','d','i','o','t'
Gawd, its gotta be 20 years since I did that...
w00t indeed.
I i wasn't so lazy i'da photoshopped "73h 1337" onto it... but, meh.
I i wasn't so lazy i'da photoshopped "73h 1337" onto it... but, meh.
-
- Black, black, black & even blacker
- Posts: 4966
- Joined: 11 Jul 2002, 01:00
'teh leet'?d00mw0lf wrote:w00t indeed.
I i wasn't so lazy i'da photoshopped "73h 1337" onto it... but, meh.
still a novice
Goths have feelings too
- timsinister
- The Oncoming Storm
- Posts: 4571
- Joined: 04 Jan 2005, 17:08
- Location: Newcastle
- Contact:
It'll never catch on.
Anyone read bash.org?
Anyone read bash.org?
- RicheyJames
- Bad Tempered Young Man
- Posts: 1098
- Joined: 02 Jun 2002, 01:00
- Location: far beyond the pale
free period?
"contradictions are meaningless, there's nothing to betray"
- timsinister
- The Oncoming Storm
- Posts: 4571
- Joined: 04 Jan 2005, 17:08
- Location: Newcastle
- Contact:
No!RicheyJames wrote:free period?
Lunch.
- hallucienate
- Overbomber
- Posts: 4602
- Joined: 17 Apr 2002, 01:00
- Location: /\/¯¯¯¯¯\/\
- Contact:
thanks for that. I didn't even bother tryingFrancis wrote:"Ya get slowly used to it, Hallucienate"Dark wrote:`/@ 937 510\/\/1`/ (_)53|) 70 17, #@11(_)(13|\|@73.
01|) |)09, |\|3\/\/ 7|21(|<5.
- markfiend
- goriller of form 3b
- Posts: 21181
- Joined: 11 Nov 2003, 10:55
- Location: st custards
- Contact:
Old dog, new tricks?Francis wrote:01|) |)09, |\|3\/\/ 7|21(|<5.
The fundamental cause of the trouble is that in the modern world the stupid are cocksure while the intelligent are full of doubt.
—Bertrand Russell
—Bertrand Russell
175 3@513|2 7#@|\| 7#15:hallucienate wrote:thanks for that. I didn't even bother trying
Quiff Boy wrote:Idiot idiot = new Idiot();
idiot.doStupidStuff();
And you know that she's half crazy but that's why you want to be there.
day off.RicheyJames wrote:free period?
- hallucienate
- Overbomber
- Posts: 4602
- Joined: 17 Apr 2002, 01:00
- Location: /\/¯¯¯¯¯\/\
- Contact:
dunno about that.Francis wrote:175 3@513|2 7#@|\| 7#15:hallucienate wrote:thanks for that. I didn't even bother trying
Quiff Boy wrote:Idiot idiot = new Idiot();
idiot.doStupidStuff();
- Quiff Boy
- Herr Administrator
- Posts: 16795
- Joined: 25 Jan 2002, 00:00
- Location: Lurking and fixing
- Contact:
ok then...hallucienate wrote:dunno about that.Francis wrote:175 3@513|2 7#@|\| 7#15:hallucienate wrote:thanks for that. I didn't even bother trying
Quiff Boy wrote:Idiot idiot = new Idiot();
idiot.doStupidStuff();
Code: Select all
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
public class Sort {
private static List stuff;
static {
stuff = new ArrayList();
stuff.add("2");
stuff.add("1");
stuff.add("4");
stuff.add("3");
}
public static void main(String[] args) {
Iterator indx = stuff.iterator();
while(indx.hasNext()){
System.out.println(indx.next());
}
Collections.sort(stuff, new Comparator(){
public int compare(Object o1, Object o2) {
String value1 = (String)o1;
String value2 = (String)o2;
return value1.compareTo(value2);
}
});
indx = stuff.iterator();
while(indx.hasNext()){
System.out.println(indx.next());
}
}
}
What’s the difference between a buffalo and a bison?
@|\||) 175 |\|07 (@53 53|\|5171\/3.Quiff Boy wrote:ok then...hallucienate wrote:dunno about that.Francis wrote: 175 3@513|2 7#@|\| 7#15:
Code: Select all
import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.Iterator; import java.util.List; public class Sort { private static List stuff; static { stuff = new ArrayList(); stuff.add("2"); stuff.add("1"); stuff.add("4"); stuff.add("3"); } public static void main(String[] args) { Iterator indx = stuff.iterator(); while(indx.hasNext()){ System.out.println(indx.next()); } Collections.sort(stuff, new Comparator(){ public int compare(Object o1, Object o2) { String value1 = (String)o1; String value2 = (String)o2; return value1.compareTo(value2); } }); indx = stuff.iterator(); while(indx.hasNext()){ System.out.println(indx.next()); } } }
And you know that she's half crazy but that's why you want to be there.
- markfiend
- goriller of form 3b
- Posts: 21181
- Joined: 11 Nov 2003, 10:55
- Location: st custards
- Contact:
The result from QB's code:
"1", "2", "3", "4"
Madness.
*Edit to add: No I didn't actually program it in to find out. I ran it in my wetware
"1", "2", "3", "4"
Madness.
*Edit to add: No I didn't actually program it in to find out. I ran it in my wetware
The fundamental cause of the trouble is that in the modern world the stupid are cocksure while the intelligent are full of doubt.
—Bertrand Russell
—Bertrand Russell
- Quiff Boy
- Herr Administrator
- Posts: 16795
- Joined: 25 Jan 2002, 00:00
- Location: Lurking and fixing
- Contact:
indeed
its a simple sorting class to sort a list based on the integer value it returns from a toString
or something.
i was just writing a comparator for something i'm working on and it reminded me of this thread...
its a simple sorting class to sort a list based on the integer value it returns from a toString
or something.
i was just writing a comparator for something i'm working on and it reminded me of this thread...
What’s the difference between a buffalo and a bison?
-
- Underneath the Rock
- Posts: 6605
- Joined: 27 Oct 2004, 21:26
- Location: People's Republic of Glasgow
- Contact:
Unless you use the word "teh" or it's variants "7eh" "t3h" "te#" "73h" "t3#" or "73#" (I know, the # doesn't look as much like an h as it could. ) then you are banned from 1337ing.paint it black wrote:'teh leet'?d00mw0lf wrote:w00t indeed.
I i wasn't so lazy i'da photoshopped "73h 1337" onto it... but, meh.
still a novice
- Brideoffrankenstein
- Overbomber
- Posts: 2883
- Joined: 15 Jan 2004, 01:51
........sorry lost it again now.........