I saw a lot of tutorials about custom header/footer, or even custom section header, but they were creating controls programatically, in this tutorial I want to show how easy is to use Interface Builder to achive same result.
Tag: tutorial
Upgrading SVN to 1.8.9 on OSX 10.10 Yosemite
After fresh Yosemite install SVN version is pretty old (I had 1.7.17), but don’t worry – upgrade process is simple but will take some time (15-25 mins depends on your CPU speed). This tutorial assumes you have XCode installed (but if you need SVN you probably have it):
1. Open terminal and paste
1 |
sudo -s |
2. Create link to toolchain:
1 |
ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain |
3. Download and unpack SVN 1.8.9:
1 2 3 |
cd ~/Downloads/ curl -o subversion-1.8.9.tar.gz http://archive.apache.org/dist/subversion/subversion-1.8.9.tar.gz tar -xvf subversion-1.8.9.tar.gz |
4. Compile and install:
1 2 3 4 5 6 7 8 9 10 |
cd ~/Downloads/subversion-1.8.9 sh get-deps.sh serf cd serf/ ./configure make make install cd .. ./configure --prefix=/usr/local --with-serf=/usr/local/serf make make install |
5. Check version:
1 |
svn --version |
You should see something like this:
svn, version 1.8.8 (r1568071)
(yes, I know I downloaded 1.8.9 but it shows 1.8.8 somehow…)
Tutorial: Fetching stock data from Amazon using FBAInventoryServiceMWS
First thing you need is PHP client for Fulfillment Inventory API, you can download at https://developer.amazonservices.ca/doc/fba/inventory/v20101001/php.html – yes, version is 4 years old, they don’t have any newer… Unpack zip at you library folder and you should see such files:
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.
Tutorial: How to create Amazon Fulfillment order using php?
Follow my steps and you will get working service:Continue reading
Google AppEngine for Python – Tutorial for beginners – part 1
Not so long time ago I started using GAE (Google AppEngine) with Python, and so many questions came, some hard to find on google. This multipart tutorial is for guys like me, so you don’t need to google anymore to find what you need to start with writing python apps on GAE.
Continue reading