HN user

djrconcepts

97 karma
Posts2
Comments39
View on HN

This story reminds me of that episode on the TV show, The Orville. Season 1 Episode 9. Both the Navarians and Bruidians lay claim as the planet's original settlers. An ancient artifact containing residual DNA is discovered. They agree to a neutral third party to analyze the DNA to determine the planet's original settlers. Spoiler alert: Toward the end of the episode, the analyzed DNA determines both groups shared a common ancestor

Julius Sumner Miller - Physics demonstrations

I had been exposed to many of these physics concepts in school. Some of the topics never really clicked for me. Revisiting these physics topics with demonstrations brought clarity to several foundational concepts. Lots of moments of realization getting to view demonstrations of concepts like Force, Mass, Acceleration, and more. Newton and Bernoulli. While included, the series is not too heavy on the math. Enchanting series to watch through.

https://www.youtube.com/playlist?list=PLjzW1w9hKBnz2i90rRoZD...

Savage of Sebastian to call out Henry like that on twitter. Are you on drugs or something? https://twitter.com/sebmck/status/1392019586833387522

Publicly accusing Henry of not actually working on the project seems short sighted. Only looking at a one year slice of contribution rather than the lifetime of the project masks the full picture of Henry's contributions. Also in Henry's defense, the past year has been a terribly difficult one for most all of us to get through this pandemic.

Not a good look for you Sebastian. Feels like you are looking for a place to point blame and unfortunately decided to direct that blame in Henry's direction. Henry Zhu is a great developer and contributor. Really deserves better than this.

Great News! I have never intentionally hit backspace to go back, and yet I've hit backspace on accident and been taken many times. Quite annoying when it happens.

Display ads are not the problem. The problem is with ads used to track, follow, and target users while surfing the web. Ads are becoming web stalkers that follow us around the internet. How will showing 1 ad per page prevent tracking, following, and targeting?

Yes, it does.

From the network inspector, click the one that says "web sockets"

Then select the entry from the list, looks something like ".ws?v=5&ns=pixelpals-server"

Then select frames from the 3 options "Headers Frames Cookies"

Should see the json data

Start Here.

Step 1) open a text editor.

Step 2) paste in the following code.

<!doctype html>

<html>

  <head>

    <title>my first website</title>

  </head>

  <body>

    <p>hello world</p>

  </body>
</html>

Step 3) save the file as index.html

Step 4) open the file in your internet browser.

I recommend starting with a text editor and a browser. May I recommend Sublime Text and Google Chrome. Then, you will want to learn HTML + CSS. After you are comfortable with html and css, move on to Javascript... Before using a website hosting company, test your site locally with an AMP local development server.

I was a huge fan of igoogle. No idea why this project shut down. The concept was brilliant, but maybe the name conflicted with apple's ieverything.

ChessBoardJS 13 years ago

thanks for sharing. i hope in the next version, castling the king is added.

Speed up the cool down when gathering wood or checking traps. Paste this code into chrome console.

Button.cooldown = function (btn) { var cd = btn.data("cooldown"); if(cd > 0) { $('div.cooldown', btn).stop(true, true).width("100%").animate({width: '0%'}, cd * 10, 'linear', function() { var b = $(this).closest('.button'); b.data('onCooldown', false); if(!b.data('disabled')) { b.removeClass('disabled'); } }); btn.addClass('disabled'); btn.data('onCooldown', true); } }