Skip to main content

Posts

Showing posts from July, 2013

Laravel in GoDaddy Shared Host

Programming does not getting easier. I used to put my code for a specific process in a single file, and perhaps in a single function declaration. When event driven programming arrived, the code was sliced by events. Now, application frameworks demand that a code is sliced into many files and functions. A web application uses multiple frameworks which make code slicing more pervasive. I was inspecting ember.js for a browser-based application framework. Ember.js uses jquery which is a library that I use to simplify javascript programming. Ember.js itself is a MVC framework. Look at the ember.js ' Getting Started ' if you want to see what I meant by code slicing. However, I was writing this post because of Laravel , yet another application framework for the server-side. Ember.js needs to talk to a server for centralized storage. To be specific, I needed a REST server for my ember.js application. Laravel seemed to be a good candidate. Laravel itself was another MVC framework. S