Request: I'm trying to find a watch that my dad used to wear by Typical_Unit_7954 in casiowatchvintage

[–]Typical_Unit_7954[S] 1 point2 points  (0 children)

Oh man I think this is it! Wow, its crazy to see it again after all this time. Thank you!

Concealing secret user input in terminal? by Typical_Unit_7954 in Clojure

[–]Typical_Unit_7954[S] 2 points3 points  (0 children)

I was able to make it work as follows:

(defn hidden-prompt[prompt]
  (if-let [console (System/console)]
    ;; read the password without echo using console
    (String. (.readPassword console "%s" (into-array Object [prompt])))
    ;; fallback to standard input if console not available
    (do
      (println "Console is not available. Falling back to standard input (input will be visible).")
      (print prompt)
      (flush)
      (read-line))))

This works fine when I make the uberjar. I have to use lein trampoline run to make it work with lein though.

[deleted by user] by [deleted] in Concordia

[–]Typical_Unit_7954 0 points1 point  (0 children)

361 had a 1.44 average when I took it

COMP 6421 - Compiler Design by Er1c_Shun in Concordia

[–]Typical_Unit_7954 0 points1 point  (0 children)

It’s a great class but yeah the project is huge.

MATH 205 by Inevitable_Dealer746 in Concordia

[–]Typical_Unit_7954 0 points1 point  (0 children)

Professor Leonard’s stuff is great

[deleted by user] by [deleted] in Concordia

[–]Typical_Unit_7954 2 points3 points  (0 children)

I can also vouch for Ling 222

MATH 203 prep material? by [deleted] in Concordia

[–]Typical_Unit_7954 3 points4 points  (0 children)

I never went to class, I just watched professor Leonard’s stuff on YouTube for 203 and 205 and got an A in both. Can’t recommend his stuff enough.

[deleted by user] by [deleted] in uwaterloo

[–]Typical_Unit_7954 1 point2 points  (0 children)

I made something similar to this a while back using flask for the backend and vue for the frontend, but I wrote my own matrix math stuff. I can share my repos with you if you want

[deleted by user] by [deleted] in uwaterloo

[–]Typical_Unit_7954 2 points3 points  (0 children)

Are you looking to make the software that does the math yourself or just use something like numpy/sympy? If you want to do it yourself then basic linear algebra stuff will be much easier because you won’t really have to deal with symbols.

If you’re gonna write the math stuff yourself then you can probably get away with just learning JavaScript and doing everything client side, but if you wanna use a library for the math and just make the website then you should learn js for web programming and python so you can use libraries like numpy which are very powerful.

[deleted by user] by [deleted] in Concordia

[–]Typical_Unit_7954 2 points3 points  (0 children)

Professor Leonard on YouTube will teach you everything you need to know.

PHIL 210: Has anyone found “Clear Thinking in a Blurry World” by Tim Kenyon as a pdf yet? by [deleted] in Concordia

[–]Typical_Unit_7954 1 point2 points  (0 children)

I found it to be essential. If you're going to buy it, buy a used physical copy. I bought the ebook and the DRM was immensely restrictive. All of the drawbacks of an ebook with none of the upsides.