Hacker Newsnew | past | comments | ask | show | jobs | submit | drunken_thor's commentslogin

In my limited understanding, static recompiling is like JIT transpilation from one arch to another where emulation runs each instruction calling behaviour depending on the instruction. As for tradeoffs my knowledge is not wide enough to declare anything certain.


What is the distinction in your mind? Can recompiling not call each instruction? Can threaded interpretation not perform optimization?


This is why there is growing anti-AI sentiment. It is always extractive. You can never just enjoy a poem, you need to use it. You need to extract its value for shareholders. Get a life.


Is this a comment toward the author?

Surely the irony isn't lost upon you that they literally are advocating for getting a life.


Creatives have always found inspiration from what they consume (AI has nothing to do with it). My partner writes, and eventually gets to the point where she has to take a break from plotting and writing and watch tv shows or read books. When she says she needs to refill her well, I know she's about to want to watch tv shows again for a little bit.

I design games. I can't even count the number of times something someone said, or a game I've played or watched a review of, has sparked an idea for new game, especially a board game (which most of the time doesn't work out once it gets in front of players, but that's okay). It's probably been over a hundred times by now.

People love highlighting quotes from poems and stories that they find inspirational for their own lives somehow. You want to know how I know? Kindle used to tell me, with saying how many other people highlighted a specific passage (it might still do that, but I mostly listen to audiobooks right now, so of course I won't see them). Also social media is flooded with people sharing quotes from various books or poems or sayings from people.

That's all this is.

But because it's said by someone who works with A.I. and thus is thinking about the quote with that frame of reference, you had to twist it into some anti-A.I. sentiment, implying that he's doing something perverted or not normal by daring to find inspiration in a quote.


Bukowski was a fan on new technology even towards the end of his life:

> “Yes, you have a strange project: electronic books. It might be the future as more and more people find that the computer is such a magic thing: time-saver, charmer, energizer.”

No one can say what he would have thought of AI for sure but I think he would have appreciated ability to reduce drudgery on this thoughts on factotum[1] work.

1. Why yes, that is a cheesy reference to his book of the same name. ;)


> On Christmas Day, 1990, Charles Bukowski received a Macintosh IIsi computer and a laser printer from his wife, Linda. The computer utilized the 6.0.7 operating system and was installed with the MacWrite II word processing program. By January 18 of the next year, the computer was up and running and so, after a brief period of fumbling and stumbling, was Bukowski. His output of poems doubled in 1991.

Charles Bukowski, William Burroughs, and the Computer - https://realitystudio.org/bibliographic-bunker/charles-bukow...


This cracked me up. I only used ~~one~~ two of his poems and enjoyed most of the others. Betting on the Muse was $2.09 on Amazon, which is a good ROI, I think.


Bukowski worked as a mailman. I had that job too. It was an awesome job. I got through like 9 hours of audiobooks a day.

Only issue was nobody sends mail anymore -- the elderly, Christmas and spam -- so when there was no mail, you'd work an hour and then you'd only get paid one hour. So most people were students, or their spouse did the heavy lifting.

Other than the pay, it was a great job though. I worked in snowstorms (and regular storms!) and in >37C (~100F) -- I got a big sombrero which looked a bit silly but did the job.

Then I'd go home and work on genetic algorithms. And then when the pay arrived at the end of the month -- 800 Euros (909 American), I had to wonder if I wasn't doing it backwards -- I should be getting paid to work on genetic algorithms all day, and then at the end of the day I should run up and down staircases for several hours for free.


no its a bunch of fearful finger waggers imagining they are doing it right. get left behind


All these words and yet 2 pictures of the car. Show off the mods! Show me the engine bay, the suspension and sway bars!


The terrible thing is that everything is moving to apps so that the developers can get more access to the user's fingerprint and get more data. Get access to photos, location ect. All webpages that suddenly have an app, which in my experience ends up having less functionality than the website, are quite simply there to get data, and be able to push notifications. They are parasitic. I miss the days when an app was the better offering but it isn't anymore.


What a great tool and community they have built. I find my flipper0 is like a computer Swiss Army knife. It’s so fun to carry around a tool of my own trade.


Sdks/libs, especially open source sdks, were never about gated knowledge. They were about the providing company making it as easy as possible for you to integrate. You would not need to know the idiosyncrasies behind api retries, paging, rate limits, auth flow, and on and on. The third party developers needed a resource, they call a method and get it. Open source libraries especially are about pooling knowledge, not gating it. This is propaganda for pooling that knowledge inside a service you have to pay to use, and instead of developers all using and improving the same codebase together, they have to spend money to rewrite the same code repeatedly. This is AI companies further trying to undercut open source because it’s free.


It seems like this was built years ago but only posted now. Why post it now? It doesn’t seem like it has changed much in 4 years so I can’t see that it matured or stabilized over that time. I am sorry for my ignorance of c build systems, this very well might be in high use already. Either way, it looks useful and built by hand so good job! Looks great and I hope people find it useful!


I recently added a Ninja backend and a users guide and thought this might be helpful for a lot of people. It was pretty stable over the years. I have a few features on my todo list which I will implement as needed, and I recently completed my LeanDoc document language and migrated most of my specifications, which sparked further activities.


> Why post it now?

Apparently a explanatory document has been extended in a recent commit [1]. Maybe the project is waking up.

[1]: https://github.com/rochus-keller/BUSY/commit/d92677084114619...


CarPlay is also a contract between mobile devs and automakers. It allows for things like displaying "current playing" on the dash, media buttons on the steering wheel that control apps, and turn by turn directions show on dash and HUD. A screen cast may be able to do this but not in a consistent dependable way.

Also no one is mentioning that maybe we should not encourage users to use 1000s of apps in their car? It would be irresponsible to easily allow users to watch youtube while driving. Keeping the set of apps usable through the car is a responsibility in automobiles that are already becoming too distracting as is.


Agreed, it keeps the parser fast as well because it is a lot more clear when the boolean statement ends and the code block begins. You either need parentheses, `then` or brackets around the block to make parsing clearly defined.


I think that allowing an if statement to return a value to deal with the ternary introduces a now concept to Lua and that is that the value on the final line of a block is a return value much like Ruby. This changes the logic of the entire language more than adding a ternary. I do prefer the if statement as it allows so much more emergent behaviour, but it does have more implications to consider.


I suppose, though I feel what most people in this thread are thinking of is updating the existing if statement to also work as an expression, which does have plenty of implications (not that I think they would be bad, just more of a change to the language than the feature designers were going for) including final returns. The example I took from Luau still keeps the if statement and the if-then-else expression as separate constructs. One problem is that the statement and expression versions look very similar despite having different semantics (expression version must only contain expressions in its branches, must have an `else` case, does not have `end`).

Of course there are differences between LuaJIT and Luau that I think influence their decisions on possible ternary expression features:

- Luau users are disproportionately beginners to programming that I believe would find the if-then-else expression syntax easier to learn; LuaJIT developers have a larger user base of professional devs wanting to make their code faster, and they will probably be more familiar with the `x ? y : z` style since it's used in plenty of other languages.

- Luau is a lot faster moving in its development than LuaJIT in terms of language features, the Luau team just wanted to move people to ternaries from `x and y or z` because it's easier to optimise in a normal interpreter; LuaJIT, with their JIT, I assume would be able to more easily implement optimisations for constructs like `x and y or z` despite its slight semantic differences (my assumption on why the change is being considered now rather than earlier).


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

Search: