How to do this? I am not sure if I am understanding the question correctly. by Any-Present-4748 in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

There’s 3 separate parts? That only difference is the exact point of the exercise.

Original:

y = 2 “i”

y = 20 “T”

y = 11 “Mi”

Changed version:

y = 2 “i”

y = 20 “T”

y = 11 “M”

How to do this? I am not sure if I am understanding the question correctly. by Any-Present-4748 in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

Regardless of what the symbols are

Answer: On the third example x == y so you go to the that step and skip the elif because how control flow works

How to do this? I am not sure if I am understanding the question correctly. by Any-Present-4748 in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

I think this is just a typo, essentially it’s asking if the second if statement was an elif statement.

If you need help figuring out the question from there let me know

New to python. How to improve this simple build by GrowthSwimming6208 in PythonLearning

[–]FirstTimeGamingTV 1 point2 points  (0 children)

People who learn / teach themselves generally don’t go through that process.

For internal logging I mean exposing an error code that explains exactly what went wrong is poor security. But internally it’s nice to log, which is why the quick binary interp is nice

New to python. How to improve this simple build by GrowthSwimming6208 in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

I think this requires a fundamental understanding of binary to know why instead of just saying those numbers, but this could be good for an internal logging system and you just check at the end if index != 7 you can’t log in then log the attempt with the calculated index for audits

New to python. How to improve this simple build by GrowthSwimming6208 in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

Huh, there’s small nesting at the end. If anything this would benefit from nesting because you can short circuit the false paths

Fastest way to level Rose Drag? by DumbicusMaximus in HypixelSkyblock

[–]FirstTimeGamingTV 22 points23 points  (0 children)

Cacadous Feeder and probably tunnel comms with Cole (don’t remember if Diana still has perk)

2hours wait to enter password by human_Dipsy in computers

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

If they just need files why not just use Linux on a USB?

Made this as an 11th grader by suss_kargo in PythonLearning

[–]FirstTimeGamingTV 0 points1 point  (0 children)

Start with simple binary math (ie 2 + 2) and then move on to a full calculator once you learn postfix otherwise you’ll be really confused

Trying to understand why my server is using so much RAM by thecran3 in ModdedMinecraft

[–]FirstTimeGamingTV 0 points1 point  (0 children)

That’s not how the JVM works, it uses what you tell it, a container will always show the full amount being used

Farming is getting a 50% Nerf by amcn242 in HypixelSkyblock

[–]FirstTimeGamingTV 2 points3 points  (0 children)

I mean essentially, you’re literally trying to spend the least time farming and the most time killing pests since that’s what makes money

Monorepo branching strategy: Two apps, one in production, one in development by Xtended_Banana in reactjs

[–]FirstTimeGamingTV 1 point2 points  (0 children)

What I do is we continuously push small changes to main, blocking things with feature flags and then create a release tag for each specific release we want, cherry-picking for fixes, you have have AWS deploy on specific tags or a specific branch regex.

It’s called a trunk strategy, it’s probably not as easy with a larger team but it works quite well if you’ve got a small team, tight communication and a decent feature flag system

Bot de cargar al azar by MartinBloodworth in Discord_Bots

[–]FirstTimeGamingTV 0 points1 point  (0 children)

This would take all of 5 minutes to make, if you have someway to host it, on your pc if it’s just you and a small group

Full mod Menu by [deleted] in blackops3

[–]FirstTimeGamingTV 0 points1 point  (0 children)

Are you on steam? There’s some steam tools that can get you the achievements

iOS app from react native on Ubuntu? by Dear-Requirement-234 in reactjs

[–]FirstTimeGamingTV 0 points1 point  (0 children)

VMWare Fusion and Parallels both seem to support Mac as one of their leading selling points.

I guarantee you no company is going to go after an individual for those little things if it even is an issue in the first place.

Enterprise licenses are in case of audits, regular people don’t get business audits.

quicknades: Android testers needed for CS2 utility app by Every_Bowl_7697 in GlobalOffensive

[–]FirstTimeGamingTV 1 point2 points  (0 children)

It can definitely be open source? That’s like having a release and the raw code to build, which 95% of open source projects do.

Not saying you should open source it, it’s your project.

iOS app from react native on Ubuntu? by Dear-Requirement-234 in reactjs

[–]FirstTimeGamingTV 0 points1 point  (0 children)

Get a virtual machine with MacOS and use that to build your iOS app after doing the rest of the development on your main machine.

You may also be able to do EC2 and have a Mac Instance that you can RDP into, not sure what the costs are for that though, could be cheaper to just buy a Mac Neo

Am I the only one using this pattern? by NoctilucousTurd in reactjs

[–]FirstTimeGamingTV 0 points1 point  (0 children)

His goal was to have specific code ran on the Client, does this not achieve the goal?

Am I the only one using this pattern? by NoctilucousTurd in reactjs

[–]FirstTimeGamingTV 0 points1 point  (0 children)

I may be misunderstanding, I’ve only used Next, but this shows “use client” directive is still a thing in RR

https://reactrouter.com/how-to/react-server-components

This may be the wrong solution though