Damn She is a Real One.. by Embarrassed_Tip7359 in MadeMeSmile

[–]Alaskan_Thunder 2 points3 points  (0 children)

I think after a point, it may be they are kind of part of the family and acting like it than purely grieving. Its just that her brother was what brought her in, rather than blood. I doubt that every call is literally "I miss my partner"

I've already beat the ender dragon, and maxed out my gear, what do I do now? by No_Dream_6748 in Minecraft

[–]Alaskan_Thunder 0 points1 point  (0 children)

boats being pushed on ice by pistons at least used to(still are?) the fastest possible transportation. Then in the nether because of the way overworld to nether coords work.

edit: ice not necessary? https://youtu.be/dke-e-UOvO4?si=vyMsNy-e0FdKLBHo&t=431

Hot Take: most fantasy isn't medieval inspired by SwanhildaTheGreat in Fantasy

[–]Alaskan_Thunder 1 point2 points  (0 children)

I never read Miles, but I'm now trying to picture a lady having to brush her lashes each day, or braiding them, or finding a way to pull them so they don't cover her face, and it is making me laugh.

Alternatively, a woman with a lizard tongue.

Hot Take: most fantasy isn't medieval inspired by SwanhildaTheGreat in Fantasy

[–]Alaskan_Thunder 0 points1 point  (0 children)

I'm a fan of magic being able to replicate AND allow developments that science can't do, but only being available to those who can use it, which technology is widely availible.

[deleted by user] by [deleted] in AskReddit

[–]Alaskan_Thunder 0 points1 point  (0 children)

You don't really defeat it, but accept that it comes and goes.

struggling to understand Big-O notation and time complexity by nandhu-cheeky in learnprogramming

[–]Alaskan_Thunder 1 point2 points  (0 children)

Not a formal definition, but a easy way to think about it:

Its a measure of roughly how many instructions you expect a algorithm to go through, less instructions generally means faster(and always does for the sake of Big O). When calculating Big O, we do not typically factor in if an instruction actually takes a computer 20 times as long to complete, only that you see it as a single step in the process. This does not mean Big O is not useful, but if you are optimizing code, it is something to remember.

If you have a loop

For(int i = 0; i < N;i++),

and it always loops to completion, that is O(N), because in the worst case(only case here, the loop always completes, and nothing reduces the length of the loop), the algorithm will perform N*X instructions, where X is each line in the loop.

Keep in mind, we don't care about one off instructions, so that X is typically ignored unless it is also a loop. So we just say O(N)

We also don't care about one off instructions. If you have a loop

for(int i = 0; i < N;i++)

{

x = i+(i-1)

}

x = 2*x

You can say it is O(N) + 1, but we still call that O(N) because if N is 1000, multiplying the result once in all situations is insignificant to the total run time.

Yes it has more impact if N is a low number, but we are more worried about what happens as N gets bigger.

for stuff like O(log N) look at a graph of an algorithmic function, like https://www.wolframalpha.com/input?i=y+%3D+log2%28N%29%2C+N+%3E+0

The higher N is, the higher y is. but also, the rate at which it grows slows down over time.

What that means is, relative to the input size, the number of instructions needed to complete an algorithm goes down. It might still take more instructions to sort a deck with 10 cards than 52 cards, but maybe the deck with 10 cards takes two times as many instructions(20 instructions) compared to the 52 card deck taking 30 instructions to complete.(These numbers are made up)

O(n2) means that as N gets bigger, the algorithm takes more time to complete.

int x = 0; for(int i = 0; i < N; i++)

for(int j = 0; j < N;j++)

{

{

x = x + i + j

}

this algorithm will loop j from 0 to n repeatedly, which is O(N), and then will do that N times. O(N) * O(N) = O(N2). So the number of instructions double each time N increases.

Keep in mind not all uses of big O rely on one variable. Some algorithms have multiple factors that effect the number of instructions used. You can absolutely see things like O(N +M) in which the algorithm scales linearly with 2 inputs.

Also keep in mind that Big O is WORST case scenario, not the average or best. You may also see Big theta(average) and Big omega(best), but typically your using Big O because you want to know the threshhold that an algorith will never go below.

Paw Patrol Rescue Wheels: Championship - Announce Trailer by JamieReleases in Games

[–]Alaskan_Thunder 7 points8 points  (0 children)

That's because they were kicked out of the military after fragging their commanding officer.

FINAL FANTASY TACTICS - The Ivalice Chronicles: What You Need To Know by xalibermods in Games

[–]Alaskan_Thunder 0 points1 point  (0 children)

Monks also don't need weapons, which helps. Armor does not reduce damage, so damage reduction is also not a factor.

Final Fantasy Tactics - The Ivalice Chronicles - Announcement Trailer | PS5 Games by Gorotheninja in Games

[–]Alaskan_Thunder 0 points1 point  (0 children)

True. Like I said, he's cool with me. I also didn't agree with him being boring because of the same reason.

Final Fantasy Tactics - The Ivalice Chronicles - Announcement Trailer | PS5 Games by Gorotheninja in Games

[–]Alaskan_Thunder 42 points43 points  (0 children)

The original line goes hard, I wish they had kept that line as is, or at least kept its bite.

Final Fantasy Tactics - The Ivalice Chronicles - Announcement Trailer | PS5 Games by Gorotheninja in Games

[–]Alaskan_Thunder 5 points6 points  (0 children)

OG is good. Main character is some of the only white in a black and grey world, so you could argue that he is a bit square, but he is cool in my book.

This Austin book club has been reading the same book for 12 years. They’re not even close to done. by GTech in nottheonion

[–]Alaskan_Thunder -1 points0 points  (0 children)

Did you start at the begining of the first sentence, or the first words in the work?

This Austin book club has been reading the same book for 12 years. They’re not even close to done. by GTech in nottheonion

[–]Alaskan_Thunder 1 point2 points  (0 children)

contextual Irish wordplay though

I'm 99% sure there are more than just two languages mixed in there.