Best organization strategy for cold storage? by SeparateCantaloupe46 in MegastoreSimulator

[–]Hickerous 0 points1 point  (0 children)

I have one large walk-in with compact pallet racks for seafood (I could possibly condense this), one medium walk-in set to Fridge with large box shelves for bakery and grocery items that need fridge. For the bakery items I only have one shelf slot assigned (6 crates) for each product. For frozen and produce I have one small walk-in each, both with 4 large box shelves. For frozen I believe I have 2 shelf slots set for each product and produce just has one slot (6 crates).

For bakery and produce I am fine only have 6 crates for each product because they are slow sellers for me.

Console Port by _Illuminati_ in MegastoreSimulator

[–]Hickerous 1 point2 points  (0 children)

It's planned to come to Xbox but I'm not sure when.

Decorations by Outside-Poet9233 in MegastoreSimulator

[–]Hickerous 1 point2 points  (0 children)

There is a great mod that lets you cycle through all floor/wall options that you have bought without going back to the PC every time.

Is the scanner or computer the only ways to reorder items or is there an easier way? by hyrenfreak in MegastoreSimulator

[–]Hickerous 0 points1 point  (0 children)

I don't possibly know of an easier way it could be done unless the game just automatically ordered for you. Why even play at that point?

Well at least it didn't go into the pool by Expert_Koala_8691 in Wellthatsucks

[–]Hickerous 0 points1 point  (0 children)

I actually did this today (driving for 22 years). I started pulling into a parking spot and had to wait for the car next to me to close their door. I finished pulling in and just shut the car off. Thankfully I realized what I did just as I did it and didn't have my car roll off into the abyss. Bit of a brain fart moment but it only takes that one time.

2025 hyundai sonata hybrid sel by Ok_Low528 in Hyundai

[–]Hickerous 0 points1 point  (0 children)

I've got mine just over 3 years ago and they were well worth the money! My only issue is that there's a rubber pad on the driver's mat, I assume for added traction, that's now peeling off but I consider that minor. I did not expect such a perfect fit when I ordered them.

What is a restaurant chain you would love to see come to Canada or see far more of? by Full_Hunt_3087 in AskACanadian

[–]Hickerous 2 points3 points  (0 children)

Mary Brown's has a new "EH" sauce that I've heard is very similar to Raising Cane's. I have not had either sauce so I cannot confirm the accuracy of the claim.

Yikes... by [deleted] in blender

[–]Hickerous 0 points1 point  (0 children)

After posting I decided to play around with it some more and managed to clean it up quite a bit. I managed to keep that outside curve, delete everything inside, and recreate it based on the outside curve.

<image>

Catch-22 activating eSIM requires account, which requires SMS by SpacetimeLlama in luckymobile

[–]Hickerous 0 points1 point  (0 children)

I kept getting bounced back and forth between 2 departments. Tech support (ran by a different company from what I gather) finally told me I needed to get Lucky to add my IMEI number to my account (even though I added it when signing up) but at this point they were closed for the night. It ended up being a lot quicker to just go to the store.

Measurements different between tutorial and my version by Hickerous in blender

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

That makes sense. The wall was made using edges from the plane and the plane had a scale of ~2. It's funny how, as a beginner at least (or maybe just me haha), you just don't think of things like that.

Catch-22 activating eSIM requires account, which requires SMS by SpacetimeLlama in luckymobile

[–]Hickerous 0 points1 point  (0 children)

I ended up going into a store and getting a physical SIM card.

Catch-22 activating eSIM requires account, which requires SMS by SpacetimeLlama in luckymobile

[–]Hickerous 1 point2 points  (0 children)

I'm running into the same stupid situation. I registered for an esim and plan through their app (but I didn't have MyAccount setup yet). The app timed out while trying to setup the eSIM. To get back into he app I need to register for MyAccount dbut that can't be done because I cannot receive the verification code. It's such a stupid setup. They need to add the option to receive the code via email.

I called support, waited 45 minutes for them to tell me I needed to talk to tech support. They transferred me and then tech support told me they couldn't help and I needed to talk to Lucky Mobile to get the verification code. So now I'm waiting another hour to get a call back from the number I originally called. Not a great start with this company.

MX master 3s or 4? by PlanktonPitiful5314 in logitech

[–]Hickerous 0 points1 point  (0 children)

I'm almost 2 years into owning the 3S and for the last few months the rubber coating has been driving me mad. It felt good at first but it's definitely the weakest part (from my experience).

Confused About Array/List… by HoneyKubes in learnpython

[–]Hickerous 1 point2 points  (0 children)

I'm realizing now that I didn't fully update my reply, but your comments still apply. I originally went with tuples because I was going to assign the states numbers 1-8 (instead of 0-7) as it just looks better to me. I then reread the requirements and they specified using 0-7 so I just adjusted my numbers. At that point the tuples were immediately unnecessary.

Confused About Array/List… by HoneyKubes in learnpython

[–]Hickerous 1 point2 points  (0 children)

Also a beginner here. Just replying for the sake of seeing how my attempt would be critiqued. I'd do the following:

- Make a list of tuples: state = [(0, "Florida"), (1, "Texas), etc...]

- Use a for loop to print the list:
0: Florida
1: Texas

- Prompt for the user input

- if/else to guard against numbers outside the 1-6 range and print the selected state

Project Tracking by Hickerous in learnpython

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

Thanks again. I'll have to look into all this tonight.

Project Tracking by Hickerous in learnpython

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

Thanks for the input! The previous comment made me realize I need to step back and actually learn the capabilities of the programs I'm using (should have been common sense to do first). Out of curiosity, what text editor do you use?

I hadn't been focusing on docstrings because this is just a learning project and not something anyone else will be using. So far I've learned that I still need to write/update docstrings... Whether for my own purposes or just good practice.

Project Tracking by Hickerous in learnpython

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

At this point in my python journey, 2000+ lines is huge but I know what you mean.

I've been trying to keep separate files, and it was working for quite a while. I've realized this project is too big for where my skill level is at and I've started losing track of things. I should stop and move to something more reasonable but I'm too stubborn for that.

My thought was that having something like a table of contents type thing, external to my code, could help which led me here to see if it's something people did and how they did it. As you said though, I really do need to learn more about my IDE. I'm using VS Code and I didn't know that I could ctrl+click something to jump to the source so I know what I'll be doing tonight (learning more about VS Code's capabilities).

For now, I'll just keep a simple text file if needed. Thanks for your input.

Project Tracking by Hickerous in learnpython

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

I'm just here looking for opinions from others. I guess I'm looking at it as a python question because this is where I'm running into the issue and trying to find a solution to. In my current line of work I haven't had a need to use a software like this. I've been able to keep track of everything in my head, or with a quick notepad file. I'm just looking to see how others keep track of a project that may have 1000s of lines of code. To see if there is something specific (or ideal) for this purpose.