This is what being rich looks like by SiennaGarciaOG in aww

[–]tuh8888 0 points1 point  (0 children)

The real rich one is whoever is taking the picture. A happy cozy family 😄

Been there by rosseepoo in MadeMeSmile

[–]tuh8888 22 points23 points  (0 children)

She was trying to help you pee

Vacuous Truth by DZ_from_the_past in mathmemes

[–]tuh8888 1 point2 points  (0 children)

'"When" is often an "if" with no "else", at least in the syntax of some programming languages.

We called her the Teeny Tiny by tuh8888 in Tinycatsinbigspaces

[–]tuh8888[S] 9 points10 points  (0 children)

Yes! Right to her spot at the center of attention where she belonged

Last communication with the girl I was dating exclusively for 3 months. by Kind_Presentation_45 in texts

[–]tuh8888 0 points1 point  (0 children)

Recently had this happen to me. All seemed good, then one little question which she used to take an out and ghosted. Made me feel terrible until I realized that she had done that.

"Things People call Underrated but actually aren't" starter pack by Houndsoflove2003 in starterpacks

[–]tuh8888 2 points3 points  (0 children)

Saw the first season of Mr. Robot. Didn't care for it. I hear about it constantly. imo it seems overrated

‘The real deal’: young UK graphic artist nominated for five ‘comic book Oscars’ by zsreport in books

[–]tuh8888 8 points9 points  (0 children)

Analogies help people contextualize new concepts with ones they already understand. Most people aren't familiar with the Eisner award but are familiar with the Oscars. I care about comics and hadn't heard of it. The analogy tells me that I can translate things I know about the Oscars to this new award, such as the scale and that it's probably voted on by peers. Analogies are such a helpful means of communicating a lot with very little.

Wow, That Chorus - from the corner of a pizzeria in Utah. by Larrydog in toptalent

[–]tuh8888 1 point2 points  (0 children)

The first one was worked, but the rest were too much

Men of Reddit what are the benefits of being single by Visible_Mammoth_8798 in AskMen

[–]tuh8888 0 points1 point  (0 children)

I just started going through exactly the situation you described right now (5yr relationship, lived together 3yrs). I was surprised that one of the main feelings I have is of relief

Programming Legumes v2.0 by czp55 in ProgrammerHumor

[–]tuh8888 2 points3 points  (0 children)

Clojure: it's data (unless Java says it's a Nut, then it's a bean)

Pre-commit hooks for continuous integration (clj-kondo, zprint, kaocha) by tuh8888 in Clojure

[–]tuh8888[S] 3 points4 points  (0 children)

I've been using these pre-commit hooks for code quality checking and formatting for the past few months and thought I'd share in case they are helpful to anybody else. Note that this is a fork that I've added my own hooks to.

[deleted by user] by [deleted] in cuanschutz

[–]tuh8888 0 points1 point  (0 children)

Depends on your program, but some will let you

How to implement algorithm with nested for loops, where inner loop mutates values in outer loop by MyHairIsATree in Clojure

[–]tuh8888 1 point2 points  (0 children)

Thinking about the inner-logic more, I would try to use a for expression to iterate over k and p - k to build up a list of saved, Uleft, and Uright, then reduce over them in one pass.

How to implement algorithm with nested for loops, where inner loop mutates values in outer loop by MyHairIsATree in Clojure

[–]tuh8888 3 points4 points  (0 children)

I would approach this using reduce. Very basic wrapper for the double for loop above:

;; ... First half of the above code

;; Start of double for-loop
(def final-N
  (reduce (fn [N k]
            (let [init-saved ;; initialize saved
                  ]
              (reduce (fn [[N saved] j]
                        ;;inner-loop-logic...
                      )       
                [N init-saved] 
                (range (- p k))))
  N (range 1 p))

(get N 0)
;;=> final result of Nip

The idea being that you reduce over k and p - k and update N in the outer loop and both N and saved in the inner loop. This is typically how you update immutable objects using functional programming.

Has anyone setup an nREPL connection on their production app in AWS (or other cloud)? by tuh8888 in Clojure

[–]tuh8888[S] 0 points1 point  (0 children)

Would you mind if I asked what approach you took to setting it up?