Search found 67 matches

by Captain Segfault
Sun Aug 15, 2010 10:59 pm
Forum: Challenges Solved
Topic: Broken XOR 3
Replies: 7
Views: 1435

My approach was accidentally fast -- due to a bug in my code during my first pass I only considered the first 30ish hex digits. That turned up a string "the answer tod". I tried "tod" and it didn't work, then I noticed the bug in my code and fixed it. Then I realized I'd found th...
by Captain Segfault
Tue Mar 18, 2008 3:42 am
Forum: BitBath
Topic: Radio - shuts off when think returns null
Replies: 3
Views: 23378

I've noticed that if you return an object with a 0 command type it sets the radio without stopping the bot.

It also keeps the radio up.
by Captain Segfault
Thu Mar 13, 2008 5:36 pm
Forum: OneOfUs
Topic: Puzzle ends at 1000
Replies: 7
Views: 34305

Re: Puzzle ends at 1000

(level 1000 took segfault 10 seconds or so.) Actually, it took the solver only 0.3313 seconds, although there was at least one level that took over 20. Unlike runaway I'm absolutely certain that this problem is (in general) NP-hard. However, I suspect the expected running time of my solver against ...
by Captain Segfault
Thu Mar 13, 2008 9:29 am
Forum: BitBath
Topic: Herd declares class variables - I don't understand why
Replies: 3
Views: 23228

Re: Herd declares class variables - I don't understand why

[quote="gorzak"] Then I remembered that one of the example bots uses the static modifier. I double checked, and sure enough it has : public static final int CITY = 0; public static final int GRUNT = 1; public static final int HOVERCRAFT = 2; public static final int ARTIL = 3; These are con...
by Captain Segfault
Thu Mar 13, 2008 8:33 am
Forum: OneOfUs
Topic: Levels 242 and above
Replies: 17
Views: 60761

Re: Levels 242 and above

adum wrote: everything else is the same. this should get us to level, hmmn, 2000 or so. i'd say we'll never make it, but you never know...
Good question.
by Captain Segfault
Wed Mar 05, 2008 5:26 am
Forum: BitBath
Topic: Instructions
Replies: 2
Views: 20010

It's java bytecode instructions; each time an instruction executes the count goes up by one. You can use javap to disassemble your bytecode to see exactly what the instructions are. A line of code might be several instructions-- 500 doesn't actually correspond to /that/ much executed code, particula...
by Captain Segfault
Thu Nov 15, 2007 4:48 am
Forum: BitBath
Topic: SDK v244
Replies: 2
Views: 12172

The simulator isn't working with this: ojvm.data.MethodNotFoundE: Method (DDDDZIIDDDD[D[D[I[I[I[[I)Ljava/lang/Object; think not found

"Native" works fine, though.
by Captain Segfault
Wed Nov 14, 2007 4:34 am
Forum: BitBath
Topic: BitBath launches!
Replies: 2
Views: 10669

Is it possible for a unit to radio without stopping?

Or, more generally, how does radio work? Ie, what does a bot need to do to have its radio array show up in someone else's incomingRadio? For how long does it show up?
by Captain Segfault
Tue Nov 13, 2007 4:38 am
Forum: BitBath
Topic: didn't find a local variable: are you sure you called your f
Replies: 1
Views: 10516

didn't find a local variable: are you sure you called your f

The following code produces an exception: import java.util.Random; public class wtfbot { public int orderType = 1; // always a move order public double destX, destY; // the move order will use these fields to communicate a destination public int[] radio = new int[4]; public Object think(double dx, d...
by Captain Segfault
Sun Sep 16, 2007 10:24 pm
Forum: The Hacker's Server
Topic: Lessons for Newbies
Replies: 31
Views: 38095

Okay, this is probably a really stupid question, but when I make the BAT file and run it, it instantly closes when I open it, I've been playing around in C++ too and when I make those little beginner programs it does the same thing, just closes as fast as it opens. Any idea on how to make it stay? ...
by Captain Segfault
Sun Sep 16, 2007 10:19 pm
Forum: The Hacker's Server
Topic: Visual basic please
Replies: 9
Views: 13761

Re: Visual basic please

fallen_angel13 wrote:do anyone know where I can install visual basic??
You probably want to get "Visual Studio Express", which is a free version of visual studio targeted at the sort of person who would ask that question. :-)

http://msdn2.microsoft.com/en-us/express/default.aspx

It also supports C# and C++.
by Captain Segfault
Thu Sep 13, 2007 1:51 am
Forum: The Hacker's Server
Topic: how to use harddisk to be RAM?
Replies: 2
Views: 9332

Re: how to use harddisk to be RAM?

mhabibie wrote:hi guys
do tou know how to make harddisk as RAM or VGA RAM? :P
This happens automatically in most operating systems, that's called a "swap file".

Usually you won't swap out video memory, though.
by Captain Segfault
Sat Sep 08, 2007 8:02 pm
Forum: Runaway Robot Puzzle
Topic: Runaway Robot Puzzle
Replies: 47
Views: 122485

gfoot wrote: Interestingly, I got to level 511 on an NP algorithm
Nitpick: algorithms aren't NP. Languages/problems are NP. NP does not mean "non polynomial". :-)
by Captain Segfault
Sat Sep 08, 2007 2:57 pm
Forum: The Hacker's Server
Topic: How to Avoid "Not enough Memory" error in c progra
Replies: 12
Views: 17650

the command which i am using is "execl("file name","argument 1","argument 2","argument 3");", it's an 'c' command to run the child process...............[/b] You have the syntax slightly wrong; this may be your problem. It's actually execl("fil...
by Captain Segfault
Fri Sep 07, 2007 3:36 pm
Forum: The Hacker's Server
Topic: FTP
Replies: 11
Views: 16584

than can you tell us a good and free password crackrer programme :D 8) Unless you get a copy of the password hash any such program will need to attempt online. That's going to take prohibitively long for any but the weakest of passwords. Many servers rate limit connection attempts nowadays, too. Al...