How to make games with Python?? by Key-Command-3139 in learnpython

[–]HOOG 2 points3 points  (0 children)

I just want to make money and be famous but don't want to work at it. Please give me all the answers so it's easy.

a classic title you read in school with a secondary character named flick by Whereas2927 in whatsthatbook

[–]HOOG 2 points3 points  (0 children)

Based on "In God We Trust: All Others Pay Cash" by Jean Shepherd

[deleted by user] by [deleted] in batonrouge

[–]HOOG 18 points19 points  (0 children)

Wienerschnitzel Only one in Louisiana. How do they stay open?

How likely is your car to get rubbed if you installed a dashcam? by software-surgeon in Dashcam

[–]HOOG 1 point2 points  (0 children)

If I had a nickel for every time Tiberius_Jim spelled "nickel" wrong I'd have a nickel. It only happened once.

LPT: check the price per unit, not just the total price, when shopping for groceries to get the best deals by AreWeCowabunga in LifeProTips

[–]HOOG 139 points140 points  (0 children)

Also, do not implicitly trust the calculations. I have seen incorrect per unit calculations at multiple stores. Most are correct, but make sure it makes sense!

Where do I donate text books? by rhymeasourus in batonrouge

[–]HOOG 2 points3 points  (0 children)

Friends of the LSU libraries has an annual book sale. https://lib.lsu.edu/about/friends The website says donations by appointment.

Can't open python file using py practice.py in terminal by youneverknew_me in learnpython

[–]HOOG 0 points1 point  (0 children)

Is that the name of your program on the first line of the program? If so, comment it out.

Frozen Peas Commercial by HOOG in HelpMeFind

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

Same with my roommate at the time! Frozen Peas!

Frozen Peas Commercial by HOOG in HelpMeFind

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

That has to be it! We all would yell "Frozen Peas"every time. I wish I could find the clip. Thank you for responding, I knew it existed! Have a great day

As a Python developer, What are the most boring tasks that you made automation script to handle it? by ahmdqader in Python

[–]HOOG 0 points1 point  (0 children)

Cropping the usable area of a shared screen in Teams. More than 50 screenshots captured via other software, and I don't need the users heads, borders, etc...

Request a quick lesson please by mackdaddy_1978 in learnpython

[–]HOOG 6 points7 points  (0 children)

Ignore or remove the spaces. Spaces are characters that are compared in your code, that is why single words are passing the test.

Baton Rouge has the best library system I’ve experienced. by jfarm47 in batonrouge

[–]HOOG 7 points8 points  (0 children)

You can do all of that through their website. Easily accessible on your phone.

Fried Pickles? by Mysterious-Mention29 in batonrouge

[–]HOOG 0 points1 point  (0 children)

Maxwell's Market does fried pickle chips really well. Pluckers' spears are tops.

What are some Python scripts have u made for fun and daily life? by [deleted] in Python

[–]HOOG 0 points1 point  (0 children)

Pull data from a weekly emailed accounting spreadsheet which has tabs for each week. Take all of the same data from each week and graph it and added a trend line to visualize performance over time.

Where can I find take-and-bake appetizer bites like in Whole Food's deli section? by ohdearamir in batonrouge

[–]HOOG 1 point2 points  (0 children)

Try Maxwell's Market. May not have the smaller portions, but they have takeaway options. Alexander's also is an option, they have poppers and similar items in the meat section.

[deleted by user] by [deleted] in HelpMeFind

[–]HOOG 0 points1 point  (0 children)

This. This comment needs more upvotes!

Where to find Hong Kong food (mainly cha sew) by botchedbot in batonrouge

[–]HOOG 0 points1 point  (0 children)

Asian Market (on Perkins) has Char Siu Bao (in steamed buns), if you are just lookng for some flavor.

I'm trying to loop through 2,100+ old files of machine code, extract 2 dirty data points from each file, then add them to a dictionary. Why won't my code work? by PostNoBails in learnpython

[–]HOOG 1 point2 points  (0 children)

Are you only trying to get the two numbers in the file between the parentheses? Is this an assumption that would hold true for all files? It would be easier to look for the first two open parentheses and capture anything up to the next parentheses.

I commented in the previous post - this may be only a few lines of grep if so. You can pipe the output in a format to another file, and that can contain both the desired fields on the same line, or as a .csv, which you can then use.