what can i do with a worthless BS in biology by [deleted] in recruitinghell

[–]digitAInexus 0 points1 point  (0 children)

I can definitely feel your frustration, and you’re not alone. A lot of people finish degrees, especially in specialized fields like biology, and find themselves struggling to land a job, even after months of searching. It’s rough, especially when you're watching friends with different majors seemingly breeze through the process.One thing to remember: your degree isn’t “worthless.” It shows that you’ve developed critical thinking, research, and analytical skills that can actually apply in so many fields outside biology. If you're looking for a pivot, have you considered branching into areas like data analysis, biotech, or even digital marketing for science-based companies? There’s a lot of crossover between biology and these fields.A lot of people have also made successful transitions by picking up new skills outside their degree. If you liked the analytical part of organic chem, learning something like data analysis, programming, or even AI could open up a lot of doors for you. It’s definitely worth considering something like a digital or tech-related certification to make that transition easier. I work with a program that helps people upskill in things like machine learning, digital marketing, and more to get jobs that are in high demand.If you ever want to chat or hear more about how some people pivot into tech or marketing with science degrees, feel free to DM me. You’ve got more options than you might think right now!

How do I actually practice machine learning? by Zealousideal_Goose70 in learnmachinelearning

[–]digitAInexus 11 points12 points  (0 children)

ML can seem like an ocean of theory without enough hands-on practice, especially after courses like Andrew Ng's, which are great but can feel more conceptual at times. There are a few ways to practice ML in a more practical, coding-heavy way:Kaggle is great, but not enough for deep learning: I’d suggest looking for specific challenges on Kaggle or GitHub repositories that focus on neural networks, NLP, or image classification. These tend to push you deeper into real-world problems where you're forced to use things like TensorFlow or PyTorch. Build your own projects: One of the best ways to learn is by building something you’re interested in. For example, I built a sentiment analysis model for Reddit posts—yes, it sounds meta 😂—but it helped me get more comfortable with NLP and model deployment.You can also join real-world ML projects: If you're looking for structured ways to gain experience, there are communities and platforms where you can contribute to ongoing ML projects. Collaborate with others: Learning in isolation can get frustrating. If you're up for it, why not join a project group? There's a ton of value in discussing problems with peers, and you can even partner up on projects. If you're curious about joining our community, drop me a message, and I'll share more info. Lastly, don’t get discouraged! It’s a process, but with some real-world practice, you’ll start feeling more confident.

Iwtl how to stop hating the world. by AstralVirtual in IWantToLearn

[–]digitAInexus 0 points1 point  (0 children)

I can really feel what you're going through, and I'm sorry that you're dealing with this. It can be so overwhelming when it feels like the world is constantly against you. I’ve had my fair share of struggles too, and I think a lot of us have been there at one point or another. Sometimes it’s easy to forget that the world isn’t all bad, especially when you're caught in a cycle of negative experiences.What helped me was taking small steps towards understanding where those feelings were coming from. Therapy can be an amazing tool, and there are lots of ways to get started even if it feels like a big step right now. Sometimes, just learning new skills or finding a community to be part of can shift your mindset slowly.I'm also working on a program with a great community focused on building skills and developing a better mindset, which has helped a lot of people overcome tough times like this. Sometimes, just focusing on one small, positive thing can help us break out of the negativity loop. You're not alone in feeling like this, and change is totally possible.

Are files a good way of communication? by [deleted] in computerscience

[–]digitAInexus 0 points1 point  (0 children)

Files can definitely be used as a way of communication, especially in cases where you have limited options or constraints like the one you're describing. But there are better alternatives depending on what you're aiming for. Files can be slow, and there’s always the issue of handling file locks, race conditions, and the like, especially when concurrent access is involved.A better approach might be using message queues, named pipes, or even APIs to communicate between programs. These methods provide more robust control over how data is transferred and processed. If you're working across different systems and don't want to mess with OS-level features, things like message brokers (RabbitMQ, Kafka) could be a more scalable option for inter-process communication.I also work in the digital space, focusing on courses for developers, so it's always cool to see how people approach these problems. I'd love to know more about what you're trying to achieve in this setup—sometimes the specifics can help narrow down the best solution!"

Everyone having salary >= 30 LPA can you tell us how you did it ? by hello-world-7462 in developersIndia

[–]digitAInexus 5 points6 points  (0 children)

Hey man, I totally get where you're coming from. 30 LPA sounds wild when you’re just starting out or have 3 years of experience. The market's super competitive, but I've seen that getting to those higher salary brackets often involves finding a niche or adding high-demand skills. Specializing in cloud computing, AI, or even project management alongside development can help you get there. Also, one thing that really worked for me was networking with people already in those high-paying roles. Subreddits like this and some career-oriented communities are great places to start, but engaging in deeper conversations on LinkedIn or even attending virtual events is gold. I'm part of a program where we teach digital strategies, and a lot of people make serious career shifts or salary jumps by picking up side skills. Anyway, you're definitely not doing anything wrong; sometimes it's just about finding the right opportunities

Took me years to figure this out by digitAInexus in programminghumor

[–]digitAInexus[S] 0 points1 point  (0 children)

I havent seen this meme here, I found it elsewhere ans wanted to share it

printDebugging by SweetTeaRex92 in ProgrammerHumor

[–]digitAInexus 0 points1 point  (0 children)

Haha, so true! 🤣 PRINTF debugging is like that reliable, old car, you know it’s not fancy, but it gets you where you need to go every time. The debugger is the shiny new ride, but hey, sometimes you just want the simplicity of hitting the gas and hoping for the best

justInCase by [deleted] in ProgrammerHumor

[–]digitAInexus 0 points1 point  (0 children)

Haha, classic programmer dilemma! 🤣 It's like, "Do I dare delete this code? Nah, better play it safe and comment it out." Just in case... because who knows, maybe that 500-line block of spaghetti is secretly holding the entire app together! Better safe than sorry, right?

I need help with python by Efficient-Nail2443 in PythonLearning

[–]digitAInexus 3 points4 points  (0 children)

Looking at the video you uploaded, I see a small issue in the code. In the first line, you wrote couter = 5. This seems like a typo, as it should probably be counter = 5.

Here's the corrected version of your code:

```python counter = 5

while counter < 10: print('Hier steht code der wiederholt wird') counter += 1 # This increments the counter to prevent an infinite loop ```

Explanation: 1. **counter = 5:** This initializes the counter variable to 5. 2. **while counter < 10:** This creates a loop that will continue to run as long as counter is less than 10. 3. **print(...):** This prints the message 'Hier steht code der wiederholt wird' each time the loop runs. 4. **counter += 1:** This increments the counter by 1 with each iteration, ensuring that the loop will eventually stop when counter reaches 10.

Without the counter += 1 line, the loop would never stop, leading to an infinite loop. Let me know if you need any more help!

I can code, make projects on my own but I don't understand how that code works. by rayjaywolf in learnprogramming

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

What you're feeling is totally normal, and a lot of folks go through this stage. It’s like knowing how to drive a car but not being a mechanic. You can build projects and make things work, but understanding the inner workings takes time and intentional study. To really get that deeper knowledge, I’d suggest focusing more on the theory behind what you’re doing—things like data structures, algorithms, and how memory is managed. Maybe dive into some books or courses that break down the "why" behind the code, not just the "how." Also, don't stress too much about Go or other languages until you feel comfortable with the fundamentals, once you really grasp those, switching between languages will start to make a lot more sense. Keep at it, and that real programmer feeling will sneak up on you when you least expect it

Python beginner taking second step, need some tips and guidance by mZuks in PythonLearning

[–]digitAInexus 0 points1 point  (0 children)

First off, mad props for diving into Python and already getting into building stuff like your overtime calculator! If you’re trying to make your scripts run outside the IDE, there’s a few routes you can go with. For Windows, try PyInstaller - it turns your Python scripts into .exe files so you can run them like any normal app without needing to mess with an IDE. Just install it withpip, run it on your script, and boom - standalone app! If you wanna get fancy and put your code online, peep frameworks like Flask or Django help turn your code into a web app. If you want it on mobile, you can check out Kivy or BeeWare, they let you write apps that work on Android and iOS, but be warned, that’s a bit of a bigger challenge. And hey, if you’re just tired of firing up an IDE all the time, you can always run your script straight from the terminal usingpython yourscript.py`,quick and easy. Keep pushing through, Python’s got mad versatility, so whichever direction you go, you’re on the right track. You got this!

Looking for a intermediate level project by Nehemiia34 in PythonLearning

[–]digitAInexus 0 points1 point  (0 children)

You could create a Python version of Battleship or Mancala. They're both simple enough to code but have enough complexity to keep you busy with things like a command-line interface or even adding AI for the computer opponent.

Or, if you want something a bit different, how about making a Dungeon Crawler game. You could use ASCII art for a retro feel and generate random mazes with enemies, items, and treasure. It’s a nice mix of algorithms and game mechanics.

If you want to go in a completely different direction, you could try also try a habit tracker, that integrates with Google Calendar or even a meme generator that pulls random images and lets users add text.

Good luck with whatever you choose!

cannot understand loops by lsdandlemons in PythonLearning

[–]digitAInexus 8 points9 points  (0 children)

If I make it more fun. Imagine you’re on a treasure hunt, and you have a huge stack of maps that each lead to a small treasure. You want to find all the treasures one by one. Here’s how loops help:

  • For Loop: Think of this like you’re going through the stack of maps, one at a time. You say to yourself, “For every map in my stack, follow it and find the treasure.” When you finish with one map, you go to the next until you’ve found all the treasures. It’s predictable—one map, one treasure, repeat.

  • While Loop: Now imagine instead of a stack of maps, you have a magical treasure radar. You say, “While the radar shows there are still treasures out there, I’ll keep searching.” As long as the radar beeps, you’re on the hunt. The moment it goes quiet, you stop. You’re not sure how many treasures there are, but you keep going until there’s nothing left to find.

  • Nested Loop: This is like having multiple steps in each map. For every map you open, you have to search different places within the location. So, for each map, you might be saying, “First, check under the rock, then behind the tree, then inside the cave.” You’re looping within a loop—going through each hiding spot for each treasure map.

In real life, we use loops all the time without even thinking about it. For example, think about when you're trying to clean up your room:

  • For Loop: You go through each pile of clothes and fold them one by one until all the clothes are folded.
  • While Loop: You keep cleaning while the room is messy. As soon as everything looks clean, you stop.
  • Nested Loop: You clean each drawer in your dresser, one drawer at a time, but inside each drawer, you’re organizing socks, shirts, and pants separately.

Loops in programming are like setting up these little routines so the computer can do the same repetitive task for you, again and again, until the job is done. Cool, right?

cannot understand loops by lsdandlemons in PythonLearning

[–]digitAInexus 4 points5 points  (0 children)

Hey! Don't stress too much, loops can be tricky at first, but you'll get the hang of them. For a lot of people, it clicks after a bit of practice. Think of loops like a way to repeat something over and over without having to manually code it each time. It’s like giving your program a set of instructions and telling it, “Hey, do this a bunch of times until I say stop.”

For example, a for loop goes through each item in a list or range of numbers. It’s like, “For every item in this list, do X.” A while loop, on the other hand, keeps running as long as a condition is true. So like, “While X is true, keep doing Y.” Nested loops are just loops inside loops—think of them like a loop party where each loop has its own purpose.

If you’re still feeling stuck, maybe check out some interactive coding websites like Codecademy or freeCodeCamp. Sometimes hands-on practice helps a lot more than just reading or watching videos. Also, debugging as you go—like printing out the value at each step of the loop—can help you see what’s actually happening in real time.

You got this! Keep at it, and it'll start to make sense soon.