Pular para o conteúdo principal

Postagens

Mostrando postagens de março, 2022

Noticias do Hacker News: Portable EPUBs

Portable EPUBs 448 by sohkamyung | 174 commentarios de Hacker News.

Noticias do Hacker News: Ask HN: Who operates at scale without containers?

Ask HN: Who operates at scale without containers? 578 by disintegore | 425 commentarios de Hacker News. In other words, who runs operations at a scale where distributed systems are absolutely necessary, without using any sort of container runtime or container orchestration tool? If so, what does their technology stack look like? Are you aware of any good blog posts? edit : While I do appreciate all the replies, I'd like to know if there are any organizations out there who operate at web scale without relying on the specific practice of shipping software with heaps of dependencies. Whether that be in a container or in a single-use VM. Thank you in advance and sorry for the confusion.

Noticias do Hacker News: Tell HN: A $40B company killed my 2yo son. Now they force me to keep silent

Tell HN: A $40B company killed my 2yo son. Now they force me to keep silent 521 by bereavedparent | 103 commentarios de Hacker News. My 2yo son was struck and killed by a garbage truck next to a children's playground in the SF bay area less than 2 years ago. The driver who has fled violated multiple traffic rules which directly caused my son's horrible death. We have evidence that the company's unimaginable level of negligence allowed this to happen and now they want us to sign an agreement forbidding us to disclose the details. I'm writing this in great pain as I was not able to talk about it for a long time. My entire family were devastated. My mom passed away unable to accept the loss. My wife suffers PTSD. I stopped working so that I can go to the cemetery to stay with my son everyday. It's been almost two years. They see our weakness not strong enough to go through litigation as it tortures us. They offered to settle through mediation with a laughable amount...

Noticias do Hacker News: Show HN: HN Avatars in 357 bytes

Show HN: HN Avatars in 357 bytes 530 by tomxor | 326 commentarios de Hacker News. Paste the following into the console of any HN page - for annotated avatars on all HN comments. (self contained code) for(u of document.querySelectorAll('.hnuser'))for(u.prepend(c=document.createElement('canvas')),x=c.getContext('2d'),c.width=18,c.height=14,s=u.innerText,r=1,i=28+s.length;i--;i<28?r>>>29>X*X/3+Y/2&&x.fillRect(6+2*X,2*Y,2,2)&x.fillRect(6-2*X,2*Y,2,2):r+=s.charCodeAt(i-28,x.fillStyle='#'+(r>>8&0xFFFFFF).toString(16)))r^=r<<13,r^=r>>>17,r^=r<<5,X=i&3,Y=i>>2

Noticias do Hacker News: Show HN: I made a web game called Almost Pong

Show HN: I made a web game called Almost Pong 545 by lessmilk | 102 commentarios de Hacker News. Hi HN! I made many small web games in the past with Unity or Phaser. But this time I wanted to make something completely on my own. So I coded a basic game framework in plain JavaScript, and used it to make Almost Pong. This was a really fun project that taught me a lot about JavaScript, and I plan to make more minimalist games with this framework. Interesting fact: Almost Pong doesn't load any assets, all sprites and sounds are generated with code. Happy to answer questions, and please let me know if you have any feedback on the game. Thanks!