WEREWOLF UNRELATED THREAD

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

SpwnX

New Member
Jul 29, 2019
210
0
0
Think of the present or at least the close future within your lifetime or your descendants. That alone should be worthwhile. Unless you're a person that cares for nothing at all, not even yourself.

We're not here to change the universe, we're just living and that won't change. At least be glad you might be able to fill your biological role. or not. heh. heh. heh...
 

Pyure

Not Totally Useless
Aug 14, 2013
8,334
7,191
383
Waterloo, Ontario
  1. If the afterlife is not static it can end. Thus it will either end (and nothing else happens) or mean nothing because it is static
  2. See 1 :p
Curiously four-dimensional view of things. Your perception of the universe is built purely on the basis of a three-plane existence moving through time. We are born, we grow, we die, and that's it. From a wider perspective, this whole process could be "happening" over and over again, universes built and snuffed out constantly. It may mean nothing to us because we're small and limited, but similarly: quantum physics mean little to ants.
 
Last edited:

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
Think of the present or at least the close future within your lifetime or your descendants. That alone should be worthwhile. Unless you're a person that cares for nothing at all, not even yourself.
I don't know of I do or don't
Curiously four-dimensional view of things. Your perception of the universe is built purely on the basis of a three-plane existence moving through time. We are born, we grow, we die, and that's it. From a wider perspective, this whole process could be "happening" over and over again, universes built and snuffed out constantly. It may mean nothing to us because we're small and limited, but similarly quantum physics mean little to ants.
If it is happening over and over than what is the point of it?

What is the reason for this existance
 

SpwnX

New Member
Jul 29, 2019
210
0
0
We're discussing very important matters like the reason of our existance, how can you not notice the importance of it? :D

Also, we're not here to declare whether its worth or not living. Its up to each of us to decide if it is or not.
I have decided that it is, despite the bad things that may have already happened on my past. I work to build a better future for myself and my beloved ones.
 

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
Greatest Common Factor.

The hardest part was making a common (in some lists) function :p
Code:
(defn common
  "Finds the things in common between lists"
  ([lst1 lst2]
    (loop [result '() combined (sort (concat lst1 lst2))]
      (if (empty? combined)
        (sort result)
        (if (= (first combined) (second combined))
          (recur (cons (first combined) result) (rest (rest combined)))
          (recur result (rest combined))))))
  ([lst1 lst2 & lsts]
    (->> (common lst1 lst2) (common (reduce common lsts)))))
 

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
Greatest Common Factor.

The hardest part was making a common (in some lists) function :p
Code:
(defn common
  "Finds the things in common between lists"
  ([lst1 lst2]
    (loop [result '() combined (sort (concat lst1 lst2))]
      (if (empty? combined)
        (sort result)
        (if (= (first combined) (second combined))
          (recur (cons (first combined) result) (rest (rest combined)))
          (recur result (rest combined))))))
  ([lst1 lst2 & lsts]
    (->> (common lst1 lst2) (common (reduce common lsts)))))
Here is the rest of the code BTW You will have to follow all my function definitions :p