hobbyists
Not so sure about that plural...
hobbyists
Not so sure about that plural...
I, unfortunately, have to use GitHub at $DAYJOB and this is me. I navigate most of the webpage via the URL bar now.
Basically, let's say I'm working on a repo github.com/tomato/sauce/
and want to navigate to the Releases page.
Via the webpage:
github.com
into the URL bar.tomato/sauce/
in the list of recent repos, even though it's the only repo I work on.tomato/
org.tomato/
org.sauce/
repo in the list.Via the Firefox URL bar:
gi→t→s→r→
.I admit, it's hard to compete with the latter, but I wouldn't know how to navigate that way, if the former wasn't so terrible.
I hear, it actually significantly increases the chance of the miracle occurring when you pass the array into multiple threads. It's a very mysterious algorithm.
Might be a song from Kevin MacLeod? His songs get used a lot on the YouTubs.
https://incompetech.com/music/royalty-free/music.html
When I just searched "Kevin MacLeod jazz", the first result was "Acid Trumpet", which seems like it could fit your description.
I enjoy anise-fennel-caraway tea. It doesn't taste as watery as many of the fruit-based teas and not as bitter as black tea and such. I find, it's also decent at clearing out my throat.
Peppermint tea is second place for me, for very much the same reasons. 🙃
Not sure, if I stopped listening to mainstream music around that time, but uh, both of my examples are from 2011, apparently:
All the other kids with the pumped up kicks
You’d better run, better run, outrun my gun
All the other kids with the pumped up kicks
You’d better run, better run, faster than my bullet.
We've got a WebAssembly web-UI at $DAYJOB. Implementation language is Rust, we use the Leptos framework (although other mature frameworks are available for Rust).
Pros:
Result
and Option
types + pattern-matching works really well for UI stuff. You just hand the Result
value over to your rendering stack and that displays either the value or the error. No unset/null variables, no separate error variable, no ternaries.Cons:
With me being in a team with few frontend folks, I would definitely opt for it again.
Well, for reasons, I happen to know that this person is a student, who has effectively no experience dealing with real-world codebases.
It's possible that the LLM produced good results for the small codebases and well-known exercises that they had to deal with so far.
I'm also guessing, they're learning what a PR is for the first time just now. And then being taught by Microsoft that you can just fire off PRs without a care in the world, like, yeah, how should they know any better?
Tangentially related rant: We had a new contributor open up a pull request today and I gave their changes an initial look to make sure no malicious code is included.
I couldn't see anything wrong with it. The PR was certainly a bit short, but the task they tackled was pretty much a matter of either it works or it doesn't. And I figured, if they open a PR, they'll have a working solution.
...well, I tell the CI/CD runner to get going and it immediately runs into a compile error. Not an exotic compile error, the person who submitted the PR had never even tried to compile it.
Then it dawned on me. They had included a link to a GitHub Copilot workspace, supposedly just for context.
In reality, they had asked the dumbass LLM to do the change described in the ticket and figured, it would produce a working PR right off the bat. No need to even check it, just let the maintainer do the validation.
In an attempt to give them constructive feedback, I tried to figure out, if this GitHub Copilot workspace thingamabob had a Compile-button that they just forgot to click, so I actually watched Microsoft's ad video for it.
And sure enough, I saw right then and there, who really was at fault for this abomination of a PR.
The ad showed exactly that. Just chat a bit with the LLM and then directly create a PR. Which, yes, there is a theoretical chance of this possibly making sense, like when rewording the documentation. But for any actual code changes? Fuck no.
So, most sincerely: Fuck you, Microsoft.
Business intelligence is in the context of analytics. It means something very different from "business logic", in case you're thinking they're synonyms...
I'm curious to see, how long it'll last. Much like with a support hotline, there's no directly obvious financial benefit to having such a chatbot, so if the hype has died down and the price is increased, I could see those being axed pretty quickly...
You don't want to use exceptions in normal control flow, because they're extremely slow. Every time you
throw
an exception, it has to collect a stacktrace, which is hundreds, if not thousands, of calculations, compared to a handful of calculations for returning a boolean or an enum variant.