Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
auxiliarymoose
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
auxiliarymoose
27d ago
3D mice and other hardware may run a local server for web applications to use them as input methods. The dialog can also show up if you are using network security software which proxies requests via private IP address range. Plenty of other
2.
▲
by
auxiliarymoose
3mo ago
Yep, I've been importing CDs to Apple Music (which I buy from my local music store) and adding them to my Android phone for personal listening. It's a great way to spend money on music in a way that supports local businesses!
3.
▲
by
auxiliarymoose
4mo ago
Thanks for the catch! Fixed :-)
4.
▲
by
auxiliarymoose
4mo ago
Well, it's posted on Hacker News which is a general audience including people working on electrical/signal/audio/radio-frequency systems among other things (not just low-level network code) where BPF has a different mean
5.
▲
by
auxiliarymoose
4mo ago
~Well, if you asked a randomly-chosen person (technical or non-technical) they would probably say NASA is "the organization that does the space things" — it's pretty well-known~ ~On the other hand, BPF means different things
6.
▲
by
auxiliarymoose
4mo ago
Sure, but if you are sharing with a general audience (where people aren't necessarily coming from your own domain) it's a good idea to make the writing accessible. My first thought would have been Band-Pass Filter, which is also a
7.
▲
by
auxiliarymoose
4mo ago
I'm guessing Berkeley Packet Filter: https://en.wikipedia.org/wiki/Berkeley_Packet_Filter This is why National Aeronautics & Space Administration (NASA) guidance is the following: > Acronyms often confuse r
8.
▲
by
auxiliarymoose
4mo ago
Alternatively, it is a conscious decision to help prevent users from causing complicated situations. Given a highly configurable system, users will find ways to (unintentionally) tie it into knots, so adding some guardrails can help reduce
9.
▲
by
auxiliarymoose
4mo ago
federated hardware (a bunch of raspberry pis networked into a high availability kubernetes cluster, hidden across various local coffee shops for free power and bandwidth)
10.
▲
by
auxiliarymoose
4mo ago
It's easy to convert because CSG is a small subset of what BREP can do. It's analogous to "all squares are rectangles, but not all rectangles are squares" (squares=CSG, rectangles=BREP) CSG by itself isn't suitable
11.
▲
by
auxiliarymoose
4mo ago
It is open source, so you could send pull requests with improvements: https://github.com/instructure/canvas-lms
12.
▲
by
auxiliarymoose
4mo ago
Creo (and Onshape) both support STEP AP242 export, but customers may choose to export to an older version for better compatibility with third-party systems that have not implemented recent standards. Generally, at export time, choosing the
13.
▲
by
auxiliarymoose
5mo ago
I think there's a lot of potential for some more old-school UI in business software. People using points of sale, CRM/ERP/PLM/etc. systems, intranet portals, and so on don't really care about how nice it looks. Effi
14.
▲
by
auxiliarymoose
5mo ago
I've also felt that composition is unnecessarily hard in web & data infrastructure. I do game development as a hobby, and web + data technology is in the stone age compared to game engines when it comes to composability. For exampl
15.
▲
by
auxiliarymoose
6mo ago
You can just git submodule in the dependencies. Super easy. Also makes it straightforward to develop patches to send upstream from within your project. Or to replace a dependency with a private fork. In my experience, this works great for l
16.
▲
by
auxiliarymoose
6mo ago
How do I decline it?? I keep clicking no, hide, not interested, cancel, etc. but it keeps showing up and activating...if I had a nickel for every time I clicked it on accident in Azure because a layout shift moved it under my mouse when try
17.
▲
by
auxiliarymoose
6mo ago
Sure it's not officially called the "standard library," more precisely it would be "the parts of the ECMAScript and CSS standards implemented by all popular evergreen browsers," but "standard library" expr
18.
▲
by
auxiliarymoose
6mo ago
No, it means using the crypto module in the standard library instead of importing some third party dependency.
19.
▲
by
auxiliarymoose
6mo ago
There are certainly security benefits to keeping things in-house. Less exposure to supply-chain attacks (e.g. shai-hulud malware) and widespread security bugs (e.g. react server components server-side RCE). Plus it's much easier to do
20.
▲
by
auxiliarymoose
6mo ago
Thanks for creating and sharing that resource! I'm reading through it now, and it looks fantastic. I'll share it the next time someone asks where to get started with web dev. Come to think of it, I should write up the techniques I
21.
▲
by
auxiliarymoose
6mo ago
yeah, plus stack traces, debuggers, and profiling tools are easier to use when all of the non-essential complexity is stripped out. which in turn means it's possible to work productively on software that solves more complex problems. t
22.
▲
by
auxiliarymoose
6mo ago
I really think writing dependency-free JavaScript is the way to go nowadays. The standard library in JS/CSS is great. So are static analysis (TypeScript can check JSDoc), imports (ES modules), UI (web components), etc. People keep tell
23.
▲
by
auxiliarymoose
7mo ago
Take async for example. You have to choose some third-party async runtime which may or may not work with other runtimes, libraries, platforms, etc. With Go, async code written in Go 1.0 compiles and runs the same in Go 1.26, and there is no
24.
▲
by
auxiliarymoose
7mo ago
Godot Engine has pretty good UI building tools. The places where it poses challenges in my experience are high quality typesetting/rich text, responsive UI that requires a wide range of presentations (i.e. different layout structures o
25.
▲
by
auxiliarymoose
7mo ago
Godot is pretty lightweight (especially considering how powerful it is), generally about a second or less. But maybe they are looking for a fast enough startup time that the engine can be started when showing something onscreen and torn dow
26.
▲
by
auxiliarymoose
8mo ago
AWS GovCloud is accessible to commercial customers.
27.
▲
by
auxiliarymoose
8mo ago
Much of the problem stems from inconsistent application of icons. This would have gone better if Apple established (and followed!) clear guidelines for exactly which icon to use for which standard action (e.g. search). That the icons exist
28.
▲
by
auxiliarymoose
9mo ago
Accordion behavior is discussed in the article in the "Accordions / Expanding Content Panels" section: > Use the same name attribute on all related details (like radio buttons) to restrict only one open panel at a time And
29.
▲
by
auxiliarymoose
9mo ago
They shared the polling code in the article. It doesn't request another jpeg until the previous one finishes downloading. UDP is not necessary to write a loop.
30.
▲
by
auxiliarymoose
9mo ago
Because displaying user-submitted images is pretty common and doesn't feel like a security footgun, but displaying user-submitted HTML is less common (and will raise more careful security scrutiny).
More ›