Recent content by RiskyShift

  1. R

    Word Order Program Help Needed

    I don't know what language you want this in? It's very easy in Python: import itertools phrase = "let's permute a phrase" words = phrase.split(' ') for i in xrange(1, len(words)+1): for permutation in (itertools.permutations(words, i)): print ' '.join(permutation) If you run that...
  2. R

    Batch File to make Skype open at a fixed time

    The user account you are using must be password protected to use it to run a scheduled task, so you'll either need to password protect your account or create another password protected account. You could use the Administrator account if you want I suppose. Yes, that sucks if you don't normally...
  3. R

    Batch File to make Skype open at a fixed time

    It's the user the process will run as, so you should enter your Windows username and password.
  4. R

    Ok, Paypal is officially the worst "sh*t" ever.

    What's up with this homophobia?
  5. R

    "making money giving way free websites" MY STORY.

    Has anyone tried replicating the OP's method and had the same level of success? I've just tried online classified so far, but he said the response from just those were huge. I've had an ad up for about 48 hours and only had two enquiries, both of which seem to have gone silent once I mentioned a...
  6. R

    is it easy to reach 100 bucks a day with AC?

    I think it would be possible if one were careful. I have plenty of private proxies (i.e. only I have access to them) so I would keep them all on separate IPs. Obviously I'd have to use multiple PayPal accounts and make sure to clean up cookies/flash local shared objects/cache and probably fake...
  7. R

    Anyonw know how to redirect in flash?

    Oops, accidentally clicked quote instead of edit. :o
  8. R

    My Autoblog Earns 1250 euros a Month!

    Yeah, I'm curious about the 50% thing too. Why did you say you added 50% new content then say: ? That's clearly less than 50% new content.
  9. R

    Anyonw know how to redirect in flash?

    Something like this should work: var now:Date = new Date(); var trigger:Date = new Date(2010, 9, 2, 16, 15, 32); //2 October 2010 at 16:15:32 if (now.getTime() >= trigger.getTime()) { navigateToURL(new URLRequest("your url here"), "_blank"); } The second date object is the date you want...
  10. R

    Ecommerce Script

    THIS THIS THIS. Two people have recommended osCommerce after this post, but kylef is absolutely right, about osCommerce at least anyway, I've never used Zen Cart. Do not use osCommerce, you will kill yourself trying to customise it and keep it updated. Their idea of a plugin system is manually...
  11. R

    What is the point of having a piratebay account?

    So you can upload torrents?
  12. R

    is it easy to reach 100 bucks a day with AC?

    Is there anything stopping you from just creating another account when you reach that limit?
  13. R

    Decoding Wordpress footer.php

    It's amusing someone considered base64 a form of encryption to protect their code with, when it's specifically designed to be decodable by anyone!
  14. R

    What can Javascript pull from a user's PC and browser?

    It's not possible to get a user's real IP using javascript, but it can sometimes be possible using Java (which is a completely different language), so make sure you have that disabled. I would also try disabling the cache in your browser, there are some techniques to track users by checking...
Back
Top