Bounty Head Bebop Comlink

Please login or register.

Login with username, password and session length
Advanced search  

News:

BountyHeadBebop.com | BHB Hardcopy Available at IPR | BHB Products Now Available On-Site | Free Preview Here | GenCon 2015!

Pages: 1 ... 18 19 20 [21] 22 23   Go Down

Author Topic: Community Conversation  (Read 476215 times)

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1000 on: December 05, 2016, 06:34:31 pm »



Well, I'm not dead . . . just a Ghost in the Machine.

This is some strange cross between pseudocode and python and it's making me sad and happy accordingly.

Is this better?

import math

sex = input("Enter the quality of your character ('h' for decent human, 'r' for rapist): ")

exams = 10
alcohol = 7
plotted_plants = 10**20

if sex == 'h':
    college_debt = ((3/2)*exams + math.sqrt(alcohol)) * math.pi ** plotted_plants
    print(college_debt)
elif sex == 'r':
    college = False
    jail = True
    print("You might want to reconsider your life choices . . . also, don't drop the soap . . .")

Logged
Let's agree that I suck at commitment.

betaband

  • Bounty Head
  • **
  • Posts: 121
    • View Profile
Re: Community Conversation
« Reply #1001 on: December 05, 2016, 09:32:12 pm »

Well, I'm not dead . . . just a Ghost in the Machine.

Is this better?

import math

sex = input("Enter the quality of your character ('h' for decent human, 'r' for rapist): ")

exams = 10
alcohol = 7
plotted_plants = 10**20

if sex == 'h':
    college_debt = ((3/2)*exams + math.sqrt(alcohol)) * math.pi ** plotted_plants
    print(college_debt)
elif sex == 'r':
    college = False
    jail = True
    print("You might want to reconsider your life choices . . . also, don't drop the soap . . .")


No error handling.

import math

sex = input("Enter the quality of your character ('h' for decent human, 'r' for rapist): ")

exams = 10
alcohol = 7
plotted_plants = 10**20

if sex == 'h':
    college_debt = ((3/2)*exams + math.sqrt(alcohol)) * math.pi ** plotted_plants
    print(college_debt)
elif sex == 'r':
    college = False
    jail = True
    print("You might want to reconsider your life choices . . . also, don't drop the soap . . .")
else:
    print("You just had to be special didn't you")

Logged
"But I'm no super-genius! Or are I?"- Homer Simpson.

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1002 on: December 05, 2016, 10:21:57 pm »

Still weird that college is either a boolean or a number! But we're making progress.
Logged

Malkalack

  • Bounty Head
  • **
  • Posts: 241
  • Prolific shitposter
    • View Profile
Re: Community Conversation
« Reply #1003 on: December 05, 2016, 10:47:41 pm »

prompt('Hello world!')

Logged
doot doot thank mr skeltal

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1004 on: December 05, 2016, 10:51:34 pm »

Still weird that college is either a boolean or a number! But we're making progress.

Just one beautiful feature of python: variables are not declared any particular type  :D
Logged
Let's agree that I suck at commitment.

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1005 on: December 05, 2016, 11:41:12 pm »

Just one beautiful feature of python: variables are not declared any particular type  :D

Yes, but it's still good practice to use them consistently unless you have a really good reason to not. Especially because boolean resolution will resolve the first case to True.

btw Python is the best. I wish I could use it all of the time.
« Last Edit: December 05, 2016, 11:58:00 pm by 3J »
Logged

Not Aman

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 16139
  • Bagdhaddy
    • View Profile
Re: Community Conversation
« Reply #1006 on: December 06, 2016, 12:29:34 am »

Fuekn comp scis
Logged

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1007 on: December 06, 2016, 12:32:32 am »

Fuekn comp scis

Just locked down a couple of internships so clearly I am now the best computer scientist of all time.
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1008 on: December 06, 2016, 01:29:46 am »

Just locked down a couple of internships so clearly I am now the best computer scientist of all time.

congratulations!

Fuekn comp scis

I'm an electrical engineering student, thank you.
Logged
Let's agree that I suck at commitment.

killa_robot

  • Veteran Cowboy
  • *****
  • Posts: 5597
    • View Profile
Re: Community Conversation
« Reply #1009 on: December 06, 2016, 09:24:52 am »

Just one beautiful feature of python: variables are not declared any particular type  :D

Lazy bastard!

Just locked down a couple of internships so clearly I am now the best computer scientist of all time.

I thought you were going for biology and physics (I think) and that comp science was an extra thing you were doing on the side?
« Last Edit: December 06, 2016, 09:28:30 am by killa_robot »
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1010 on: December 06, 2016, 11:01:34 am »

Lazy bastard!

Well, you know how the old flippant saying goes:

day = ['monday', 'tuesday', 'wensday', 'thursday', 'friday', 'saturday', 'sunday']

for d in day:
     if d.index('y') == len(d) - 1:
          kwism1127 = 'Lazy'
Logged
Let's agree that I suck at commitment.

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1011 on: December 06, 2016, 02:11:51 pm »

Lazy bastard!

I thought you were going for biology and physics (I think) and that comp science was an extra thing you were doing on the side?

I graduated with a degree in Biology and I'm doing a second (abbreviated) bachelor's in computer science now. It's a cool program, 20 months + any internships you get and you get a full bachelor's degree, but you can't enroll unless you already have one.

The program has been excellent and I've managed to snag some pretty plum internships largely because the teaching has been super exceptional.

Quote
I'm an electrical engineering student, thank you.

EEs are so impressive. You guys are often pretty close to as good at coding, and you have a wealth of other talents.

Quote
day = ['monday', 'tuesday', 'wensday', 'thursday', 'friday', 'saturday', 'sunday']

One of which is definitely not spelling.
« Last Edit: December 06, 2016, 02:19:03 pm by 3J »
Logged

Forge

  • BHB Titan
  • Legendary Cowboy
  • *****
  • Posts: 6953
    • View Profile
Re: Community Conversation
« Reply #1012 on: December 06, 2016, 03:09:47 pm »

Perfect training for running continent 3!
Logged

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1013 on: December 06, 2016, 03:49:00 pm »

Perfect training for running continent 3!

xD
Logged

killa_robot

  • Veteran Cowboy
  • *****
  • Posts: 5597
    • View Profile
Re: Community Conversation
« Reply #1014 on: December 06, 2016, 04:52:06 pm »

I graduated with a degree in Biology and I'm doing a second (abbreviated) bachelor's in computer science now. It's a cool program, 20 months + any internships you get and you get a full bachelor's degree, but you can't enroll unless you already have one.

The program has been excellent and I've managed to snag some pretty plum internships largely because the teaching has been super exceptional.

Ah, cool. Is your plan to use both degrees once graduated then, or has your focus just sort of shifted as time went on?
Logged

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1015 on: December 06, 2016, 05:16:37 pm »

Ah, cool. Is your plan to use both degrees once graduated then, or has your focus just sort of shifted as time went on?

It would be cool to work for a medical startup at some point, but I want to get super good first and I'm not sure it will ever happen. Mostly, I just realized that I'd probably be a below average med student and average-ish doctor and I could be relatively better in computer science... and it's super fun. I never wanted to do research or grad-school so there weren't any other career options in bio.
Logged

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1016 on: December 06, 2016, 05:17:16 pm »

Also the prospects and salary in CS are undeniably attractive.
Logged

killa_robot

  • Veteran Cowboy
  • *****
  • Posts: 5597
    • View Profile
Re: Community Conversation
« Reply #1017 on: December 06, 2016, 05:43:27 pm »

Agreed that it's fun and the west coast is pretty hot job wise right now. Since you've got internships you're pretty much golden as well, so it's not a bad call at all.
Logged

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1018 on: December 06, 2016, 05:52:54 pm »

Agreed that it's fun and the west coast is pretty hot job wise right now. Since you've got internships you're pretty much golden as well, so it's not a bad call at all.

Yeah, my first will be in Vancouver, and my second will be in California, and then after that, I'll finally finish school. I'll be turning 26 when I finally graduate... that's technically enough time to have gotten a PhD :/
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1019 on: December 06, 2016, 10:20:35 pm »

I graduated with a degree in Biology and I'm doing a second (abbreviated) bachelor's in computer science now. It's a cool program, 20 months + any internships you get and you get a full bachelor's degree, but you can't enroll unless you already have one.

The program has been excellent and I've managed to snag some pretty plum internships largely because the teaching has been super exceptional.

EEs are so impressive. You guys are often pretty close to as good at coding, and you have a wealth of other talents.

One of which is definitely not spelling.

Obviously my spelling is my most attractive feature Thank you, and a double degree is nothing to scoff at either!

Yeah, my first will be in Vancouver, and my second will be in California, and then after that, I'll finally finish school. I'll be turning 26 when I finally graduate... that's technically enough time to have gotten a PhD :/

PhD's aren't always as good as advertised, a engineer is often better off with a Masters instead (Unless they're interested in research, that is).
« Last Edit: December 06, 2016, 10:23:28 pm by kwism1127 »
Logged
Let's agree that I suck at commitment.

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1020 on: December 06, 2016, 10:25:39 pm »

Obviously my spelling is my most attractive feature Thank you, and a double degree is nothing to scoff at either!

PhD's aren't always as good as advertised, a engineer is often better off with a Masters instead (Unless they're interested in research, that is).

Engineers are weird. In most fields, a PhD is definitely more attractive. Especially if you want to do data science right now.
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1021 on: December 07, 2016, 11:27:01 am »

Engineers are weird.

Accurate, oh so accurate.

In most fields, a PhD is definitely more attractive. Especially if you want to do data science right now.

Depends, it's all about if the employer believes they need a PhD level employee. They don't want to pay a PhD more to do a job a Masters would do for less (The cynicism is real).
Logged
Let's agree that I suck at commitment.

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1022 on: December 07, 2016, 01:47:15 pm »

Depends, it's all about if the employer believes they need a PhD level employee. They don't want to pay a PhD more to do a job a Masters would do for less (The cynicism is real).

Definitely true. I totally mis-spoke. There's a TON of data science jobs, even for skilled people with no education at all, because companies are desperate. I was speaking more about the really exciting ones like Brain, Deepmind, OpenAI and Facebook. Even Facebook Data Science INTERNS have PhDs now (I looked into trying to do a partially software partially data science internship but they said no).
Logged

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1023 on: December 07, 2016, 09:20:04 pm »

What a strangely compelling series of posts I just read. I don't have anything really to add to it, other than it was a nifty little thought-trip.
Logged

betaband

  • Bounty Head
  • **
  • Posts: 121
    • View Profile
Re: Community Conversation
« Reply #1024 on: December 07, 2016, 10:39:43 pm »

http://chooseyourstory.com/Member/?Username=Wigglewigglewiggle

If there was any proof that we needed to get rid of the RP section of the site lmao.
Logged
"But I'm no super-genius! Or are I?"- Homer Simpson.

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1025 on: December 08, 2016, 12:19:45 am »

http://chooseyourstory.com/Member/?Username=Wigglewigglewiggle

Do they want me to assume their gender! I'm insulted for them!

. . . on a slightly more serious note, that profile does sort of remind me of the kind of thing one of my high school 'acquaintances' would write . . . God I hope it's not him . . .
Logged
Let's agree that I suck at commitment.

Arthesul

  • BHB Titan
  • Professional
  • *****
  • Posts: 955
  • Flying bears, now THAT'S a scary thought!
    • View Profile
Re: Community Conversation
« Reply #1026 on: December 08, 2016, 01:01:49 pm »

https://boardgamegeek.com/boardgame/8279/death-angel

I think it's free... I want to read and run this as soon as I get on a computer that can open .zips!
Logged
Shitty shitters shit shitty shits shittily shitting shittier shits.
See? Fark isn't the only word you can make a sentence out of!

Drakilian

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 18543
    • View Profile
Re: Community Conversation
« Reply #1027 on: December 08, 2016, 03:56:48 pm »

All computers can open zip files. Download archiver or something
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1028 on: December 08, 2016, 04:47:11 pm »

I've never seen a computer that couldn't extract a ZIP file . . . What are you using to post?
Logged
Let's agree that I suck at commitment.

killa_robot

  • Veteran Cowboy
  • *****
  • Posts: 5597
    • View Profile
Re: Community Conversation
« Reply #1029 on: December 08, 2016, 04:51:58 pm »

Maybe he's on a phone?
Logged

Arthesul

  • BHB Titan
  • Professional
  • *****
  • Posts: 955
  • Flying bears, now THAT'S a scary thought!
    • View Profile
Re: Community Conversation
« Reply #1030 on: December 08, 2016, 05:02:22 pm »

I've never seen a computer that couldn't extract a ZIP file . . . What are you using to post?

I'm using a regular computer, it just doesn't have Zip openers and I'm borrowing it for writing and schoolwork, so I don't want to download things on it simply because that's not something you just do on a guy's computer.
Logged
Shitty shitters shit shitty shits shittily shitting shittier shits.
See? Fark isn't the only word you can make a sentence out of!

3J

  • Mob Boss
  • *****
  • Posts: 1058
    • View Profile
Re: Community Conversation
« Reply #1031 on: December 08, 2016, 06:42:54 pm »

I'm using a regular computer, it just doesn't have Zip openers and I'm borrowing it for writing and schoolwork, so I don't want to download things on it simply because that's not something you just do on a guy's computer.

I am dubious about this "computer".
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1032 on: December 08, 2016, 08:05:01 pm »

I don't want to download things on it simply because that's not something you just do on a guy's computer.

I think we can all agree on that.

I am dubious about this "computer".

""Computer,"" it requires an additional set of quotes because I am especially dubious about it.
Logged
Let's agree that I suck at commitment.

Forge

  • BHB Titan
  • Legendary Cowboy
  • *****
  • Posts: 6953
    • View Profile
Re: Community Conversation
« Reply #1033 on: December 08, 2016, 09:06:41 pm »

actually my most recent laptop came without any zip opening software. ofc I downloaded one as soon as I needed it...
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1034 on: December 08, 2016, 11:38:01 pm »

actually my most recent laptop came without any zip opening software. ofc I downloaded one as soon as I needed it...

First the CD drives, now this? Justice demands retribution!
Logged
Let's agree that I suck at commitment.

killa_robot

  • Veteran Cowboy
  • *****
  • Posts: 5597
    • View Profile
Re: Community Conversation
« Reply #1035 on: December 09, 2016, 12:04:49 am »

You guys sure you're talking about zip folders? Because that's been a native part of windows since 7.

Though you could be using linux or something I suppose.
Logged

Drakilian

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 18543
    • View Profile
Re: Community Conversation
« Reply #1036 on: December 09, 2016, 05:51:48 am »

You guys sure you're talking about zip folders? Because that's been a native part of windows since 7.

Though you could be using linux or something I suppose.

Doesn't come on older apple computers either (older as in <2013), I think.

It's one of the most harmless things you can download though, really. You'd be doing the guy a favour at that point.
Logged

kwism1127

  • Small Fry
  • Posts: 39
    • View Profile
Re: Community Conversation
« Reply #1037 on: December 14, 2016, 01:20:24 am »

Geez, I leave for a few days and no new messages? For shame! (Who needs to study for finals anyway?)
Logged
Let's agree that I suck at commitment.

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1038 on: December 14, 2016, 10:16:58 am »

At this point, it looks like things won't start here till after the holidays.

I should have regular internet back before then, but will be busy throughout.

Following new years though, I will be ready to start disciples back up. :)
Logged

Drakilian

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 18543
    • View Profile
Re: Community Conversation
« Reply #1039 on: December 14, 2016, 10:55:03 am »

Linear final Friday, followed by a week of straight parties to unwind then Christmas ans New Years. When I wake up from my substance induced haze of merriment and begin rebuilding my ruined mind and body I shall rejoin Ye all for some sweet sweet roleplaying, my beloved third family!
Logged

King Playa

  • Mob Boss
  • *****
  • Posts: 1001
  • Fark 12
    • View Profile
Re: Community Conversation
« Reply #1040 on: December 14, 2016, 12:26:51 pm »

Linear final Friday, followed by a week of straight parties to unwind then Christmas ans New Years. When I wake up from my substance induced haze of merriment and begin rebuilding my ruined mind and body I shall rejoin Ye all for some sweet sweet roleplaying, my beloved third family!

Pass out on your side and drink one for me!
Logged
What do you call a black guy in the hood? A stereotype you racist bastard!

Forge

  • BHB Titan
  • Legendary Cowboy
  • *****
  • Posts: 6953
    • View Profile
Re: Community Conversation
« Reply #1041 on: December 14, 2016, 01:41:38 pm »

I'm also finally getting over my plague! So I'll be up and running at maximum again by the weekend :)
Logged

Not Aman

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 16139
  • Bagdhaddy
    • View Profile
Re: Community Conversation
« Reply #1042 on: December 14, 2016, 03:41:12 pm »

existence is pain and math is hard
Logged

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1043 on: December 15, 2016, 04:00:25 pm »

And you can use math to explain the pain of existence - Win Win! ;D
Logged

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1044 on: December 15, 2016, 04:01:55 pm »

One more trip to PA and I am so done with that place!
Logged

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1045 on: December 21, 2016, 11:04:25 am »

Yep, just one more Trip. Blarg blarg flargan!
Logged

Not Aman

  • Global Moderator
  • BHB Superstar
  • *****
  • Posts: 16139
  • Bagdhaddy
    • View Profile
Re: Community Conversation
« Reply #1046 on: December 21, 2016, 12:12:01 pm »

U can do it
Logged

Forge

  • BHB Titan
  • Legendary Cowboy
  • *****
  • Posts: 6953
    • View Profile
Re: Community Conversation
« Reply #1047 on: December 21, 2016, 12:14:05 pm »

you're almost done BZ!
Logged

BerkaZerka

  • Administrator
  • BHB Magistrate
  • *****
  • Posts: 20609
    • View Profile
Re: Community Conversation
« Reply #1048 on: December 23, 2016, 08:18:20 pm »

Might be done with this by next Friday. Lord help us!
Logged

Patar

  • Small Fry
  • Posts: 17
    • View Profile
Re: Community Conversation
« Reply #1049 on: December 24, 2016, 01:22:15 am »

I hope you guys have Happy Holidays. Merry Christmas/Happy Sunday for the irreligious.

On another note, my cat died a few days ago. He was a smart farker. Pretty sure he spoke dog. I've been celebrating his life with lots of bourbon.
« Last Edit: March 05, 2017, 12:06:44 am by Patar »
Logged
Pages: 1 ... 18 19 20 [21] 22 23   Go Up