This is part 3 of me learning react-native. I’m going to go over how to use images that you have set in XCode in the Images.xcassets
file.
Saturday, October 24, 2015
This is part 2 of me learning react-native. In this post, I will go over how to create a Navigation controller in react-native where it’s called NavigatorIOS. If you haven’t already, take a look at part 1 of this series.
Sunday, October 18, 2015
This is part 1 of me learning react-native. These are the steps necessary to build an iOS react-native app.
Saturday, October 3, 2015
A small post about how to start up XCode’s autocomplete
Monday, May 11, 2015
Getting a new computer is awesome, but you have to set up your work environment all over again. For macs, this is what I do to set up my terminal.
Wednesday, May 6, 2015
I’m sure most programmers know about enums and switchs. The ones found in Swift are very interesting. They have some very useful features which I’ll be talking about in this post.
Saturday, May 2, 2015
While trying out React-Native, I updated Node and installed react-native-cli globally. When I tried to run it, it said command not found
. After quite a bit of digging and reinstalling node and npm, I found the solution.
Wednesday, April 29, 2015
Ever wonder how the Ctrl+F
function works in browsers? It uses a string matching algorithm like Boyer Moore Horspool
’s
Tuesday, April 28, 2015
This is a similar post to my JavaToRemember post but for C#.
Wednesday, April 15, 2015
string tree graph sorting bit manipulation regex dictionary file list hashset
From vectors to maps to output streams, the C++ standard library has everything you want or need. This post will contain small snippets of different classes that you can find in the std
. You can find more documentation here.
Monday, April 13, 2015
C is used almost everywhere, enough said. This is a short overview of the language. To run a C file, you frist compile the file into an object file and then the linker links it to any other compiled file that it needs and creates an executable.
Monday, April 13, 2015
Quick gist of how to add shadow to a UIButton
Sunday, April 12, 2015
The UINavigationController
is widely used in iOS. We’re going to look at how to customize one’s UINavigationBar
. You can find more information on both of these classes here.
Saturday, April 11, 2015
When you want to persist data on a mobile device, you usually have to use its internal database. For iPhones and other Apple mobile devices, that’s sqlite3. For this post, we’ll look at the beautifully written SwiftData
library found here on github.
Friday, April 10, 2015
Parse is a database service for mobile owned by Facebook. This post will show you how easy it is to create a persistent cloud without writing a single line of code for the backend. You can get more information about Parse here.
Friday, April 10, 2015