HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ssousa666

no profile record

comments

ssousa666
·2 ay önce·discuss
I have such mixed feelings about Starlark and Bazel macros. When I write Bazel macros, they're great, the perfect tool for the job. When I encounter macros written by someone else, they are awful, a mistake and the bane of my existence.
ssousa666
·2 ay önce·discuss
My team runs several HarvesterHCI/RKE2 clusters, edge deployments of our validation, simulation and fleet management tools for autonomous vehicles. The Rancher ecosystem has really been a godsend for us.

Excited to experiment with k3k, but worried that I won't have the language to accurately describe the third layer of kubernetes in the stack. Host cluster -> Guest Host Cluster -> Guest Cluster? Host Cluster -> Guest Cluster -> Guest Guest Cluster?
ssousa666
·10 ay önce·discuss
I recently joined a company that writes Python after working for a Kotlin shop for the past four years. I miss Java/Kotlin every single day. I have no gripes with Python itself and I enjoy writing it, but I've still never seen a large python codebase that remains as coherent, structured and understandable as the average large JVM language codebase. It's as if the structure of the language itself materially informs the structure of the codebase as it grows.
ssousa666
·geçen yıl·discuss
my intuition tells me that this problem is best solved using DP
ssousa666
·geçen yıl·discuss
I saw your tweet about cracking type inference for recursive schemas. It seems like the solution to this problem is pretty straightforward and simple. Was the solution really as simple as using a getter, or is there some additional complexity that I am failing to grok?
ssousa666
·geçen yıl·discuss
I have been using this pairing for the past eighteen months and it has been a very productive and smooth experience. The Codeium/Windsurf JB IDE plugin is much better than their standalone vscode fork IDE
ssousa666
·2 yıl önce·discuss
[dead]
ssousa666
·2 yıl önce·discuss
I have been looking for a similar lib to use in a Kotlin/Spring app - any recommendations? My specific use-case does not need to support sanitizing during the HTML -> MD conversion, as the HTML doc strings that I will be converting are sanitized during the extraction phase (using JSoup).
ssousa666
·2 yıl önce·discuss
Interesting to learn the human side of a tool I use almost every day. RIP Stiver
ssousa666
·2 yıl önce·discuss
Kotlin classes are (seemingly) all generated as open classes, rather than data classes. Surprising choice - is this an intentional design decision? Wondering if I am missing something
ssousa666
·2 yıl önce·discuss
I have been using Codeium's IntelliJ extension for the past nine months and have found it to be very useful.
ssousa666
·2 yıl önce·discuss
The AI tool is actually quite good, too. I use it to generate sequence diagrams pretty frequently.
ssousa666
·2 yıl önce·discuss
I'm surprised that Denver's Elyria-Swansea and Globeville neighborhoods were not highlighted as hotspots. I lived in Denver for many years, and these neighborhoods were commonly known to locals as some of the most polluted zip codes in the US.
ssousa666
·2 yıl önce·discuss
I wonder if the craftsman "John Swartzwelder" is https://en.wikipedia.org/wiki/John_Swartzwelder?wprov=sfla1
ssousa666
·2 yıl önce·discuss
There is a whole class of hybrid incubator/vc firms in the US ("VC Studios") that have used this model and achieved success. Sometimes the model is inverted, in that the VC studio will build the MVP with their small, in-house engineering team before staffing the "real" company and eventually handing the codebase off to founding engineering team.
ssousa666
·2 yıl önce·discuss
Kotlin is easily the best modern language for DX. After writing server-side Kotlin for the past three years, I'm not sure I ever want to write anything else.
ssousa666
·2 yıl önce·discuss
I am also a member of the hospitality -> tech club. in fact, I used to be the GM of one of the restaurants on your list!
ssousa666
·2 yıl önce·discuss
what did it mean historically? in contemporary usage, it seems to be a synonym for "managed" (or more accurately, a meaningless sobriquet for PAAS that can be easily sold to the huddled masses of "full stack" boot camp grads)
ssousa666
·2 yıl önce·discuss
my favorite thing about camelCase is that class instances are (typically) named and cased as the inverse of their pascal-cased class.

val somethingRepository = SomethingRepository()

Is much more visually satisfying and balanced to me than:

something_repository = SomethingRepository()
ssousa666
·2 yıl önce·discuss
I've found this very useful as well. My typical workflow (server-side kotlin + spring) has been:

- create migration files locally, run statements against containerized local postgres instance - use a custom data extractor script in IntelliJ's data tool to generate r2dbc DAO files with a commented out CSV table containing column_name, data_type, kotlin_type, is_nullable as headers - let AI assistant handle the rest