Pretty much anything longer then a throwaway one liner I write in python.
Would be cool if python had a pipe operator though.
The back ticks in ruby is pretty ergonomic too. Wish python had a simpler way to run commands. Kind of tedious to look up subprocess run arguments and also break things up into arrays.
nushell (https://www.nushell.sh/) is essentially perfect for this use case! i use it rather than posix(y) shells for most projects where id normally reach for python.
Its amazing that working is so inhumane and unnatural that people break down like this. There is is nothing you can do except suck it up and create mental barriers to protect your self while participating this weird game of white collar work.
People have been writing about it for years. This is why we have child labor laws, work week standards, etc except in white collar and tech work we've been tricked into thinking we don't need those things
Anonymous whining reads like slander and lack of accountability. What's amazing about that?
> working is so inhumane and unnatural
What is work supposed to be? You either keep yourself alive, or if you can't, you cooperate with others to do so.
Why are you pretending like going to an office and speaking to coworkers to solve problems for customers is hard? What are you protecting yourself from except your own fragility.
THe union movement (and this is from the english point of view, I don't know much about it in the USA) people literally died for companies because the value of human life from the "lower classes" was so low. You only work week days because people literally fought and died for it.
We can, working together, create a better working world, where people are valued rather than exploited and used up for no real societal gain
Sorry for being pedantic, but what does the "L" stand for in HTML, YAML, SQL?
They may not be "programming languages" or, in the case of SQL, a "general purpose programming language", but they are indeed languages.
Recently I've been experimenting with using multiple languages in some projects where certain components have a far better ecosystem in one language but the majority of the project is easier to write in a different one.
For example, I often find Python has very mature and comprehensive packages for a specific need I have, but it is a poor language for the larger project (I also just hate writing Python). So I'll often put the component behind a http server and communicate that way. Or in other cases I've used Rust for working with WASAPI and win32 which has some good crates for it, but the ecosystem is a lot less mature elsewhere.
I used to prefer reinventing the wheel in the primary project language, but I wasted so much time doing that. The tradeoff is the project structure gets a lot more complicated, but it's also a lot faster to iterate.
Plus your usual html/css/js on the frontend and something else on the backend, plus SQL.
Go for the backend, something javascripty for the front end. You're already at two. Depending if you count HTML, CSS or SQL as "languages", you're up to a half dozen pretty quick.
3 or 4 can very easily accumulate. For example: HTML, CSS as must know, plus some JS/TS (actually that's 2 langs!) for sprinkles of interactivity, backend in any proper backend language. Oh wait, there is a fifth language, SQL, because we need to access the database. Ah and those few shell scripts we need? Someone's gotta write those too. They may not always be full programming languages, but languages they are, and one needs to know them.
I get the complaint about naming but hp is different then apple. They sell a variety of configurations and one isn't neccesarily better then any other.
Would be cool if python had a pipe operator though.
The back ticks in ruby is pretty ergonomic too. Wish python had a simpler way to run commands. Kind of tedious to look up subprocess run arguments and also break things up into arrays.
reply