I spent the last couple of days configuring Apache servers for websites and authentication credentials. Specifically using LDAP. I was wondering how worthwhile it is to know about Apache configurations […]
More →I spent the last couple of days configuring Apache servers for websites and authentication credentials. Specifically using LDAP. I was wondering how worthwhile it is to know about Apache configurations […]
More →In Linux, executable files need to identify how a script should be run also known as the interpreter directive. This is done int the first line of the script with […]
More →NSNotification provides a simple of way of messaging within an iOS application. Create Notification Observer Register a function to handle notifications and inside of viewWillAppear or other initializing method.
1 |
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"Notification Name" object:nil]; |
[…]
More →Many websites offer apps as either an alternative view or as the actual service offered for mobile devices. Sometimes the offering comes in the form of annoying popups that take […]
More →