The new OS X 10.9.5 Mavericks seed, build number 13F7, comes one month to the day after Apple released OS X 10.9.4 to the public in June, which […]
Safari 7.1 & 6.2 available for devs
Apple seeded developers with new versions of Safari for OS X Mavericks (Safari 7.1) and OS X Mountain Lion (Safari 6.2) to parallel continued work on OS X […]
Quick tip: writing files in node.js
The quick and dirty way is: var fs = require(‘fs’); fs.writeFile(“/tmp/test”, “Hey there!”, function(err) { if(err) { console.log(err); } else { console.log(“The file was saved!”); } }); but […]
iOS 8 Beta 3 is out
Apple today released the third beta of iOS 8 to developers, three weeks after releasing the second beta update and more than a month since unveiling the new […]
OS X Yosemite Developer Preview 3
Alongside iOS 8 beta 3, Apple today released a new version of OS X Yosemite, three weeks after releasing the second Developer Preview and over a month after […]
DayOne app is now free
Just for limited time, you can grab it here Record life as you live it. From once-in-a-lifetime events to everyday moments.
Tutorial: Using CoreData with iCloud synchro
You can get tutorial source from https://github.com/blastar/CoreDataWithiCloud/tree/master I saw lot of tutorials about this, but almost none were working.
Quick tip: UITableView – search when user stops typing
In some cases, when you are using UITableView with UISearchBar you don’t want to filter you view immediately – f.e. when you’re fetching result from remote source, to […]
OSX 10.9.4 and Safari 7.0.5 are out
Apple today released OS X 10.9.4 after just a month of testing and a month and a half after the release of OS X 10.9.3. The last 10.9.4 […]