Many moons ago I used to run the #grafana security vulnerability handling. One day someone reached out with a variant of "I found an exploit in your codebase, normally I sell those to the highest bidder, but it's you so here's the PoC for free".
I have thought about this a lot over the years..
What gaggle of inane mouthbreathers would ever attack the @internetarchive #internetarchive?
I hope you ram your shins against a coffee table every single day for the rest of your collective lives.
Blog post to go with my PromCon talk:
https://grafana.com/blog/2024/10/08/inside-promql-a-closer-look-at-the-mechanics-of-a-prometheus-query/
I was recently asked if the strong passwords that Apple Passwords generates contain ”gibberish two-syllable ‘words’”. I explain the answer to this question in a new post on my blog: https://rmondello.com/2024/10/07/apple-passwords-generated-strong-password-format/
My close friend @iris_meredith published this on corporate norms around "Who is allowed to know things" at companies. Tech debt isn't real unless someone in power affirms it in a PowerPoint.
https://deadsimpletech.com/blog/epistemology
I love it and have made the same point. On Hackernews, it was accused of being "extreme left wing content" and the author is trying to "seed violent ideas into the minds of mentally unstable people".
Read it, and if you liked it, please send Iris some positive vibes.
Having an emoji rendering issue in Linux led me to deep-dive into emojis internals. 🤷
So why not share it? 😅
Also, I learned that emojis can be joined together to produce other emojis, which is one of the cutest things in the emoji universe.
https://dev.to/moukoublen/unicode-emojis-and-a-bit-of-golang-3ced
I've started slowly getting back to the habit of writing on my small blog, any feedback y'all have is greatly appreciated (and I'll owe you a beer for it).
I've written a blogpost on joining errors with the built-in errors package in Go.
Joined errors are a variant of error wrapping with slightly different semantics; I haven't seen them used all that much!
Let me know what you think! ^^ #golang #go
⏬
https://tpaschalis.me/golang-multierr/
Dmitri finds out how to solve differential equations
I'm particularly excited for what my teammate @matt is co-presenting about integrating Beyla with Alloy for eBPF auto-instrumentation!
Later on during the day, we'll also show a sneak peek of what my team has been cooking recently; I'm _so_ excited about what's coming out there!! 🙌🤫
#Grafana Labs is hosting #ObservabilityCon once more, this year in NYC!🗽
The opening keynote will be live streamed at 17:00 UTC ➡️https://grafana.com/events/observabilitycon/2024/keynote-livestream/ 👀
Admittedly, it really took handholding and patience from the Go team there, which I really appreciate 😅
On to the next one!
I've landed my first compiler PR for golang/go 🎉
It optimizes `[]byte(str1 + str2)` conversions by making them a single step instead of first concatenating the string and _then_ copying the result in a new slice.
https://github.com/golang/go/commit/fe69121bc538260cf91f11dab705335b690e51a3
OVERWORKED LICENSE (OWL)
dude idfk if i maintain this shit at all its some kind of miracle. like i can barely maintain myself let alone some software i made out of desperation. like just fucking do what you want with this shit i do not care. try not to be evil with it i guess, but no matter what i write here some jackass will find a way to ruin it.
this license is to apply to all derivative works
Reminder that #Vim and #Neovim have the special `=` register that gives you the result of an expression.
Most basic example would be a calculation. For example, I'm configuring the cache_size in the config file for davfs2. It takes a value in MiB. I'd like to set it to 50 GiB, so I can simply, in insert mode, hit Ctrl-R and then type
=50*1024
and hit return, and Vim will insert 51200.
See `:h @=` and `:h i_CTRL-R` for details.
https://vimhelp.org/change.txt.html#%40%3D
https://vimhelp.org/insert.txt.html#i_CTRL-R