Jump to content

Lemons

Lifetime Sponsor
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Lemons

  1. I agree with this, I personally use 20 character randomly generated passwords, as they entropy is much higher than a typical password and is secure enough in my mind that most would be bored. But, if I replaced that with a randomly generated 20 word passphrase, I'd feel just as safe. The problem is most people don't want to remember all that crap, so they just choose "dog" or "cat" or some equally lame password, when a passphrase would also be easily remembered and has a lot more entropy than "dog" or "cat". Most people don't want 20 characters of random numbers/letters for their password, let alone a different one for every website. If we really wanted to be secure, we'd start using keys more often. Also, storing passwords in plain text, no matter the location (except your head, for now), is a terrible idea as well. Use a secure password manager at least or place the paper in a secure safe (you'd be surprised how many safes are just pseudo-safe :p).
  2. This is only true if the passphrase is too short (not enough entropy), or its not randomly generated (which further reduces entropy). As my example showed, the 6 word passphrase has the same entropy as the 10 character lowercase/uppercase/number password given. All passphrases do is replace individual characters and the range that is possible (A-Za-z0-9) with words from the dictionary, making the passphrase essentially a "6 character" password, if words could be considered a "character" that is known in advance. In both cases, all the possible characters/words are known from the beginning, its just the combination the computer has to find. I do agree that passphrases can be easily done wrong, but so can passwords. Its all about that entropy.
  3. While that password is alright, at the very least you should add uppercase characters. This increases entropy by a good amount, and all websites will allow the uppercase/lowercase/numbers. If you want, can also add some special characters too, but the entropy boost is negligible. If you want really good passwords, make them longer! Also, for those of you who all like "I can't remember random strings of letters/numbers", consider a pass phrase. Its something like "hurry-clean-lone-wall-shade-slow" (used a generator). This has 61 bits of entropy if the attacker has full knowledge of how we strung the words together, and just has to guess the words. I used https://xkpasswd.net/s/ to generate the passphrase, its based on this XKCD comic: The only downside to this is the terrible websites that have a max character limit on their passwords. Just know these sites care very little about your security (*cough*microsoft*cough*). In summary, a list of example passwords along with how much entropy they have: 5b4m2b5q34 ....................................... 41 bits of entropy (lowercase/numbers, 10 characters) WnYXdikU90 ....................................... 60 bits of entropy (lowercase/uppercase/numbers, 10 characters) hurry-clean-lone-wall-shade-slow ................. 61 bits of entropy (basic passphrase 6 words) l8J^,kAyM/ ....................................... 66 bits of entropy (lowercase/uppercase/numbers/special, 10 chars) qmapwjnjdsel5aqlw6wy ............................. 90 bits of entropy (lowercase/numbers, 20 chars) +kKCc~S0Dy27ni!4nSQ~ ............................. 118 bits of entropy (lowercase/uppercase/numbers/special, 20 chars)
  4. Pirate bay does, pretty sure you are not suppose to legally share copies of the ISO unless you a microsoft affiliate or w/e.
  5. Can try this, might be because of the larger resolutions http://osbot.org/forum/topic/105455-fixing-dpi-issues-with-windows-8110-osbot-window-is-too-small-issue/
  6. In control panel search for "text size" and change it to 100%
  7. I'm guessing their using the old "billion", which is a million million, though it typically does mean one thousand million these days.
  8. groundItems.get(x, y) is the only "get" there is, you're probably thinking groundItems.closest(name/id). @@PancakePuncher But you should read/search the API, links at the top of the page (or here: http://osbot.org/api/ )
  9. You said you go to the gym, so exercise isn't the issue. Are you inside a lot? Try taking Vitamin D supplements, deficiencies can cause all sort of depression related issues. Also, if you drink a lot of caffeine it can cause depression like symptoms. Besides that, just try and think positively and when a negative thought comes up, think about it as logically as possible to disprove the negative bias. Try and set some short-term and long-term goals and work towards them as well. Maybe try to do things you normally wouldn't as well. Most important, don't sit around moping and beating yourself up. When that happens actively try to do anything else (clean the house, anything really) to distract from the negativity. Sometimes this is impossible but just make a best effort. Depression can be a bitch, but with the lows can come the highs.
  10. Lemons

    :?:

    I do believe this is to blame: Also the other javascript based animations (names), should use CSS animations :p Edit: Did a lil profiling and it is indeed all the stuff being painted, maybe a low cpu version is needed for the site too Edit 2: Seems all the GIFs are too blame, lol
  11. I know this issue crops up from time to time, I'm here with a way to fix it Thanks bot2max for letting me figure this out on his windows 10 tablet. Compatibility method for Windows 10 ONLY Manifest hack method (WARNING: This ONLY works on Windows 8.1/10.) Closing Notes I hope this helps most of you, if not feel free to contact me (check my profile or message me on here), and I can prob help if you run into issues. I personally have not had this issue (72 dpi win 7 nub) but I can see how this would be a huge annoyance. PS: If you notice any typos/issues please point em out. I wouldn't say I'm sober atm so I can see there being issues I missed :p PSS: Sorry if this has been posted before, or if there is an easier fix. Let me know and I'll remove/edit this post.
  12. Nice, might be worth making into a script
  13. Anchovy pizzas have been known for a while, the others are not really new either.
  14. From the API for ClientMouseEventHandler: generateBotMouseEvent(int id, long time, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button, boolean botInput)An example of moving the mouse instantly: getBot().getMouseEventHandler().generateBotMouseEvent(MouseEvent.MOUSE_MOVED, System.currentTimeMillis(), 0, x, y, 0, false, 0, true);Just noticed the move outside the screen thing: getMouse().moveOutsideScreen()
  15. People use 07 because it can't be charged back, unlike paypal.
  16. Won't it take a long time to go through all these nodes? Depends on what the checks are. If the check is "if the inventory is full" that is a pretty quick check. If it involves a lot of computations/loops, its probably going to Is there a better way to sort the nodes? Yes, do something as you mentioned with the Banking class. You can also make a new type of "Node" which allows nesting of other nodes into it, so you can have more of a tree of nodes instead of a straight line. I typically try to make nodes reusable, so I boil them down to the most basic part I need (like Banking), and make it configurable on instantiation. You can see how I do it here (it's messy, sorry): https://github.com/Lem0ns/OSBotAPI/tree/master/tasks
  17. Rules of Conduct for twitch happened
  18. Please show some relevant code, and we can help Try and make the simplest use of Equipment.equip, and if it doesn't work show us that code.
  19. Something is blocking access to OSBot. Try on a different computer on the same network, this will tell you if its PC related or network related.
  20. All I know is I've gotten macro major on accs I know a mod didn't see (aka tut island bans). But, I certainly can be wrong.
  21. Pretty sure 2 day ban is because its not automated, and given by mods (aka not 100%). Botwatch is "100%" sure when it bans therefore its perm, which is a macro major. Think you can also get a diff type which means a perm ban came from a jmod (forget the type tho).
  22. Use pcpartpicker: https://pcpartpicker.com/product/w9Jkcf/corsair-power-supply-cp9020084na https://pcpartpicker.com/product/MYH48d/corsair-memory-cmk16gx4m2b3000c15 https://pcpartpicker.com/product/bzNypg/gigabyte-motherboard-gaz170xgaming7 https://pcpartpicker.com/product/tdmxFT/intel-cpu-bx80662i76700k Short answer: yea
  23. GroundItem logs = getScript().getGroundItems().closest( new AreaFilter<GroundItem>(area), new NameFilter<GroundItem>("Logs")); if (logs != null) { // Logs in the area }
×
×
  • Create New...