Search results

  1. Cloverfieldo

    Do you believe in free will?

    Just read some articles on that, and wanted to know what the intellectuals of the world think about this issue
  2. Cloverfieldo

    Haskell is fun

    primes = 2 : filter (null . tail . primeFactors) [3,5..] primeFactors n = factor n primes where factor n (head:tail) | head*head > n = [n] | n `mod` head == 0 = head : factor (n `div` head) (head:tail) | otherwise = factor n tail main :: IO () main...
  3. Cloverfieldo

    Tips on how to play DnD?

    Going to start my first campaign of DnD as a player, and I need to know if there's any necessary information that's not in the player's handbook
  4. Cloverfieldo

    Time sinker games?

    What's your favorite game to spend hundreds of hours? One that's fun to 100%'d it.
  5. Cloverfieldo

    Where do you want to be in 5 years?

    I want to be dating the woman I will marry and doing a master's degree in another country(I live in brazil currently :( )
  6. Cloverfieldo

    The Idiot by Dostoevsky and Divine Love

    I'm currently on a Dostoevsky binge, one of my best decisions of my life, and I want to talk about The Idiot. This review will contain spoilers, so be warned! Starting off, there's the center of the book, the relationship of Míchkin with others and specially his "divine" love for others. It's...
  7. Cloverfieldo

    What are some good ideas for projects to put on a resume?

    Any kind of project, but preferably backend.
  8. Cloverfieldo

    What code editor do you use and why?

    Recently I started using vim because I wanted to use a minimal editor and got impressed with its plugin library and what you can do with it on the terminal.
Top