Jump to content
UBot Underground

TheMentalist

Fellow UBotter
  • Content Count

    78
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by TheMentalist

  1. With ubot, you can specify what browser is being sent to the host. This can affect things like layout, etc. For instance, to simply things, many people set the browser to a mobile version since mobile pages are usually simpler (and fast loading). The doesn't actually affect the uBot "browser" but does affect how the remote host sees the browser.
  2. In general, Google will look at obvious things... 1) Exact same content But, lately... they've also added: * Same number of paragraphs and sentences per paragraph and same number of words per sentence This allows this to check for the most basic of spinning - at the word level If you want to avoid dup content penalty... Take your article and re-write every sentence so that your spinner can choose one of two sentences. Then, spin each sentence. I like to also write an extra sentence or two that I add into one of the sentences so that it changes the sentence count. For example:
  3. Did you try changing the browser type? or just sending an {ENTER}?
  4. Thanks buddy! I appreciate the help! That seemed to do the trick... SORT OF... When I plugged that in... it DID find the email... but it only included PART of the URL... From To activate your account you need to confirm your e-mail address by clicking on this link: http://dashboard.bloglines.com/confirm/email/2daee3ff220e57635df0fac2b5a21bc2019b5beb?url=http%3A%2F%2Fdashboard.bloglines.com It only grabbed: http://dashboard.bloglines.com/confirm/email/ What am I doing wrong?
  5. Thanks BotGuru.... So... it looks like you put a \ in front of the . / correct? and then a \.* for the wildcard?
  6. If you have code that launches on a HTML UI button push, do you still need to click start? I don't remember having to ever hit start with my code launched via a html button onclick event.
  7. I seem to be having an issue actually finding the emails... I'm looking for: http://dashboard.bloglines.com/confirm/email/2daee3ff220e57635df0fac2b5a21bc2019b5beb?url=http://dashboard.bloglines.com And in the regular expression, I entered: http://dashboard.bloglines.com/confirm/email/.* My full code here... lots of comments so I can tell what's going on: ui html panel("<html> <body> <textarea id=\"log\" name=\"log\" variable=\"#log\" fillwith=\"value\" cols=\"40\" rows=\"15\"></textarea> </body> </html>", 300) set(#log, "Starting...</br>
  8. I've had the most success uploading them elsewhere... for mulitple reasons. #1... I can change the graphic without deploying a new version. #2... I can see who is hitting the graphic and therefore, who is using my bot #3... It keeps the size of the bot lower
  9. You can try Fiverr... gigbucks and some of the other sites like that. No need to do the work for $5... just say "I will work on a custom bot for you for 1 hours (or 30 minutes or whatever) for $5. Tell them to contact you first. Then, only take jobs for bots that you have already done and only require minor mods - or that you think will be popular and can do the same. For similiar sites, check out: uhype.com, gighour.com, justafive.com, gigme5.com, i-will-do.com, gigswood.com, zeerk.com (if it's back), and others. Once you get your basic bots down, you're charging $5 for 5 minutes of wo
  10. Um... you lost me there boss. Where would you actually set the if statements? It seems like you'd but those in right before the navigate in the process emailst... correct? I'm still trying to get a handle on the regex's too...
  11. Fixed this.... 1. Grab the line to a list broken by ":" 2. write the total list to table col 0 3. write rest of data starting at col 1 4. When cycling through, check the first column... if it's a 2, then just set the proxy ip and port, if it's 4, then grab the password and username. This allows multiple types of proxies in the same file.
  12. I wish I knew more about the verify email wizard. I'm working on a hotmail verification routine now and am running into issues.
  13. Professional or developer edition? In developer, if you use an html ui panel... you can just include a link to a banner graphic on the web. I have it pull from my site, so that later, I can always update the banner if I want to.
  14. So basically, if I want this to verify emails for various sites, I will need to code the verify address for each one... as well as the landing page confirmation?
  15. Can anyone tell me the best way to click on confirm emails in Hotmail? I see a "verify emails" command... but I'm not sure how to use it. Will it even work with Hotmail? I've also seen a video on YouTube that seems to be "the long way". What's the best way? Thanks!
  16. Really, just basic programming theory. Ubot doesn't actually use any normal commands... or the commands so generic as to be over simplistic.
  17. There are tons of sites. Do a google search for things like: Top social bookmarking sites high pr social bookmarking sites For instance: http://caroline-middlebrook.com/blog/do-follow-social-bookmarking-sites/ http://www.blueglass.com/blog/the-big-boys-of-social-bookmarking-the-top-20-sites/
  18. I might be interested. But I'd need to know what is being covered before I pay for it... obviously, if you're going to go over only the basics that I've learned myself or that there are already video tutorials for - it's not worth it. On the other hand, if we're going to be covering some more advanced stuff - preferably with real life examples of making specific apps, that's worth it for me as why pay all the money for uBot and only use it to half its potential. Contact me if you have a curriculum.
  19. 1) Read existing data into list 1. 2) Scrape new data into new list 2. 3) Add list 2 to list 1 4) Write list 1 back out. So, effectively, you are adding the new URLs to the old URL's then writing the new collection back out, erasing the existing file but replacing it with the newer file with the old and new data combined.
  20. I hope this isn't for the upcoming Presidential election....
  21. Social media calendars (facebook,etc. - you could even create an event fanpage)... local social calendars (county, city, etc.)... yahoo calendar... press releases... etc. Not sure what bots might be able to help.
  22. Hmm... so... I tried this: define SeperateProxyInfo { clear table(&FullProxyInfo) set(#pos, 0, "Global") loop($list total(%proxyList)) { clear list(%breakDown) add list to list(%breakDown, $list from text($list item(%proxyList, #pos), ":"), "Delete", "Global") set table cell(&FullProxyInfo, #pos, 0, $list item(%breakDown, 0)) set table cell(&FullProxyInfo, #pos, 1, $list item(%breakDown, 1)) set table cell(&FullProxyInfo, #pos, 2, $list item(%breakDown, 2)) set table cell(&FullProxyInfo, #pos, 3, $list item(%breakDown, 3)) increment(
  23. Brusacco, Where do you set the table separator in Load file into table? I don't see that as an option...
  24. Thanks! That does it much better than the way I had envisioned! What's a good way to split that line into parts.... for instance, with proxies... 111.222.333.444:5555:uname:password I should be able to split on ":" right? Man I wish I had a good command reference for ubot!
×
×
  • Create New...