What's new

Search results for query: *

  1. Im4eversmart

    Jaccard Distance - Minimum Distance - Similarity Mapping Question

    Should be able to reduce storage/compute time by 2x if you use binary data. So you are using ascii data, 8 bits each char. That can be reduced to 5 bits to include all characters, or 4 bits if you can map your data to 16 symbols.
  2. Im4eversmart

    Reverse Engineering Rocket League

    Need help breaking the signature used to authenticate requests. Doing so would mean unlocking the capabilities to assign achievements, items, crates, xp, stats, ect. Everything up to that has been figured out. The unknown is the Psysig, which is a HMAC that is ensuring the authenticity of the...
  3. Im4eversmart

    Discussion [X1] Anyone else getting really bad teammates when playing Overwatch?

    Oh I see, sure you can get a silver with soldier in healing. But bear in mind that it's just relative performance. I wouldn't say soldier is a support character in any proportion.
  4. Im4eversmart

    Discussion [X1] Anyone else getting really bad teammates when playing Overwatch?

    Yeah I play. Medals are for elims, elim kills, damage, obj time, and healing. Main point is if you are healing or a tank and get 3-4 medals, then you are doing things outside of your role since 3/5 of medals are for damage. That's why I'm assuming you are playing damage roles.
  5. Im4eversmart

    Discussion [X1] Anyone else getting really bad teammates when playing Overwatch?

    Well something you said then is not true. I read you played 4-5 hours, most games 2 minutes, most games 3-4 medals, won one game. That points to a stereotypical person who plays solely damage roles and gets kills.
  6. Im4eversmart

    Discussion [X1] Anyone else getting really bad teammates when playing Overwatch?

    If you getting 3-4 gold/silver stars per game, you like to kill, do damage, and not be a healer. Winning games means being on the objective, doing roles no one else wants to do, and not necessarily get all the glory and medals.
  7. Im4eversmart

    Web How can a website be reached without a DNS record?

    Servers can turn off icmp, which would make ping not work. That might of been the case during the competition.
  8. Im4eversmart

    Web How can a website be reached without a DNS record?

    I can ping the site: Pinging ctf.1e100.io [104.18.36.126] with 32 bytes of data: Reply from 104.18.36.126: bytes=32 time=17ms TTL=56 Reply from 104.18.36.126: bytes=32 time=14ms TTL=56 Reply from 104.18.36.126: bytes=32 time=15ms TTL=56 Reply from 104.18.36.126: bytes=32 time=16ms TTL=56 Ping...
  9. Im4eversmart

    Discussion What's your tenure?

  10. Im4eversmart

    Question Banned for API Overuse

    No I used Java and was getting around 200 requests/s. I was finding all available 3 letters.
  11. Im4eversmart

    Question Banned for API Overuse

    They just responded and did not reverse it.
  12. Im4eversmart

    Discussion Recycled Gamertags

    Btw, you people saying that you collected dozens of 3 letter gts, how is that possible since this is only available to accounts with 1+ years of xbl? "we will start releasing nearly one million Gamertags to our valued Xbox Live Gold customers with active subscriptions and at least 1 year of...
  13. Im4eversmart

    Discussion Recycled Gamertags

    Some are invalid names, like fap and vag. Others may be invalid for various reasons. But all 3 letter names that are going to be available are on that list, as in these are not taken names.
  14. Im4eversmart

    Discussion Recycled Gamertags

    Here's the list of remaining 3 letter non-number names. GL
  15. Im4eversmart

    Discussion Recycled Gamertags

    Forever
  16. Im4eversmart

    Discussion Recycled Gamertags

    Apparently scanning all available gts using the api is a perma ban offence. I just wanted a stupid 3 letter tag and didn't want to type too much.
  17. Im4eversmart

    Question  Banned for API Overuse

    Just got a perm ban on my main account for overusing their API on the website. Was looking for available names just for myself, no profits, no commercialization, ect. They labeled the ban as an account theft, phishing, or solicitation offence. Sent the appeal in, wondering if anyone else has...
  18. Im4eversmart

    Java Thread management

    Well, I'd create a Sierpinski box object, have it implement runnable. Then in the run method it will spawn 8 other box objects. Make sure to do GUI updates with SwingUtilities.invokeLater, since the gui components need to be updated on the gui's thread.
  19. Im4eversmart

    Web What is wrong with this JS?

    use $("#id").value in these statements: var u = _("name").value; Missing semi-colon on this line: status.innerHTML = "Please fill out all the fields."
  20. Im4eversmart

    Java Thread management

    This is one way to execute code in a new thread: new Thread(() -> { // code goes here }).start();
Top Bottom
Login
Register