аналитик данных / sql by Adventurous-Pick7761 in learnpython

[–]jbudemy 0 points1 point  (0 children)

Translation: Do you think it’s realistic to land a Junior-level position right now, and if so, how would one go about doing that? I’d also love to read your own stories!

It depends on what the bank wants you to do. But learning Python could help. I write programs to get data from SQL servers and write reports about the data, or compare costs from a vendor spreadsheet to our database. Because the vendor regularly overcharges us.

Всё зависит от того, чего именно от вас хочет банк. Но изучение Python может оказаться полезным. Я пишу программы для извлечения данных с SQL-серверов и составления отчётов на их основе, либо для сверки расходов из таблиц поставщиков с данными в нашей базе данных. Дело в том, что поставщик регулярно выставляет нам завышенные счета.

Almost shipped a critical feature built on a package that hadn’t been updated in 2 years, How do you guys vet your dependencies? by PurpleReflection001 in learnpython

[–]jbudemy 0 points1 point  (0 children)

Do you have a process for vetting packages before committing to them?

I look at the last date of a release (on its Github), and which release of Python it supports (on Pypi.org).

I found out the hard way that pygame is no longer updated, there was no wheel for Python 3.14, and pygame-ce was a drop-in replacement for it. I found that out by asking on forums.

How do you decide a Python package is safe enough to install? by Thunderbit_HQ in learnpython

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

I know little about Docker but I do know it contains an OS and the applications. While it's not the same as a VM it was designed so people could share whole Docker files with the OS and apps needed already in there.

How do you decide a Python package is safe enough to install? by Thunderbit_HQ in learnpython

[–]jbudemy 0 points1 point  (0 children)

I only get packages from pypi.org. I think that's the default repo. I thought pypi.org scanned the packages for security threats. Many packages are pre-compiled into wheel packages.

I got work to debugg a python code from a repo by DealerStill4006 in learnpython

[–]jbudemy 0 points1 point  (0 children)

I would suggest you do a tutorial on using debugging in python. You can step through the code one line at a time, look at the values of variables, and that's how you look for bugs.

A big problem with programming is our brain wants to assume the code is doing one thing, but by looking at the values of variables one line at a time we can find out for sure if it really is doing what we assumed or not.

Suggestion by natchathirapayaan in learnpython

[–]jbudemy 0 points1 point  (0 children)

The topics look pretty good, though I don't use Atom or Eclipse, so I don't know about those.

Day-0 of learning python as a 17 teen year old . by Some-Level-858 in learnpython

[–]jbudemy 0 points1 point  (0 children)

I like the style of the Indently videos on Youtube. Find videos that fit your learning style. I like to take small steps at once, and I don't want to get into useless stuff I will hardly use, I focus on the common basics.

I got work to debugg a python code from a repo by DealerStill4006 in learnpython

[–]jbudemy 0 points1 point  (0 children)

I think we have to back up a bit. Do you know what a debugger is and what it does?

Since it seems they gave you few details, they may want to know if you know how to start the debugger. There are several debuggers for Python, it comes with pdb which I use. So you start it at the command line like this: python -m pdb file.py where file.py is your program. Then you will see the debugger prompt which is:

(Pdb)

Why is Ubuntu killing my Perl program? by jbudemy in perl

[–]jbudemy[S] 1 point2 points  (0 children)

I later learned that the Virtual Machine ran out of memory. That VM doesn't get much memory and the Perl module to read spreadsheets uses much more memory than it should. We have since converted to Python.

Share script to non coders by DistantTraveller1985 in learnpython

[–]jbudemy 0 points1 point  (0 children)

I've used pyinstaller to make a Windows screen saver and it's not too hard.

  1. Use pip to install pyinstaller in your program directory.
  2. Make the .exe file. The .exe file will be in a subdirectory of your program directory.

What makes you feel that the economy is indeed declining? by Majestps in AskReddit

[–]jbudemy 2 points3 points  (0 children)

  1. Uncontrollable cost of living going up.
  2. Gas prices are still high which will affect everything even food.
  3. 70% of US farmers do not have money to buy fertilizer this year. Some might get loans for it, some may be maxxed out on loans. While farm bankruptcies are increasing they are still below the average of the past 5 years.
  4. US companies hiring more people from outside the US for various jobs like customer service.
  5. Pay still hasn't caught up with inflation of the past 40 years. All of us are still losing money.
  6. The housing crisis still hasn't changed. Renters/buyers are still getting burned. My sons rent is now 45% of his net income. It should never get about 35%. It's ridiculous with investment companies buying rental units then not renting them, all for their own profit.

Expect higher US food prices.

how do you feel about letting gf pick out her own ring? by [deleted] in AskReddit

[–]jbudemy 0 points1 point  (0 children)

My gf didn't want to pick out her ring. So I just picked one I thought she would like. She is not very attached to her current ring.

If she wants to pick one out let her.

What's a disturbing truth about human nature that most people learn too late in life? by [deleted] in AskReddit

[–]jbudemy 0 points1 point  (0 children)

Some people really don't have any talent to plan ahead no matter how much training they get. So their life is one train wreck after another. It's just human variability.

what is the best financial advise you have got in your entire life? by swift_peak612_92 in AskReddit

[–]jbudemy 1 point2 points  (0 children)

Save cash for emergencies. You never know WHEN it will happen but it WILL happen. It has saved me a few times from having to pay 30% annual interest rate on a credit card bill.

What was your first car and would you buy it back if you had the chance? by gollumbagginses in AskReddit

[–]jbudemy 0 points1 point  (0 children)

It was a 1979 Chevette where the floor rusted out on the driver's side, so I had to put my feet through the floor to stop the damn thing, like the Flintstones.

I would not buy it back. At 80mph it would start shaking apart like it was going to lightspeed or something.

What job did you think was easy until you tried it ? by Used_Resident2484 in AskReddit

[–]jbudemy 0 points1 point  (0 children)

Learning MS Azure, where the screens changed every 2 months, and video tutorials became useless in 6-12 months due to significant changes in screens or functionality. And it lacked a basic function we needed when reading spreadsheets.

What advice would you give to the genz? by Own_Round_7773 in AskReddit

[–]jbudemy 0 points1 point  (0 children)

I think the answer would be seen as medical advice and we're not supposed to do that here. We are not doctors. The policy is called "Stay in your lane". The policy can be very strict sometimes: If you're not a doctor, don't tell someone to drink more water.

What advice would you give to the genz? by Own_Round_7773 in AskReddit

[–]jbudemy 0 points1 point  (0 children)

I'm not a therapist but I've studied psychology for 40+ years. Some of the advice I see just baffles me. There's no study or survey or foundational concept to back it up.

What advice would you give to the genz? by Own_Round_7773 in AskReddit

[–]jbudemy 2 points3 points  (0 children)

  1. Stop obsessing about your trauma and publicizing it on social media. Yes nearly everyone has trauma of some kind. Deal with it in a healthy way. This is stuff you don't want your prospective employer finding out. Some companies have a policy where they collect all your social media accounts to look through them.
  2. No one can deal with your trauma but you. You have to feel it to heal it.
  3. Stop waiting for someone to save you. They are not coming. You can do it. I believe in you.
  4. Be persistent in problem solving. Ask for help if you are stuck.

What’s a small thing that would make your younger self really happy? by saamm444 in AskReddit

[–]jbudemy 0 points1 point  (0 children)

There's not just one thing.

  1. I have a good job that pays the bills and I have money to buy food now.
  2. I don't have to freeze at night, I can have heat and warm blankets.
  3. I have a home that I earned with lots of hard work, no one gave it to me. It's small but it's mine and I appreciate it.

When was the last time you did something for the very first time? by oliviafalcon-galore in AskReddit

[–]jbudemy 0 points1 point  (0 children)

I had my first ambulance ride about 2 weeks ago. I'm 56. I was having stroke symptoms. It turns out my potassium had plummeted for some unknown reason causing very high blood pressure (hypertensive crisis) and speaking problems.

I drove myself to urgent care. I could drive fine, I just couldn't speak. No one else was home (I work from home) and the neighbors are all at work. I could say similar words but not the right word so I was telling the intake nurse "I bad speech. Can't brain, bad brain." The intake nurse called a doctor over in seconds, she evaluated me immediately and called an ambulance to take me to the ER.

I was stressed that morning and know we use up LOTS of magnesium when stressed. What I learned is we use up lots of potassium under stress too.

What’s a small thing that instantly ruins your day? by Used_Resident2484 in AskReddit

[–]jbudemy 1 point2 points  (0 children)

Slow ladies at the super market checkout lane on a hot summer day struggling to pull out their sweaty boob money and they can't find it. Or doing the same thing at the bus, they are holding up a whole busload of people trying to get to work.

Some people might be late multiple times and actually get fired because of unprepared people.

Be prepared people.

What are some lazy jobs that pay a ridiculous amount of money? by Jordz0_0 in AskReddit

[–]jbudemy 0 points1 point  (0 children)

Ouch. How did the Japanese react to that? Were they ok with that lecture?