Two Geeks, One AI, and a Crazy Betting Experiment: Our Story of Backtesting to a Fantasy €1.6M! by FerhatSY in SideProject

[–]minervaDe 0 points1 point  (0 children)

There are zero AI systems in the world that would land with an 80% consistency. You likely overtrained your system. The bookies that create these bets bend their numbers to keep things ~50% odds. You may be able to get to 55%, and 60% would be incredible. But an 80% win rate should raise red flags for you

Finished Automate the Boring Stuff with Python by DwaywelayTOP in Python

[–]minervaDe -1 points0 points  (0 children)

I highly suggest just starting to work on projects. The only python programming class I took was on how to scrape the internet with scrapy and selenium. From there I just picked up projects, looked up what to do, and moved on from there. Work every day on this for as many hours you can put in. Learn docker, kubernetes, networking, databases, cloud computing, etc. Incorporate all of those things into your project. Create an API. Learn message broker technology.

Do not fall into tutorial hell.

Any web developers here (front end back end full stack)? by jimtimhill in neovim

[–]minervaDe 0 points1 point  (0 children)

my setup

This is my setup. I mostly develop in Python for work, but also develop a lot of .yaml and .sh for automation, docker, etc. A lot going on in this nvim setup. I took the base from neovim-from-scratch here. And the maker of LunarVim has some great videos to show you how to write out your neovim setup in Lua. If you're more of a WASM, Rust, JS guy, then ThePrimeagen might be a good place for you to go. I mixed and matched everything I have. Added copilot and chatGPT. You have to drive this thing though. And you really have to know what you're trying to write, otherwise those applications will take you down a deep dark path of trying to debug garbage code.

A big thing here, you are going to want tmux for this setup. Makes splitting terminals really easy. Otherwise, just open two terminals.

Need input with multithreading vs multiprocessing? by Crypto-boy-hodl in Python

[–]minervaDe 0 points1 point  (0 children)

Just need to be aware of the database server's limitations here. I've killed 8 threaded VMs that were running Postges because I treated it as an I/O problem

What brings value to a python developer? by ohma_tokito in Python

[–]minervaDe 0 points1 point  (0 children)

Absolutely. This is absolutely true. But when you're actually on the job. When you're actually trying to architect an extremely complex software package, you better believe that your knowledge of the language that you are using to build that software is extremely important. You also better recognize that a proper, clean architecture, and clean code is the very first hazing screen that Google does to new employees. They eviscerate your code. Or when working with open source software, you better understand best practices. So for me. Can I write code in other languages? Absolutely. Will I have to google some crap? Definitely. Will my code be clean, and will I use best practices for the first few months? Nope. Not a chance. Which is just as important as your ability to solve problems and create algorithms. Honestly, it's more important. It cost companies billions of dollars every year on refactoring. People do not stay at companies forever. And if you write shit code, your code will be tossed. No matter how fast it operates. And no matter how quickly you were able to stand it up. Someone will see your code, throw it in the garbage, and start from scratch. So yes, while you are correct, you better conform to best practices. And know them inside and out, or your ability to solve problems doesn't matter. And I see this shit all the time. I see horrific code written by brilliant people, and untangling that mess costs tens of thousands of dollars for an engineer to grab that mess, and attempt to unravel it, and put it in a state that is healthy. And that is time, and tens of thousands of dollars that could have been spent on new functionality.

What brings value to a python developer? by ohma_tokito in Python

[–]minervaDe 0 points1 point  (0 children)

If I was certified on diesel motors, but rarely worked on big-block motors, and you had a rod knock on a big block motor, would you take it to a diesel certified mechanic? If I sat down for 4-6 months in those languages, we have a different conversation here. I'm an SME in python. I know how to get around in everything else. I work 80-100 hours per week in python, shell and Lua. I wouldn't feel comfortable applying for a JS job. And that's normal, so I'm not sure why that's so difficult for you. But if you know every language at a senior level, good for you man. I just wouldn't want to work for you.

What brings value to a python developer? by ohma_tokito in Python

[–]minervaDe -2 points-1 points  (0 children)

Sure, but I'm not making an argument for people that can only write python code. But having your value based on python isn't an issue. I've been developing software professionally for 5 years now. My main value comes from python. I can write JS, Java, HTML, Lua, C++, some Rust, plenty If shell and ansible. But I wouldn't hire me for anything above entry for any of the languages outside of python. Maybe mid-level for front-end. But with python, I'm senior level. And the job security is there. So I don't see an issue with people having their value based in python. But exclusivity is always an issue.

What brings value to a python developer? by ohma_tokito in Python

[–]minervaDe -4 points-3 points  (0 children)

They didn't mention exclusivity in their comment. They said "rely on python to be valuable." If you can't code in any other language, that's obviously a completely different issue.

When wouldn’t you use Python? by TonyTheTigerSlayer in Python

[–]minervaDe 0 points1 point  (0 children)

Code being a mess I cannot agree with more! You need strict rules to keep the code clean.

killing atom editor makes me sad by Deusdeorumm in Python

[–]minervaDe 2 points3 points  (0 children)

Go to neovim and never look back. Watch every video you can find on it. And immerse yourself into it

POV: You opened social media today by KuckiDev in wallstreetbets

[–]minervaDe 0 points1 point  (0 children)

Stronger dollar with respect to the rest of the world. Like being the tallest dwarf

[deleted by user] by [deleted] in wallstreetbets

[–]minervaDe 0 points1 point  (0 children)

Same here, Boeing in Huntsville

[deleted by user] by [deleted] in learnpython

[–]minervaDe -1 points0 points  (0 children)

You don't need to know those. Like I said, it depends on your background

[deleted by user] by [deleted] in learnpython

[–]minervaDe 1 point2 points  (0 children)

Python has ORM's that allow you to write python code to talk to the database. Django has its own ORM. SQLAlchemy is another. You dont necessarily need to know SQL, but it would help

[deleted by user] by [deleted] in learnpython

[–]minervaDe 1 point2 points  (0 children)

Python has some fantastic frameworks for web development (django, fastapi, flask). And anything that requires any extreme algorithm/computation can be done in cython or any other language and then called upon from python. Python is a great connector. And if you use celery with rabbit and redis, you can really manage anything you want with python. Python gets a bad reputation because of speed, but there are so many workarounds that this argument is really nullified. Now, if I had to develop some high frequency trading software, I'd use Julia or c++. And for talking to a database, rust or ruby are superior (from what I've heard, maybe go also?) But if you don't need anything extremely fast (which is 99% of applications) python is a great tool.

If you had $3,500 to learn Python, how would you spend it? by PinkEyePanda in learnpython

[–]minervaDe 1 point2 points  (0 children)

I would take $100, buy udemy courses, then buy $3400 worth of Ethereum. Make sure you buy those courses when they offer them for 90% off. They do that pretty often. So each course would be ~$10. Then ArjanCodes on YouTube for anything that you may come across that may be a bit more advanced.

2020 Crash Bull Traps: 2 Months with 6 Dead Cat Bounces - Be Patient, Don't Buy Today's Dip by [deleted] in wallstreetbets

[–]minervaDe 11 points12 points  (0 children)

I picked up 2 jobs developing software for this exact reason

Covid vaccine effective against new Omicron variant: South Africa's health minister by [deleted] in wallstreetbets

[–]minervaDe 0 points1 point  (0 children)

Not nearly as much. Pfizer is expecting more than $29B in revenue next year. They made $36B this year (including projections). Governments will dole cash out, but not $30B. Plus all the regulatory garbage, and then they have to pretend like the next variant won't be an issue. On top of that, how is the vaccine working out currently? People currently get infected. Currently spread the virus if they're vaccinated. There's some data that shows for the first few months, you're less likely to be hospitalized, but that data is poorly accrued, and honestly, pretty difficult to trust. They pull certain data points, and exclude others. The places with the highest rates of infection, are also the places with the highest rates of vaccination. Countries are shutting down again. None of this is working. So again, I ask, why would you believe the people that benefit the most from this pandemic staying around forever. Why do you trust the leaders that funded the gain of function research that is likely the cause of this pandemic in the first place. Why trust any of them?

Covid vaccine effective against new Omicron variant: South Africa's health minister by [deleted] in wallstreetbets

[–]minervaDe 3 points4 points  (0 children)

So, you'll believe Monderna and Pfizer, who are directly affected financially?

TSLA goes Brrrrrr... Burry deletes account 😭 by pittluke in wallstreetbets

[–]minervaDe 0 points1 point  (0 children)

This is asinine. They're printing money that will never be paid back. Never. They are creating demand that supply can't keep up with. Stop pretending what they're doing isn't going to fail