Really good listicle of new modern top python libraries from 2024. Very well done article with images, links, and an actually quality listicle with many things I've never even heard of.
Waylon Walker's Thoughts
You found my thought's a collection of short posts generally tied to a link on the web and written through a small chrome extension. See full posts on waylonwalker.com
-
@waylonwalker
Today
Top Python libraries of 2024 | Tryolabs
https://tryolabs.com/blog/top-python-libraries-2024 -
@waylonwalker
Yesterday
Choosing color palettes — seaborn 0.13.2 docu ...
https://seaborn.pydata.org/tutorial/color_palettes.htmlGood overview of seaborn color palettes. They have all sorts of different types, some designed to purposfully give each color the same weight for catecorization. Some designd to give linear differences in value, some have a parabolic feel with a diverging nature.
-
@waylonwalker
Yesterday
poolers.postgresql.cnpg.io CRD metadata.annot ...
https://github.com/cloudnative-pg/charts/issues/325I've never seen or needed to use a serversideapply in kubernetes before, but I ran into this same issue in my k3s homelab while installing cloudnative-pg.
You can do it with argo
apiVersion: argoproj.io/v1alpha1 kind: Application spec: syncPolicy: syncOptions: - ServerSideApply=true
and you can do it with kubectl
kubectl apply --server-side --force-conflicts -f cnpg-1.25.0.yaml
-
@waylonwalker
2 days ago
Nerd Fonts - Iconic font aggregator, glyphs/i ...
https://www.nerdfonts.com/cheat-sheetNerdfont cheatsheet is a fantastic way to copy paste icons into your shell. I just used it to juice up my starship prompt with my current
$NVIM_APPNAME
managed by [[ nvim-manager ]] -
@waylonwalker
3 days ago
Manufacturer Recertified Drives | Enterprise ...
https://serverpartdeals.com/collections/manufacturer-recertified-drive ...For my next drive upgrade in my homelab I am gong to be using one of these factory recertified drives from serverpartdeals.com. Found them on an LTT video awhile back. They are some lightly used and recertified, fully burnt in drives.
Shop for drives that are certified once again by the manufacturer to work like new. Factory ReCertified drives are cost-effective alternatives compared to factory-sealed new counter parts. Additionally, unlike in mass production, the re-certification process involves closer attention to the overall operation of the hardware so that the re-certification will not have to happen a 2nd time
-
@waylonwalker
3 days ago
Releases · bootandy/dust
https://github.com/bootandy/dust?tab=readme-ov-filedust is one of my favorite rust rewrite tools. Its so useful for narrowing down file system bloat and cleaning up some disk space on your nearly full disks. It runs right in your terminal and gives you a nice bar graph on the top directories in use.
-
@waylonwalker
4 days ago
Keycloak
https://www.keycloak.org/Keycloak looks like an interesting way to setup sso. It's part of the cncf so it's got a good backing. I want something better for argo workflows and this might be it. I'm curious what else I can tie into it.
-
@waylonwalker
5 days ago
The Worst Thing You Can Do For Your Career - ...
https://www.youtube.com/watch?v=CVG6f1N0VT8Don't stop learning! Stop trying because you have a doomer outlook on ai, llms, industry and think they are taking over. If you have no hope for the future, if you stop now you are cementing in that you will be no good and the ai will be better. Many, maybe most of us in this industry go here by hard work, long nights of learning, trying to solve problems that our job had. If llms take over then the world is going to be a whole lot different, it will be a world you cannot predict or plan for. For now put your head down and succeed in the world we have today.
TEEJ has some great thoughts on this whole sentiment, put this on for you morning walk or whatever you do.
-
@waylonwalker
10 days ago
(110) The Future of HTMX - YouTube
https://www.youtube.com/watch?v=0rtpsJSLb44&t=624sI like the charts that Theo brings to to these videos. Shout out for a positive k8s reference and not shitting on it.
Htmx brings html/css just a bit further down the complexity graph with little to no extra effort, while react allows us to go all the way full complexity at the cost of build and dev complexity to go from zero to 100 as soon as its introduced.
htmx brings us back to the ease of jquery ajax without any complex swapping or json parsing, all of the object parsing and html templating is done in the backend, the front end just tracks where to put it. HTMX couples the frontend and backend much tigher, since all of the front end html is generated in the backend, done correctly it is not possible for the front end to get out of sync and try to do things that the back end does not know how to handle, vice versa.
-
@waylonwalker
10 days ago
Why I Write
https://brittanyellich.com/why-i-write/It's interesting how many people in tech maintain a blog. I think part of this brings us back to web 1.0 days when so many individual websites owned the web it was a free for all unindexed land and you got to own a small piece of it.
I agree with most of Brittany's points here I write a lot to keep my skills sharp, and to refer back to. Brittany mentions keeping all her old posts, even the cringy ones. I'm all with you here, I'm just wodering how you look back at anything you wrote in the past and not get a bit of that feel, maybe its just me, but I see cringe and mistakes gallore, but it all makes me better moving forward.