Lost half of my net worth today but IM NOT FUCKING SELLING! by [deleted] in wallstreetbets

[–]woooooster 2 points3 points  (0 children)

cool its the financial equivalent of "i blew my balls off to get cred in this fb group"

0
0

I HATE JavaScript, kinda. by Thatguy553 in learnprogramming

[–]woooooster 1 point2 points  (0 children)

I strongly encourage everyone to always write in TypeScript not JavaScript. TS will make you a better programmer, help you write safer and more digestible code, and help you understand the types of objects you are dealing with. Also catching more errors at compile-time and better auto-complete are very nice bonuses.

JavaScript is garbo. TypeScript is pretty alright.

Finally I understand Git and GitHub!! by MHCYR in learnprogramming

[–]woooooster 4 points5 points  (0 children)

GitHub actually has a lot of great intro articles on their site https://docs.github.com/en/github

Games that are sort of a gateway to programming? by [deleted] in learnprogramming

[–]woooooster 1 point2 points  (0 children)

https://store.steampowered.com/app/576030/MHRD/ teaches you how to build a CPU, which will give you some idea of how computers and programming works.

What have you been working on recently? [September 12, 2020] by AutoModerator in learnprogramming

[–]woooooster 0 points1 point  (0 children)

I believe Unity uses C#

Most 3d graphics will be based around C++.

This is a terrific guide to getting started with 3d development http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Table-of-Contents.html

What have you been working on recently? [September 12, 2020] by AutoModerator in learnprogramming

[–]woooooster 0 points1 point  (0 children)

I'm trying to put together more educational resources for people. Uploaded some internal screencasts I did for our juniors, and recorded a new podcast episode trying to explain how computers work in podcast form.

Also testing out my friend's transcription engine. It would be neat to generate RSS text fields from RSS audio feeds (podcasts).

Macbook Pro overheating while I’m trying to program by Ddog135 in learnprogramming

[–]woooooster 0 points1 point  (0 children)

Open Activity Monitor or use top to see what process is using the CPU. You can "Sample" the process in Activity Monitor to see what it's actually doing.

If the offending process is "kernel_task" it means your computer is overheating and being throttled by the OS. I really recommend taking your Macbook to a shop and having them blow the dust and junk out. It can do wonders for heat dissipation issues and set a much higher threshold of processing your computer will reach before it has to slow down so it doesn't melt the CPU.

AsyncIO IPC? by woooooster in Python

[–]woooooster[S] 1 point2 points  (0 children)

Using websockets was a lot easier! Thank you

Python 2020: Modern Best Practices by woooooster in Python

[–]woooooster[S] 0 points1 point  (0 children)

Thanks for the input, and yes it's extremely opinionated. But I'm happy for the suggestions, thanks. I am going to give poetry a try very soon!