We at 908 have been using Slack for our internal communication for a while now and we’re pretty happy with it. Except, when it comes to file administration, the tools leave much to be desired. Like, a lot. You can either right click in the client and go through the extremely tedious process of deleting […]
Tag: C++

FontInstallService – installing fonts as a regular user
Windows does not let regular users install fonts. Because, reasons. There is no easy workaround and no permission to be set, apparently dealing with fonts is high level admin work that should be dealt with by you running through the office and manually doing it for every artist. There is a workaround using PortableApps, but […]

GetChildren() in Cinema 4D SDK
For some reason Maxon’s Cinema 4D C++ SDK does not contain a GetChildren() function (whereas the Python SDK does have one). It’s not the hardest thing in the world to write yourself, but you have to do it nontheless. So here’s a simple template… maxon::BaseArray children; void MyApp::GetChildren(BaseObject* root) { BaseObject* child = […]