Yes but it still feels comforting when someone reads what you've written, appreciates it. You can even keep writing for the sheer novelty or muse, but without any feedback, how will you know it's going in the right direction?
26.10.2025 19:56 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
Who exactly would you write for when most of the society is zombified and hooked up to fast paced narratives on reels and Instagram? What would even cause you to write in such an atmosphere?
26.10.2025 19:44 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
Keep up the good work!
26.10.2025 19:40 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Thank you for pointing me in the right direction! Here is a working C# code to find h-index; the key is to loop from 1 to max array length, check if h-index fits each one and break where it doesn't to find the max h-index. Though I'm sure there must be more efficient ways to solve it than this one ๐
26.10.2025 17:31 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
From the androiddev community on Reddit
Explore this post and more from the androiddev community
Entire novels could be written about how ruthlessly tedious and convoluted androiddev is than it needs to be. Here is a vent post I'd made on reddit some time ago.
www.reddit.com/r/androiddev...
25.10.2025 17:07 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
True that. Though I think there is still some time until AI could mimic human imperfections perfectly with all the nuances. Another way is to use a politically incorrect slang or term which we know AI makers will never allow it to speak?
24.10.2025 15:33 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
I think the main symptom of LLM written text is perfect English with flawless "Wren & Martin" grammar. Human imperfections is what AI can't feign easily. A time might come when we must deliberately make miskates to rubber-stamp human written works ๐
24.10.2025 14:58 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
And that's not even counting the massive technical debt AI would have accumulated in the long term. Also not counting all the extra hours reviewers need to spend to make the code usable.
24.10.2025 14:04 โ ๐ 3 ๐ 1 ๐ฌ 0 ๐ 0
โ
Studying documentation and finding solutions is the ideal way to solve programming problems.
โ
Studying answers by top experts on forums like StackOverflow is the next best way to solve them.
โ Asking an LLM to "help" or "assist" is the least ideal way ๐
23.10.2025 13:12 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
App level tooling like pip, npm, composer, etc. should ideally never be run as sudo or root user on Linux, that creates a grave chance of messing things up.
22.10.2025 16:32 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Local AI is indeed the way forward. I'm researching small scale LLMs like phi3-mini, Llama 3.1, etc. which can work in constrained environments like my laptop.
22.10.2025 02:15 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Indeed, it has been lagging a lot lately, and often breaks before the response is complete. I'm making a conscious effort to reduce ChatGPT dependence and revert to old school ways like Google, stack overflow and Wikipedia for solutions.
21.10.2025 23:50 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
GitHub - prahladyeri/FocusBeam: Beam in on your tasks and projects with precision
Beam in on your tasks and projects with precision. Contribute to prahladyeri/FocusBeam development by creating an account on GitHub.
FocusBeam 1.1 is released.
fix: Disallow resize of row header for dashboard grid
feat: Added find feature for task notes
feat: Added Task Notes View
chore: UX enhancements
feat: Mind Maps
chore: Moved features from main menu to toolbar icons
feat: Auto save task notes
github.com/prahladyeri/...
21.10.2025 12:49 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Thank you. May the festival of lights bring you happiness and success ๐ช
20.10.2025 15:10 โ ๐ 4 ๐ 0 ๐ฌ 0 ๐ 0
This is terrible, even worse than what had happened to Linux Mint website.
19.10.2025 03:51 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Hey, sending good thoughts your way. Hope things get lighter soon.
16.10.2025 09:22 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
Isn't it called the CVC (Card Verification Code)?
13.10.2025 02:51 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Imagine one AI saying to another what Descartes said centuries ago: "I think therefore I am" ๐
10.10.2025 15:28 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Mind blowing discussion, Jon is filled with humor, wit and insights as always. I think dire predictions of AI getting human smarts by next decade are all exaggerated though, LLMs are hitting major dead ends already.
09.10.2025 17:50 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
For assured guarantees, you can use the --dry-run switch. This pip command will just test whether installation is possible without actually installing it. Once it passes, you can remove the switch and install it.
pip install --dry-run <package>
08.10.2025 08:32 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Pip will enforce the constraints specified by the developer. For example, it wonโt install the package on Python <3.4, and it will only install requests โฅ2.0 in this example. It's up to the developer to set these guardrails or constraints.
08.10.2025 08:24 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
The way is part of the setup process itself. In setup.py, you can specify which exact dependency package versions and python version you want your own package to be compatible with:
install_requires=['requests >= 2.0'],
python_requires = ">= 3.4",
08.10.2025 07:23 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
This is great! Is this something that came up recently with 8.3+ release or always existed in PHP?
05.10.2025 13:31 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
NYC ๐ The Daily Show Hostess
https://github.com/ljharb
software engineer/nerd/teacher/will try anything once; surgeon with git rebase. @TC39 ex @Coinbase/@Airbnb/@Twitter/@MobBase. Fav punctuation โธฎ, scent petrichor
Software nerd, cat enthusiast, pixel art noob, gamedev, playing with LLMs
Sen. Sanders of Vermont, Ranking Member of the U.S. Senate Committee on Health, Education, Labor & Pensions, is the longest-serving independent in congressional history.
Software, AI, playing with LLMs, gamedev, chess
A programming language empowering everyone to build reliable and efficient software.
Website: https://rust-lang.org/
Blog: https://blog.rust-lang.org/
Mastodon: https://social.rust-lang.org/@rust
Pythonista, Mojo lover for AI & ML, Java developer, Scrum Master and author of the best-selling Scrum Master Certification Guide. Looking forward to making friends in a supportive community. (I'm @Scrumtuous on all platforms, including YouTube. Subscribe!)
Left politics guy, nerd, woodworker, board gamer. Dog aficionado. Host of daily progressive news show The Damage Report. My original fantasy and sci-fi fiction is available at patreon.com/johniadarola
Dir of Programming @ The Young Turks, Contributor @ ABC News Specials, Host of Happy Half Hour. Circus Hippo.
๐Fun Stack Vibing at @xogot.bsky.social
Started Xamarin, Mono, Gnome. Prev: Microsoft/.NET/Xamarin/Mono/VSMac/MAIA http://mastodon.social/@migueldeicaza
Creator of Laravel News @laravelnews.com
Email me: eric@ericlbarnes.com
cofounder of deno and creator of node
https://tinyclouds.org/
https://github.com/ry
https://x.com/rough__sea
Doer of all things Linux-y. Linux Support Lead at Framework Computer Inc. My opinions here are my own. https://matthartley.com
Software, guitars, books and articles,
Industrial Logic's own Agile Otter
IITian, engg manager in US, Vedic astrologer (researcher, author, teacher & maker of a popular free software), Sanskrit scholar, philosopher, spreader of Homa
I donโt post here, follow me on X: x.com/adamwathan
Hi, Iโm Josh (he/him)โฉโฉIโm obsessed with #devops, #observability and #databases. Iโm a Developer Advocate at Altinity.
I run a home lab and I have no idea whatโs on any of the assorted thumb drives around my home in Western Massachusetts.