Sitereview.org
Headlines | Software | Hardware | Science | Coding | Sysadmin | Humor | Misc
The Tech Website Directory  (Click 'post' below) 

Extreme Visual Basic Forum

Up
vote
Down

A gathering place for over 5000 registered API, DirectX, and game programmers using Visual Basic.

" Forum List
  • VB Help
  • DirectX
  • VBA
  • Tutors Corner
  • API Help
  • Database
  • GUI Help
  • Games
  • .NET"
read more...
permapage | score:9725 | -Ray, May 16, 2001

WinAsm Studio

Up
vote
Down

WinAsm Studio is a free Integrated Development Environment for developing 32-bit Windows and 16-bit DOS programs using the Assembly Language. It is a MUI application already translated to many languages and includes a Visual Resource Editor for rc scripts. Highly extensible via user created Add-Ins (aka plug-ins).

A lot of free (most of which are open source) projects (such as HiEditor, a large file editor), custom controls to download, a popular programming forum and a link directory to add your site.

Best Regards,

Antonis Kyprianou read more...
permapage | score:9724 | -akyprian, March 2, 2007 (Updated: March 13, 2007)

Free Programming Resources

Up
vote
Down

Free Programming Resources is a directory of programmer and webmaster tutorials, articles, forums, faqs, compilers, interpreters, free books and more. read more...
permapage | score:9713 | -Anonymous, June 11, 2004

Extreme Testing

Up
vote
Down

Extreme testing derives from the concepts outlined for extreme programming (XP) and distributed extreme programming (DXP) and tailored to be applicable to onshore-offshore model of software development, single & multi vendor model of software development. This approach retains the classical concepts of eXtreme Programming like simplicity, discipline, communication, quality, and flexibility read more...
permapage | score:9713 | -riseoficarus, June 19, 2007

Javascript Graphics Functions

Up
vote
Down

Have you ever wanted to embed cool graphics functions into a web page?
This JavaScript VectorGraphics library provides graphics capabilities for JavaScript: functions to draw circles, ellipses (ovals), oblique lines, polylines and polygons (for instance triangles, rectangles) dynamically into a webpage. Usage of this Vector Graphics library should be easy even if you don't have JavaScript experience. Documentation.
read more...
permapage | score:9710 | -Ray, December 23, 2005

Space Tyrant: A multiplayer strategy game and programming project

Up
vote
Down

The Game
Space Tyrant (ST) is a free telnet-based space strategy game that anyone with Internet access can play. All you need is a telnet client -- which is included in virtually all operating systems released in the last ten years. The ST game features include:
  • player configurable starships
  • endless variations of economic, military, and political strategy
  • pure player-vs-player; there are no in-game monsters
  • an in-game radio with paging and secret channels
  • teams with private team radio channels
  • the ability to modify the universe by guarding sectors and moving objects
  • . . . and much more
The game is intended to provide a universe and a set of physical laws where players can create their own strategies. If you're interested in playing or looking at the game, go to the game introduction page.

The Code
Space Tyrant is also an Open Source (GPL 2) programming project in the C language compatible with any recent version of GCC. ST is pure C code (the embedded shell script, mentioned below, is technically a C comment ;). It consists of a single source file that is an example of:
  • a Linux / Unix daemon
  • a multithreaded game server
  • a network socket listener
  • a memory-resident daemon with an asynchronous dirty block backup thread
It also includes:
  • a simple and understandable recursive sort
  • an example of function pointer arrays implementing a menu
  • a ring buffer message queue
  • a simple random number generator macro
  • a detached thread spawning and reaping routine
  • signal processing routines
  • a loop-based shortest-path algorithm
  • an embedded compile shell script (run `sh st.c` to compile the code)
  • . . . and many more curious features
The codefile consists of fewer than 4500 C statements. Counting multiline C formatting and comments, the entire file is under 9500 lines long.

Programmers interested in the code -- as well as anyone interested in hosting a game -- might want to go to the Space Tyrant source code page.
read more...
permapage | score:9706 | -Ray, March 7, 2007

Ten Minute Python Tutorial

Up
vote
Down

Interested in Python? Got 10 minutes? Then take this whirlwind tutorial tour of Python. It may be the quickest way to decide if Python is really what you're looking for.
This tutorial will attempt to teach you Python in 10 minutes. It's probably not so much a tutorial as it is a cross between a tutorial and a cheatsheet. I assume that you are already familiar with programming and will, therefore, skip most of the non-language-specific stuff. The important keywords will be highlighted so you can easily spot them.
read more...
permapage | score:9705 | -Ray, January 12, 2006

C, C++ Tips, FAQs, and Tutorials

Up
vote
Down

This one-page resource contains lists of C and C++ programming links on the following topics:
  • Tutorials
  • C++ Tips and Tricks
  • Debugging
  • C++ Compilers
  • Source Code Archives
  • Journals and Newsletters
  • Pointers and Dynamic Memory Allocation
  • Coding Standards
  • C Programming (resources)
  • Standard Template Library (STL)
read more...
permapage | score:9700 | -Ray, December 18, 2005

Effective Programmer Practices

Up
vote
Down

The one I have the most trouble with is #3, 'understand your code'...
I mean the ability to complete projects in a timely manner with the expected quality. After working on dozens of software releases, I believe the following practices will bring you there, and while they may involve sticking your neck out, I'd like to think they will also advance your professional reputation, career longevity, and personal satisfaction.
read more...
permapage | score:9685 | -Ray, December 26, 2005

Text Editing for Programmers: JEdit

Up
vote
Down

JEdit is now seven years old and, therefore, quite mature.
While jEdit beats many expensive development tools for features and ease of use, it is released as free software with full source code, provided under the terms of the GNU General Public License.
  • Written in Java, so it runs on Mac OS X, OS/2, Unix, VMS and Windows.
  • Built-in macro language; extensible plugin architecture. Dozens of macros and plugins available.
  • Plugins can be downloaded and installed from within jEdit using the "plugin manager" feature.
  • Auto indent, and syntax highlighting for more than 130 languages.
  • Supports a large number of character encodings including UTF8 and Unicode.
  • Folding for selectively hiding regions of text.
  • Word wrap.
  • Highly configurable and customizable.
  • Every other feature, both basic and advanced, you would expect to find in a text editor. See the Features page for a full list.
read more...
permapage | score:9668 | -Ray, January 18, 2006

The Ten Commandments for C programmers

Up
vote
Down

The Ten Commandments are annotated with additional enlightenment so that they speak even more eloquently for themselves...
2 Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end.

Clearly the holy scriptures were mis-transcribed here, as the words should have been ``null pointer'', to minimize confusion between the concept of null pointers and the macro NULL (of which more anon). Otherwise, the meaning is plain. A null pointer points to regions filled with dragons, demons, core dumps, and numberless other foul creatures, all of which delight in frolicing in thy program if thou disturb their sleep. A null pointer doth not point to a 0 of any type, despite some blasphemous old code which impiously assumes this.
read more...
permapage | score:9666 | -Ray, January 5, 2006

Blog software feature list

Up
vote
Down

This handy table lets you compare the major blogging software packages feature-for-feature. The blogging software packages compared are Blogger, TypePad Basic, TypePad Plus, TypePad Pro, Blogware, WordPress, Movable Type, and Expression Engine.
This chart is a companion to the article "Time to check: Are you using the right blogging tool?," published July 14, 2005 in the USC Annenberg Online Journalism Review. Do note that this chart reflects only standard features of the tools' installation, and not every possible extension, plug-in modification....
read more...
permapage | score:9663 | -Ray, January 1, 2006

jarfinder - Free jar database

Up
vote
Down

Ever pulled your hair out trying to find which jar file is missing from your classpath? Jarfinder is here to help.

JarFinder is a free searchable database of jar files. It provides a quick and easy way to resolve ClassNotFoundExceptions and NoClassDefFoundErrors.

Just enter the name of a class and jarFinder will produce a list of jar files that contain it.

The database is already large and is growing day by day. Currently only jars released under free and open source licenses are indexed, but commercial software may be added in the future. read more...
permapage | score:9662 | -colin, March 6, 2006

New php/sql tutorials

Up
vote
Down

We have posted 4 articles from HUGI #22, covering PHP, SQL and making Demo Scene sites with them. Just for your ease, here is a list of them:

PHP for beginners | SQL for beginners | PHP & MySQL | Demogroup homepage in PHP with MySQL read more...
permapage | score:9652 | -Anonymous, June 12, 2001 (Updated: June 13, 2001)

Maze Algorithms

Up
vote
Down

Read this before you design that maze!
Mazes in general (and hence algorithms to create Mazes) can be organized along seven different classifications. These are: Dimension, Hyperdimension, Topology, Tessellation, Routing, Texture, and Focus. A Maze can take one item from each of the classes in any combination.
read more...
permapage | score:9641 | -Ray, December 13, 2005

DHTML Shock - Free Dynamic HTML and JavaScript

Up
vote
Down

The featured scripts on the DHTML Shock front page today are:
  • Colored Scrollbars by DHTMLShock
    Make your scrollbars look like the ones on DHTMLShock (only works for IE 5.5).
  • Static Slide Menu (Gen) by Maximus
    This is a menu that slides out from the left hand side of your browser window. But the great thing is, there's a menu generator to do all the work for you.
  • Heircarchical Menu (Folder Navigation) by Clarence Eldefors
    Windows style folder navigation. Very lean.
  • Right Click Menu by Eddie Traversa
    Create a menu that appears when a user right clicks your desktop. Very elegant, and it works in every browser.
  • DHTML ToolTips by David Miles
    Fully customizable dynamic tooltips. Change color, size, and add HTML elements to your mouseovers.
...or check out their forums and library for more tips and scripts. read more...
permapage | score:9632 | -Ray, December 22, 2000 (Updated: November 21, 2005)
More coding articles...
 

Articles and website reviews are owned by their authors.
The rest is © 2000-2012, Ray Yeargin.

Abstract Art Gallery

coding headlines
Buy Highly Detailed Fine Art Prints Online

The Java Universe

Modular Programming in C

Geekpedia: Programming Tutorials, Source Code...

Methods and Tools

Win32, C, C++, VC++ resources

Programming Optimization: Techniques, examples and discussion

Remote Debugger for ASP

Free Pascal Home Page

XML Guide

Advanced WAP Programming

Webmaster Forum

Raw IP Networking FAQ

AllSyntax.com - Tutorials and Code Samples available

Freecode, Free Programming Source Code

Scripting Language Options -- In Search of the Ultimate Language

Java Programmer Online Examples

Coding for 64-bit processors

Fighting Memory Leakage

One PHP Street - A PHP Code Repository

The Open Watcom Compiler

Unix Programming FAQ

/training/etc/ Programming Site

Programming Language Compromises

Javascript Tips

Compiler FAQs, Links, Info

Cascading Style Sheets (CSS) Tutorial

The CGI Bin

Linux Assembly Programming Resource Site

Unix Bourne Shell Programming

RealApplets.com

Online guide to Visual Basic

Network Programming with Perl

Extreme Programming: A Gentle Introduction

Secure Transaction Developers Resource Site

The Tutorials Search Engine

Introduction to HTML

Unmaintained Free Software Projects

The Ruby Programming Language

PHP Resource Index

Code Beach

C Programming

 

Bookmark us! 

post 

Posting Guidelines

Site info

News feed

Login
(to post)

Search