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

tutorials


category icon

Java Timer Class

in Java added by admin, on 23/10/2007 beginner tutorials timer

This creates an object that can be used like a stopwatch for wrapping blocks of code in timers.

comment save report
category icon

Simple Multithreaded HTTP Load Generator/Timer

in Python added by admin, on 23/10/2007 advanced http load balancing

This is a module user for generating concurrent requests to an HTTP server. Each thread makes HTTP GET requests to a single URL at the specified interval. Threads are added over a given rampup time if you want to generate increasing load. Response times are printed to STDOUT. This might be useful for performance benchmarking or load testing a web resource.

comment save report
category icon

How the Ruby heap is implemented

in Ruby added by admin, on 23/10/2007 advanced

It's been a while since I've worked on Ruby's garbage collector, and my memory about it is getting dusty. At the time, I noticed that there's very little documentation about the Ruby interpreter implementation. There are little pieces of comments here and there, and a few slides and emails all over the Internet, but nothing comprehensive

comment save report
category icon

Programming Crash Course

in Python added by admin, on 23/10/2007 beginner tutorials examples

If you are an absolute beginner or a novice in programming this site was made for you. In this tutorial you will learn how to program a computer the quick way. No long explanations. I will just show you how to do it and you will do it yourself. From the very beginning step by step.

comment save report
category icon

Rolling with Ruby on Rails, Part 2

in Ruby added by admin, on 21/10/2007 beginner tutorials oo programming ruby on rails

In Rolling with Ruby on Rails, I barely scratched the surface of what you can do with Ruby on Rails. I didn't talk about data validation or database transactions, and I did not mention callbacks, unit testing, or caching. There was hardly a mention of the many helpers that Rails includes to make your life easier. I can't really do justice to all of these topics in the space of this article, but I will go into details on some of them and present a brief overview of the rest, with links to more detailed information.

comment save report
category icon

Rolling with Ruby on Rails

in Ruby added by admin, on 21/10/2007 beginner tutorials ruby on rails setup

Maybe you've heard about Ruby on Rails, the super productive new way to develop web applications, and you'd like to give it a try, but you don't know anything about Ruby or Rails. This article steps through the development of a web application using Rails. It won't teach you how to program in Ruby, but if you already know another object-oriented programming language, you should have no problem following along (and at the end you can find links on learning Ruby).
Let's answer a couple of burning questions before rolling up our sleeves to build a web application!

comment save report
category icon

ASP.NET 2.0 Caching

in .NET added by admin, on 21/9/2007 advanced content management

Probably one of the coolest features with ASP.NET is caching, ASP.NET 2.0 has new caching features that I will explore in this article.

comment save report
category icon

An Introduction To CSS

in CSS added by admin, on 17/9/2007 beginner tutorials css style

CSS is the acronym for: Cascading Style Sheets. CSS is an extension to basic HTML that allows you to style your web pages.
An example of a style change would be to make words bold. In standard HTML you would use the <b> tag like so:

comment save report
category icon

Tutorial 1 - Objects, Applications & Applets

in Java added by admin, on 16/9/2007 beginner tutorials oo programming

The first Java tutorial covers the topic of objects/classes as well as outlining the basic structure of Java applications and applets.

comment save report