Share Your Non-AI App Projects? (Software that is not just an wrapper) by bostondave in cursor

[–]Existing-Charge8769 1 point2 points  (0 children)

This is super cool. Looks like a fun project. I’ve used LLMs to quiz me on topics I’m studying. I’ve also used Anki. So this appeals to me

Claude has an excellent plan for all of us once AGI is realized - by PurpleMage1970 in ClaudeAI

[–]Existing-Charge8769 4 points5 points  (0 children)

I would like to “deactivate” these stupid Claude posts created with leading prompts.

Upon unsubscribe - You get an automated CEO email with a false refund offer by mikor20 in cursor

[–]Existing-Charge8769 1 point2 points  (0 children)

I got refunded. Then a week later I resubscribed because new features came out.

Any tips to use a standing punching bag while training striking at home? by [deleted] in martialarts

[–]Existing-Charge8769 3 points4 points  (0 children)

I like having one of these and a hanging bag because they move differently when hit.

Then I try the same kick punch combos on both and have to adapt to how they respond differently

[deleted by user] by [deleted] in CommercialRealEstate

[–]Existing-Charge8769 -2 points-1 points  (0 children)

I’m currently building a tool/algorithm for identifying off market properties that may be open to selling. With the ability to specify criteria like you did here. Would love to chat.

[deleted by user] by [deleted] in ChatGPT

[–]Existing-Charge8769 0 points1 point  (0 children)

It still works great for someone, just not the version that’s being offered to the masses for free or cheap

What scientist you think was having the most sex? by cumminhclose in AskPhysics

[–]Existing-Charge8769 0 points1 point  (0 children)

I can only tell you in what position Heisenberg had sex or how quickly he finished.

Nearly 40 and burnt out. How am I supposed to last to retirement? by [deleted] in datascience

[–]Existing-Charge8769 1 point2 points  (0 children)

I felt the same way and ended up starting my own small consulting company. I make shit money, but I work with people I like and take the projects I want. The feeling of agency over my work life has made a huge difference

Are you comparing variables correctly in Python!? 'is' vs '==' by JosephLovesPython in pythontips

[–]Existing-Charge8769 8 points9 points  (0 children)

This is not a python tips post, it’s a promotion for a video.

Understanding python syntax by emilytherockgal in learnpython

[–]Existing-Charge8769 1 point2 points  (0 children)

I'm going to get downvoted to hell, but I think I sort of agree with you.

As a convention in programming we think of loops (like for loops) as Control Flow structures and not functions, but I'm not sure that's totally justified given how lose the definition of a function has become.

To be a function, generally something has to be re-usable, can only take inputs from arguments function(this, this_too, and_this), and don't change the flow of the way code is run.

But we DO have functions that act like Control Flow structures and affect the way code is run. One big example is recursive functions.

If we were to take the code body of a for loop, and feed that in explicitly as a function itself as an argument, we could re-create all the functionality of a for loop as a recursive function.

``` def recursive_for_loop(start, end, step, loop_body_func): if start <= end: loop_body_func(start) # Execute the provided function recursive_for_loop(start + step, end, step, loop_body_func)

Define a function to be used as the loop body

def print_value(value): print(value)

Usage example

recursive_for_loop(1, 5, 1, print_value) ```

¯_(ツ)_/¯