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
I've seen circlejerk situations on both sides. That is honestly one of the saddest things about flamy discussions in the MC community, because it almost always ends up like this, otherwise known as a circlejerk
Definitely. Reika has a right to do whatever he wants. However, that doesn't mean we...
I'm not saying you should do this, nor should you be pressured into anything, that would just lead to bad blood. I'm saying this is the ideal solution. If a pragmatic solution comes up that can approximate this one that would be what you should go for. This is a skeleton of a system that needs...
That is addressed at the top in that those problems of people not liking you would most likely not have existed if you had started with an open license. I myself do not know how to form a union of the two approaches if we take a look at the past.
That is probably the hardest thing to solve with...
I misinterpreted your counter-argument. I thought you were talking about defaults, not about PRs being pulled. I also agree defaults are best in the hands of devs. I think PRs could be given a voting mechanism where once it reaches a certain amount it is automatically pulled in. The problem is...
Thank you for thinking my reply is clever :p
There will always be friction, but identifying the perfect solution and striving for it is how progress is made ;)
This is actually the hardest to answer. The first solution would be a re-design of the config system to set defaults to what is most...
Best Case Scenario: The person re-creating your mod instead forks it and submits a pull request to your mod.
You don't get your feet pulled from under you
If configs exist for the old mode and the new people can choose the experience they want (in Reika's case RF-compat or no RF)
Your ideas are...
https://github.com/Strikingwolf/LearningHaskell/blob/master/src/math/Math.hs#L29
Fibonacci sequence stuff?
My life, every day
Besides, when I'm watching anime... but that's productive, isn't it?
Tau is better you heathen
e^(i tau) = 1
sterns = map (stern' 0) [0..]
where
stern' :: Int -> Int -> Int
stern' acc 0 = acc
stern' acc 1 = stern' (acc + 1) 0
stern' acc n
| even n = stern' acc (n `quot` 2)
| otherwise = let
m = n-1
in stern'...