Hacker News new | past | comments | ask | show | jobs | submit | torlok's comments login

Until you look at places like Florida, where "anti-woke" people ban sex-ed books, and drag shows.

It's whatever Rogan, Musk, Peterson, and other sheltered conservatives don't like.

Does xAI do anything interesting or are they just trying to catch up?

Grok-2 is rank 2 on LLM arena, it's basically as good as the best Gemini model. They already caught up. Only the latest ChatGPT model is a tiny bit better.

To be fair catching up is quite a feat in this game

That's undeniable, but it would be interesting to see something beyond "you can generate a picture" or "you can ask our model questions, though it may make things up".

Generating pictures isn’t even xAI’s model. It uses flux.

Tuckster is an "anti-elite" heir to a fortune who grew up in a castle. The only job he ever had was outrage baiting naive people. People like him are against regulation, but will clap any time big tech is dragged in front of congress. It's all a scam. You're being had. Why are you treating any part of his interviews as valid information.


I wonder if you're incapable of seeing what's amiss with your 'hack' job on Carlson.


No hack job needed on someone who can't call themselves news without going to jail.

https://nymag.com/intelligencer/2023/05/all-the-texts-fox-ne...


Fantastic arguments. You forgot to tip your fedora.


> Why are you treating any part of his interviews as valid information.

Why should I treat your comment as valid information?


Has anybody made an attempt at making a library like this, but with cross platform user input, and support for accessibility? From personal experience, if you can output triangles and text, writing a UI library like this is maybe 2-3 days of work. The fun starts when you consider that younger people are touch-first.


The accessibility is the hardest part. My custom library (in C# atop a weird rendering stack) has partial narration support and full touch/gamepad/mouse/keyboard navigation, but getting all the way to integrating with native screen readers is basically impossible at this point - from investigating it, it'd probably take me at least 3 months to get it working at all, and it wouldn't be portable.

One thing you have to do for reasonable accessibility is maintain a retained model behind the scenes even if you have an immediate mode API, so that's what I did. The immediate mode API does a bunch of caching in order to construct and maintain an appropriate retained mode tree across frames, which makes it possible to cleanly handle things like focus, selection and narration for invisible controls, etc. You also have to bake accessibility into the API from the start, for example by making certain every single widget has a description or a reasonable approximation of one, and by making sure there is an approximation of roles for every widget too.

A simple 'read a text description of the focused/clicked control' also doesn't get you far enough for narration - for example if there's a slider or textarea, you don't want to read the description and then the new value every time it changes, your narration has to be 'smart' and know to only read the description initially.

I'm hoping eventually AccessKit (https://github.com/AccessKit/accesskit) will be mature enough to use though.


Have you seen libAgar (https://libagar.org)? Cross platform support is certainly there, covering everything from windows XP (and earlier) to *bsd and SGI IRIX. I'm not sure what all having support for accessibility requires as I've never had to worry about it, but am curious if 1, agar has what's needed, and 2, what exactly is required of a GUI library for accessibility. Screen reader support? (Are there SR standards for desktop applications)? Dynamic scaling? High contrast?

(For embedded and/or touch first UI, LVGL is pretty nice, but probably lacking any semblance of accessibility features apart from keyboard navigation, but you could hook that yourself).


I've never seen this before, very cool.

The style in the screenshots reminds me of KDX[0] from Haxial.

[0] https://wiki.preterhuman.net/Haxial_KDX_(software)


I'm not a professional web developer, but I do write web apps and WASM stuff. With JS being decent since ES6, do you really need all this crap? And if you do, are you going to use someone's side project that they refer to as "Dark Souls of web frameworks"?


Original author here. No, you don't need all of it; everything is optional (as stated in the article). It's just a boilerplate with some tools and conventions, so "using it" has little implications, I think. Other than that, I'm just trying to have fun out here :)


He offered to buy an unprofitable company for 10 times what Disney paid for Lucasfilm because "funny number", tried to back out of the deal any way he could, and in the end was forced by a court. What are you talking about?


I think they given the known manufacturing issues, and poor customer support at the time, whoever bought a Tesla wouldn't sue even if instead of having a car delivered, Musk would take a dump on their driveway.


It sucks that this is what immediate mode got reduced to. If you listen to what Casey was advocating for, it was to avoid the need to synchronise state between local state and black box state. This can be applied to UI, but just as well to f.e. a physics engine, where a constraint can live as long as you keep calling doConstraint().

Unfortunately, all people seem to have gotten out of that was if(doButton(...)).


All modern graphics APIs are retained mode, because you push data to the GPU and the GPU maintains its own state. The closest you can get to immediate mode is OpenGL 1.0 with glBegin, etc.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: