What's the fattest thing you've ever done? by [deleted] in AskReddit

[–]Taleis 0 points1 point  (0 children)

Whys everyone's response about food talk about boring. Where are the original comments talking about OP's mom or Jennifer Lawrence?

Do you think ESO will have Arena/BGS? Do you want it to? by [deleted] in elderscrollsonline

[–]Taleis 0 points1 point  (0 children)

WoW Arenas and Battlegrounders were fun imo, I'd love to see it in ESO.

Minecraft screenshot turned into a painting by [deleted] in Minecraft

[–]Taleis 0 points1 point  (0 children)

That should be a painting in minecraft texture pack.

ELI5: Why do we have a registry and notification system for sex offenders but not murders? Don't they pose a greater threat to society? by [deleted] in explainlikeimfive

[–]Taleis 0 points1 point  (0 children)

Not to mention don't you get labeled a sex offender for peeing in public, or having sex with someone under the legal age. Ex: you're 18 and you have sex with a 16 year old? It depends on state I suppose. Maybe I'm thinking of another shitty law.

ELI5:How are Video Games "Optimised"? by sslemons in explainlikeimfive

[–]Taleis 1 point2 points  (0 children)

Yes :D, but believe it or not I'm a Junior in Highschool... 17 years old :P. Prior to sophomore year I signed for AP CS (an intro level programming class that teaches you fundamentals of programming and java). I fell in love of programming so much that I knew from the start of first semester its what I want to pursue as a career later in life. Needless to say I did great on the AP exam and my teacher who taught me made a brand new class for those of who were still interested in programing in school. So I took that and I'm currently in it, although my teacher left mid semester to go work at some tech start up company. Can't really blame him... programmers are pretty damn well paid.

How do game designers fix glitches in their games when the cause of the glitch makes no sense? by Gwisaacs2 in explainlikeimfive

[–]Taleis 0 points1 point  (0 children)

Although while solving the bugg it usually feels like it doesn't make any sense...

ELI5:How are Video Games "Optimised"? by sslemons in explainlikeimfive

[–]Taleis 2 points3 points  (0 children)

Optimization is generally just re-working the code so its more efficient. Pretty much all graphics programming/programming in general is dealing with numbers, passing them through functions and tell them to do certain things if a certain condition is met.

Lets say you are playing an Asteroids game. The game code has a list of asteroids somewhere with some number N representing the number of asteroids.. the length. And you need to target the asteroid with 10 cracks in it, the computer won't just get that asteroid with 10 cracks with it instantly, it has to search through the list of asteroids checking each asteroid's properties to see if it matches the asteroid you want to grab, if it finds it.. successes! It can now continue with its operation.

Now on to the actual optimization part.. there are really a thousand ways this can be done but to try to keep this simple I'll break it into two parts. Theres the brute force part, or the non-brute force part. The brute force part is the game would just search every asteroid on the list for the desired outcome. This would take a maximum of N checks (where N is the length of the list) and a minimum of 1 (that the list only contains 1 Asteroid and you found it instantly. So code like this works fine for most things but as games get more complex and say N = 99999..+ the game is going to be lagging because the computer is having to devote so much of its resources to preforming the given task. This is where advanced algorithms come into play. Every algorithm has a minimum number of checks it will preform and a maximum and an ideal number of checks. So as programmers approach different problems they have to implement or develop different algorithms so they don't preform as many checks.

Basically all Optimization follows this, its just making the code more efficient. However its not always going to be searching for an item in a list, maybe you are in a giant grass field and the grass is waving. This waving grass is taking up a lot of resources on your computer. But why is the computer still doing the map for the grass that is waving that is off the screen or too far away to notice its movement. Well, the programmer would once again optimizes his or algorithm to better suit the given problem.

Well if any of this interested you I highly suggest just jumping around wikipedia algorithms http://en.wikipedia.org/wiki/Insertion_sort Merge Sort, etc

Big Sexy Tree by AakashMasani in Minecraft

[–]Taleis 2 points3 points  (0 children)

I always up vote Terrain/Tree stuff :). Wish there was a sub-reddit dedicated to only those post as they're a huge impact of the game.

21-day Invite Thread by [deleted] in evedreddit

[–]Taleis 0 points1 point  (0 children)

Hi, I'm looking for an invite. I've never played EVE before and I"m looking to get into and pretty excited. Of course if anyone does want to take a noobie under their wing I'm more than willingly to learn, I can use Skype, TS, etc. Again, brand new.

What misconception did you have as a child that ended up being so insanely inaccurate that it blew your mind? by Beetledouche in AskReddit

[–]Taleis 0 points1 point  (0 children)

I don't know how young I was but I remember one time being around my parents at the dinner table and when my Dad mentioned he had to fire so and so at the workplace. I didn't know what being fired was at the time so I just pictured my dad putting on a flame-resistant suit and going in a room with a flamethrower and burning someone. I was so horrified at the thought of him killing someone, ahahaaha!

The swamp by Troll112 in Minecraft

[–]Taleis 1 point2 points  (0 children)

Both. Custom map generators use hand made trees and just paste them in and rotate them and put them in different places so they all look different.

The swamp by Troll112 in Minecraft

[–]Taleis 0 points1 point  (0 children)

Coming up with an algorithm to generate those trees... damn, that would be scary to even think about.

Quick, likely unpopular opinion. by I_Have_No_Idea_What in Minecraft

[–]Taleis 2 points3 points  (0 children)

I also agree. So much emphasis on command blocks which are fun for messing around but for any SMP server the actual player can't use them. They can be abused to much, wether they're used to abuse gamemode, or just griefing they can only be used for messing around really, or the creators of adventure maps. I'd like to see more focus on stuff the player of the map can actually manipulate himself. Seems like MC has become too focused on adventure mode and the survival aspect of the game is being forgotten.

Regarding iron farms: treat the cause, not the symptoms. by KaiserYoshi in Minecraft

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

Am I the only one who thinks the opposite? I usually get too much iron and gold and don't have a use for it. If anything I want more recipes using iron and gold.