Members in Shoutbox
None.

Shoutbox Search
Search for:


Shoutbox Commands
/w [name] > Whisper
/r > Reply to last whisper
/me > Marks as action

Shoutbox Information
Moderators may delete any and all shouts at will.
Global Shoutbox
Please log in to shout.
Pages: < 1 « 3399 3400 3401 3402 34033540 >

[2014-9-05. : 9:58 pm]
jjf28 -- or he's coding with defines of defines of (etc.)
[2014-9-05. : 9:58 pm]
Roy -- EUDGen2 actually looks pretty nice, I have to say.
[2014-9-05. : 9:57 pm]
Roy -- I double-clicked EUDGen2 for the first time just now and it popped up before I could even switch back to Chrome.
[2014-9-05. : 9:57 pm]
O)FaRTy1billion[MM] -- like now if I click it it will open right away. I'm not sure when it stops doing that and has to take forever again ..
[2014-9-05. : 9:57 pm]
O)FaRTy1billion[MM] -- Once I've ran it then it comes up immediately. But the first time takes a really long time
[2014-9-05. : 9:56 pm]
O)FaRTy1billion[MM] -- o there's EUDGen2 now.
[2014-9-05. : 9:56 pm]
Roy -- There's something wrong with your machine, Farty.
[2014-9-05. : 9:56 pm]
lil-Inferno -- Yeah really, it takes like a second at most for my shit to compile and run.
[2014-9-05. : 9:56 pm]
O)FaRTy1billion[MM] -- Still waiting for it to come up.
[2014-9-05. : 9:56 pm]
O)FaRTy1billion[MM] -- I just ran EUDGen2 a few moments ago
[2014-9-05. : 9:55 pm]
Roy -- What kind of 1990 specs are you running?
[2014-9-05. : 9:55 pm]
O)FaRTy1billion[MM] -- Well, C# is good I guess if you have plenty to do while you wait for the program to start. :P
[2014-9-05. : 9:54 pm]
O)FaRTy1billion[MM] -- I use gcc, so it's not part of an IDE ... the IDE just compiles with gcc
[2014-9-05. : 9:54 pm]
Roy -- Also known as the best damn language to ever have existed.
[2014-9-05. : 9:54 pm]
O)FaRTy1billion[MM] -- C# is also C# :P
[2014-9-05. : 9:54 pm]
Moose -- Roy: "Get a smarter IDE" fixt, rekt.
[2014-9-05. : 9:54 pm]
Roy -- Oh really? For C# a lot of the warnings come from VS or an extension like R# or StyleCop.
[2014-9-05. : 9:52 pm]
O)FaRTy1billion[MM] -- I don't think it's the IDE that returns the warnings/errors, its gcc
[2014-9-05. : 9:52 pm]
Roy -- Get a smarter IDE?
[2014-9-05. : 9:49 pm]
O)FaRTy1billion[MM] -- Hey I've gotten warnings before that ifs will never return true ... how does that not trip that?
[2014-9-05. : 9:43 pm]
O)FaRTy1billion[MM] -- I found that the largest value of c was always the most optimal, but could never exceed count .. but never updated all the code to reflect that change I guess. :P
[2014-9-05. : 9:40 pm]
O)FaRTy1billion[MM] -- Oh, I know how that happened. " for(c=count; c>=1; c--){", c used to count up instead of down, and was not limited to 'count'.. before I changed that, the if in the original code (not b<b) would actually do something.
[2014-9-05. : 9:38 pm]
Devourer -- :D
[2014-9-05. : 9:35 pm]
O)FaRTy1billion[MM] -- no im a good programer
[2014-9-05. : 9:34 pm]
O)FaRTy1billion[MM] -- it's supposed to be if(b<c), but I tested it and when that does happen the if inside is always false :P
[2014-9-05. : 9:32 pm]
O)FaRTy1billion[MM] -- And even if b<b ever returned true, the code in that if is functionally equivalent to in the else{}, just with a lot less calculations :P
[2014-9-05. : 9:31 pm]
O)FaRTy1billion[MM] -- because the original code is basically like if(a<b){ if(a==b){ ... } }else{ // actually does stuff }
[2014-9-05. : 9:30 pm]
O)FaRTy1billion[MM] -- Mini Moose 2707
Mini Moose 2707 shouted: Maybe you wanted it to be false all the time
I think I did, because going over the original code, that if never is true. :P
[2014-9-05. : 9:25 pm]
Dem0n -- teach me c pls
[2014-9-05. : 9:24 pm]
Moose -- Maybe you wanted it to be false all the time
[2014-9-05. : 9:23 pm]
O)FaRTy1billion[MM] -- It's because I originally wrote it in VB so I could do it fast.. I must've typed it wrong when converting to c
[2014-9-05. : 9:22 pm]
jjf28 -- stop programming while tired :P
[2014-9-05. : 9:22 pm]
O)FaRTy1billion[MM] -- " if(b < b){" wtf? :lol: I don't know how that happened
[2014-9-05. : 9:16 pm]
O)FaRTy1billion[MM] -- I'll need to figure out how to calculate it like I did for triggers and then just compare dummy units at end only vs. dummy units at start and bottom. The worst will be if sometimes one is smaller and other times the other is smaller. xD
[2014-9-05. : 9:13 pm]
O)FaRTy1billion[MM] -- If I put dummy units only at the bottom, then it has to read 1 fewer valid unit every time ... if I add dummy units before and after the real units, then every time it reads over that block of units it needs 2 more units. :\
[2014-9-05. : 9:11 pm]
O)FaRTy1billion[MM] -- Start Locations don't get added as units, and so you can put as many as you want and just put the real one last... It's necessary because (x,y) becomes the size of the jump section
[2014-9-05. : 9:10 pm]
O)FaRTy1billion[MM] -- er, by 'dummy sections' I mean 'dummy units' ...
[2014-9-05. : 9:10 pm]
O)FaRTy1billion[MM] -- Triggers don't need dummy blocks, so I didn't have to worry about it.
[2014-9-05. : 9:09 pm]
O)FaRTy1billion[MM] -- but what I don't know is if I like interleave dummy sections, or do put dummy sections before the block of used units, or after, or both?
[2014-9-05. : 9:09 pm]
O)FaRTy1billion[MM] -- jjf28
jjf28 shouted: build a program to find out :kame:
That's kind of what I did for triggers ... but I at least first had an idea of how I wanted to do it. :\
[2014-9-05. : 9:08 pm]
Moose -- Roy
Roy shouted: I think we need to rebalance the boxes.
I think you need to get good, scrub.
[2014-9-05. : 9:07 pm]
jjf28 -- build a program to find out :kame:
[2014-9-05. : 9:07 pm]
O)FaRTy1billion[MM] -- Stacking trigger sections was easy.
[2014-9-05. : 9:07 pm]
O)FaRTy1billion[MM] -- How do I stack unit sections? I don't know where to optimally put dummy sections :\
[2014-9-05. : 9:06 pm]
Roy -- I think we need to rebalance the boxes.
[2014-9-05. : 9:06 pm]
Moose -- 600 magic box, all your minerals are mine, ez game ez life
[2014-9-05. : 8:59 pm]
payne -- lol jack
[2014-9-05. : 8:48 pm]
jjf28 -- Jack :lol:
[2014-9-05. : 8:46 pm]
Jack -- http://i.imgur.com/8UQQQp4.jpg
[2014-9-05. : 8:44 pm]
Jack -- ezpz
[2014-9-05. : 8:42 pm]
Devourer -- 18 tickets sold, only 117 jackpot lol
[2014-9-05. : 8:24 pm]
Moose -- 3 + 2ez
[2014-9-05. : 8:24 pm]
Moose -- Jack, day 5, where you at
[2014-9-05. : 8:17 pm]
O)FaRTy1billion[MM] -- Right now I'm trying to figure out how to stack units ... It's less trivial since it would need to overwrite (x,y) of the next unit, necessitating dummy unit (start location) slots which I'm not sure how to optimize. :\
[2014-9-05. : 8:16 pm]
O)FaRTy1billion[MM] -- You PMed me that one map, and the first thing I did was make this program. xD
[2014-9-05. : 8:16 pm]
jjf28 -- yea prolly..
[2014-9-05. : 8:16 pm]
O)FaRTy1billion[MM] -- I PMed it to you a long time ago :P
[2014-9-05. : 8:03 pm]
jjf28 -- dEUPs (or whatever acronym someone else comes up with for death table addon EUPs) gotcha' covered
[2014-9-05. : 8:02 pm]
jjf28 -- FaRTy1billion
FaRTy1billion shouted: Azrael The only potential problem with that is such a map would contain the means to run arbitrary code, and you'd be passing that around to everyone.
indeed, might post it in some manner eventually, but for now you should recognize that you don't even need to enable EUDs to do most things
[2014-9-05. : 7:57 pm]
jjf28 -- would make EUPs tons more attractive :)
[2014-9-05. : 7:57 pm]
jjf28 -- farty, post ur section compression program
[2014-9-05. : 7:51 pm]
O)FaRTy1billion[MM] -- then they'd fuck up the map it's in :P
[2014-9-05. : 7:43 pm]
Dem0n -- Let's be realistic. Most people are fucking stupid and won't know how to potentially fuck up other peoples' computers with that information.
[2014-9-05. : 7:08 pm]
O)FaRTy1billion[MM] -- Azrael
Azrael shouted: Someone should make a template map which runs EUD Action Enabler, which other people can then edit in any way they want to make a map with EUD actions.
The only potential problem with that is such a map would contain the means to run arbitrary code, and you'd be passing that around to everyone.
[2014-9-05. : 6:40 pm]
payne -- :payne:
[2014-9-05. : 6:31 pm]
Zoan -- Zoan
Zoan shouted: And certainly this value is really big, at least bigger than 1. But if we say (right now in whatever time t we are in) that "if t=1, then t= 2 meters," that statement would be true. So to us right now, the past is a world where time can be anything.
Actually, the past wouldn't only be a world where time could be anything; it would be a world where ANYTHING could be anything.
[2014-9-05. : 6:28 pm]
Zoan -- D:
[2014-9-05. : 6:28 pm]
Zoan -- My brain
[2014-9-05. : 6:28 pm]
Zoan -- ...
[2014-9-05. : 6:25 pm]
Zoan -- Same with the future.

Pages: < 1 « 3399 3400 3401 3402 34033540 >


Members Online: 3evanc493ec5, 4andrewc312gg3