Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
Acmlm's Board - I2 Archive - - Posts by HyperLamer
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
User Post
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4842/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-07-05 11:15 PM, in Digital cable! Link
Just got it installed today. Haven't had a chance to watch it yet though (it takes half an hour for the system to set up ). It's nice because (as satellite companies will say as if it were a bad thing ) you still get the regular analog channels, so you can watch basic cable on other TVs that don't have a digital reciever. The box is really small too, not even as long as the remote. About as big as my cable modem (which I guess makes sense ). You can't use it at all without a remote though.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4843/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-07-05 11:18 PM, in I think the rank system is broken Link
Well all the other ranks don't need it. Assuming it's anywhere near decently set up it should just be like '# posts, name, image filename', so it's basically just a matter of splitting up the images and changing the filenames. Though I'm just assuming that's how it's set up.

I wonder if they ever will finish fixing that system? The majority of people are still using the numgfx layout, which doesn't work so well without it.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4844/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-07-05 11:29 PM, in Where to start. What to start with. Link
VB is good if you need to hack up a simple program ASAP.

Just to clarify on the different types of programs a bit:
-Languages like C/C++ are compiled. You run the source code through a compiler, and it spits out machine code designed specifically for whatever type of CPU your system uses. This has the advantage of being faster and more efficient than anything else (and can run without needing any runtimes, drivers, etc - even without an operating system if you design it that way) but you can't, say, compile it for x86 (PC) and run it on a Mac. Also, it's very difficult to disassemble or decompile these back to source-code form, because there's no way for a decompiler to tell what parts are code and what parts are data.

-Languages like VB and Java(?) are 'pseudo-compiled' (bytecode). It works the same as a regular compiled program, but it uses its own, made-up instruction set. You use another program (usually some sort of runtime) to convert the instructions to whatever type your CPU can use. These are slower, take up more memory, and generally require some sort of external program or file, but you can run the same program on any kind of computer as long as the runtimes are installed on it. (Think how an emulator works - it's exactly the same, but in this case the system it's emulating doesn't really exist.) One other thing to note is that it's easily possible to de-compile these back into almost exact source code (if anyone's written a program to do so), but you'll lose things like comments and function names.

-Languages like Javascript are interpreted. It's the exact same idea as bytecode, but you don't compile it. You distribute the source code itself, and the system compiles it to whatever instruction set it needs. In other words it's just like bytecode, but a bit slower and completely open-source (as the source code is the program).
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4845/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 01:54 AM, in Digital cable! Link
Yeah, it's pretty nice. Basically just like satellite (I keep calling it that ) except that we can still watch analog channels on all the other TVs. And finally a real channel guide instead of having to wait for a slow scrolling list. The software leaves a little to be desired (no way to hide the channels you don't have ) but it's a nice selection. Only cost $4 more than what we had before, so why not?
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4846/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 01:57 AM, in USB hub problem Link
If it worked once before, then it shouldn't be a driver issue. It might just be toast. (Or the thing you're plugging into it might be. )


(edited by HyperHacker on 06-07-05 08:57 AM)
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4847/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 03:36 AM, in ALL CAPS LOL Link
A little too fixed, if you ask me. ...Wait, that doesn't make sense.

--------------------

Why software patents SUCK and what you can do about it
'Zig' Bus Lines. Moving for great justice since AD 2101.
Everyone have a hell of a Christmas.

Links
Debug (User:
Cape Mario
)
Uptime: 447 daysUsed HDD Space: 90 GBMemory Usage: 49.5%
I/O Bytes: 7050925Ping Time: 10.962msNext backup in: 137684 sec
Processes: 7Kernel memory: 2199KNext scan in: 192 sec
ハイパーハッカー
wootest
Deleted User
Original user deleted
Level: NAN
Posts: -240/-240
EXP: NAN
For next: 0

Since: 01-22-01
From: Trash can

Since last post: 2 hours
Last activity: 7 min.
Posted on 07-05-05 06:57 PMLink | Quote
I HAX TEH BOARD LOLHyperHacker

Cape Mario
Insane Walrus

Spambot Food
Level: 90

Posts: 4848/4848
EXP: 7152665
For next: 35944

Since: 03-15-04
From: Canada, w00t!
Pickles: 17
i'm a wootest

Since last post: 5 hours
Last activity: 34 min.
Posted on 07-05-05 07:08 PMLink | Quote
Ono! My CSS died! Now my layout looks shitty

Posts: 4848/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 03:46 AM, in I'm kinda new at rom hacking, can somone give me some tips. Link
I usually do 0x4000 bytes at a time, the size of a bank on most systems.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4849/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 03:49 AM, in super mario world for the nes Link
Well we can't give it out here anyway.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4850/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 03:57 AM, in Listen to this......Revolution related. Link
Sure, it's such an original idea. Anyone could have bought a Coke or Pepsi, looked at the code for a free music download, and come up with that.

Though if it's not a touch screen, and it's "something that will make it easy to play NES, SNES, N64, Gamecube and Revolution games"... what is it? Damn, I love how Nintendo does that.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4851/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 03:59 AM, in Weird PSOne issue with backup CDs Link
Come to think of it, I had a bit of trouble with mine. Mine isn't modded, I use the swap trick, and everything I've tried works except Final Fantasy Chronicles. Could the game tell if I had done that? There shouldn't be anything different hardware-wise.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4852/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 04:00 AM, in Did you ever hold reset while turning the power off? Link
WTF? Cartridges are a lot more durable than discs. Discs are as good as ruined if you leave them out of their case, and the lasers and motors don't last nearly as long as a zero-moving-part chip.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4853/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 04:02 AM, in Games Getting Easier? Link
Hm, I wonder what's in memory next to the level number? Whatever it is would get modified when you did that.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4854/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 04:08 AM, in SM64DS - Super Yoshi Link
Great, now I just have to find out what this nifty surprise is.

Aw, what a gyp.
Spoiler:
He just punches.
And he can't flutter-jump.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4855/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 04:10 AM, in Digital cable! Link
I have Cogeco, it's pretty good. Awesome tech support. My only gripe is low bandwidth caps on Internet services (and no sign of any unlimited plan ).

Video On Demand is neat too. It's like a video rental store in the TV. Laziness +3!
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4856/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-08-05 04:11 AM, in Into the Dungeon! Link
I don't even play the game, and I was about to point that out.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4857/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-09-05 07:50 AM, in 10 years since PHP 1.0 was released! Link
So that's what it stands for.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4858/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-09-05 07:55 AM, in Digital cable! Link
It's only a really basic package though. Only like a dozen or so new channels. Not bad for the price but it gets annoying always coming across something interesting and only seeing "channel not available". (Which I suppose explains why you can't remove them - it's a form of advertising. ) It has a favourites list, though, so I can just stick all the ones I do have in that.

I still remember when I only had 4 channels. Fun! Just played video games most of the time instead.
Originally posted by Colleen
I hear Cogeco's really good because they're:

a) stable;
b) speedy;
c) not morons when it comes to tech support

Yeah, it's pretty stable, good speed, and tech support is top-notch. Barely any waiting and they really know what they're talking about. They sometimes forget to update the automated message that tells you about outages though.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4859/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-09-05 07:57 AM, in Laptops Outsell Desktops for First Time! Link
YD, keyloggers are your friend.
Originally posted by Emperor Ziffatine
This junker will do me good until it is unbearably out of date.

That's my policy. Thing is, this junker is unbearably out of date.

And yes, instant power-cord-less access to loli anwhere is a plus.


(edited by HyperHacker on 06-08-05 02:58 PM)
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4860/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-09-05 08:10 AM, in Keep the monitor turned off Link
Windows doesn't have a 'turn monitor off right now' option. I used another program to do so, and I figured I could easily write my own version if I need to.

TweakUI won't install either. It says something about not being able to find a function of some sort.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 4861/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 06-09-05 08:33 AM, in Uh...help... Link
Because If and Goto are too complicated for ASM. (Actually, 'goto x' is basically just the same as 'jmp x' or similar.) It takes some getting used to but it's not that bad. Basically in ASM you can only compare two values and jump to different parts of code based on whether one is greater than, less than, equal to, or not equal to the other. You use this in conjunction with math and various jumps to achieve the same effect as an If statement.

Example: a chunk of C code:
if(a == b) DoSomething(); else if(a > b) DoSomethingElse();

Might look like this in ASM:
cmp a,b ;are A and B equal?
bne .next1 ;If result of last compare was 'not equal' go to '.next1'
call DoSomething
bra .end ;Go to '.end'

;A != B... is A > B?
.next1:
cmp a,b ;Not entirely necessary, included for demonstration purposes
bcc .end ;BCC = branch if less than (Branch if Carry Clear); go to .end
call DoSomethingElse

.end: ;Code ends here
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
Acmlm's Board - I2 Archive - - Posts by HyperLamer


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.029 seconds.