News:

Happy New Year! Yes, the current one, not a previous one; this is a new post, we swear!

Main Menu
Menu

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.

Show posts Menu

Messages - Lance

#1
General Discussion / Re: VPS Providers
June 29, 2010, 11:02:52 AM
Quote from: Joe on June 25, 2010, 09:40:11 PM
Quote from: Blaze on June 20, 2010, 11:49:16 PM
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
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
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
Is that a packet logger in the background?
#5
General Discussion / Re: Age Differential
June 25, 2010, 08:46:37 PM
Quote from: iago on May 22, 2010, 10:48:22 AM
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
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
June 24, 2010, 05:06:21 PM
Quote from: sm3 on June 24, 2010, 03:25:07 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
June 24, 2010, 02:18:08 PM
sm3, I have a treat for you! :)

Revision 69 (compiled) can be download here.
#9
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
June 24, 2010, 10:33:41 AM
Quote from: iago on June 24, 2010, 10:25:34 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
June 24, 2010, 10:17:54 AM
Quote from: sm3 on June 23, 2010, 03:06:00 PM
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
Quote from: Sidoh on June 23, 2010, 06:58:35 PM
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
Quote from: Blaze on June 23, 2010, 02:37:57 PM
Quote from: Lance on June 23, 2010, 10:54:48 AM
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
June 23, 2010, 08:07:55 AM
Quote from: Joe on June 23, 2010, 04:17:07 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>


Quote from: sm3 on June 23, 2010, 06:43:42 AM
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.