Search found 67 matches
- Sun Aug 15, 2010 10:59 pm
- Forum: Challenges Solved
- Topic: Broken XOR 3
- Replies: 7
- Views: 1435
- Tue Mar 18, 2008 3:42 am
- Forum: BitBath
- Topic: Radio - shuts off when think returns null
- Replies: 3
- Views: 23378
- 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 ...
- 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...
- Thu Mar 13, 2008 8:33 am
- Forum: OneOfUs
- Topic: Levels 242 and above
- Replies: 17
- Views: 60761
Re: Levels 242 and above
Good question.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...
- 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...
- Wed Nov 14, 2007 4:34 am
- Forum: BitBath
- Topic: BitBath launches!
- Replies: 2
- Views: 10669
- 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...
- 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? ...
- Sun Sep 16, 2007 10:19 pm
- Forum: The Hacker's Server
- Topic: Visual basic please
- Replies: 9
- Views: 13761
Re: Visual basic please
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.fallen_angel13 wrote:do anyone know where I can install visual basic??

http://msdn2.microsoft.com/en-us/express/default.aspx
It also supports C# and C++.
- 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?
This happens automatically in most operating systems, that's called a "swap file".mhabibie wrote:hi guys
do tou know how to make harddisk as RAM or VGA RAM?
Usually you won't swap out video memory, though.
- Sat Sep 08, 2007 8:02 pm
- Forum: Runaway Robot Puzzle
- Topic: Runaway Robot Puzzle
- Replies: 47
- Views: 122485
- 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
- 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...