Fullasagoog

Rich Internet Applications and other topics from the Flex Technical Evangleist.

Show all feed information | Ping Blog Update

Backbone.js Wine Cellar Tutorial — Part 2: CRUD last year

In Part 1 of this tutorial, we set up the basic infrastructure for the Wine Cellar application. The application so far is read-only: it allows you to retrieve a list of wines, and display the details of the wine you select. In this second installment, we will add the ability to create, update, …

Backbone.js Wine Cellar Tutorial — Part 1: Getting Started last year

One of the challenges when building nontrivial Web applications is that JavaScript’s non-directive nature can initially lead to a lack of structure in your code, or in other words, a lack of… backbone. JavaScript is often written as a litany of free-hanging and unrelated blocks of code, and …

Backbone.js Wine Cellar Tutorial — Part 1: Getting Started last year

One of the challenges when building nontrivial Web applications is that JavaScript’s non-directive nature can initially lead to a lack of structure in your code, or in other words, a lack of… backbone. JavaScript is often written as a litany of free-hanging and unrelated blocks of code, and …

RESTful services with jQuery, PHP and the Slim Framework last year

NOTE: This is the PHP version of this article and its companion app. A Java version is available here. I have been looking for a lightweight framework to build a RESTful API in PHP. There are a number of good options out there: Slim, Epiphany, Tonic, Recess, and Frapi to name a few. They all [...]

RESTful services with jQuery, PHP and the Slim Framework last year

NOTE: This is the PHP version of this article and its companion app. A Java version is available here. I have been looking for a lightweight framework to build a RESTful API in PHP. There are a number of good options out there: Slim, Epiphany, Tonic, Recess, and Frapi to name a few. They all [...]

RESTful services with jQuery and Java using JAX-RS and Jersey last year

This is a more in depth version of my previous post on the same topic. The previous article only covered the HTTP GET method for building RESTful services. This article (and its new companion app) provides an example of building a complete RESTful API using the different HTTP methods: GET to …

RESTful services with jQuery and Java using JAX-RS and Jersey last year

NOTE: This is the Java version of this article and its companion app. A PHP version is available here. This is a more in depth version of my previous post on the same topic. The previous article only covered the HTTP GET method for building RESTful services. This article (and its new companion …

Set Up an Amazon EC2 Instance with Tomcat and MySQL – 5 Minute Tutorial last year

Create an AWS Account First things first: you need to create your AWS account. You can sign up here. You’ll have to provide a credit card and a phone number where you will be called as part of the online registration process for verification purposes. Amazon offers a Free Usage Tier, which …

Set Up an Amazon EC2 Instance with Tomcat and MySQL – 5 Minutes Tutorial last year

Create an AWS Account First things first: you need to create your AWS account. You can signup here. You’ll have to provide a credit card and a phone number where you will be called as part of the online registration process for verification purpose. Amazon offers a Free Usage Tier which is …

Building Apps with jQuery and JAX-RS – Sample App last year

In my previous post, I discussed the process of building RESTful services in Java using JAX-RS and Jersey. As an example, I shared a web application that provides a simple RESTful API for an Employee directory application: /rest/employees — Returns all employees /rest/employees/1 — …