Jump to content
UBot Underground

Dutch

Fellow UBotter
  • Content Count

    92
  • Joined

  • Last visited

Community Reputation

4 Neutral

About Dutch

  • Rank
    Advanced Member

Profile Information

  • Gender
    Male
  • Location
    Minnesota

Contact Methods

  • Skype
    ken.vermeer

System Specs

  • OS
    Windows 8
  • Total Memory
    2Gb
  • Framework
    v3.5 & v4.0
  • License
    Professional Edition

Recent Profile Visitors

4335 profile views
  1. I just logged in specifically looking for how to use Python with Ubot. Thanks for offering the training!
  2. I just logged in specifically looking for how to use Python with Ubot. Thanks for offering the training!
  3. Here's a Multi Threading Example that TJ helped me with that processes a list with 3 elements per row. I originally tried to use TJ's Advanced example using Tables but found that the multi threading was either missing rows entirely or doubling up on rows. This was primarily due to the fact that the table row value was incremented at the end of each cycle and is a global setting not a local setting. This allowed multiple threads to attempt to increment the table row value at the same time and resulted in almost certain misses in the processing. Following is a complete example for Multi Threa
  4. Hi All, I have two csv files - YesterTest.csv and TodayTest.csv.. I want to start at row 0, col 0 of, TodayTest and then search for that value in col 0 of YesterTest.. Once I find that match I want to compare the values in row 0, col 1 of TodayTest to the row and col 1 of YesterTest. If they do not match, I want to write out the row 0, col 0 and 1 value of TodayTest to the ToDo file. Finally, I want to do the same thing for all the rest of the rows in TodayTest. Right now the code almost works but it's grabbing additional values that have not changed. Any ideas on how to fix this code?
  5. I don't like bank either. How about bot library? :
  6. Hi, I'm looking for a cloud storage solution that will allow me to create multiple levels of folders and files as the output from a bot. From there I want multiple users in multiple locations to be able to access and work with the files and folders. I know about dropbox but that requires users to download an app to their pc to get the best access. Do you folks have any cloud solutions and recommendations for this purpose? Thanks, Ken
  7. I have users that are running a bot on different PCs that have different paths to Excel 2010. Does anyone know how to format the shell command so that it will look in either one location or the other? I've not been successful with using variables or functions within the shell statement. I've tried running: shell("C:\\Program Files\\Microsoft Office\\Office14\\EXCEL.EXE") shell("C:\\Program Files (x86)\\Microsoft Office\\Office14\\EXCEL.EXE") but if the first one fails the bot stops and errors out. Thanks, Ken
  8. Doesn't one of your "name" values need to be variable?
  9. I appreciate your trying to help. I am trying to scrape those specific tags. The problem is that I am converting the XML page results from the YouTube results page that Ubot won't read to the xmlgrid format that can be read by Ubot. I'd love to grab the actual tag names above but in the xmlgrid they are aliased to a new id value that changes every time a new file is loaded. If I determine that the xlmgrid id for the totalResults = 674 when I'm setting up the scrape and then run the bot with a new search term, the id is different and the scrape fails.
  10. I'm trying to $page scrape the value that's between the xml tags on the following youtube results page. Any idea on how to accomplish this? ui text box("Keyword", #Keyword) set(#Keyword, $replace(#Keyword, " ", "+"), "Global") navigate("https://gdata.youtube.com/feeds/api/videos?q={#Keyword}", "Wait") set(#StartIndex, $page scrape("<openSearch:startIndex>", "</openSearch:startIndex>"), "Global") set(#ItemsPerPage, $page scrape("<openSearch:itemsPerPage>", "</openSearch:itemsPerPage>"), "Global") set(#TotalSearchResults, $page scrape("<openSearch:totalResults>",
  11. Caribou Coffee locations are scattered around the USA (http://www.cariboucoffee.com/). They, like other coffee shops, have an annoying survey that if you fill it out will let you save $1.00 on your order. I know, it's not much, but every little bit helps The employees - barristas or whatever they are called - get extra credit and who knows what else when people actually fill out the surveys and turn them back in. So, I created a bot to automatically fill in the survey. I'm sure there are lots of improvements botters here could make to improve this bot but the bottom line is that it works as
  12. please add me too - ken.vermeer
  13. Or, if you're really trying to spin the results without duplicating the words in the phrase you might want to try something like this (v4.x): ui text box("Word 1", #w1) ui text box("Word 2", #w2) ui text box("Word 3", #w3) set(#Result, $spin("\{{#w1} {#w2} {#w3}|{#w1} {#w3} {#w2}|{#w2} {#w1} {#w3}|{#w2} {#w3} {#w1}|{#w3} {#w1} {#w2}|{#w3} {#w2} {#w1}\}"), "Global") load html(#Result) Dutch
×
×
  • Create New...