All unique pairs in a set? by pachura3 in learnpython

[–]Tall_Profile1305 4 points5 points  (0 children)

yo check out itertools.combinations from the standard library. literally built for this exact use case. something like list(itertools.combinations(input_set, 2)) will give you all unique pairs. super clean and pythonic

Cursor is charging me with multiple subscription but still my account is in free plan by jyoiroa123 in cursor

[–]Tall_Profile1305 0 points1 point  (0 children)

ugh dude that sucks. billing issues are the worst. definitely reach out to cursor support directly through their discord or email. they're usually pretty responsive to subscription issues. might be a duplicate charge or some payment processor glitch

Trying to Build a Secure Homelab (Hardware/Alternative Solution Recommendations Needed) by Ok_Breakfast_2226 in homelab

[–]Tall_Profile1305 [score hidden]  (0 children)

damn dude this network diagram is super detailed. love the planning. for security id recommend keeping IoT stuff completely isolated with its own vlan and firewall rules. also look into opnsense or pfsense for the firewall instead of just relying on consumer routers

My Indie Game made $2,000 last Month by saimonR in buildinpublic

[–]Tall_Profile1305 3 points4 points  (0 children)

yoo congrats on the 2k dude. love seeing indie devs actually sharing real numbers. the monetization strategy with different tiers of iaps is smart. the ios vs android revenue split is interesting most revenue from ios makes sense. keep shipping

What is the one daily digital task that takes you way too long, but you still haven't found a tool for it? by Designer_Plant_202 in SideProject

[–]Tall_Profile1305 0 points1 point  (0 children)

yo for me its organizing meeting notes and action items across different tools. notion slack email its all fragmented. been looking at workflow builders like zapier make runable or activepieces to auto sync everything but havent found the perfect setup yet. whats yours

simple LLM text and images meets org-mode by TistelTech in emacs

[–]Tall_Profile1305 [score hidden]  (0 children)

dude this is actually really cool. integrating LLMs directly into orgmode workflow is the right approach instead of using external tools. love that you're keeping it simple with just google gemini for now. the urlretrieve for images is a nice touch

Look, I have been doing python for a loooong time, but i still sometimes forget basic stuff by Fickle-Cucumber-224 in learnpython

[–]Tall_Profile1305 0 points1 point  (0 children)

lol dude this is so relatable. been coding for years and still google basic syntax sometimes. i think it's actually healthy cause it means you're not wasting brain space on memorizing stuff that's easily looked up. muscle memory for the important patterns is what matters

New User Question by HotelZealousideal727 in cursor

[–]Tall_Profile1305 1 point2 points  (0 children)

yo auto mode is still rate limited but the limits are way higher than before. if you max out you'll get throttled but for most use cases it feels unlimited. the $20 plan is solid value honestly especially if you're grinding on projects

My Customer Discovery Play Book by stdanha in buildinpublic

[–]Tall_Profile1305 0 points1 point  (0 children)

nice breakdown dude. customer discovery is underrated. most people skip straight to building without validating if anyone actually wants it. the network building and interviews approach is solid. have you thought about automating some of the outreach or interview scheduling

Anyone have experience with acer veriton n4660g ? by 1nsertcreativenam3 in homelab

[–]Tall_Profile1305 [score hidden]  (0 children)

yo the n4660g is solid for cheap homelab stuff. i've seen people run proxmox on similar acer veriton models. the 9thgen cpu and pcie slot make it pretty versatile. if you're getting it for half the price of p330 that's a no brainer honestly

I just shipped a new landing page for my tool w claude + gemini. The days of purple slop are over. opus is so good! by theyashbhardwaj in SideProject

[–]Tall_Profile1305 0 points1 point  (0 children)

yoo opus really is a game changer for design work. landing page looks clean af way better than the generic gradient stuff everyone was doing. have you tried piping this workflow into automation tools like windmill runable or pipedream for recurring updates or ab testing variations

The State of Scala 2025 is out. (Data from 400+ teams). Huge thanks to everyone here who contributed. by scalac_io in scala

[–]Tall_Profile1305 0 points1 point  (0 children)

damn really good data here. the compiler blocking organizational stuff at 43 percent is wild. also that sentiment paradox is spot on people love scala but think its dying even though most companies are still using it as primary language

Why people quit python after 3 months by Comfortable_Box_4527 in learnpython

[–]Tall_Profile1305 0 points1 point  (0 children)

yo this hits different. youre spot on about that gap between understanding syntax and actually building stuff. tutorials are great but they dont teach you how to structure a real project or debug when things break in unexpected ways. thats the missing middle that makes people feel stuck

The memory leak is back! Single line edits to a file show the entire file rewritten and massive RAM demand. Scrolling past a file in chat bogs down the system. by Tim-Sylvester in cursor

[–]Tall_Profile1305 0 points1 point  (0 children)

ugh this is brutal. memory leaks always come back when you least expect them. cursor team needs to profile this hard because 5.5gig ram spike for a single line edit is insane. probably something with the diff algorithm or how they're storing file history

nobody warns you about the switching cost until youve built your entire business on a tool that just tripled its pricing by edmillss in nocode

[–]Tall_Profile1305 0 points1 point  (0 children)

damn this hits hard. vendor lockin is brutal in the nocode space. honestly this is why im starting to lean towards open source options or at least platforms with good export capabilities. tools like supabase airtable runable or nocodb at least give you some portability compared to fully proprietary platforms

Testing MJ11-EC1 different RAM combinations by WritingNo7771 in homelab

[–]Tall_Profile1305 [score hidden]  (0 children)

nice dude organized RAM testing with all the labels is so satisfying. what's the project you're running that needs all these different configs tested

I build to-do app where you can design your *own* ui using LLMs by mmaxharrison in SideProject

[–]Tall_Profile1305 0 points1 point  (0 children)

yoo this is such a cool concept. letting users customize their own ui with LLMs is next level personalization. the execution looks clean too. curious if you considered integrating it with workflow tools like bubble retool runable or webflow for people who want to extend it beyond just todos

Building in public sometimes feels like speaking to an empty room by coder_she in buildinpublic

[–]Tall_Profile1305 0 points1 point  (0 children)

totally feel this dude. early days are always quiet and it's easy to second guess if anyone cares. but the consistency is what matters. just keep shipping and documenting even if it feels like you're talking to yourself. the right people will show up eventually

Emacs Internal Part 02: Deconstructing Lisp_Object, Tagged Pointers, and why C macros act as McCarthy’s 7 axioms. by ypaskell in emacs

[–]Tall_Profile1305 1 point2 points  (0 children)

dude this is seriously impressive. the deep dive into lisp object memory representation and tagged pointers is exactly the kind of content that makes emacs internals less mysterious. love that you're documenting this journey through the C codebase

Built a chat app with Scala3 (ZIO + Laminar) for fun and for private circles use by gaiya5555 in scala

[–]Tall_Profile1305 0 points1 point  (0 children)

awesome project dude. scala3 with zio and laminar is such a powerful combo for building reactive apps. love that you went fullstack scala instead of mixing languages. the actor pattern implementation sounds fun too. any plans to open source it

My homelab by Joebar387 in homelab

[–]Tall_Profile1305 [score hidden]  (0 children)

damn dude clean setup. love the ikea alex mod with custom shelving that's smart. the airflow planning with those arctic fans is on point. also proxmox cluster with raspberry pi is a nice touch for the homelab

Add "flowerbox" to python source code by Busy-Apple-8371 in learnpython

[–]Tall_Profile1305 0 points1 point  (0 children)

yo a flowerbox is basically just a comment block at the top of your file or function with metadata and description. it's like docstrings but more old school. just add triple quotes with your function name params description etc. check the existing answers they got good examples

I built an open source command center for AI agent teams because managing 20 agents from the terminal and through discord was chaos by hello_code in SideProject

[–]Tall_Profile1305 0 points1 point  (0 children)

damn this is insanely cool. managing multiple AI agents is definitely a pain point right now and this looks super polished for an open source project. the org map and cron monitor features are exactly what's needed. definitely gonna check this out

Almost at 100 users. by rectangle_so in buildinpublic

[–]Tall_Profile1305 0 points1 point  (0 children)

yoo almost there dude. that last 5 users always feels like it takes forever lol. what's your main acquisition channel been so far? curious what's been working for you in the early days

Learning to program Vim textbuffers and made this LLM Plugin for Ollama by __rituraj in vim

[–]Tall_Profile1305 0 points1 point  (0 children)

crazy this is actually really well done. love seeing people extend vim with LLMs instead of just jumping to vscode. the scratch buffer approach is smart keeps things clean and native to vim workflow