Message from @godric

Discord ID: 541098056007811072


2019-01-02 22:24:18 UTC  

Ok @ThisIsChris . Hmm. Well, we'll see what happens. I teach web dev anyway, so this program isn't terribly expensive as a form of professional development.

2019-01-02 22:29:47 UTC  

Another thing to consider: In my current position my salary isn't likely to grow much, if at all. Meanwhile, the salaries as a web dev _start_ maybe a bit below what I make now and grow far above whatever I'll ever make in my current employment.

2019-01-02 22:53:15 UTC  

@NuclearReactionary yes, also with respect to you pointing out you teach at a private school, I see what you mean. Private school teaching, afaik from my dad, doesn't compensate nearly as much.

2019-01-14 03:19:52 UTC  

$142,000 avg salary in San Jose, CA
$143,000 avg annual rent for 1br apartment in San Jose, CA

2019-01-14 03:19:57 UTC  

πŸ˜›

2019-01-14 03:20:31 UTC  

@Tanner - SC The Bay is bananas!

2019-01-14 03:24:21 UTC  

BS! A 12k/month apartment?! That’s not an avg apartment!

2019-01-14 03:26:23 UTC  

Last time I was out there, a small 2 bedroom ranch outside the city was ~$800k

2019-01-20 06:06:54 UTC  

@micbwilli what do you think of "the singularity" and brain emulation? I was talking to a friend about it earlier today.

2019-01-20 06:12:12 UTC  

I listened to Kaczynski manifesto on the progress of man and industrialization. I got 2 big take aways from it.

You can't end the progress due to an inability to make a simultaneous revolutionary impact.

Who controls and builds the last machine brain build by a man will ever build might decide if human existence continues.

2019-01-20 06:20:15 UTC  

@micbwilli 😒 scary stuff

2019-02-02 03:21:15 UTC  

Does anyone have any experience with visual basic and the correct way to save a project's files? Gotta love putting in extra hours at school just to get a zero on something because it didn't save properly... 😑

2019-02-02 03:21:58 UTC  

<@&387091385075105804> <@&435155896780324864> ?

2019-02-02 03:22:03 UTC  

^

2019-02-02 03:22:23 UTC  

Did you get any feedback on what was wrong with your submission

2019-02-02 03:23:41 UTC  

"does not have all project files to run the program"

2019-02-02 03:24:05 UTC  

Using visual studio?

2019-02-02 03:24:54 UTC  

Yup

2019-02-02 03:26:38 UTC  

I've never used vb, but you'll want to include all of the cls, frm, and bas files as well as the visual studio project file (maybe .sln). If you want to test it, move the whole thing to a different folder and see if it runs. That'll help you understand all the files you need.

2019-02-02 03:27:03 UTC  

I basically need to know how to save both the design and code files and then put them in a .zip file.

2019-02-02 03:30:29 UTC  

To make a zip file, select all the files you want, right click -> send to -> compressed folder

2019-02-02 03:30:54 UTC  

The files should all be saved all ready in your project folder

2019-02-22 20:39:14 UTC  

Do we have any actuaries or CFAs in here?

Pic somewhat related. I want to work with him.

https://cdn.discordapp.com/attachments/387059792432201729/548604706436677643/Screenshot_20190222-133452_Samsung_Internet.jpg

2019-02-23 05:52:52 UTC  
2019-02-23 06:42:42 UTC  

πŸ˜‚

2019-02-24 03:34:53 UTC  

okay can someone help me with this?

2019-02-24 03:35:13 UTC  

Determine which books cost less than the average cost of books in the same category.List the title, the category, and the cost of these books.

2019-02-24 03:35:24 UTC  

apparently this is the answer, but I don't really get it

2019-02-24 03:35:42 UTC  

```SQL
SELECT a.title, b.category, a.cost
FROM books a,
(SELECT category, AVG(cost) averagecost
FROM books
GROUP BY category) b
WHERE a.category = b.category
AND a.cost < b.averagecost;
```

2019-02-24 03:39:19 UTC  

I see no numbers

2019-02-24 03:39:34 UTC  

it's not a math question

2019-02-24 03:39:39 UTC  

it's just SQL

2019-02-24 03:39:53 UTC  

oh ya I forgot to tag <@&435155896780324864>

2019-02-24 04:08:38 UTC  

I ended up writing my own solution like this

2019-02-24 04:09:39 UTC  

```SQL
SELECT BOOKS.Title, BOOKS.Category, BOOKS.Cost
FROM BOOKS, (SELECT BOOKS.Category, AVG(BOOKS.Cost) AverageCost
FROM BOOKS
GROUP BY BOOKS.Category) AverageCosts
WHERE BOOKS.Category = AverageCosts.Category
AND BOOKS.Cost < AverageCosts.AverageCost
```

2019-02-24 04:09:57 UTC  

idk if the first one is better

2019-02-24 04:10:12 UTC  

mine feels less convoluted

2019-02-24 04:26:18 UTC  

@Jacob I agree yours is less convoluted that the first one, but I would do
```sql
SELECT Title, Category, Cost FROM
(
BOOKS
INNER JOIN
(
SELECT Category, AVG(Cost) as avg_cost FROM
BOOKS GROUP BY Category
)
)
WHERE Cost < avg_cost
```

2019-02-24 04:26:59 UTC  

haha wow that's a lot less

2019-02-24 04:27:39 UTC  

I think our teacher wants us to get practice with subqueries on this assignment, though

2019-02-24 04:28:27 UTC  

@Jacob well the avg cost part is calculated with a subquery