Recent content by rawr00

  1. R

    Your benefits of learning to code?

    Steve Jobs, may he RIP, nailed it with this quote: "Everybody in this country should learn how to program a computer...because it teaches you how to think." -Steve Jobs Programming has been the single greatest benefit (learned) since, er, maths :D
  2. R

    Coder Needed For Web Application Or Desktop App

    Let me know if you still need someone. Don't waste my time, and I will not waste yours. PM me and I will send Skype. I have no probs. showing some previous work if you would like. Yes, I know what spintax is.
  3. R

    How to retrieve filename from a weird download url ?

    Did you check out the requests in a traffic viewer? I can't help much without the URL, or at least some more info.
  4. R

    Can't scrape data from Website

    No need for all that, honestly. You can make good use of HTTPClient or WebClient classes here. private async Task<string> GetFakeNameSrcAsync() { using (var client = new WebClient()) { string src = await client.DownloadStringTaskAsync("URL"); return src; } } The...
  5. R

    best programming language for bots?

    Hahaha! I almost made a reply to comment on how sketchy the site looked, along with the fact that I had never even heard of it. Good One! ;)
  6. R

    HOW webclient/httpwebrequest to send data to differnt urls?

    Your answer is right there in the response you received. 'Invalid Parameters' typically means one of the following: - GET: Your headers/cookies are invalid - POST: Your headers/cookies or Post Body is invalid
  7. R

    Learning how to scrape Google. New to this. C#

    You do not need HAP to simply scrape the search results from Google. HAP is wonderful lib, but you can get the query links by using Regex (I promise). Open the source of a query result with FireBug or the like and start working on your pattern. There are many tools out there to help you create...
  8. R

    Well, shit. Ebola has arrived.

    No offense mate, but you have no idea what you are talking about. ADHD is not a 'disease'. The leading proposal is that it is just a chemical imbalance of the brain, though it is generally accepted that genetics and possible other variables may contribute. In fact, I have read a couple...
  9. R

    Well, shit. Ebola has arrived.

    People should not live their lives in complete worry and fear. It is what it is. That being said, I believe it is actually a really good thing for such diseases to be hyped as much as possible. Ebola is actually much harder to contract than people realize. Lower Tier countries are much more at...
Back
Top