(Link to AcmlmWiki) Offline: thank ||bass
Register | Login
Views: 13,040,846
Main | Memberlist | Active users | Calendar | Chat | Online users
Ranks | FAQ | ACS | Stats | Color Chart | Search | Photo album
05-20-24 05:06 AM
Acmlm's Board - I3 Archive - - Posts by blackhole89
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
User Post
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-09-06 05:34 PM, in Officially Licensed December All-Inclusive Celebration, No Contractual Obligations Card Thread Link
Consider me in.

PM me your address if you want to receive a card for me, and attach yours if you want me to send one as well.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-10-06 06:42 AM, in OMGAH WHY DEE Link
Happy belated birthday.

*me thinks of some witty line to add here as an excuse for the postcount++ and decides that this line per se must do*
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-10-06 10:10 AM, in Photo Album thread. Link
So I decided to take a better picture of myself for the internets, shamelessly exploiting the fact we have a large bathroom mirror ever since the move.

y helo thar
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-10-06 10:20 AM, in General Project Screenshot Thread Link


return of the techy SMW levels~
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-10-06 11:59 AM, in Your opinion about the human race Link
Saddened by it. It is the obviously greatest failure of evolution since earth's creation (if you don't count the initial creation of the first self-reproducing molecules as an even greater one, that is) and the single most hypocrite, indeterminate and pathetic species on this planet, seeing as it is very likely the only one which willingly makes things worse for itself than they could be. Also, an alarming amount of individuals in this species seem to have problems with making good polls. "Yes/No"? Yes what? Yes, saddened by it? Yes, proud of it? Yes, saddened by it or proud of it? (this would get a lot of votes) Yes, saddened by it and proud of it? Yes, I agree with you making this poll? Please, articulate yourself more clearly.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-10-06 12:17 PM, in I need to gain weight. Link
Heh, I am 6'5" (196cm, curse the imperial length measure system ) tall and only weigh like 150lbs... despite my nutrition being the single unhealthiest you can imagine (lots of coke, fridge pizzas and meat-based dishes) and me hardly ever doing anything other than sitting at the computer. I usually get more problems from being that tall (bumping head-first into door frames and stuff) than looking like a stickman though
(restricted)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-12-06 07:32 PM, in 10 POUNDS OF ASIAFOOD Link
I find the idea of Hello Kitty flavoured soda highly disturbing.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-14-06 11:10 AM, in 10 POUNDS OF ASIAFOOD Link
The miracles of modern-day chemistry...
(restricted)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-16-06 06:44 PM, in hm, can somebody explain me how to make a page system? Link
Xkeeper has a point right there.

To be of some actual help, though, try the following... assuming your "monster encyclopedia" uses a MySQL based backend
- add $start=$_GET['page']*30; somewhere at the beginning of the script
- append "LIMIT $start, 30" to your query
- calculate $npages:
-- $res=mysql_query("SELECT count(*) FROM whateveryourmonstertableis"); $d=mysql_fetch_array($res); $npages=ceil($d[0]/30.0);
- for($i=0;$i<$npages;++$i) echo "<a href=thispagesname.php?page=$i>$i</a> ";

edit1: hit submit too early
edit2: &lt;'d the <s in HTML quoted


(edited by blackhole89 on 12-16-06 05:48 PM)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-17-06 01:27 PM, in hm, can somebody explain me how to make a page system? Link
Originally posted by Alice
Originally posted by blackhole89
add $start=$_GET['page']*30; somewhere at the beginning of the script

I'm not sure what happens if you multiply a non-number in PHP, but you might want to use $start = intval($_GET['page']) * 30 just to be safe.

A string used in a numerical context gets parsed like it would be with sscanf(string,"%d",&num). "dfshsdfh"*2 gives 0, "1234dsdfg"*2 gives 2468.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-17-06 01:38 PM, in Too much time on the internet? Link
I still get a lot of complaints from both my parents, which I kind of can understand (though that doesn't even remotely mean I agree) seeing as I tend to spend the whole 14 hours a day I am up on the tubes when I get the chance to (i.e. holidays, weekends).
The social life damage mentioned by Thexare isn't an issue for me since I virtually don't have a social life which could suffer from it in the first place. That isn't a result of my online time though, since I already had none before I started spending my days at the box on a regular basis.
On the other hand, I am always ready to leave the internet for the sake of something sufficiently interesting on this side of the screen. (Not like "sufficiently interesting" things happen too often over here...) So I guess the "too much" line is crossed at the point that is not the case anymore.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-18-06 02:23 PM, in AIYA BIRTHDAY HAPPY! Link
Happy birthday, Aiya.

* blackhole89 thinks of something witty to append and comes to the conclusion he can't really think of anything
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-21-06 02:46 PM, in Behind ya! Link
Very well done. You appear to be steadily improving.

(postcount++ since I essentially already said that on IRC, but every day is postcount++ day)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-22-06 02:45 PM, in How fast can you type? Link
http://www.typeonline.co.uk/typingspeed.php

Your speed was: 99wpm.
Congratulations! You made no mistakes, practice does make perfect.

"You like to have some cup of tea? July bent at the doorway and began that day for them as his kind has always done for their kind. The knock on the door. Seven o'clock. In governors' residences, commercial hotel rooms, shift bosses' company bungalows, master bedrooms en suite, the tea-tray in black hands smelling of Lifebuoy soap. The knock on the door, no door, an aperture in thick mud walls, and the sack that hung over it looped back for air, sometime during the sort night. Bam, I'm stifling; her voice raising him from the dead, he staggering up from his exhausted sleep."

How fast can you do it?

(edit: added the original text)


(edited by blackhole89 on 12-22-06 01:57 PM)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-23-06 06:44 AM, in How fast can you type? Link
Whee, bothered to retake it~

Your speed was: 104wpm.
Congratulations! You made no mistakes, practice does make perfect.

I did get the impression that it takes me quite some time to click the "stop timer" button when I'm done however, I mostly don't need to look at the keys, though doing so would probably yet make me a bit faster since it'd help my targeting.

edit: more improvement~

Your speed was: 110wpm.

Congratulations! You made no mistakes, practice does make perfect.

For many days we had been tempest-tossed. Six times had the darkness closed over a wild and terrific scene, and returning light as often brought but renewed distress, for the raging storm increased in fury until on the seventh day all hope was lost. We were driven completely out of our course; no conjecture could be formed as to our whereabouts. The crew had lost heart, and were utterly exhausted by incessant labor. The riven masts had gone by the board, leaks had been sprung in every direction, and the water which rushed in gained upon us rapidly.


(edited by blackhole89 on 12-23-06 06:43 AM)
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-24-06 07:32 PM, in WE HAVE ESCAPED THE BLACK HOLE! Link
Originally posted by Tatrion
It's impossible to escape black holes.

* blackhole89 approves of that statement
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-24-06 08:02 PM, in Horribly out-of-context images! Link


no really.
blackhole89
Moronic Thread Bodycount: 17
(since 2006-08-21 09:50 EST)
F5 F5 F5 F5 F5


 





Since: 12-31-69
From: Dresden/SN/DE

Last post: 6302 days
Last view: 6300 days
Skype
Posted on 12-24-06 08:16 PM, in WE HAVE ESCAPED THE BLACK HOLE! Link
ENGAGE




CAPTAIN JEAN-LUC PICARD OF THE U.S.S. ENTERPRISE
CAPTAIN JEAN-LUC PICARD OF THE U.S.S. ENTERPRISE
CAPTAIN JEAN-LUC PICARD OF THE U.S.S. ENTERPRISE
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Acmlm's Board - I3 Archive - - Posts by blackhole89


ABII

Acmlmboard 1.92.999, 9/17/2006
©2000-2006 Acmlm, Emuz, Blades, Xkeeper

Page rendered in 0.017 seconds; used 429.90 kB (max 550.60 kB)