akullpp | 4 months ago | on: Scripts I wrote that I use all the time
akullpp's comments
akullpp | 5 months ago | on: My Workflow Is 70% AI, 20% Copy-Paste, 10% Panic. What's Yours?
12.5% Meetings
12.5% Documentation
50% Requirements engineering, i.e. talking and trying to figure out other people
akullpp | 1 year ago | on: I still like Sublime Text
akullpp | 1 year ago | on: Looking for a Job Is Tough
akullpp | 1 year ago | on: Looking for a Job Is Tough
akullpp | 1 year ago | on: How to build quickly
akullpp | 1 year ago | on: Ask HN: Who is hiring? (May 2024)
akullpp | 2 years ago | on: Ask HN: What web development stack do you prefer in 2024?
akullpp | 3 years ago | on: It's probably time to stop recommending Clean Code (2020)
Though it is an ill-defined term clean (clear, readable, reasonable, understandable) code is important in the sense that accidental complexity should be minimized and encapsulated and necessary complexity should be understandable.
akullpp | 3 years ago | on: Ask HN: What would be your stack if you are building an MVP today?
akullpp | 3 years ago | on: Mercedes-Benz workforce to receive record profit-sharing bonus
Myself on the other side worked 2 years as a software engineer and that's as much as I could taake:
* politics
* too many artificial restrictions
* worst management I've ever experienced
* Work doesn't get valued at all, cancelling so many projects and ideas amounting to nothing
* lower reputation than "real" engineers, they still don't understand the value of software, like so many German companies, and treat us as necessary evil, which is also resulting in not competive salary
If you shut up and just come to work every day, you certainly "made it", but for me that's impossible.
akullpp | 3 years ago | on: I've been abusing HTTP Status Codes in my APIs for years
Why not merge them and work with lists, I think a lot people would intuitively understand the following:
GET /users?ids=1
{ "users": [] }
GET /users?ids=1,2,3,4
{ "users": [ { "id": 3 } ] }
Transport the ids in any way you like, that's not my point.
akullpp | 3 years ago | on: You don’t need to be “enterprise-ready” or “scalable”
akullpp | 3 years ago | on: No-op statements syntactically valid only since Python X.Y
akullpp | 4 years ago | on: Ask HN: What is one book you would recommend everyone to read?
If you want to go deeper in understanding the West, it's recommendable to also get a rough idea of it's philosophers, especially the Greeks and the important ones up to Kant, including Descartes' idea of the social contract.
If you still want to know more, you should read about the most important economic ideas, e.g. Smith, Keynes, Marx.
akullpp | 4 years ago | on: Cinder: Instagram's performance-oriented fork of CPython
akullpp | 5 years ago | on: The ProtonMail Android app is now open source
akullpp | 6 years ago | on: Ask HN: What's the best resource for learning modern x64 assembly?
akullpp | 6 years ago | on: Improving my productivity as a working programmer (2017)
While I agree that it is a good idea to optimize chores, so you can focus on interesting issues, I often hit a wall of processes or humans.
One consequence, after a decade of professional work, is to actively dismiss the idea to optimize every part of my life. On the contrary, I value the time where I do nothing at all. It often allows me to clear my mind to be more creative afterwards.
So what I'm really missing, from this very basic article that does not provide any new information, is: Take your time off and do nothing.
akullpp | 7 years ago | on: Is Literature Dead?
alias df='duf'
alias ls='eza'
alias ll='eza -l'
alias cat='bat'
alias cap='bat -p'
alias man='tldr'
alias top='glances'
alias grep='rg'
alias ps='procs'
alias cd='z'
alias g='gitui'
alias gs='git st'
alias gp='git pull'
alias gu='git add . && git commit -m "Update" && git push'
alias check='shellcheck'
alias v='nvim'
alias len='wc -l'
alias uuid='uuidgen'
alias src='source ~/.zshrc'