DeveloperHell | Languages: All | PHP | Python | .NET | Java | CSS | Ruby | Javascript   Site: Statistics
want to join us? register, it's easy | help

browse by tag: framework in language

sort by

newest, oldest, most popular


category icon

Writing your first Django app, part 1

in Python added by admin, on 27/10/2007 beginner tutorials django framework

Lets learn by example. Throughout this tutorial, we'll walk you through the creation of a basic poll application. It'll consist of two parts: A public site that lets people view polls and vote in them; An admin site that lets you add, change and delete polls.

comment save report
category icon

Writing your first Django app, part 2

in Python added by admin, on 27/10/2007 beginner tutorials django framework

This tutorial begins where Tutorial 1 left off. We're continuing the Web-poll application and will focus on Django's automatically-generated admin site.

comment save report
category icon

Writing your first Django app, part 3

in Python added by admin, on 27/10/2007 beginner tutorials django framework

This tutorial begins where Tutorial 2 left off. We're continuing the Web-poll application and will focus on creating the public interface - "views".

comment save report
category icon

Introduction to the Spring framework

in Java added by admin, on 27/10/2007 framework intermediate

Since the first version of this article was published in October, 2003, the Spring Framework has steadily grown in popularity. It has progressed through version 1.0 final to the present 1.2, and has been adopted in a wide range of industries and projects. In this article, I'll try to explain what Spring sets out to achieve, and how I believe it can help you to develop J2EE applications.

comment save report
category icon

Making a Pylons Blog

in Python added by admin, on 29/10/2007 beginner tutorials framework pylon

For people who haven't used Pylons before, think about it like putting on a theatrical production. First of all you need a stage or backdrop, then we put together a script so we can show off the cast. Pylons, as a framework, runs in the background like the backdrop and stagehands.

comment save report
category icon

URLConf tips and tricks

in Python added by admin, on 8/11/2007 django framework intermediate

I've written a couple of things recently talking about useful things to be aware of when you're putting together the URL configuration for a Django application - one covering a pitfall you should watch out for with regular expressions and one touching on the utility of the "url" tag and the "permalink" decorator, and the "reverse" utility - but you can never have too much useful information about URL configuration, because for a lot of people it seems to be one of the trickier parts of Django. So let's look at a few more things you might not know about.

comment save report
category icon

Sinatra - similar to web.py but in ruby

in Ruby added by admin, on 15/11/2007 beginner tutorials framework

Web development framework similar to web.py

comment save report
category icon

Using Ruby on Rails for Web Development on Mac OS X

in Ruby added by admin, on 18/11/2007 beginner tutorials framework ruby on rails

It should come as no surprise that Mac OS X is a favored platform for Rails development. Rails and its supporting cast of web servers and databases thrive on the rich Mac OS X environment. A popular text editor used by many Rails programmers is TextMate, a Cocoa application. And all members of the Rails core development team work with Macs.

comment save report
category icon

How to Program Google Android

in Java added by admin, on 20/11/2007 android framework intermediate mobile

So you saw the Android announcement and decided you wanted a piece of that US$10million in prize money huh? In the week since the SDK was released more than 4,300 people have joined the Android support forum posting more than 4,000 messages between them.

comment save report
category icon

An Architectural View of the ASP.NET MVC Framework

in .NET added by admin, on 24/11/2007 MVC framework intermediate

At DevConnections Fall and TechEd Europe, Microsoft recently unveiled the ASP.NET MVC Framework. MVC stands for Model-View-Controller and is one of the most popular design patterns for decoupling data access and business logic from data presentation and user interaction. At the time of this writing, the framework is not available yet, not even as a CTP. However, the first CTP is expected to ship in just a few weeks.

comment save report
category icon

Django profiler

in Python added by admin, on 25/11/2007 django framework intermediate

I wrote simple script that can be used to profile any Django-powered web-site and find how many SQL-queries are used per page, how heavy html-pages are, etc.

comment save report
category icon

Hands on with Blueprint, a CSS Framework

in CSS added by admin, on 2/1/2008 blueprint design framework

Blueprint is both a CSS Framework and an album by the legendary hip-hop artist Jay-Z. In this article, I am going to be writing about the Blueprint CSS Framework, which provides designers with a solid CSS foundation, including an easy-to-use grid, sensible typography, and a stylesheet for printing.

comment save report
category icon

Using raw SQL in django

in Python added by admin, on 3/1/2008 django framework intermediate sql

For a django project I'm working on, I need to run a simple query with COUNT and GROUP BY statements to collect some summary data. I tried working with the model API, and eventually fell back to using raw SQL instead.

comment save report
category icon

Sorting Data with List and Table Widgets [pdf]

in Ruby added by admin, on 9/1/2008 FXRuby beginner tutorials desktop app framework gui

The simple widgets that we learned about in the previous chapter primarily deal with a single value (if they have any real "value" associated with them at all). FXRuby also provides a number of more complicated widgets for dealing with collections of values.

comment save report
category icon

Merb and Datamapper on Ubuntu with XAMPP

in Ruby added by prodevtips, on 20/2/2008 beginner tutorials framework oo programming

Basic setup tutorial to get you started with Merb and Datamapper.

comment save report
category icon

Registration form with Merb and Datamapper

in Ruby added by prodevtips, on 27/2/2008 examples framework intermediate oo programming

How to setup a semi-advanced registration form with Merb and Datamapper with validators and stuff.

comment save report
category icon

Project browser in WxRuby

in Python added by prodevtips, on 24/5/2008 framework oo programming wxruby

Advanced TreeCtrl tutorial

comment save report
category icon

The basics of how to work the Scintilla component in WxRuby.

in Ruby added by prodevtips, on 29/5/2008 examples framework oo programming

The basics of how to work the Scintilla component in WxRuby.

comment save report
category icon

AUI in WxRuby

in Ruby added by prodevtips, on 10/7/2008 framework oo programming wxruby

Advanced User Interface to create all the coolness you need in your desktop application.

comment save report
category icon

Autocomplete in WxRuby's Scintilla

in Ruby added by prodevtips, on 30/7/2008 framework oo programming wxruby

How to accomplish autocompletion when you write your own editor.

comment save report
category icon

Ruby on Rails 2 - from zero to a small application

in Ruby added by prodevtips, on 1/11/2009 activerecord ajax beginner tutorials form helpers framework oo programming ruby on rails

Describing the process of setting up RoR2 and developing a small application. The tutorial touches most aspects of RoR development, form helpers, activerecord and Ajax to name a few.

comment save report
category icon

File uploading in Ruby on Rails

in Ruby added by prodevtips, on 23/4/2010 beginner tutorials framework oo programming

How to upload a file in Ruby on Rails, unzip it and import its contents into the database.

comment save report
category icon

Foreign relations in Ruby on Rails models and forms

in Ruby added by prodevtips, on 23/4/2010 beginner tutorials framework

How to setup models and input forms to manage foreign relations in Ruby on Rails.

comment save report
category icon

Rake Tasks 101

in Ruby added by admin, on 10/6/2010 framework oo programming rake ruby on rails

I’ve been working with Rake quite a bit on my current project so I thought I’d share some beginner tips. Before I go into Rake, what is it? Rake is a Ruby-based build program. Ruby on Rails uses Rake quite a bit in it’s process. If you’ve worked on a Rails project you’ll used one, some or all of the following: rake db:create, rake gems:unpack, rake db:migrate, and rake test. Now that’s not all of Rail’s Rake tasks, just some common ones.

comment save report
category icon

Django performance tips

in Python added by admin, on 12/6/2010 django framework intermediate

Django handles lots of traffic with ease; Django sites have survived slashdottings, farkings, and more. Here are some notes on how we tweak our servers to get that type of high performance.

comment save report