HackerTrans
TopNewTrendsCommentsPastAskShowJobs

wrayjustin

no profile record

Submissions

Nearly 40% of Stanford undergraduates claim they're disabled

thetimes.com
4 points·by wrayjustin·5 maanden geleden·4 comments

Draft: Challenge for Persistent DNS TXT Record Validation

datatracker.ietf.org
3 points·by wrayjustin·7 maanden geleden·1 comments

Counter Galois Onion: Improved encryption for Tor circuit traffic

blog.torproject.org
104 points·by wrayjustin·8 maanden geleden·31 comments

Cryptographers Held an Election. They Can't Decrypt the Results

nytimes.com
5 points·by wrayjustin·8 maanden geleden·2 comments

'Chad: The Brainrot IDE' is a YC-backed product people thought was fake

techcrunch.com
4 points·by wrayjustin·8 maanden geleden·1 comments

Bonding twelve 56K modems together to set dial-up broadband records

tomshardware.com
117 points·by wrayjustin·10 maanden geleden·35 comments

Major Cyber Threat Detection Vendors Pull Out of Mitre Evaluations Test

infosecurity-magazine.com
4 points·by wrayjustin·10 maanden geleden·0 comments

Morgan and Morgan takes Disney to court over 'Steamboat Willie' in ads

clickorlando.com
101 points·by wrayjustin·10 maanden geleden·80 comments

comments

wrayjustin
·4 maanden geleden·discuss
I have a fully stock, not jailbroken/unrooted, up-to-date, relatively new, device that Microsoft randomly determines is "rooted" and blocks access (until rebooted). This happens a few times a month, frequently enough that the false positive rate is very concerning with this change.
wrayjustin
·9 maanden geleden·discuss
Previous Discussion: https://news.ycombinator.com/item?id=45634367
wrayjustin
·10 maanden geleden·discuss
Do you mean something like last.fm with their API [0]? Or did you have something more in mind?

[0] https://www.last.fm/api
wrayjustin
·10 maanden geleden·discuss
Phishing (Email), Smishing (SMS/Text Messages), and Vishing (Voice) are all standard industry terms, though obviously phishing is most well known.

Then there's even subcategories that further define some of these, like Spear Phishing, Whaling.

The industry loves its fun naming.
wrayjustin
·11 maanden geleden·discuss
It doesn't like my bottled mountain fresh air idea. Says it "needs work."

> Breathe in the crisp mountain air, anywhere > Introducing bottled mountain air. > #fresh #nature #wellness
wrayjustin
·11 maanden geleden·discuss
Heh. I did the same. And got the same results (75/100).

Here's the Reddit copy it provided:

AI-Powered Startup Idea Validation: Is Your Idea Viable?

This AI tool helps validate startup ideas by analyzing market trends, competition, and potential revenue. Share your ideas!
wrayjustin
·8 jaar geleden·discuss
LOL yeah, it's like watching a sport. By about a score of 300 the enemy is just too fast for our hero. =/
wrayjustin
·8 jaar geleden·discuss
I did the same, but played around a bit more and made an "AI" mode:

  maxScore = 0;
  setInterval( function() {
  	if (score > maxScore) {
  		maxScore = score;
  	}
  	if (distance(hero.y, hero.x, ennemi.y, ennemi.x) < (vitesseEnnemi * 15 + 30)) {
  		hero.y += (hero.y - ennemi.y) * speedLimit / distance(hero.y, hero.x, ennemi.y, ennemi.x);
  		hero.x += (hero.x - ennemi.x) * speedLimit / distance(hero.y, hero.x, ennemi.y, ennemi.x);
  	}
  	if (spawn > PowerUpspawnRate) {
  		hero.y += (powerUp.y - hero.y) * speedLimit / distance(hero.y, hero.x, powerUp.y, powerUp.x);
  		hero.x += (powerUp.x - hero.x) * speedLimit/ distance(hero.y, hero.x, powerUp.y, powerUp.x);
  	} else {
  		hero.y += (reward.y - hero.y) * speedLimit / distance(hero.y, hero.x, reward.y, reward.x);
  		hero.x += (reward.x - hero.x) * speedLimit/ distance(hero.y, hero.x, reward.y, reward.x);
  	}
  }, 25);
It's oddly fun to watch the little green guy pull off some sick dekes.

If you want your green guy to flat-out avoid the enemy, just wrap the second set of conditions there in an else block.

edit: Formatting for readability/copy+paste