Lurker > Sahuagin

LurkerFAQs, Active DB, Database 1 ( 03.09.2017-09.16.2017 ), DB2, DB3, DB4, DB5, DB6, DB7, DB8, DB9, DB10, DB11, DB12, Clear
Board List
Page List: 1 ... 6, 7, 8, 9, 10, 11, 12
TopicHow 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.
---
TopicIs it wrong to name my kid 'Lucifer'?
Sahuagin
05/04/17 9:09:20 PM
#25
name him Sue instead
---
TopicWhat's your favorite movie?
Sahuagin
05/04/17 9:07:39 PM
#16
Batman Begins tied with Watchmen
---
TopicHow 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?
---
TopicYou 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.
---
TopicYou 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?
---
TopicYou 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.
---
TopicYou 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.

I am going to dual-major in Computer Science, in addition to CITS (which the latter I am already taking), so I will get to learn the reason why languages must be strongly typed or weakly typed (with my guess being that scripting languages take up far less memory than anything else, due to the browser compiling everything, so it can keep all of those 0 values in binary).


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.
---
TopicWhat 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.
---
TopicLongest romantic relationship?
Sahuagin
04/29/17 1:01:25 PM
#31
TopicWTF 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.
---
Topicyou 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 front camera on the other hand...

---
TopicDo 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.
---
TopicPotders: 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.
---
TopicLooking 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.)
---
TopicI 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.
---
TopicI 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
---
TopicQuestion 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)
---
TopicSneaky 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.
---
TopicDo you consider yourself a healthy eater?
Sahuagin
04/25/17 8:58:57 PM
#30
Topici 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.
---
TopicWhat 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
---
Topiclol 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

Mine did it automatic when I clicked it to the female one.
*shrug*

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.
---
TopicOguriSamas Vacation Count down topic!
Sahuagin
04/24/17 9:10:27 PM
#34
Ogurisama posted...
As in sales, cell phones

ah ok
---
TopicDark, 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
---
TopicOguriSamas 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?
---
TopicThe 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
---
TopicSo 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
---
TopicOguriSamas 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?
---
TopicIf 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.
---
Topicoh, 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.
---
TopicThis 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.
---
TopicHave 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.
---
TopicQuestion 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...
---
TopicCanada declares net neutrality a fundamental right
Sahuagin
04/21/17 9:13:11 PM
#2
we did? that's surprisingly rational of us...
---
TopicIn 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
---
Topicis 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
---
TopicHelp 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.
---
TopicHelp 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
---
TopicHelp 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
1 each - 1/3
2 girls - 1/3

so you ARE saying that the chance of flipping two heads on two flips is 33%...
---
TopicHelp 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%
Chance of BG or GB - 50%
Chance of BB - 0%

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.
---
TopicHelp 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%
GG - 50%
50 + 50 = 100

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.
---
TopicPSA: 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?
---
TopicHelp 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.
---
TopicWhat'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
---
TopicWhich is your favorite Marvel character?
Sahuagin
04/18/17 2:23:22 AM
#7
TopicSuggestions for good horror movies? (Storyline over actual horror)
Sahuagin
04/17/17 11:59:15 PM
#3
funkyfritter posted...
The Cabin in the Woods
The Thing

yes and yes
---
TopicHas 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.
---
TopicAre 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.
---
TopicCurrently 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)
---
Board List
Page List: 1 ... 6, 7, 8, 9, 10, 11, 12