noxeos.com - XS-Labs - Blog

Description: XS-Labs is the home of the XEOS Operating System and related OpenSource projects.

software (34659) development (16663) apple (5030) apps (4899) mac (3283) code (3133) opensource (677) xcode (132) xs-labs (3) xeos (3)

Example domain paragraphs

I often use Makefiles in some of my projects. I really like the flexibility it gives, and I often find myself writing a Makefile instead of a simple shell script to automatize tasks. So here's a little crash course. I'll obviously only cover the basics, but I hope this will give you a good idea on how you could improve your workflows using Makefiles. About Make Make was de...

Read the full story »

Bindings are an essential part of the WPF Model-View-ViewModel design pattern. They allow to react to changes in the view or model without any glue code. Also as a Mac developer using Cocoa Bindings, I usually feel right at home with WPF bindings. It allows very similar patterns when porting an app to Windows. However, bindings in WPF require a Dependency Property - that i...