Недавний контент myndeswx

  1. myndeswx

    Variable in C#

    var someCoordinate= Convert.ToDouble(project.Variables["latitude"].Value); //do some maths in here //at the end convert it back to string rounding to 7 after the dot project.Variables["latitude"].Value = Math.Round(someCoordinate,7).ToString(); For more fancy stuff with coordinates look in...
  2. myndeswx

    Help with file columns

    Use a temporary table, say you have your 'good' table and create another empty table (don't load from file, it must be empty at the begining) Templates logic: use 'Get line' action to get from 'good table' check 'remove after getting' > put the A columns value to 'temp' variable add to 'temp'...
  3. myndeswx

    Correct connection of a Samsung S9, with Android 10

    Congratz on getting it to work, those S9 are PITA to root haha
  4. myndeswx

    how to click ou view click http get, http post

    None, no one really uses such sites, just use decent proxies and do not worry about it :-)
  5. myndeswx

    how to click ou view click http get, http post

    Everything is in the http response, it's just in text and you have to use regex to extract it, but I suggest you just not using IPQS, it is useless, save some time :- )
  6. myndeswx

    How to check if there are numbers in a variable?

    Regex cube with \d (means any number in regex) make sure to check 'error when the answer is empty Will result in good exit if it has any number and bad exit if it does not have a number
  7. myndeswx

    Profiles and Cookies

    Let me know how it goes :- )
  8. myndeswx

    Profiles and Cookies

    If you want actual results build a good old PBN with AI content, that's what's still working =)
  9. myndeswx

    Why start an instance is slow in Zenno Maker?

    It's just how zenno works, it takes a bit to load the browser ¯\_(ツ)_/¯
  10. myndeswx

    Profiles and Cookies

    I just told you that it does not work :- )
  11. myndeswx

    Profiles and Cookies

    The real question is, do you care about the visits metrics or rankings manipulation, because if your plan is to get better rankings I can sincerely suggest you not to waste time, there are a lot of studies on this in the forum - it does not work (for google)
  12. myndeswx

    Removing accents from names helps

    \~|\^|' Use text processing cube with regex option and replace all. | - means 'or' \ - used to escape special characters
  13. myndeswx

    (bad end) leaving spaces in the file, help

    uhmm, simply before adding to this table create a cube with this logic - '{-variable.nomeA' != '' good exit- add to table, b bad exit - display error notification and DON't add to table (because variable is empty)
  14. myndeswx

    Profiles and Cookies

    #1 straightforward way - create a machine for every account #2 the not so straightforward way - log in with account, export app data, save all phone parameters in a file, clear everything. Load that app data when you need to use it again It has to be done very carefully, a lot of room for error...
  15. myndeswx

    Error in the chromium function, help

    'bad end' cube executes only when there is an error in the project create 'if logic' cube somewhere in your flow, put 1>2 inside and your 'bad end' will execute