Coding
66 notes.
iOS Login and Signup Screen tutorial : Swift + XCode 6 + iOS 8 + JSON
This tutorial will guide you to create a simple app with a Signup and Login screen which takes username and password from the user and then posts it to an url and parse the JSON response. We will have three view controllers for this project, Signup, Login and Home.
iOS Google Maps: Set Camera to show all Markers
The intend is to set the boundaries of the map to focus on all the markers. The 'GMSMapView' class used to have a method 'markers' which returned all…
iOS: Load custom UITableViewCell with Nib
Using the interface builder i created a custom 'UITableViewCell' named 'MyCustomCellNib', with a custom class file 'MyCustomCell' inherited from 'UITableViewCell'. This is code i used to load the cell with the nib.
iOS Login Screen tutorial : XCode 5 + ios 7 + Storyboard + JSON
This tutorial will guide you to create a simple app with a Login screen which takes username and password from the user and then posts it to an url and parses the JSON response.
iPhone(iOS) programming: Get Google Contacts
This tutorial walks you through on how to retrieve google contacts programatically.
Protected: iOS: Linea Pro tutorial – Scan Barcodes
This tutorial walks you through on how to get your Linea Pro device to scan a barcode.
iOS: UITableView – Swipe to delete row
Swipe-to-Delete feature shows a Delete button when a user swipes horizontally across a row.
Perl: Send an Email with attachment through Gmail SMTP
This is a tutorial on how to send an email with attachment via Gmail SMTP. Here i am using Email::MIME to create the email/message object. Email::Sender::Simple (sendmail) is…
How to Import/restore data into Heroku postgres database from a dump file
I was working on a rails app and i had a huge amount of data in my local Postgres database. This is what i did to import data into the database at heroku from a dump file of my local database.
Java: Change the Call Forward Number on an Android phone programmatically
We can easily set/change the call forward number on gsm Android phones. Here i am showing you to change/set the call forward number for "Unconditional forwarding".
Rails: How to Update the Source code of an existing app on Heroku
Recently, i was working on an existing rails app hosted on Heroku. After making few updates to the code, i was wondering on how to get it updated on Heroku. This is what i did on my ubuntu machine.
Ruby: Sending mails via Gmail SMTP with authentication
This is a tutorial on how to send mails via Gmail SMTP with authentication using ruby.