fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

8.7K
active users

#softwareengineer

5 posts5 participants0 posts today

Last week was quite something! Our first ever IDEATE Summit at ANU in Canberra.

It was wonderful to have people come together from ten different universities, as well as our industry partners, to talk about how we do better for our students.

Thank you to everyone who came and made it happen.
A summit isn't a conference, it's a conversation - and it couldn't have happened without you! #DEI #ComputerScience #tech #SoftwareEngineer

by day, i am an ignoble #softwareengineer. i say "ignoble" because the company for which i work i suspect are doing questionable tactics in the field. why am i still there then? well, my kids need a roof over their head and gotta eat. that's the only reason. i would say the #ttrpg career being pursued as a side hustle will kick off, but that's probably not a reality. however, this doesn't mean i can't have a great time doing it if it doesn't!

TIL: ruby, a dynamically typed language, does benefit from static type checking

ruby type checking occurs in runtime; ruby 3 has .rbs files that contains the type information; it provides several degrees of type checking; you can use type profiler to detect type conflicts

ruby wants the benefits of static type checking and does so at some levels. it doesn't want declarations which, for ruby, are redundant, and instead abstracts them away