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 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 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
User Post
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 504/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 04:43 AM, in The playoffs are coming. Link
Originally posted by Wrath

San Jose and Detroit can't meet in the finals only the conf. finals.


that's what i meant, the conference finals...i guess i was thinking faster than I was typing

anyways, colorado winning the next 4...i doubt it...but we shall see tomorrow...i think colorado will win tomorrow, but not game 5...
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 505/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 04:46 AM, in How one guy is dealing with divorce... Link
this is hilarious...

i guess sometimes there is a lighter side to divorce?
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 506/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 04:48 AM, in Some riddles... Link
because its daylight?
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 507/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 04:52 AM, in Strategy Guides Link
i only own one--the special edition of the FFX-2 strategy guide. I didn't use it at all when I played FFX-2 the first time and when I get around to playing FFX-2 again, i will definitely use it then...or will i?

but in short, i don't consult FAQs, Walkthroughts, Guides until i beat the game once...


(edited by neotransotaku on 04-27-04 07:53 PM)
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 508/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 09:20 AM, in The playoffs are coming. Link
in 87 years, only two teams have come back from a 3-0 deficit...with the last one coming in 1978 or something. so, this can be interpreted in two ways: it isn't going to happen any time soon, or the law of averages has to appear again by now if you catch my drift.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 509/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-28-04 07:00 PM, in Java vs. C# Link
with computers nowadays, is the slowness that noticable? as for writing a small batch program, that is what executable jars are for.

as for Java GUIs...if you want total control, you use AWT--but your stuff isn't going to look good outside the platform...

but anyways, C# and java are both have their merits and drawbacks--i guess determining which one is better depends how the language responds when you try to use it.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 510/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-29-04 03:26 AM, in C++ question Link
use the change of base algorithm...in this case, your base remains the same. since you want to convert a decimal number into each of its decimal counter parts, you divde your number by each of the components.

for example:

1,000 / 1,000 = 1 r 0
0 / 100 = 0 r 0
0 / 10 = 0 r 0
0 / 1 = 0 r 0

34853 / 10,000 = 3 r 4853
4853 / 1,000 = 4 r 853
853 / 100 = 8 r 53
53 / 10 = 5 r 3
3 / 1 = 3 r 0

as you can see, this is the general base conversion algorithm. try it by converting decimal to hexadecimal or decimal to binary.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 511/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-29-04 05:38 AM, in C++ question Link
Originally posted by Weasel
I'm not allowed to use arrays (or strings) in this program. My teacher just informed me of this...


didn't you read my idea?

all you need is a counter (variable 1), the value read (variable 2), the constant 10, a function that will give you power to calculate exponentials, remainder (variable 3), a pointer to the beginning of the list (variable 4), a pointer to the end of the list (variable 5)

if you still don't get it, i can write it all out for you
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 512/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-29-04 07:20 AM, in Have you thought of donating your organs when you die? Link
yes, i have thought about...since well, saving one person's life could make society for the better...

however, i have yet to declare such a move and i'm not sure when I will...
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 513/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-29-04 07:29 AM, in C++ question Link


anyways...to make you do somework, this code won't compile...but it lays out the framework of what you must do

listnode* head = (listnode*)malloc(listnode);
listnode* tail = head;


sscanf("%d", &value);


for(int i = 10; i > 0; )
{
int place = pow(10, i);
head->character = int2char(value / place);
listnode* buffer = (listnode*)malloc(listnode);
head->tail = buffer;
tail = buffer;
value = value % place;
i--;
if(i % 3 == 0 && i != 0)
{
head->character = ',';
}
}

neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 514/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 04-29-04 07:31 AM, in Whistler? Link
that's the code name that microsoft used to develop windows XP

the next OS after WinXP is codenamed Longhorn and i believe it has been released...but i'm not sure about that.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 515/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-01-04 09:30 AM, in Drivers... Link
If you can still get into Windows 98, then you can right click on my computer, select properties, and go to the device manager tab--there you can find the names windows believes your hardware is called.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 516/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-01-04 10:37 AM, in Someone has too much time on their hands... Link
Not your ordinary computer tower

this individual has too much time on their hands...and I'm jealous of that...

but anyways, if any of you are tired of the way your computer tower looks, you might want to check this out to get ideas for a new look
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 517/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-02-04 11:49 AM, in Practical uses for Java Link
Java is your language if you want easy portibility. If you are going to be writing applications for multiple platforms, then Java is a language that will take care of that for you. If you write stuff in C/C++, then just because it runs on an x86 machine (i.e. windows), doesn't mean it will run on a unix machine or a mac.

From a programmers point of view, it is another language you can learn to add to your list of languages you can program in--thus, providing you with a few more opportunities in jobs that are out there.

Java is my primary language of choice but I can program in C, C++, C#, a few dialects of LISP, Visual Basic, and BASIC itself.

People say Java is slow, but I say in what sense? Garbage collection is your friend and is the interpretation of Java byte code instead of feeding it straight into the machine that much of a difference.

In short, Java is a good class to take if you are serious about majoring in Computer Science because the more languages you know, the better opportunities of jobs there will be out there.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 518/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-02-04 11:59 AM, in Drivers... Link
well...maybe name recognition gets better with later versions of windows? but that doesn't help you much now does it?

i guess if you don't want to deal with learning the names of your hardware, you could always install a later verision of windows...
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 519/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-03-04 01:03 PM, in Prom 2004 Link
I'm no longer in school, but isn't prom early for you? well, that could be the case if you are a junior, as I recall, my Junior Prom was around the last weekend in april--and I had a good time as well

anyways, as long as you and your date had a good time, that's all that matters.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 520/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-03-04 01:45 PM, in 2-player RPGs? Link
Namco's Tales Series is also multiplayer RPG. Tales of Phantasia, Tales of Destiny, Tales of Eternia, and Tales of Destiny 2 all allow more than one person to play.
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 521/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-03-04 02:06 PM, in What's your Livejournal? Link
i don't have a livejournal...but i do have a so called "blog" at another site...if you float my handle around at the blog sites you can think of, you will find it eventually
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 522/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-03-04 02:11 PM, in The playoffs are coming. Link
For my beloved Los Tiburones, they better

anyways,
Toronto on the brink of elimination...i feel it is going to happen
Detroit is on the brink of elimination...i think they will advance

Tampa Bay has advanced...and looks like will make it to the finals unless the next team the face has all-stars on every line...
neotransotaku

Baby Mario
戻れたら、
誰も気が付く
Level: 87

Posts: 523/4016
EXP: 6220548
For next: 172226

Since: 03-15-04
From: Outside of Time/Space

Since last post: 11 hours
Last activity: 1 hour
Posted on 05-05-04 02:01 PM, in The playoffs are coming. Link
OMG...my beloved los tiburones advanced

an even bigger OMG...calgary knocked of detriot last light

who would have thought we would have conference finals with these 4 teams...this should be an interesting stanley cup indeed
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
Acmlm's Board - I2 Archive - - Posts by neotransotaku


ABII


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



Page rendered in 0.021 seconds.