(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
06-10-24 02:56 PM
Acmlm's Board - I3 Archive - - Posts by neotransotaku
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
User Post
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-18-05 01:26 AM, in HOLY SHIT I GOT ACCEPTED Link
Real Time Interactive Simulations...sounds like you could use this outside of the gaming industry... so, you see beyond what digipen represents
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-18-05 05:31 PM, in The Other Football Thread: Did NOBODY watch the Super Bowl?! Link
Not much to say now but...the colts lost to the chargers...

So, will we see 2nd string get playing time?
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 01:36 PM, in Opening 4MB files...or well, have a seamless hex editor... Link
I'm in the midst of writing my own hex editor to do translation because all the other ones out there do not do what I want (i.e. Japanese Tables with mixed ASCII/Shift-JIS/EUC support in one file--I don't like Unicode because no program right now does do mixed ASCII/Unicode--if they can, then I can use WIndHex and I don't need to program anymore)

Alright, my problem is this. I want to efficiently open files. For people changing the text in a ROM, only a small portion of the file will ever be active on the screen (say 4-8KiB) at a given time. I know I could just open the file in these small chunks, but still allow seamless scrolling through a file like what WindHex and Hex Workshop allow? So basically, anyone have any approaches in dealing with this problem?
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 01:43 PM, in The Other Football Thread: Did NOBODY watch the Super Bowl?! Link
two trick plays...you'd think the d-coordinator would have watched out for that?

on the flip side, the 49ers and the Texans may heading towards a game that means something in two weeks as they are both 2-12 and their next games do not seem winnable for them. If that is the case, they they'll be playing each other for rights for the #2 pick, as the loser gets #1...
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 01:45 PM, in Tae Kwon Do Link
I took Tae Kwon Do when I was in high school. The place I went to had a 4 year program to reach black belt, so I made it to Red, 1.5 years away from being able to test for black belt. stopped because college came (or well, I was taking community college classes and that was taking too much of my time)
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 03:39 PM, in Opening 4MB files...or well, have a seamless hex editor... Link
I've thought about that but that's too ugly--and it won't scale for 16, 32MB files. I already tried loading in an entire 256KiB file and that took 10 or so seconds...
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 06:17 PM, in Opening 4MB files...or well, have a seamless hex editor... Link
Hmm...memory mapping...that sounds better than just merely reading the contents into memory.

Let's see if Java has an equivalent...
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 06:31 PM, in Programming Experts directory Link
^ sorry.

Updated through this post.
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 10:15 PM, in Opening 4MB files...or well, have a seamless hex editor... Link
actually...i was just guessing

I tried loading all that in a few months ago and don't remember exactly what happened. I tried the samething again today and it was seamless. I think the difference was this machine was Athlon Sempron 2800 w/ 1GiB of RAM and the other machine was P4 2.8GHz (no H/T) and only 512-32 MiB of RAM.

So yeah, it appears I do not have much of an issue (as I tried a 32MiB file and it took 3 secs) but yeah...it seems so inefficient to load everything into memory...

Side Note--I would obviously rather program in C/C++. Problem is, I never have been able to pick up a nice windowing toolkit as convenient as Java--I've tried both MFC and WinAPI but the books I've read present way too much information right off the bat (or too difficult to use)
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-19-05 10:20 PM, in [Java] This looks right, but... Link
it doesn't do what I intended

  public void keyPressed(KeyEvent e)

{
switch(e.getKeyChar())
{
case(KeyEvent.VK_CAPS_LOCK):
switch(typeMode)
{
case(MODE_ASCII):
typeMode = MODE_JPN;

break;
case(MODE_JPN):
typeMode = MODE_ASCII;
break;
default:
throw new IllegalArgumentException("Invalid TypeMode");
}
break;
default:
System.out.println(KeyEvent.getKeyText(e.getKeyChar()));
}
}


this code always lands me in default when I press Caps Lock...

side note--if anyone knows how to disable br's inside pre with CSS, PM me with code, thanks.
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-20-05 02:40 AM, in Sound is scratching and skipping Link
try to reinstall/update your sound drivers
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-20-05 02:45 AM, in "Simple" tasks you're proud you can finally do Link
I can sleep on public transportation and not miss my stop

okay...if that doesn't count then... I know how to use an operating system that isn't windows/mac. I used to avoid linux/unix simply because I didn't know how to understand the world of just doing everything with a console. Nowadays, I'm not scared anymore and can do quite a few things on any type of linux system short of configuring it but I can install stuff and know how to debug my way around installations
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-20-05 02:47 AM, in Have you ever...? (The end! Finally!) Link
assuming you mean going up (not sure how that is even possible going down...) but no, because my stairs do not have any type of overhang on them


have you ever thought you got one of several things you need and it turned out you took two of something and none of the other?
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-20-05 02:49 AM, in December 2005 ACS Rankings Link
It's contaigous (sp:?)
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-20-05 02:50 AM, in Not-so-Lost Thread #7, which is still alive even after two hack attacks Link
*makes a snowball and throws it at Shyguy*

yes! score!
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-21-05 01:45 AM, in [Java] This looks right, but... Link
ack...i wasn't clear which default I was in.

The problem is the code thinks the caps lock key is not pressed, even when I am pressing the damn key. So...any ideas of how to get this code to recognize when caps lock is pressed. I also have a keyTyped function in the same class and it recognizes my keystrokes (so that rules out the fact that I have not added my listener). MODE_ASCII and MODE_JPN are static final ints and typeMode is initialized to MODE_ASCII
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-21-05 02:57 AM, in Opening 4MB files...or well, have a seamless hex editor... Link
Alright, this talk about use filemapping has gotten me intrigued and I have pulled out that MFC book that I was talking about, dusted it off, and started going through it again. Played around with MFC, got a little bit of the hang of it and tried to use filemapping. After some work, I finally got a succesful mapping. Question I have right now is this: What is the proper way to fully close a map file? So, I have done the following:

HANDLE hFile = CreateFile(...);
HANDLE hFileMap = CreateFileMapping(hFile, ...);
LPVOID lpRawdata = MapViewOfFile(hFileMap, ...);
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-21-05 04:35 AM, in Smells Link
i bet rubber cement will also float your boat...

hmm... I usually don't notice smells that much. I know I can smell rain, and various foods. But usually emotions are triggered by them for me... it is either that or, I just never noticed
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-21-05 04:44 AM, in That time of year again: Google Zeitgeist 2005 Link
The media spent 3 three weeks on katrina versus about 3 days for the earthquake...

Anyways, interesting data collected by google. I wonder what other stuff they have recorded and not released actually, there is a small blip of the Kashmir quake in the Nature section...
neotransotaku

Sledge Brother
Liberated from school...until MLK day








Since: 11-17-05
From: In Hearst Field Annex...

Last post: 6324 days
Last view: 6321 days
Posted on 12-21-05 04:50 AM, in December 2005 ACS Rankings Link
*pulls out gun and shoots the radio*

christmas carols *blech*
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
Acmlm's Board - I3 Archive - - Posts by neotransotaku


ABII

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

Page rendered in 0.023 seconds; used 444.25 kB (max 572.92 kB)