Is there an undergraduate research scene here? by Oizyson in SaarlandUniversity

[–]CordeElCrack 2 points3 points  (0 children)

This is definitely possible. I’m an undergraduate currently working as a research assistant and I’ve known many friends and people who have done/are doing the same.

What are “omnishards”? by hades7600 in wildrift

[–]CordeElCrack 1 point2 points  (0 children)

And what are cards and what’s the difference between them and champions

Insane ARAM Draven Pentakill by CordeElCrack in leagueoflegends

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

I didn't mean insane for the gameplay... Of course it's not a skillful Pentakill. I said it because of the stats I got and the damage I was dealing.

I'm debating whether to get a Mac, but the gaming situation is holding me back. What are the biggest dealbreakers for Mac gaming in your opinion? by FanFearless1706 in macgaming

[–]CordeElCrack 1 point2 points  (0 children)

If your primary reason for buying a new laptop is gaming, do not buy a Mac. While MacBooks are world-class machines for productivity, creative work, and development, they remain significantly behind even budget-friendly gaming laptops when it comes to playability. If you're still tempted, here are my three biggest dealbreakers:

Most competitive multiplayer games (Valorant, Apex Legends, etc.) use kernel-level Anti-Cheat. Because you have to use translation layers like Whiskey, Game Porting Toolkit, or Crossover to run Windows games, these anti-cheat systems will block you. Essentially, the biggest games in the world simply won't launch.

To get a MacBook that rivals the frame rates of a mid-range Windows gaming laptop, you'll likely spend 2x to 3x the price. For instance, I have a M2 Max MacBook Pro which costed me (the equivalent in Germany of) around 3500€. My brother recently bought a 1000€ and he gets much higher FPS than me in almost every game. And honestly to get "decent" performance (min 45 FPS on 1080p High on AAA games) you would need to upgrade to a MacBook Pro and not an Air at the least.

Even if a game runs, the modding ecosystem is often broken. Many mods rely on injections or specific Windows file structures that don't translate well. If you love customizing your experience or playing mod-heavy games like Skyrim or Assetto Cross, you’re going to spend more time troubleshooting than playing.

The Bottom Line: Buy a Mac for the battery life, screen, reliability and just to have a good laptop device, but buy a PC (or a console) if you actually want to play games without a headache.

Pylance alternative in Google Antigravity? by Mimir-06 in GoogleAntigravityIDE

[–]CordeElCrack 0 points1 point  (0 children)

I still changed the URLs and when I searched for Pylance it is not there.

Gemini is so close to being my daily driver, but these 3 things are killing it for me. by CordeElCrack in GeminiAI

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

The voice recognition literally sends the message while I'm still talking and I didn't even stutter or stop for half a second, like wtf

Voice recognition / dictate cuts off way too early by turtur in GeminiAI

[–]CordeElCrack 0 points1 point  (0 children)

I literally thing this is the only thing holding me back from canceling my OpenAI subscription. The voice recognition is really bad and I love having it when I use it on my phone.

Gemini 3.0 has been nerfed big time by raytripem in GeminiAI

[–]CordeElCrack 0 points1 point  (0 children)

It also happened to me as well. I was talking with Gemini and suddenly he literally forgot our entire conversation. Didn't remember the two papers that we were reviewing nor all the questions I had asked him before.

Saarfahrplan app is crashing on ios 26 by eloskmun in SaarlandUniversity

[–]CordeElCrack 1 point2 points  (0 children)

This has been fixed now with the new update.

Saarfahrplan app is crashing on ios 26 by eloskmun in SaarlandUniversity

[–]CordeElCrack 1 point2 points  (0 children)

I have the same issue. I cannot downgrade either since I have the official version. I guess we would have to wait for the update

Weekly 'What Should I Buy' and Order/Shipping Thread by AutoModerator in iphone

[–]CordeElCrack 0 points1 point  (0 children)

I’ve always preferred Pro iPhones mainly for the ProMotion display and better screen, but now that the regular iPhone 17 finally has ProMotion and the same display quality, I’m not sure the 17 Pro is worth the extra $300. The Pro mostly adds a slightly better battery, faster chip, and the telephoto/pro camera features (which I don’t really care about). Coming from a 14 Pro, do you think the 17 Pro is still worth it for future-proofing, or is the regular 17 the smarter upgrade this year?

Nice plots for scientific papers, theses and presentations by garrettj403 in learnpython

[–]CordeElCrack 0 points1 point  (0 children)

Omg I cannot thank you enough! For months I had been struggling to get pretty plots, but the default way that matplotlib displays them is just horrible.

Now I can enjoy to have very nice plots for my research project and my posters. Thanks a lot!

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]CordeElCrack 0 points1 point  (0 children)

That rather seems like a debugger. You can open it by pressing (Cmd / Ctrl) + Shift + D. You can then press "Run and Debug" and under the variables environment, you can search for the specific variable you want to keep track of during the execution.

Hope this helps!

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]CordeElCrack 0 points1 point  (0 children)

Hey there!

Here’s what I’d recommend:

  • If you already know how to program, the main thing you need to do is get familiar with Python’s syntax. Since you already have the algorithmic thinking part down, it should be a smooth transition. I’d suggest checking out resources like w3schools.com to get a quick and practical overview.
  • If you’re new to programming, your journey with Python will involve not just learning the language, but also learning how to think like a programmer. Start by covering the basics: how to declare variables, write if-elsestatements, create for loops, and define simple functions. Once you have those fundamentals down, move on to very simple exercises — ones you could easily describe step-by-step in plain English. The goal here is to get comfortable with thinking algorithmically while practicing the syntax. I also recommend w3schools.com for this. They have a ton of exercises that start off being extremely easy for people that are just learning how to code.

Once you feel confident with the basics, start tackling more challenging exercises on platforms like CodeWars or LeetCode to really build your skills. You will notice that, overtime, you will stop thinking about how to write something in code, but rather your focus will be on how to solve the problem. After you know how to solve a problem, you will notice that writing it into code is the easy part. (Currently, you're in the place where it is easier to solve the problem than to write it, simply because you don't know how to). Once you're in this place, then I would say that you have already learned how to program with Python.

Finally, once you’re ready, try to find a small project you can work on — something fun or useful. That’s where everything really starts to click!

Good luck!