Board List | |
---|---|
Topic | How many genders are there? |
Sahuagin 05/04/17 9:40:21 PM #53 | IAmNowGone posted... sh0e's friend? Hes hot as fuck yeah. I can't even almost picture him as a female. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Is it wrong to name my kid 'Lucifer'? |
Sahuagin 05/04/17 9:09:20 PM #25 | name him Sue instead --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | What's your favorite movie? |
Sahuagin 05/04/17 9:07:39 PM #16 | Batman Begins tied with Watchmen --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | How many genders are there? |
Sahuagin 05/04/17 9:03:34 PM #51 | Lokarin posted... Dmitri, an f2m, is also very attractive do you mean Derrick, and am I once again the only one who knows what you're talking about? --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | You know what I hate about coding? |
Sahuagin 05/04/17 2:18:48 AM #32 | TheWorstPoster posted... If you want to call the same method repeatedly, but use different variables from other ones, and ones with different data types as well. well, there's method overloading, and default parameters. but it has to actually make sense to call your method with different data types. or you just write your method with broader data types, which is a good idea anyway. maybe you want something like generics. you can say public T DoSomething<T>(T somedata), where T can be any type, but whatever type it is, both the parameter and return value have to be that type. this is something you can only do with strong typing not weak typing. with weak typing you're left with public object DoSomething(object somedata) and then you can't know that the parameter matches the return value. a lot of what you do when you program should be about helping you to reason about your code. for example, seal classes that don't get inherited, not because you need to force them to be uninheritable, but because when you read "sealed class" or "final class", you instantly know it has no inheritors and limits the scope of what can be going on in your program. make fields readonly or final if you can, for the same reason. not because you need to force it to be readonly, but because when you know it's readonly there's less to think about. same with keeping things as private and local as possible. strong typing helps in this by allowing you to declare precisely what types it is that your code is valid to work with. if you constantly have to say "anything can be passed here, even though not really" that just makes it harder to reason about your code. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | You know what I hate about coding? |
Sahuagin 05/03/17 10:24:59 PM #28 | TheWorstPoster posted... But I am talking about something even more weakly typed than that, that can be a clone of any other existing variable, without declaring it other than a declaration of the method or class that is being called itself. if you're going for a CS degree you should have to take one or two low-level programming courses where you code in assembly and translate it into machine language, etc. you'll learn a lot about what all these programming constructs really are underneath. otherwise, I'm not sure what you mean. maybe you are talking about default parameters? "clone of anything without declaring it other than declaring it" doesn't make any sense to me. I guess it could be inheritance, or prototyping in javascript? --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | You know what I hate about coding? |
Sahuagin 05/03/17 10:17:23 PM #26 | TheWorstPoster posted... If I were to make a language, one of the main things I would do is I something I call "phantom variables". They would be variables of no type, and no value that exist only within a method, and can dynamically change to any existing variable type and value that gets passed directly to the method, while reverting back to its blank state once the code is done reading it. well like you said, in javascript there is almost no notion of "type". any variable can hold anything. VBScript is also like this. the "reason" they are like this is more or less just because they are simple scripting languages and aren't complex enough to have things like a static type system. (thinking in terms of implementing a compiler yourself, you should be able to notice that it's easier to do "there are some variables with some values, but who knows if they match" rather than "I know this variable has type X, and I know this value has type Y, therefore we should generate an error here about this type mismatch".) otherwise I'm not sure what you mean. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | You know what I hate about coding? |
Sahuagin 05/03/17 10:03:37 PM #24 | TheWorstPoster posted... Makes me wish Java was a weakly-typed language like JavaScript, although there may be a reason why it is strongly typed. you *want* strong typing (more correct to say "static typing") because then the compiler can tell you when something is wrong. what Java is really missing is type inference. Java is absurdly verbose, but it does make it a good language to learn on IMO. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | What fun games are you currently playing? (Preferably PC) |
Sahuagin 05/03/17 9:56:01 PM #52 | just started playing Kerbal Space Program. holy crap awesome game. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Longest romantic relationship? |
Sahuagin 04/29/17 1:01:25 PM #31 | like 1-2 weeks --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | WTF with the Ice Cream Orgy? |
Sahuagin 04/28/17 10:17:51 PM #2 | it's a little annoying that you watch the same videos that I do. I understand you but no one else does. although I guess they might have watched the episode. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | you ever look at yourself accidentally with the front camera or mirror and |
Sahuagin 04/28/17 10:09:49 PM #21 | StarReaper13 posted... I think I look fine in the mirror. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Do you believe most people are stupid? |
Sahuagin 04/28/17 9:45:06 PM #24 | I don't really like "stupid" as a label for people. something someone says can be stupid, but the person isn't. people are lazy and ignorant. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Potders: Do you remember September 11, 2011? |
Sahuagin 04/28/17 8:50:36 PM #11 | only in that it was the 10 year anniversary. I remember thinking how it barely made a difference that it was the 10th since they already talk about it every year anyway. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Looking for suggestions of simple RPGs that are available on PS3 / PSN / PC |
Sahuagin 04/27/17 2:33:24 AM #3 | Dungeon Siege is about as simple as it can possibly get while still being a good game. Whole game is based on the concept of "pick up the weapon of your choice and go use it". Starts off slow, though. Crashlands would almost be great, since it's colorful, fun, and simple, with a little bit of RPG elements, but it does have a fair bit of text. Might and Magic X is great, just straight up classic RPGing and is pretty simple. Does require reading (and maybe writing...) to know where to go to advance your skills. (for some reason I thought you specifically said on Steam... I see you did list PC though, so still barely relevant.) --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | I honestly wish I could take on a Batman-esque role and take on criminal scum. |
Sahuagin 04/27/17 2:16:08 AM #2 | I think the most important thing to have IRL would be some form of omniscience. You could do a LOT of good if you only knew where and when to be, and what was needed. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | I guess I never really thought about what pudding is before now |
Sahuagin 04/27/17 2:04:14 AM #7 | Bugmeat posted... Tapioca is the best of the puddings. maybe except for every variety of Chocolate, Caramel, Butterscotch, and Vanilla --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Question for Video Game experts: How did Nintendo fall behind? |
Sahuagin 04/26/17 12:05:15 AM #36 | Zeus posted... You don't need a ton of tech to have good games. In fact, the tech race is generally a race to the bottom where bloated graphical budgets take away from good gameplay. well, you need enough processing power so that every time the dev tries to do something interesting and innovative it doesn't just end up bogging the whole system down. a lot of games from the last gen are designed from start to finish around performance bottlenecks, with every single area fine-tuned to death just so that it'll run. (ex: doom 3 VS doom 2016) --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Sneaky Ninja, a bad version of Settlers of Catan, and Bible Adventure on Steam |
Sahuagin 04/26/17 12:00:22 AM #22 | hmmm I made Snowflakes. Sneaky Ninja is probably better. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Do you consider yourself a healthy eater? |
Sahuagin 04/25/17 8:58:57 PM #30 | no I'm too "lazy" --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | i hate when you go to bed fine and wake up sick in the middle of the night |
Sahuagin 04/25/17 3:05:32 AM #31 | I don't recall that ever happening with a cold. one time though that happened with a stomach flu. woke up right out of a deep sleep with a stabbing pain in my gut. the next 48 hours or so were pretty horrific. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | What fun games are you currently playing? (Preferably PC) |
Sahuagin 04/25/17 1:37:03 AM #28 | Stellaris, which is apparently a mostly complete game now finally. also Trails in the sky SC Turok 2 Torment: EE --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | lol face app, old, young, and female Koga inside. |
Sahuagin 04/24/17 9:28:10 PM #34 | KogaSteelfang posted... IAmNowGone posted...Howd u get long hair? I dont have that option just a guess, but I suspect it's choosing a similar picture and doing like a 20% merge with it or something, in order to achieve the effect. would explain the hair coming from nowhere and young mead being black. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | OguriSamas Vacation Count down topic! |
Sahuagin 04/24/17 9:10:27 PM #34 | Ogurisama posted... As in sales, cell phones ah ok --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Dark, milk or white chocolate? |
Sahuagin 04/24/17 8:43:57 PM #28 | dark and milk are both awesome in their own way white is garbage --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | OguriSamas Vacation Count down topic! |
Sahuagin 04/24/17 8:38:55 PM #32 | Ogurisama posted... I work retail XD does that mean like, cashier? and/or shelf stocker? or like assistant manager? --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | The average human IQ is going down |
Sahuagin 04/23/17 8:26:40 PM #23 | green dragon posted... The average human iq will always be 100 this, IQ is already defined as average intelligence, it doesn't go up or down --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | So I started playing FFX... |
Sahuagin 04/23/17 5:31:43 PM #50 | snae99 posted... This wedding sequence seemed so unnecessary. Also Seymour has to be one of the lamest villains in Final Fantasy. yes and yes --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | OguriSamas Vacation Count down topic! |
Sahuagin 04/23/17 4:10:09 PM #28 | what's your job, if you don't mind telling us, that you take so many vacations? --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | If you stick your head out your car window, WHO are you SCARING??? |
Sahuagin 04/23/17 3:48:54 PM #11 | I think he means that in a bout of roadrage, a man might stick his head out the window to yell forward at the car in front, but that inverse to his expectation, the driver behind him will actually be the one most affected by his actions. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | oh, shit, you have to ENABLE spellcheck in chrome? |
Sahuagin 04/23/17 1:44:35 AM #4 | I feel like spellcheck should be a part of the O/S like copy and paste, and it should be on-demand, not automatic (maybe with a setting somewhere if you do want it auto). I don't need to be told a million times over that certain non-standard words are incorrect. but if I type a long enough block of text and would like to check it for errors, then I should just hit ctrl-k or something (o/s standard) and have the text in the active control analyzed. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | This 20 y/o Kid was fined $125 for WARMING UP his Car and LOSES the Appeal!!! |
Sahuagin 04/22/17 1:31:55 PM #6 | -6C? if it was -20C or under, ok, but -6C is nothing. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Have you seen the movie Freejack? |
Sahuagin 04/21/17 9:47:39 PM #2 | yes. barely remember it though, besides what happens in the beginning, and the fact that it had Mick Jagger. actually I think of this movie almost every time I see a racing car's wheel. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Question for Video Game experts: How did Nintendo fall behind? |
Sahuagin 04/21/17 9:33:43 PM #33 | they're obsessed with novelty instead of good games. or put another way, they're obsessed with hardware innovation instead of software (game) innovation. the problem is, hardware is peaking, more or less. now is the time to go full-on with software innovation, but you need a powerful enough system to do it with, and you need to promote games and game development. stop wasting time and money on hardware R&D and focus on software. we should be drowning in a Nintendo sea of gaming innovation, which is what the SNES was like and why it was so good, but that sure isn't how things are now... --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Canada declares net neutrality a fundamental right |
Sahuagin 04/21/17 9:13:11 PM #2 | we did? that's surprisingly rational of us... --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | In retrospect, which was the better console - Playstation or Nintendo 64? |
Sahuagin 04/21/17 9:04:19 PM #42 | I voted PS, but really, most or all of the games that I assume are better than N64 games I haven't even played. N64 is definitely clunkier, though. favorite N64 games include: Blast Corps Body Harvest DK64 Doom 64 F-Zero Goldeneye I guess JFG KI:G OoT Pilotwings 64 SM64 I guess Mario Kart I guess Star Fox I guess (not really) Space Station Silicon Valley Tetrisphere Wave Race Top Gear Rally Turok games great thing about N64 was that it was actually experimenting with what you could do in 3D. the games were simple and clunky but often pretty innovative. way more innovative than what motion controls gave us. favorite PS games include: Crash Bandicoot 1 and 2 FFT maybe Harvest Moon FF7 and 9 I guess --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | is zero an even number? |
Sahuagin 04/20/17 8:41:24 PM #41 | FalinmerTheil posted... Well, 3 is divisible by 2, it equals 1.5 that is not what "is divisible by" means --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/20/17 8:03:52 PM #217 | SKARDAVNELNATE posted... it seems that you both believe the result of one coin does impact on the probability of the other coins past coin flips do not affect future coin flips, but partial information does impact what we can say we know about past coin flips. otherwise, we'd have to say that the chance is actually only 0% or 100%; it either happened or it didn't. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/19/17 10:49:28 PM #200 | well, then I strongly recommend reading an intro to probability book of some kind --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/19/17 10:35:08 PM #198 | SKARDAVNELNATE posted... 2 boys - 1/3 so you ARE saying that the chance of flipping two heads on two flips is 33%... --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/19/17 10:16:18 PM #196 | SKARDAVNELNATE posted... Chance of GG - 50% I mean in a regular scenario. not excluding BB, what are the odds? what are the odds of BB and GG relative to BG and GB? here you are saying that the odds of BG and GB are equal to GG by itself. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/19/17 10:12:31 PM #194 | you're obviously trolling us mr ? block SKARDAVNELNATE posted... BG or GB - 50% this implies that chance of GG, BB, and BG/GB are equal, so chance of flipping two heads on two flips is apparently 33% now... and chance of BG distinct from GB is 16.5%? this isn't even close to correct. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | PSA: steaming is the best way to cook eggs in the shell |
Sahuagin 04/19/17 9:24:53 PM #6 | how is it faster than boiling? does the steam not come from boiling water? --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Help me understand your reasoning in solving the following easy problem |
Sahuagin 04/19/17 8:38:06 PM #189 | the individuals are not what matters, what matters is the events. BG and GB are different because they are different outcomes of two events. this is extremely basic statistics and probability. SKARDAVNELNATE posted... If order matters for BG and GB then it also matters for GG and GG. even if you consider G1G2 to be different from G2G1 (as if that makes any sense), you would *still* have to cut the odds in half. GG, BG, GB, and BB each hold 25% of the odds, period. if you think GB and BG are the same, then it gets 50%. If you think G1G2 (whatever that means) is different from G2G1, then they each get 12.5% odds. otherwise, the pictures you're painting don't even add up to 100% odds. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | What's wrong with La Croix? |
Sahuagin 04/18/17 8:30:26 PM #18 | some say just carbonation is bad for you, others say it's actually good for you --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Which is your favorite Marvel character? |
Sahuagin 04/18/17 2:23:22 AM #7 | Magneto --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Suggestions for good horror movies? (Storyline over actual horror) |
Sahuagin 04/17/17 11:59:15 PM #3 | funkyfritter posted... The Cabin in the Woods yes and yes --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Has anyone ever had heart palpitations from anxiety before? |
Sahuagin 04/15/17 12:15:44 PM #29 | I think Lokarin has that issue. you can have a feedback loop where anxiety gives you heart palpitations, and heart palpitations give you anxiety. for me, I just get it I think when I have too much food and/or sugar before bed. it doesn't give me anxiety, it just makes it hard or impossible to sleep. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Are you planning on seeing the last jedi? |
Sahuagin 04/15/17 2:28:14 AM #16 | I didn't like the Force Awakens trailer and didn't expect to like the movie much but I liked it a lot more than I expected, and now I do actually like this trailer, so yeah I'll definitely be watching it. --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Topic | Currently in a nasty heavy snowstorm that is knocking out power and Internet |
Sahuagin 04/15/17 1:35:15 AM #10 | Doctor Foxx posted... Spring just means a little *more* snow than winter. March (and to some degree April) can be the snowiest month, depending where you live. (not sure if it's Calgary, or Alberta; reading about it, it might be "stuff east of the rockies" in general) --- The truth basks in scrutiny. http://i.imgur.com/GMouTGs.jpg http://projecteuler.net/profile/Sahuagin.png |
Board List |