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 […]
Quick tip: Convert float to int in Swift
It is a new language, ok. But why people can complex simple things? For years we used: int newvar = (int)oldfloat; and it was ok. Not only in […]
Quick tip: dispatch_once using Swift
There is no advantages of using this in Swift, but in case you have Objective-C you can do it using: class Singleton { class var sharedInstance : Singleton […]