Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
anthonyshort
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
anthonyshort
2y ago
Then the hallucinated research is published in an article which is then cited by other AI research, continuing the push the false information until it’s hard to know where the lie started.
2.
▲
Nominal raises $27M Series A to accelerate hardware development
(generalcatalyst.com)
28 points
by
anthonyshort
2y ago
|
3 comments
3.
▲
by
anthonyshort
3y ago
We also have more staggered school breaks throughout the year. With two weeks off after every term, many more public holidays, and the ~2 month summer break there are a lot more opportunities to go on holiday. As an Aussie dad in the US, I&
4.
▲
by
anthonyshort
3y ago
I wonder if this difference is always why Americans don't put butter on sandwiches or consider just bread and butter a completely normal snack. If it doesn't taste like anything I can see why it wouldn't make sense.
5.
▲
by
anthonyshort
3y ago
I believe it was saying that Qantas was the only Australian-owned airline operating long haul flights during the pandemic.
6.
▲
by
anthonyshort
4y ago
Australian public schools are funded by state and federal governments, not local. So all public schools tend to be pretty similar. On the flip side the government also partially funds private schools, which is an issue at the moment. https
7.
▲
by
anthonyshort
5y ago
In my experience, other countries don't view themselves that way, and it's mostly seen as an Americanism (I'm not American)
8.
▲
by
anthonyshort
5y ago
I think it was the sunsetting of Google Reader that triggered the downfall. I don’t think I ever cared about push notifications for feeds. When you have your morning coffee, open up Reeder, refresh the feeds and read through a few articles.
9.
▲
by
anthonyshort
5y ago
The US is the only country that uses F. It has nothing to do with speaking English. Every other English speaking country uses celsius.
10.
▲
by
anthonyshort
6y ago
Weekly or fortnightly pay is common in Australia, so talking about it as weeks of pay made sense to me. I don't think they really even use the term "fortnight" in the US. Every tech company I've worked at here seems to d
11.
▲
by
anthonyshort
7y ago
Design systems alone don't really solve for this. Design would need to look at the experience across the entire app. A simplified example of how the UX can break down if frontend teams are too isolated is notifications. If every team t
12.
▲
by
anthonyshort
7y ago
Every design is meant to be used. The amount of space needed is relative to the problem.
13.
▲
by
anthonyshort
7y ago
I can imagine a world where this would be useful, being able to drop something in as easy as a <select/> element seems fine. It seems useful for UI primitives, like a dialog, tooltip etc, that the browsers might not implement as
14.
▲
by
anthonyshort
7y ago
I don’t understand the push to make userland component abstractions into native primitives. It’s perfectly fine for the browser to just implement low level primitives for frameworks like React to build on top of. It allows the framework to
15.
▲
by
anthonyshort
8y ago
They never said that all 1.0 use cases were covered now. They promised that eventually they will have use case parity and then they’ll deprecate 1.0.
16.
▲
by
anthonyshort
9y ago
How do you define "fluff"? If you think design (how the story is told) or quality (how easy it is to understand) doesn't matter, then I strongly disagree.
17.
▲
by
anthonyshort
9y ago
I feel like I need to point out that in my experience demographic personas like this aren't used by product designers. I've seen marketing use them. Not designers. Designers often get associated with fluffy exercises so I want to
18.
▲
by
anthonyshort
9y ago
I don't think it's trying to be a definitive reference. It seems more like those posters you put around the office to remind you of things you value or you think are important. Everyone is taking this fairly seriously. I doubt HN
19.
▲
by
anthonyshort
9y ago
That's not really the point we were making and I'm not sure you have a correct understanding of UX, as you're conflating UX and visual design. There's no pressure in the market to not value UX. Everyone wants and needs t
20.
▲
by
anthonyshort
9y ago
The reaction on Hacker News compared to the reaction on Designer News is great. I think the problem people are struggling with is that it's a site created mostly for fun and delight, but the message is about "UX", which peopl
21.
▲
by
anthonyshort
11y ago
All it does it transform into a tree of objects, https://gist.github.com/anthonyshort/5e9112a9ded7c8fc0f20 , which is annoying to write out by hand and HTML is familiar. I hated it (a lot) before I tried it out. You co
22.
▲
by
anthonyshort
11y ago
We're still using it on some of our projects, but we've found that no matter how simple we make data-binding it still leads to a mess of event bindings and state management. The original plan was to make a virtual dom plugin for r
23.
▲
by
anthonyshort
12y ago
You could also just export from each of the requires in that manifest.js file you have there. Although there's no real benefit of doing that over using the manifest other than it's kinda cool :)
24.
▲
by
anthonyshort
12y ago
You'd use a component.json to lock it down for an app. The inline versioning is really just a way to quickly write code and get something up and running. Manifests are just a pain when you're just getting started with a project or
25.
▲
by
anthonyshort
12y ago
But if you're at that point you probably have your own private git hosting somewhere too (or just private repos somewhere else). When there is support added for different remotes you could just require from there instead of Github. Poi
26.
▲
by
anthonyshort
12y ago
For private packages, you'd just make the repo private on Github and make sure you have auth details in your .netrc file. So you don't really need your own "registry". There is talk about supporting more than just Github
27.
▲
by
anthonyshort
12y ago
index.js as the entry point for a module is pretty standard with projects built around Component and npm. It's bower and the lack of the standard there that creates the issue.
28.
▲
by
anthonyshort
12y ago
gzips down to 8kb though, and that's the standalone version. Using it with component it will usually share dependencies with other components.
29.
▲
by
anthonyshort
12y ago
Nope, no virtual DOM. I like that concept, but I wanted to keep it simple. I'd like to make a virtual DOM plugin but it's a non-trivial task. It still batches all changes using requestAnimationFrame and it'll support Object.o
30.
▲
by
anthonyshort
12y ago
https://github.com/ripplejs/ripple/tree/master/docs/composin... Yep, you can nest views in a similar way to React. It's not exactly the same, but it's similar. Data is kept in sync and c
More ›