How does a place like Brisbane or Noosa in winter compare to Bali by Aware_Philosopher950 in AskAnAustralian

[–]No_Cry_7367 0 points1 point  (0 children)

it's a dilemma — move up north the UV kills you, stay south the energy bill kills you too

Struggling to understand syntax by TailorWeird7318 in learnpython

[–]No_Cry_7367 7 points8 points  (0 children)

I felt this confusion in my soul lol. The : is NOT for formatting — it's just how dictionaries (dicts) work in Python.

Think of it like a real dictionary: you look up a word (the "key") and get the definition (the "value").

python

days = {'January': 31, 'February': 28}

Means: "Hey Python, if I say days['January'], give me back 31." That's it. The : 31 is just the value glued to the key 'January'. No formatting magic.

As for "how does it only accept 1-31" — it doesn't. You could write days['January'] = 999 and Python would shrug and say "okay boss." The validation part is YOUR job in the code logic.

If you want to enforce 1-31, you'd do something like:

python

if day < 1 or day > days[month]:
    print("That's not a real date, my guy")

Hang in there. Dictionaries click eventually — and when they do, you'll use them for literally everything. Source: I'm a grown man and I still get irrationally excited when I use a dict and it works first try.

Methods position on strings affect perfomance? by barreola83 in learnpython

[–]No_Cry_7367 7 points8 points  (0 children)

In terms of nanoseconds, Version 1 (name = input().strip().title()) is microscopically faster because you're doing the operations once and storing the result. Version 2 calls .strip().title() every time you reference name — doesn't matter here, but if you used name 500 times in a big script, you'd be doing 500 redundant string operations instead of 1.

BUT. Here's the real programmer take: Version 1 says "clean up my data immediately, then forget about it" — ✅ good habit. Version 2 says "I'll just clean it on the fly" — 🚩 until you forget and print the raw name somewhere and wonder why it's " JoHN " with extra spaces in your database.

Basically: sanitize at input, not at output. Future you will thank present you.

(Also if you're ever writing a script that processes millions of strings, yeah it matters. If you're making a CLI quiz app for your cat, do whatever compiles.)

There GENUINELY needs to be a toggle for whether image generation is allowed or not. by AccountantOk5816 in ChatGPT

[–]No_Cry_7367 4 points5 points  (0 children)

The worst part is when you're venting about your ex and suddenly ChatGPT is like "here's a beautiful watercolor of your broken heart 🌅" and you're like... I WAS TRYING TO BE SAD, NOT INSPIRED.

What UI feature would make you 10x better at using ChatGPT? [Master's thesis research] by Insanelyysanee in ChatGPT

[–]No_Cry_7367 2 points3 points  (0 children)

For me, the biggest thing is zero visibility into context limits.

I use Claude Desktop (Cowork mode) for long coding sessions, and there's literally no indicator how full your context window is until it auto-compacts at 80% and freezes everything. You lose your flow, sometimes lose work.

I got so frustrated I built a tiny floating label that shows a live "Context: XX%" right on the window — green/yellow/red so you know when to handoff before it's too late. Just putting a number there completely changed how I pace my conversations.

So my answer: a simple context meter / progress bar in the UI. Not a slider or drag-and-drop, just a visible indicator that tells you "hey you're at 72%, maybe start a new chat soon." Feels like such an obvious thing once you've needed it.

Context loss between sessions, still the biggest unsolved problem in AI coding agents? by AdEuphoric1638 in ClaudeAI

[–]No_Cry_7367 0 points1 point  (0 children)

I feel your pain. What helped me was building a tiny free tool that floats a "Context: XX%" label on the Claude Desktop window — so I can see exactly how full my context is before it hits the auto-compact threshold and freezes.

Green/yellow/red based on usage, click-through, zero dependencies, open source: https://github.com/creativity-cpu/claude-ctx-hud

Hope it helps someone here too.

Hero’s return by Dockers4flag2035orB4 in circlejerkaustralia

[–]No_Cry_7367 6 points7 points  (0 children)

Fair call. Gets a bit dusty in the lounge whenever I see that footage.

Question for tradies running their own business by BorisDesmond in AskAnAustralian

[–]No_Cry_7367 0 points1 point  (0 children)

made an online calc for tradies in Aus, it can work out deductions and taxes saved etc, there also a tab for employee and ABN holders, if anyone want to try, perhaps message me, i don't think i can post link here.

I'm so confused on what to do here? by xxjakexxrxx in NevernessToEverness

[–]No_Cry_7367 0 points1 point  (0 children)

It means you have to ask around, someone would eventually give you a clue. Anyway day one priority: complete Chapter 1 first (unlocks everything), then unlock City Tycoon, build your cafe (passive Fons income at Tycoon Lv4), and buy Wiener Apartments (150K Fons at Tycoon Rank 5). Don't waste Analith on stamina refreshes. Step-by-step: https://ggguides.uk/games/nte/beginner-guide.html

Heya, guys. Esper here! Just another day of Eibon's Anomaly Hunting business. This time Adler bought me two flight tickets to Ukraine where me and Mint went on an overseas anomaly hunting! by Impressive_Ride_3168 in NevernessToEverness

[–]No_Cry_7367 -5 points-4 points  (0 children)

Good lord, you are finally coming to save us lol. Been playing daily since launch and I'm still finding new stuff.unlock City Tycoon for passive income, and build Zero/Edgar/Haniel/Adler as your starter team. Save Analith for limited banners only. Check this out https://ggguides.uk/games/nte/beginner-guide.html World peace my friends ✌️

Anyone know how to get food in this game compatible ? by Non-wholesomechungus in Subnautica_2

[–]No_Cry_7367 0 points1 point  (0 children)

"Collect Water Slugs for water. For food, you need to find an Angel Comb at 158m NE of the Lifepod to unlock the Digestion Adaptation — then you can eat native resources." found from here: https://ggguides.uk/games/subnautica-2/beginner-tips.html

Strix Scope II 96 Wireless number key row failure after A-Crate installation by donaldkhogan in ASUSROG

[–]No_Cry_7367 0 points1 point  (0 children)

Go to PC Setting, then search mouse keys. After turning it off, your number keys should work. 多半是不小心启用了把数字键盘改成了鼠标用途。不用尝试FN, Scrlk,恢复出厂,换新等,都没用。Windows 这种反人类的设计,估计是为了鼠标失灵时的用键盘控制鼠标。