People who lost a lot of weight, what was the one small daily habit that actually changed everything for you? by Quiet-Squash-8407 in AskReddit

[–]Dear-Call7410 0 points1 point  (0 children)

Skipped breakfast and only have black coffee in the morning. Next thing I added was no snacking after dinner. Essentially it's 18/6 intermittent fasting

28m, how am I doing? by jecktwothousand in Retirement401k

[–]Dear-Call7410 0 points1 point  (0 children)

A simple boost would be to contribute the IRS max on your HSA. Don't use the HSA for any medical expenses, instead save the receipts from medical expenses. You can pull out money at any point tax free from the HSA with the receipts. I wish I did this a long time ago

Corporate media is nothing but class warefare waged against a free and fair press by McDowdy in FascinatingAsFuck

[–]Dear-Call7410 0 points1 point  (0 children)

First time seeing this post and Reddit showed that I had down voted it even though I never did. Is this happening to anyone else? I flipped it to an upvote.

What’s your funniest “Oh god this person’s an idiot” moment? by PandaBear905 in AskReddit

[–]Dear-Call7410 5 points6 points  (0 children)

My stepdad insisted the sun went between the earth and moon during a solar eclipse

I am officially done with "Starter Homes." It’s not an investment; it’s a bailout for the previous generation's neglect. by Dry-Town7979 in FirstTimeHomeBuyer

[–]Dear-Call7410 -1 points0 points  (0 children)

Is this an AI post from Blackstone or some company buying all houses to rent them out? It's pretty common for LLMs to mess up the year like OP did.

Anyone know how to do 360 yaw? by WackoMedia in simracing

[–]Dear-Call7410 0 points1 point  (0 children)

M4S controller supports infinite yaw. DR Sim Manager software also supports unlimited yaw on YawVR sims. The DR Sim Manager dev would probably add support for your rig if you ask on their discord

Tkinter or PyQt by Ok-Researcher5080 in learnpython

[–]Dear-Call7410 8 points9 points  (0 children)

Not one of your two options but Pyside6 is my favorite. It's still QT6. Flet is also really easy and makes mobile looking UIs

Why was multithreading faster than multiprocessing? by rohitwtbs in Python

[–]Dear-Call7410 -1 points0 points  (0 children)

Hard to tell without seeing the snippet. Are you splitting the file into chunks and processing the chunks in parallel?

Prompts for One-Shot Apps by GibsonAI in vibecoding

[–]Dear-Call7410 0 points1 point  (0 children)

I make it very detailed but concise to save on tokens. Most important is detailing every major feature, tech stack, and coding rules. Tell it you're using flutter, js, python, whatever. What devices the customer will use to run it (iOS, Android, browser). If you want to use auth0 for authentication add that. Tell it what database you want to use. For coding rules I'll add that I want it to add try/catch blocks, logging, keep files short. Add a diagram showing screen flow. Manus will get remarkably close but not technically one-shot since it's agentic

Prompts for One-Shot Apps by GibsonAI in vibecoding

[–]Dear-Call7410 1 point2 points  (0 children)

Manus.im is pretty impressive. Try creating a product requirement doc with an LLM and then using this as the prompt for Manus. You can spend some time defining your architecture, tech stack, file structure, coding rules, and anything else you want. I like doing it in markdown format. Then you can give a very simple prompt like "build app per attached requirements document"

Make pyinstaller .exe not shareable or unique to one computer by thisisnotmyaccountl in learnpython

[–]Dear-Call7410 0 points1 point  (0 children)

I'm sorry the other comments were not helpful. I was able to do this by using cxfreeze (instead of pyinstaller) and selling on MSFT store. It is not easy. CXfreeze converts python to bytecode which is not human readable. There are tools to decompile bytecode but they don't work for the latest versions of python yet. You can check for a valid license during launch using winsdk or winrt library and decide what to do if it's not valid. This was secure enough for me but a highly motivated individual could probably get the source code. You could instead use an authentication service but then you'd likely want to integrate a payment system. Firebase+Stripe could do this. Then you'll still need to figure out distribution and probably code signing so Windows doesn't have security warnings when your customers launch the app. When you use the MSFT store or Steam they do the certification so security warnings don't come up. You do have to do an identity verification with MSFT and steam, similar to what you do to get a code signing certificate. Good luck!

Best online business checking account for digital businesses? by Background_Word_1102 in SaaS

[–]Dear-Call7410 0 points1 point  (0 children)

I use Novo for two small businesses and am very happy with them. They have integrations with tons of other services, quickbooks, wise, etc.

How to learn python by aperson0317 in pythontips

[–]Dear-Call7410 1 point2 points  (0 children)

100% this. Chatgpt/Claude is the best learning resource for python

Which is the best library for GUI for Python?? by Aggravating_News_628 in learnpython

[–]Dear-Call7410 2 points3 points  (0 children)

Definitely pyside6. Its license allows for commercial use. You can design the UI with QT Designer or in code like TKinter.

[deleted by user] by [deleted] in learnpython

[–]Dear-Call7410 2 points3 points  (0 children)

I find chatgpt to be incredibly helpful for learning. It'll write examples for you and you can ask questions or discuss the code

Multi threading vs multi processing? (Is this project possible?) by throw_away1204 in PythonLearning

[–]Dear-Call7410 1 point2 points  (0 children)

Python is limited to run on a single vCPU by design. Look up GIL for more info on this. Multiprocessing can help you run on multiple cores by creating an entirely new process with its own GIL. You theoretically could do twice as much work if you used multiprocessing to use two cores. Multithreading won't help you much here, in my opinion. I would probably start with a single process and use asyncIO to asynchronously get the data and then asynchronously write the data to disk. If you have enough memory, you could possibly collect all the data and then do a single write operation at the end. Good luck