HN user

gmiller123456

2,866 karma
Posts23
Comments870
View on HN
www.youtube.com 1y ago

3B1B: The cosmic distance ladder with Terence Tao, part 2 [video]

gmiller123456
3pts0
github.com 2y ago

Show HN: Open-Source Interactive Eclipse Map

gmiller123456
4pts1
deepstatemap.live 3y ago

Interactive map of controlled territory in Ukraine

gmiller123456
1pts0
www.youtube.com 4y ago

WebAssembly Landscape 2022

gmiller123456
2pts0
codeparade.itch.io 4y ago

Marble Marcher – A Fractal Physics Game [2018]

gmiller123456
2pts0
www.nature.com 5y ago

Best map of Milky Way reveals a billion stars in motion

gmiller123456
1pts0
www.youtube.com 6y ago

Top Stack Overflow Tags Over Time (2008-2020) [video]

gmiller123456
1pts0
www.youtube.com 6y ago

How do I stay up-to-date as a data scientist? [video]

gmiller123456
1pts0
www.phoronix.com 7y ago

Linux's Vmalloc Seeing “Large Performance Benefits” with 5.2 Kernel Changes

gmiller123456
109pts14
phys.org 7y ago

DIY Gravitational Waves with 'BlackHoles Home'

gmiller123456
2pts0
www.navalhistory.org 7y ago

AF Has Reported a Shortage of Fresh Water

gmiller123456
3pts1
old.reddit.com 7y ago

Rogue RaspberryPi found in network closet

gmiller123456
3pts0
www.engadget.com 7y ago

A cheaper, smaller Raspberry Pi 3 is now available

gmiller123456
220pts125
github.com 7y ago

6502 source code for BBC Micro game Crazee Rider from 1987

gmiller123456
165pts45
techxplore.com 7y ago

Object detection in 4K and 8K video using GPUs

gmiller123456
3pts0
hackernoon.com 7y ago

A Love Letter to the Commodore 64

gmiller123456
3pts0
dev.to 7y ago

Things Nobody Told Me About Being a Software Engineer

gmiller123456
10pts1
www.androidauthority.com 7y ago

Google details just how good dark mode is for your battery

gmiller123456
31pts22
phys.org 7y ago

Material scientists create fabric alternative to batteries for wearable devices

gmiller123456
1pts1
www.atlasobscura.com 7y ago

Exploring the Tragic Beauty of Greenland’s Melting Ice Sheets

gmiller123456
1pts0
www.sciencealert.com 7y ago

China Revealed Model of Earth's First New Modular Space Station in Over 20 Years

gmiller123456
1pts0
www.youtube.com 7y ago

Is 'Oumuamua Really an Alien Spacecraft? (PROBABLY NOT) [video]

gmiller123456
2pts1
phys.org 7y ago

A faster, cheaper path to fusion energy

gmiller123456
117pts123

I'm surprised they'd even need to say that, let alone people who heard it were just learning it. I would imagine the overwhelming majority of cases don't involve forensic evidence. I've only had close involvement in a handful of cases that resulted in a conviction, but none involved forensic evidence. In one they took fingerprints (and the handle to our cash drawer, which they never returned), but that didn't result in a conviction.

My experience is the exact opposite. I worked remotely for a good 10 years, after a buyout we returned to the office for a couple years, and returned to remote during 2020.

When working from home, when 5pm hits, the first thing I want to do is get out of the house. I do lots of group activities, hiking, kayaking, cycling, pool, trivia, photography, etc.

When I have to go in to the office, when 5pm hits, all I want to do is go home. Once I'm home, I'm much less likely to leave.

I understand I'm a sample size of one. And even though several of my who work from home friends feel the same way, it's obvious I never meet the people who stay at home. But I'm curiious as to whether the people staying at home would go out if they worked in an office. Seems like that'd make most sense if you're hanging out with people you work with, which I don't do much. But I doubt there's a good sample size of people who've switched back and forth.

I'm not sure if it was a deliberate omission or not, but it's worth pointing out in the Sunset model that the sky should not go black as soon as the Sun goes below the horizon as it does in the demo. The Sun will still be shining on the atmosphere above you, and in areas above your horizon for a considerable time after Sunset. There will still be a noticeable twilight (in Earth's atmosphere) until the Sun is 18 degrees below the horizon. It's probably not practical to implement using ray tracing, but there are common algorithms to model it.

RSA and Python 4 months ago

One of the bigger hurdles in implementing RSA is having an algorithm which can multiply the large numbers in real time. If you try a niave multiplication algorithm, you might find you'll never get an answer. A lot of hardware now comes with special instructions which implement efficient algorithms for doing this.

I gave build123d a try about a year ago. I really wanted it to work, but it has a lot of issues, mainly in documentation. I'm going off memory here, and it's been a while, so maybe some of these have been fixed. One of the biggest issues is one of the fundamental classes (I want to say "Part") is not documented at all. And it's essentially the most important class. I tried enumerating all of the methods on the class, but didn't make much progress. Fillets were promising, but it seems once you've got a complex edge from a few operations it quits working, or at least did for my part. You're supposed to be able to do something like b=Box(10,10,10), then access the width as b.width, but all of those properties were always zero.

OpenSCAD supposedly supports Python now (https://pythonscad.org/), but I was not able to get it to work at all. I've fallen back to just OpenSCAD, even though it has limitations, at least I'm familiar with them. I'm mostly just waiting for improvements to anything that'll make it better than OpenSCAD.

No. With the old style you had to draw every pixel, and you'd have to develop primitives for drawing a point, a line, or a triangle. With a GPU you essentially give the GPU a bunch of data and tell it to draw points, lines, or triangles for you. You then create "shaders" which are functions that the GPU calls to ask where to position a vertex, or what color to make a pixel, with some "magic" that passes data between the two. It's best understood by looking at the code for the almighty gradient triangle: https://webgpufundamentals.org/webgpu/lessons/webgpu-inter-s...

"Basic" is a relative term. Modern graphics GPUs do not work the same way memory mapped graphics do, and working with them is different at a fundamental level.

You are probably better off searching for old graphics programming books from the 90s. The code they have likely won't work, the the algorithms should be what you're looking for, and shouldn't be hard to adapt.

Width and height are meaningless for inline elements

Really not sure what you're trying to get at there, obviously any element that displays will have a width and height. Maybe you meant a user specified width/height, but the entire point of my post is an inline-block is an inline element with a specifiable width and height. And we've always had the IMG tag, which is also an inline element with a specifiable width and height. The obvious and intuitive choice would have been to not put artificial limits on inline elements.

What ever that "certain way" it's supposed to act, someone obviously wants it to act different if they set a height and width. Having to redefine the display time is a needless extra step that the user has to "just know" when the intention could easily be inferred.

No, we don't learn CSS because it sucks. I have given up on the idea that I will ever be able to remember all of the rules and exceptions.

Just one example most people already know. If I set a height or width on an inline element, it's ignored. So, obviously there is a limitation in the renderer that can't do it. But wait, make it inline-block and suddenly it works! So why the f*k didn't it just honor the width and height to begin with? It's quite literally a rule for the sake of having a rule.

I don't doubt there is some deep dark reason for why it is the way it is, like optimizations, or backwards compatability, but it doesn't matter to the end user. It's an implementation detail they shouldn't have to bother with.

It's a lot less about being discovered, or invented, and a lot more about the idea of using it at all. The Renaissance was a massive change in culture. Before that, art was a tool used in rituals or storytelling rather than something to be enjoyed on its own. There was more emphasis on reproducing things as they actually were than how they looked from a particular vantage point.

I really wish OpenSCAD had objects, so you could use something like box1.width rather than having to declare variables for such things.

I tried using Build123d, a Python library that lets you use all of the features of Python. And it's supposed to allow specifically things like box1.width, but it's always 0. Lots of other issues/bugs too, and severely lacking in ddocumentation.Maybe it'll get there some day.

Not sure about SDFs, but ray casting/tracing goes back a long way being used to design sundials thousands of years ago. A method of ray casting was published in the 1600s to show how to trace out the outline of the Moon on the Earth during a solar eclipse.

I depends on the orbit. The low Earth ones would usually be de-orbited and fall back to Earth. The geosychronous ones are usually just moved to a parking orbit out of the way to make room for more. If it's in a high but not very crowded orbit, they might just stop using it.

The anti-satellite devices could be deployed in the same manner as the Starlink satellites. And they wouldn't need communications equipment, so they could be lighter and cheaper to launch. And you really wouldn't need to take them all out, just enough to make communication unreliable.

Starlink launches reduce costs by launching a bunch of satellites with similar orbits on the same vehicle, replacing one or a few satellites is going to cost a lot more per satellite. So just disrupting the network is a lot cheaper than fixing it.

Thought the cheapest is still probably paying an existing employee to break some stuff.

Not really anything in there regarding the sundial. I'm guessing that was put in there metaphorically for clickbait reasons.

Knowing quite a bit about sundials I was genuinely curious about how that would work, as a typical (horizontal) sundial doesn't have enough information to make a calendar. It's a time of day device, rather than a time of year device. You could teach the model about the Equation of Time or the Sun's declination, but it wouldn't need the sundial at that point. There are sundials like a spider sundial, or nodus sundial, that encode date information too. But there's overlap/ambiguity between the two solstices as the sun goes from highest to lowest, then back to its highest declination. Leap years also add some challenges too. There are various ways to deal with those, but I think you can see why I was curious how producing a calendar from a sundial would work (without giving it some other information that makes the sundial unecessary).

There are a handful of Earth centered, geocentric standard reference frames. The most used today is the Geocentric Celestial Reference System (GCRS). It should be obvious that if you want to compute where to point a telescope, a transformation of coordinates will involve a step through such a coordinate system. GPS is it's own system, but there are transformations to and from the GCRS and GPS frames. Which one makes sense depends a lot on your application.

I guess I must be. Where did he "point out the difference between new and used"? All I see is "But newsflash: used is different than new", then the explicit declaration 'you can't say "Tiny PCs are cheaper than Raspberry Pis" based on used pricing versus new.'.

I actually unsubscribed from Jeff's channel after he published that video. Anyone claiming the lack of a used RPi market means we have to ignore the used market for everything else is just an idiot. I'm going to compare the two no matter how much it bothers the fanboys.