Points of Required Attention™
Please chime in on a proposed restructuring of the ROM hacking sections.
Views: 88,498,588
Main | FAQ | Uploader | IRC chat | Radio | Memberlist | Active users | Latest posts | Calendar | Stats | Online users | Search 04-29-24 01:15 AM
Guest: Register | Login

Main - 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

blackhole89
Posted on 02-26-07 10:21 PM, in MySQL error?? Link | Quote | ID: 8026


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 70/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



The board is still in development, so things might break from time to time. Don't report bugs after they've already been fixed.
Also, it should be quite obvious a Unix path, as reported by PHP error/warning messages, is not an URL.

Canned.

____________________



blackhole89
Posted on 02-26-07 10:25 PM, in Programming Poll #1: Indent Style Link | Quote | ID: 8029


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 71/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



Disregard the doubled curly after the else if statement, I apparently copied it by accident when reformatting the code to display right in HTML.
It's just
...
} else if(r==0xFF) {
fread...

But yeah, I never paid much attention to the curly placing.
void function(int lol)
{
stuff
},
void function(int lol) {
stuff
}
and void function(int lol) {stuff} all are fine to me.

____________________



blackhole89
Posted on 02-27-07 01:32 AM, in Huzzah! Link | Quote | ID: 8099


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 72/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



You know that "kernal" is a generally discouraged and altogether incorrect when applied to the OS component spelling of the word though?

____________________



blackhole89
Posted on 02-27-07 02:08 AM, in Candy Link | Quote | ID: 8118


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 73/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



Posted by Drag
... or a butterfinger bar.


Sorry, I couldn't help it.

Generally speaking, the coke I drink every day alone is more than sufficient to satisfy my needs for C6H12O6 and any polymers based on it.

____________________



blackhole89
Posted on 02-27-07 02:10 AM, in Huzzah! Link | Quote | ID: 8119


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 74/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



As far as I know, it always said "kernel", "kernel32" etc., which is the correct spelling.

____________________



blackhole89
Posted on 02-27-07 12:26 PM, in Super Bombliss Tourney (Round 2 - 4/22/2007 is the deadline) Link | Quote | ID: 8334


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 75/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



Again, in case I'm not too late, count me in.

____________________



blackhole89
Posted on 02-27-07 02:26 PM, in Programming Poll #1: Indent Style Link | Quote | ID: 8354


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 76/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



For single statements, I usually do
if(foo) bar();
The only exception to that is when I need MSVC++' line-based debugger to distinguish between failure in evaluating foo and bar. In that case, I do
if(foo)
    bar();

Also, I think
{
    foo
}
else {
    bar
}
or even
{
    foo
}else{
    bar
}
is much friendlier to read than
{
    foo
}
else
{
    bar
}


____________________



blackhole89
Posted on 02-27-07 02:36 PM, in Programming Poll #1: Indent Style Link | Quote | ID: 8356


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 77/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



<code> isn't a tag at all afaik. You probably meant <pre> (as in PREformatted), but that would yield doubled line breaks with Acmlmboard...

I should port my
...
tag to Acmlmboard2.

____________________



blackhole89
Posted on 02-27-07 04:03 PM, in how come none of the original acmlmboard code was used here? Link | Quote | ID: 8371


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 78/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



W3C-conforming HTML is for pussies though.

____________________



blackhole89
Posted on 02-27-07 04:58 PM, in how come none of the original acmlmboard code was used here? Link | Quote | ID: 8379


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 79/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



*blackhole89 pats his pet phpMyAdmin

____________________



blackhole89
Posted on 02-27-07 05:02 PM, in how come none of the original acmlmboard code was used here? Link | Quote | ID: 8382


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 80/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



While I certainly could port my old board1.x CP over to board2, that's quite a bit down on the priority list right now.

____________________



blackhole89
Posted on 02-27-07 05:11 PM, in Programming Poll #2: Pronunciation of "char" Link | Quote | ID: 8385


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 81/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



I pronounce it like the "char" in "charcoal", which is probably what you meant. xD

____________________



blackhole89
Posted on 02-27-07 07:47 PM, in how come none of the original acmlmboard code was used here? Link | Quote | ID: 8423


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 82/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



Posted by Ailure
Well, I have access to the board database... kinda, but you don't even see me on staff because of that.

Your access shouldn't be anything beyond seeing the database's name in PMA anyway.

Stifu: I think the MySQL console is a very fast way to do any of those

____________________



blackhole89
Posted on 02-28-07 10:42 AM, in Regarding the downtime. Link | Quote | ID: 8562


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 83/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



From roughly 00:05 to pretty much right now (10:40), the server the board is hosted on was down. Sorry for any inconvenience caused by that.
The tech support I called when I got up (~09:55) (they don't work 24/7 here so I had few of a chance to do it before) told me the power supply of the machine got fried and they had to replace it.

As you can see, it's back up now anyway.

Regards.
blackhole89

____________________



blackhole89
Posted on 02-28-07 11:36 PM, in What screen resolution do you use? Link | Quote | ID: 8786


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 85/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



1280x1024 on my desktop, 1280x768 on the laptop.

I would prefer 768x1280 for the sake of comfortable coding so much.

____________________



blackhole89
Posted on 03-01-07 12:58 AM, in With the kind cooperation of the federal government forces.. Link | Quote | ID: 8849


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 88/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



...ABII has received all your base.

Incarnation 2 Archive
Incarnation 3 Archive
Acmlmwiki

For great justice!

____________________



blackhole89
Posted on 03-03-07 03:08 PM, in What are your oppinions on various langauges? Link | Quote | ID: 9922


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 89/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



C - like a lot. Still pretty much my favourite language.
C++ - While I quite like it, it does have some obvious design flaws.
Objective-C - C++' forgotten evil twin brother. Weird in any sense that word can convey.
x86 assembly - Intel syntax: like, AT&T syntax: dislike. Though it might be for large parts because I got used to the former too much. xD
PHP - a chimera of a language. While it's certainly practical for some purposes, the language design is a horrible mess.
Java - Dislike. The VMs are memory whores, fairly slow (at least under Windows) and the whole language design doesn't appeal to me. Then, I am biased because I have an antipathy against Sun Microsystems ever since Solaris and CDE.
Brainfuck - lolz
Lua - Stinks of BASIC.
Pascal, Object Pascal and everything related - dislike. Bulky languages, too much focus on noob friendliness and not nearly as powerful as I'd like to see a language.
Visual Basic - if you like Excel, then perhaps... *cough*
Scheme - Oddball. Though, in an alternate world, with other processor designs and stuff... it probably could implement certain algorithms much more effectively than today's languages can.
ASP - Basic for LEET WEB DESIGNERZ LOLOL
JavaScript - Miserably implemented, buggy, slow... dfgdsfh
65c816 assembly - Nothing too good or bad that can be said about it.
Atmel AVR assembly - Interesting, though the abundance of registers (32 of them on the platforms I worked with) often requires/encourages vastly different approaches at implementing things from what you do on systems with a small count of working regs.
eAthena scripting - SDGH"!$!"$()/!=#?

____________________



blackhole89
Posted on 03-03-07 07:23 PM, in Programming Poll #3: First programming language Link | Quote | ID: 10002


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 90/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



QBASIC, back in 1992 or 1993.

Does that count as coming-out?

____________________



blackhole89
Posted on 03-06-07 09:44 PM, in Programming Poll #4: Variable Names Link | Quote | ID: 11339


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 92/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



I alternate between x/y/z, i/j/k, n/o/p for loop counter variables, either entirely pointless stuff like asdf1 through asdf6 or temp or cryptic abbreviations like nLC or lctr, often also numbered in a "fl1" through "fl6" fashion. Sometimes, I resort to short but descriptive lowercase property names too, especially when I plan on dealing with the code for a longer time or even on making it available to others.

____________________



blackhole89
Posted on 03-07-07 12:30 AM, in House numbers Link | Quote | ID: 11416


The Guardian
Moloch whose eyes are a thousand blind windows!
Level: 124

Posts: 93/4196
EXP: 21537398
Next: 299203

Since: 02-19-07
From: Ithaca, NY, US

Last post: 474 days
Last view: 86 days



US streets sure must be looooooooooong.

I am currently living in house# 4. Would likely be the lowest one.

If I recall correctly, the highest numbered address I ever lived at was 63, back in Russia when I stayed with my grandmother for a short time (like 1 month)...

____________________


Pages: 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157


Main - Posts by blackhole89

Acmlmboard 2.1+4δ (2023-01-15)
© 2005-2023 Acmlm, blackhole89, Xkeeper et al.

Page rendered in 0.374 seconds. (351KB of memory used)
MySQL - queries: 39, rows: 71/71, time: 0.355 seconds.