Recent content by amandatorey

  1. A

    A script to fetch HTML

    I'd recommend doing this in Python, a clean, elegant language with suitable libraries for the task (for example, the requests library). Here's the code to fetch the HTML from a page: import requests # ... r = requests.get(url) print r.text If you're looking to parse the HTML further...
  2. A

    Where to learn Javascript ?

    I highly recommend the tutorials on HTMLDog as they're most geared toward beginners and have the least "documentation" feel to them. (I can't post links.)
  3. A

    can anyone make me a simple script to write text to a log file on server...

    lincher's solution is excellent, but here's a shorter version with no need to create log.txt beforehand and more extensive error-checking. <?php isset($_GET['pass']) or die('you need a password'); $_GET['pass'] == 'blah' or die('wrong password'); isset($_GET['text']) or die('you need to...
  4. A

    Auto fill and submit using javascript

    You'd be better off replicating the form, POSTing the data to external form yourself on your server, and spitting the output back to the user.
  5. A

    Can some one please help on this code.

    Have you considered using SCSS or LESS? They're supersets of CSS with variable support (so, like the poster above me mentioned, you don't have to write '1200px' repeatedly), nested selectors, etc.
  6. A

    How I Made $8,000 with Facebook Groups

    I'm not sure what the method was as it was removed but I read something about automating. I'm an experienced programmer who can probably write some kind of required script. Could you please send me details?
Back
Top