Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Lance

Pages: [1] 2 3 ... 9
1
General Discussion / Re: VPS Providers
« on: June 29, 2010, 11:02:52 am »
I used to use http://www.ovh.co.uk/products/rps1.xml

Other than I'd have to resell it to you, they're awesome.  (They don't sell to Americans)

They're using Intel Atom's in a server? Or is there a different Atom I don't know about?
http://www.zdnet.com/blog/gadgetreviews/would-you-run-a-server-using-intels-atom-processor/1966

2
General Programming / Re: [JAVA] Datagram Hook
« on: June 25, 2010, 09:49:27 pm »
What about Jpcap? I happened to run into this by chance a few months ago but never knew what it really was. Can this accomplish what I need it to?

EDIT: Jpcap seems to be what I am looking for, I am going to try some of the samples out! :D

3
General Programming / [JAVA] Datagram Hook
« on: June 25, 2010, 09:35:46 pm »
I want to receive the outgoing UDP datagrams from a C++ program, and spoof the sender address of incoming datagrams; nothing more and nothing less. Is this possible with Java, or is the language too limited?

I am using Fedora by the way.

Thanks :)

EDIT: The C++ program is open source so I have full access to it's API.

EDIT 2: Fixed some bad wording.

4
General Discussion / Re: Hackers are after your blender!
« on: June 25, 2010, 08:48:55 pm »
Is that a packet logger in the background?

5
General Discussion / Re: Age Differential
« on: June 25, 2010, 08:46:37 pm »
I think any social taboos about who dates who are retarded. Age, gender, race, etc -- who cares? I'm fine with older/younger, homosexual, mixed race, even polygamy -- I don't see how any of it hurts me, and if it makes the people happy, that's great!

Yes!

6
General Discussion / Re: VPS Providers
« on: June 25, 2010, 11:23:00 am »
These guys are great; I actually had a VPS with them not too long ago before switching to dedicated. The original price is decent as is, but the coupon just makes the deal spectacular.

Quote from: Coupon Code: VPS11YRS
Get 15% off for life, not just a temporary discount. Plus get 10GB diskspace FREE, 256MB ram FREE, ClientExec FREE, RvSkin FREE, and 50% more bandwidth FREE!

If you are looking for a server in the UK, I think they have a brand over there too.

7
JavaOp Board / Re: Java Op
« on: June 24, 2010, 05:06:21 pm »
Haha. Awesome, I like the new window options, and the new objects in the right click menu. The "help" section is nice too, with expanded information... but whenever I open one of the info pages, all of the text is really small and unreadable... as well as being what I think is a blusish-brown color on a blue background. There should be a general/typical "about" section that just displays a logo or something and the version number/build.

It would also be awesome if you made the text black when it's in your typing bar... if you can. Unless thats under color settings... color settings should be a global setting, I think.. but I guess it's ok as is.

When I try to delete a bot, It still just closes the window and doesn't delete the bot.

I also like it how the new version imported my old bots... how'd it do that? Where's the stuff saved?
I am sure Joe will fix those things. :P

The settings, etc. are saved in the .javaop2 folder under the user's home directory.

8
JavaOp Board / Re: Java Op
« on: June 24, 2010, 02:18:08 pm »
sm3, I have a treat for you! :)

Revision 69 (compiled) can be download here.

9
JavaOp Board / Re: Updating a plugin to javaop 2.1.3 lost in forest
« on: June 24, 2010, 01:52:51 pm »
I found the problem... The manifest needs an empty line at the end. Yay for uppercase package names :D

10
JavaOp Board / Re: Java Op
« on: June 24, 2010, 10:33:41 am »
For what it's worth, I have given joe access to the site multiple times. He currently has a working account to modify it.

Much like the x86 site he assured us he'd keep up to date, he just doesn't. :P

If you give me ftp access I will be more than happy to do it for Joe. :)

11
JavaOp Board / Re: Java Op
« on: June 24, 2010, 10:17:54 am »
Ahh.... did you change the font color for the new version? or you could be like Stealthbot and change the background color, if Java allows for that.
I think this is just a bug.

12
I still like ending PHP tags more.  Easier to structure things via spacing.
That works too! :D Very flexible, but it comes at the cost of having to open/close tags and echo/print for every variable.

13
I don't want to necropost.. But what is wrong with heredoc?

They don't do anything better than other methods, and I'd be willing to bet 90%+ of php programmers don't know about that.
With what Sidoh said regarding efficiency in this case I completely agree. If that is what you are pointing out, then I agree with you as well.

If you are saying heredoc is no better than single quoted or double quoted strings in any way, then I have to disagree. Heredoc does not require escaping for double quotes, or concatenation to use variables. Heredoc also looks better. A con is the tabbing, but tell me which is more readable:
Code: (Single Quoted) [Select]
       printf('<form action="' . $_SERVER['PHP_SELF'] . '" method="POST">');
        printf('<textarea name="array" cols="100" rows="25"></textarea><br />');
        printf('<input type="submit" name="submit" />');
        printf('</form>');
Code: (Double Quoted) [Select]
       printf("<form action=\"{$_SERVER['PHP_SELF']}\" method=\"POST\">");
        printf("<textarea name=\"array\" cols=\"100\" rows=\"25\"></textarea><br />");
        printf("<input type=\"submit\" name=\"submit\" />");
        printf("</form>");
Code: (Heredoc) [Select]
$form = <<<GGWP:
<form action="{$_SERVER['PHP_SELF']}" method="POST">
<textarea name="array" cols="100" rows="25"></textarea><br />
<input type="submit" name="submit" />
</form>
GGWP;
printf($form);

14
I don't want to necropost.. But what is wrong with heredoc?

15
JavaOp Board / Re: Java Op
« on: June 23, 2010, 08:07:55 am »
I have access to the JavaOp website. I'll get around to updating it.

EDIT: I thought of a much better solution than an index script.

Code: (".htaccess") [Select]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . http://javaop.googlecode.com [L,R=301]
</IfModule>

What do you mean thats part of how battle.net works? When I was on stealthbot I could see what I was typing, and on here I found out that I can see what I'm typing if I highlight the text box.

I am experiencing this issue as well. The chat text area font color is the same as the background (white), and can only be seen when highlighted. Also, I think Joe was referring just to the asterisk part.

Pages: [1] 2 3 ... 9