Unity3D: Mythbusting performance
chaoscultgames.com/2014/03/unity3d-mythbusting-performance/ ↗
Antimon C64 coding tutorials
Obsessive Coding Disorder, Julian Storer - JUCE Summit keynote 2015
Julian Storer, the founder of JUCE, rewrites one of the most used C library in the world, Zlib. In doing so, Julian showcases the coding standards that apply to the JUCE library. Watch on to see how many lines of code Julian managed to reduce Zlib to, while improving drastically …A Selection of Swift iOS Libraries https://github.com/Alamofire/Alamofire…
A Selection of Swift iOS Libraries …iOS Design Patterns
strtk -C++ String Toolkit Library
C++ Modules — Clang 3.9 documentation
Top 10 dumb mistakes to avoid with C++ 11 smart pointers
acodersjourney.com/2016/05/top-10-dumb-mistakes-avoid-c-11-s … ↗
Beware the UIKit Visitors!
blog.benjamin-encz.de/post/disassembling-uikit-tintcolor-vis … ↗
Hopper + lldb for iOS Developers: A Gentle Introduction
bartcone.com/new-blog/2014/11/26/hopper-lldb-for-ios-develop … ↗
Xcode's Plugin Interface : Build Settings
maxao.free.fr/xcode-plugin-interface/build-settings.html#var … ↗
Linking an OSX external bundle with a .dylib library
lessons.livecode.com/m/4071/l/15029-linking-an-osx-external- … ↗
Clang Environment variable for linker path
stackoverflow.com/questions/26675047/clang-environment-varia … ↗
C++ Has Become More Pythonic
AmigaOS Documentation Wiki
15 Fundamental Laws of Software Development
exceptionnotfound.net/fundamental-laws-of-software-developme … ↗
Sprite Tricks » Codetapper's Amiga Retro Site!
Lou's Pseudo 3d Page
Poems for bugs
Poems for bugs - A seminar held by lft at Revision 2013 Platforms come and go, but the C64 remains.This is a seminar about the beauty of C64 coding, how it relates to other human endeavours, and why it is as culturally relevant as ever. We will see how, for thousands of years, …How to convert an integer to a hexadecimal string in C++ int number = 42; stringstream…
How to convert an integer to a hexadecimal string in C++ int number = 42;stringstream ss;ss << hex << number;// now ss.str(), which is a string, contains "2a"C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out:…
C/C++ trick with logical operators Let me show a nice C/C++ trick I just found out: Instead of writing: if (function1()) function2(); you could write: function1() && function2(); because the right side of the && operator is only evaluated (in this case: called), …