Projects tagged ‘c’ and ‘simple’


Jump to tag:

Projects tagged ‘c’ and ‘simple’

Filtered by Project Tags c simple

Refine results Project Tags linux (7) game (6) windows (3) operatingsystem (3) small (3) stl (2) kernel (2) api (2) class (2) .net (2) os (2) sdl (2)

[31 total ]

1 Users

Simple GTK Time Tracker is (SGTT) is small program for tracking time activities.
Created 3 months ago.

1 Users

SauOS (Strunk and UNIXed Operating System) is a UNIX-like POSIX-confirming simple OS, licensed under the GNU GPL 3, and written in Assembler and C. Ask imate900 on the OSDev.org forums if you would like to help.
Created 8 months ago.

0 Users

SImple COnfguration Utility (SiCoU) is meant to be used in small systems where common desktop solution are not adequate. Most of the small (embedded) systems are low on resources what makes every ... [More] unneeded access to the solid state memory very costly. [Less]
Created 12 months ago.

0 Users

Project SummaryGnat's Tetris Machine is a remake of Alexey Pajitnov's classic "Tetris" from 1985. Gnat's Tetris Machine is written in pure C, and makes use of the OpenGL API for 3D graphics, and SDL ... [More] for things like input and sound. It features a clean, commented, well structured C source code that can be used as a resource for learning how to program video games in C. Gnat's Tetris Machine was originally written by Nathaniel Sabanski. Gameplay TipsPoints multiply for clearing more than 1 row at a time. Large bonus for clearing 4 rows at a time (Pajitnov calls this a "Tetris"). See how many "Wanted Stars" you can get. If you manage to survive long enough, you may get to see the special Pepperidge Farms ending.* * There really is no "Pepperidge Farms" ending. [Less]
Created 9 months ago.

0 Users

Introduction This project implements a simple templating system in C# using the Django style {{ varName }}, double curly notation. The class was implemented specifically for templatizing ... [More] html/javascript but can be used with any file type. The templates only do replacements. Unlike Django, there are no conditional statements, for loops etc.. This can all be accomplished within C# itself and keeps layout nicely separated from logic. Points of Interest Unlike StringTemplate from www.stringtemplate.org (which seems to be the best open source template engine written in c#) this template engine indexes the variable locations within the template instead of breaking the template into multiple chunks and putting them back together for output. The indexing occurs only once when the template is first used. It's then stored in a global dictionary with the filename as its key. The reason for indexing is the same reason you would use a StringBuilder rather than concatenation operators i.e. ("asdf" + "ghjk") to build strings. It keeps everything in one string, lowering the copy time and memory use associated with separating the template into many different strings and putting it back together for output. The only trade-off here is that you have to recalculate the indicies above an inserted variable by adding the length of the value inserted. I assumed this trade-off would be well worth it. These templates are currently in use on SpyFu.com. Background The real driver for me to create this was the frustration that came from trying to replicate the same ASP.NET user control several times on a page. While this can be done, I've only got it to work by putting all the code in markup and pasting the same markup (user control) over and over, or by putting all the code in code-behind files and creating all the HTML elements in C#...uck. While the first option is probably the best since the HTML is actually editable in its native format and the need for pagination usually means a limited number of controls, I knew that templates, after using Google App Engine and Django, would offer a more elegant solution. Note The tests included run within Visual Studio itself and to my knowledge are a new feature in Visual Studio 2008. Please download the source using the link on the right. There are tests as well as an example website to show you how to use templates. [Less]
Created 8 months ago.

0 Users

A simplified C language API / library for the iRobot Create / Roomba robots that eliminates the byte transfer oriented style of the original command and sensor data calls. Docs, reworked examples from ... [More] the Create Command Module, build templates for Win/AV [Less]
Created 11 months ago.

0 Users

Simple Rock, Paper, Scissors game written in C#. There must be rock.jpg, paper.jpg, and scissors.jpg in the same folder as the program file. The ones included were found with Google Images and I take ... [More] no credit for them. The name is RoPaSc because I had trouble finding a name that wasn't taken, see ROck, PAper, SCissors. [Less]
Created 3 months ago.

0 Users

Simple Search
Created 11 months ago.

0 Users

py-de (pronounced Pie dee ee) is an extremely simple IDE written in python. The goal is ease of use - you can compile and link source code in a directory written in a variety of languages (C, C++ ... [More] , fortran, python, perl, ruby). The interface is similar to gedit, nedit, except that it has an execute function built right in so that users can compile code without even looking at the command line. It would be a terrible IDE to use for real projects, but its perfect for beginning programmers. [Less]
Created 12 months ago.

0 Users

It's just the game of breakout implemented in C using SDL.
Created 3 months ago.