Archive for category Frameworks

Bad Company 2 stats parser framework

Currently I am working on a piece of software that parses json data and creates appropriate .net objects. All the data is retrieved from http://bfbcs.com/api. The goal here was to deliver a framework that ommits the needs to parse and map json objects and values if one would like to create a windows [...]

Tags: , , , , , , , ,

Use Castle ActiveRecord with Microsoft SQL Server Compact 3.5

Currently I am working on a small programm called PaymentTracker. To save data I am using a PostgreSQL database. The problem using a standalone database is if the PaymentTracker is released, the user would need to install the PostgreSQL database manually. Furthermore the user needs to setup a database and a new role inside PostgreSQL [...]

PHP: How to setup the ZendFramework..in a few simple steps

In this post i`ll explain how to easily set upĀ  the Zend Framework. Why Zend Framework?, you may ask and this is the reason.
Anyways, first download the framework from http://framework.zend.com/. You`ll need to register in order to download the full package.
If you haven`t setup a PHP environment I suggest to download xampp here. xampp also [...]

Tags: , , ,

Django: Django and AJAX using the YUI javaScript framework

I was wondering how requests via AJAX can be implemented into Django framework. So I wrote a small application and hooked it into an existing Django project for testing purposes. The application has two models, Employee and Project, and two methods. The first method fetches data from the project and employee tables and renders that [...]

Tags: , , , , , ,

Python, Django Framework: Easily add your models to the django admin interface

Django comes with an admin interface which lets you easily add content to your Django powered website. In this post I will give you an easy example on how to plug your models into the admin interface. I asume that you already have setup a new Django project.
1. First add ‘django.contrib.admin’ to the installed apps [...]

Tags: , , , , , , , , ,

Setting up Python and Django Web Framework under Windows

Today I tried to setup the Django Framework using the included tutorial. That tutorial is very well written and covers a lot, sometimes a bit too much (if you are a Python, Django rookie like me). So I tried to boil it down to a couple of steps in order to make it easier and [...]

Tags: , , , , , ,