So you have a ViewController in your storyboard and you want to be able to display it from code but don’t know how. The answer is the presentViewController
function.
Sunday, January 18, 2015
This post is about file io in python. More information can be found here.
Saturday, January 17, 2015
This is a cool little way to generate primes in python using the sieve of eratosthenes.
Saturday, January 17, 2015
In this post, I will be talking about python’s regular expression module called re
. I’ll mainly give examples. More information can be found here here.
Friday, January 16, 2015
A mobile app should aways keep track of the state. This means that if you write a message or complete a level it should be saved. The next time you go to that app, you should restart from where you left off. This feature is very easy to implement on the Windows Phone. More information can be found here.
Monday, January 12, 2015
In this post, I will be talking about how to style xaml controls. Similar to css, we can create styles that can be reused for multiple controls throughout our solution. More information can be found here here.
Sunday, January 11, 2015
In mobile apps, we often navigate to different pages. In this post, we will see how to do that on the windows phone. More information can be found here.
Sunday, January 11, 2015
Javascript’s new version (EcmaScript 6) has some amazing new features. The feature discussed in this post is the modules feature. Modules allow you to load functions from other js files and use them. In NodeJS, we use modules.exports
to make a function or variable available to other files. The other files can then use require('moduleName')
to access them. More information can be found here.
Monday, January 5, 2015
C# 6.0 has some interesting new features. The feature discussed in this post is null propogation. Null propogation allows you to check if a property exists and if it does, execute code. More information can be found here.
Saturday, January 3, 2015
Javascript’s new version (EcmaScript 6) has some amazing new features. The one discussed in this post is enhanced properties. More information can be found here.
Friday, January 2, 2015
Javascript’s new version (EcmaScript 6) has some amazing new features. The ones discussed in this post is iterators and generators. More information can be found here.
Friday, January 2, 2015
Javascript’s new version (EcmaScript 6) has some amazing new features. The one discussed in this post is template strings. Template strings are similar to string interpolation in swift and python. It uses backticks instead of double or single quotes. More information can be found here.
Monday, December 29, 2014
Javascript’s new version (EcmaScript 6) has some amazing new features. The one discussed in this post is the new class syntax. More information can be found here.
Monday, December 29, 2014
Javascript’s new version (EcmaScript 6) has some amazing new features. The one discussed in this post is the arrow symbol =>
. The arrow symbol is used to create shorter functions and to fix the scoped this
. More information can be found here.
Monday, December 29, 2014
Setting up Jekyll
Wednesday, December 24, 2014