HackerTrans
トップ新着トレンドコメント過去質問紹介求人

wrayjustin

no profile record

投稿

Nearly 40% of Stanford undergraduates claim they're disabled

thetimes.com
4 ポイント·投稿者 wrayjustin·5 か月前·4 コメント

Draft: Challenge for Persistent DNS TXT Record Validation

datatracker.ietf.org
3 ポイント·投稿者 wrayjustin·7 か月前·1 コメント

Counter Galois Onion: Improved encryption for Tor circuit traffic

blog.torproject.org
104 ポイント·投稿者 wrayjustin·8 か月前·31 コメント

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

nytimes.com
5 ポイント·投稿者 wrayjustin·8 か月前·2 コメント

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

techcrunch.com
4 ポイント·投稿者 wrayjustin·8 か月前·1 コメント

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

tomshardware.com
117 ポイント·投稿者 wrayjustin·10 か月前·35 コメント

Major Cyber Threat Detection Vendors Pull Out of Mitre Evaluations Test

infosecurity-magazine.com
4 ポイント·投稿者 wrayjustin·10 か月前·0 コメント

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

clickorlando.com
101 ポイント·投稿者 wrayjustin·10 か月前·80 コメント

コメント

wrayjustin
·4 か月前·議論
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 か月前·議論
Previous Discussion: https://news.ycombinator.com/item?id=45634367
wrayjustin
·10 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 年前·議論
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 年前·議論
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