Re: Zennoposter Blogs - Group pay programmer
you'd be looking at a $20-30k tool.
more like $5000
Most coders with degrees in Comp Sci, couldn't do it. It's beyond their abilities (maybe not 10-15 years into their careers though?)
has nothing to do with experience measured in time but with experience in the particular field of scraping/submitting. is not particularly hard but you need to know specifically how to code scrapers/posters and have good software architecture knowledge (including design patterns).
I'd say roughly 90-95% of "programmers" only program in Java
not true
Java is next to useless if speed is the goal
certainly not true. Java is very fast, almost as fast as C++ & C#. In certain cases is faster. Only thing is slower at is rendering GUI and that is not noticeable. Only thing where Java would be a bit too slow is game development. Even more, the shittiest Java app will still be faster than what you can do on a 1Gbps connection.
Python is a high-level language like Java
No is not! Python is interpreted and can be precompiled (just like PHP). Also it has dynamic typing. Java is a compiled language (JIT/Java VM not machine/assembler code like C/C++) and with strict types. Java speed vs Python speed is faster and a lot faster than vs PHP speed.
Though I think, in general, you could use any high-level language for this task like Perl?
Yes but you need a browser emulation library that can execute JavaScript in order to be able to trully emulate user actions for any platform. I don't think Perl has such a thing unless it can work with Selenium or something similar. It has WWW::Mechanize but from what I know that doesn't execute JavaScript is just a regular HTML parser.
You can basically use any language but since some don't support browser emulators you either have to hook into a real browser's API (like SENuke and others does, which poses security problems) or "hack" your way around the limitations. Hence, from what I know so far, Python is the best solution (from my point of view).
Update: It seems Selenium works with many languages including PHP
Didn't realized it before as all examples i was looking over were in Python. I should go and play with it in PHP now...
Last edited by madoctopus; 01-15-2012 at 10:32 PM.
Knowledge is only potential power, without action it is useless.
Bookmarks