- 6 Posts
- 27 Comments
Vulwsztyn@programming.devto
Opensource@programming.dev•Mattermost say they will not clarify what license the project is under
2·20 days agoyou could say it matters less
Vulwsztyn@programming.devto
Learn Programming@programming.dev•What's the most fun programming language to learn?
1·23 days agoNo problem, have fun
Vulwsztyn@programming.devto
Learn Programming@programming.dev•What's the most fun programming language to learn?
1·23 days agoI had a blast doing AoC in https://gleam.run/
it’s like elixir with typing
Vulwsztyn@programming.devto
Programming@programming.dev•Lua Tables - The Swiss Army Knife of Data Structures
11·23 days agoany benchmarks to support this claim?
Vulwsztyn@programming.devto
Git@programming.dev•pre-commit hooks are fundamentally broken
41·3 months agoyou don’t have to rebase.
create a new branch from main
push it
go to main
git reset --hard origin/main
Vulwsztyn@programming.devto
Python@programming.dev•Beta release of ty: An extremely fast Python type checker and LSP
1·3 months agothere is basedpyright
Vulwsztyn@programming.devto
Ada@programming.dev•The Undisputed Queen of Safe Programming
2·3 months agowhy medium?
Vulwsztyn@programming.devto
Gleam@programming.dev•We Rewrote Our Startup from PHP to Gleam in 3 Weeks
2·3 months agoYour post is my introduction to gleam and I already love it. Thank you
coming from a language with consistent pronunciation I pronounce it “aur” like other comments said, like “aurum” or like in Portuguese - how it is written)
Vulwsztyn@programming.devto
Programming@programming.dev•We should all be using dependency cooldowns
22·4 months agoThat’s not a good idea
Vulwsztyn@programming.devto
Opensource@programming.dev•ClamAV to Cut Signature Database Size by 50%
1·4 months agolower resource usage for users
Vulwsztyn@programming.devto
Python@programming.dev•uv is the best thing to happen to the Python ecosystem in a decade
2·4 months agoI know it’s not the point of this comment, but I’ll check harlequin out
Vulwsztyn@programming.devto
Programming@programming.dev•Big Decimals: Stop Using Floats or Cents for Money
1·4 months agoStop using
floats and cents for moneymedium ffs
Vulwsztyn@programming.devto
Programming@programming.dev•Big Decimals: Stop Using Floats or Cents for Money
1·4 months ago“stop using medium”
Vulwsztyn@programming.devto
Advent Of Code@programming.dev•🦆 Everybody.Codes 2025 Quest 1 Solutions 🦆
4·4 months agomy boring python solution:
from pathlib import Path def main(): input = Path('input.txt').read_text().split('\n') names = input[0].split(',') instructions = input[-1].split(',') print(names,instructions) index = 0 for instruction in instructions: dir = instruction[0] number = int(instruction[1:]) if dir == 'L': index -= number if index < 0: index = 0 else: index += number if index > len(names) - 1: index = len(names) - 1 print(names[index]) index = 0 for instruction in instructions: dir = instruction[0] number = int(instruction[1:]) if dir == 'L': index -= number else: index += number print(names[index%(len(names))]) indexes = list(range(len(names))) for instruction in instructions: dir = instruction[0] number = (int(instruction[1:]) if dir == 'R' else -int(instruction[1:])) % len(names) indexes[0], indexes[number] = indexes[number], indexes[0] print(names[indexes[0]]) if __name__ == "__main__": main()I probably should read all 3 files though. I’ll hone it out later.
Vulwsztyn@programming.devto
Programming@programming.dev•Why Is Python So Popular in 2025?
1·5 months agoit’s as easy as the code you’re maintaining is.
it has fewer guardrails than most languages, that would prevent you from writing shit code
Vulwsztyn@programming.devto
Programming@programming.dev•Why Is Python So Popular in 2025?
1·5 months agosyntax is bad for list operations, also there are situations where you need to count the number of parentheses you closed, which wouldn’t happen of you were able to use fluent interfaces





Thank you.
Remeda.js was organised like this. How would you organise it?