studentkirby.blogspot.com
Kirby510's Note Blog: PHP CRUD Tutorial
http://studentkirby.blogspot.com/2014/02/php-crud-tutorial.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Monday, February 17, 2014. Kirby Lee Kian Theng. Kirby Lee Kian Theng kirby.kl05@gmail.com. Loanstreet] Task Assignment - Kian Theng (Feb 6, 2014 - Feb 12, 2014). Dhendy.ferdian@loanstreet.com.my. Thu, Feb 6, 2014 at 4:46 PM. To: kirby.kl05@hotmail.com, kirby.kl05@gmail.com, Jocelyn Chua jocelyn.chua@loanstreet.com.my. Hi Kian Theng,. See this as example http:/ crud-demo. Final and Source Code.
studentkirby.blogspot.com
Kirby510's Note Blog: Setup Ruby On Rails environment
http://studentkirby.blogspot.com/2014/03/setup-ruby-on-rails-environment.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Monday, March 3, 2014. Setup Ruby On Rails environment. Kirby Lee Kian Theng. Step 1: Installing rbenv. Step 1.1: Setup. Sudo apt-get update $ sudo apt-get upgrade -y. Step 1.2: Install Required Components For Ruby and other dependencies. Step 1.3: Clone rbenv. The program 'rbenv' is currently not installed. You can install it by typing:. Sudo apt-get install rbenv. Sudo apt-get install rbenv.
studentkirby.blogspot.com
Kirby510's Note Blog: Create Simple Rails App
http://studentkirby.blogspot.com/2014/03/create-simple-rails-app.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Monday, March 3, 2014. Create Simple Rails App. Kirby Lee Kian Theng. Step 1: Setting up our Rails app. Sudo apt-get install mysql-server $ rails 3.2.13 new quick blog -d mysql. Entering this command into your command prompt will cause Rails to generate a new application and begin to install depedencies for your application. This process may take a few minutes, so you should let it continue. Sudo a...
studentkirby.blogspot.com
Kirby510's Note Blog: Update Blog with Tags
http://studentkirby.blogspot.com/2014/03/update-blog-with-tags.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Sunday, March 9, 2014. Update Blog with Tags. Kirby Lee Kian Theng. Step 1: Set up a Model and Join Table. Rails g model Tag name. Rails g model Post Tag post id:integer tag id:integer. Step 2: Add many-to-many relationship into Models. Validates presence of :body, :title end. In app/models/post tag.rb. Class PostTag ActiveRecord: Base belongs to :post. Validates presence of :name. Step 5: Connecti...
studentkirby.blogspot.com
Kirby510's Note Blog: Authentication with Devise
http://studentkirby.blogspot.com/2014/03/authentication-with-devise.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Friday, March 7, 2014. Kirby Lee Kian Theng. Part 1: Devise Users. Devise is a gem that makes adding authentication to any web application very simple. While it does take a few steps to set up, they're quick and since you'll be doing this for virtually every web application (should you choose to continue using Devise), you'll remember them. First, add the Devise gem to your Gemfile. Model and migra...
studentkirby.blogspot.com
Kirby510's Note Blog: Update Blog with Favourites (Part 1)
http://studentkirby.blogspot.com/2014/03/update-blog-with-favourites-part-1.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Sunday, March 9, 2014. Update Blog with Favourites (Part 1). Kirby Lee Kian Theng. Step 1: Set Up a Model. Rails g model Favourite post id:integer. Step 2: Add one-to-many relationship into Models. Class Post ActiveRecord: Base attr accessible :body, :title, :author id belongs to :author has many :comments has many :favourites. Validates presence of :body, :title end. The authentication action end.
studentkirby.blogspot.com
Kirby510's Note Blog: Install Ubuntu Desktop
http://studentkirby.blogspot.com/2014/03/install-ubuntu-desktop.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Monday, March 3, 2014. Kirby Lee Kian Theng. Install Ubuntu with the Windows installer. Once the Windows installer. Has been downloaded, you need to open it to install Ubuntu. You'll find detailed instructions below. If you need further help, support options are listed at the bottom of this page. If you are using Internet Explorer. To launch the installer. Most other web browsers (like Firefox.
studentkirby.blogspot.com
Kirby510's Note Blog: Testing with RSpec
http://studentkirby.blogspot.com/2014/03/testing-with-rspec.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Tuesday, March 25, 2014. Kirby Lee Kian Theng. Groups in the Gemfile. Group :development, :test do gem 'rspec-rails', ' 3.0.0.beta' end. Download and install by running:. Directory (where specs will reside) with:. This adds spec/spec helper.rb. Files that are used for configuration. See those files for more information. To run your specs, use the rspec. Specs can also be run via rake spec.
studentkirby.blogspot.com
Kirby510's Note Blog: Carrierwave File Uploads
http://studentkirby.blogspot.com/2014/03/carrierwave-file-uploads.html
Diploma in Information Technology. Bachelor of Computer Science. ACM-ICPC Competitive Programming Training. Tuesday, March 11, 2014. Kirby Lee Kian Theng. Step 1: Installing CarrierWave. The first step is to add the CarrierWave gem to our application. The gem is installed in the usual way by adding a reference to it in the application’s Gemfile. To do this to which we pass the name we want to give our uploader, in this case image. Rails g uploader image create app/uploaders/image uploader.rb. Note that t...
SOCIAL ENGAGEMENT