About:
hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses memory mapped I/O (if available), supports cursors, and can CREATE in-memory databases.
Release focus: Major feature enhancements
Changes:
This release comes with many changes and new features. It can manage multiple databases in one file. A new flag (HAM_LOCK_EXCLUSIVE) places an exclusive lock on the file. hamsterdb was ported to Windows CE, and the Solution file for Visual Studio 2005 now supports builds for x64. Several minor bugs were fixed, performance was improved, and small API changes occurred. Pre-built libraries for Windows (32-bit and 64-bit) are available for download.
Author:
cruppstahl
This leon3 design is tailored to the Altera NiosII Startix2
Development board, with 16-bit DDR SDRAM and 2 Mbyte of SSRAM.
As of this time, the DDR interface only works up to 120 MHz.
At 130, DDR data can be read but not written.
NOTE: the test bench cannot be simulated with DDR enabled
because the Altera pads do not have the correct delay models.
* How to program the flash prom with a FPGA programming file
1. CREATE a hex file of the programming file with Quartus.
2. Convert it to srecord and adjust the load address:
objcopy --adjust-vma=0x800000 output_file.hexout -O srec fpga.srec
3. Program the flash memory using grmon:
flash erase 0x800000 0xb00000
flash load fpga.srec
Software Engineering and Computer Games
By Rudy Rucker
Software Engineering and Computer Games was written with four broad goals:
To teach a lively style of object-oriented software engineering.
To show how to bring a complete program to the level of a commercial release.
To provide a "game engine" framework of linked classes for game development.
To help students CREATE computer games that are interactive, rapidly executing, and visually beautiful.
MW6 QRCode ASP.NET web control is 100% consistent with the QRCode specification and extremely easy to use, the package downloadable from our website comes with an ASP.NET sample project which demonstrates exactly how to CREATE the QRCode barcode in the ASP.NET environment.
This is a collection of m-files I CREATEd to complete a research project into the DC components of various encoding techniques. Eight of the files CREATE random bit sequences that conform to their coding requirements. The others were files I found useful in the scope of the project and supplement the generating m-files.
This a small hack I wrote to bypass the "No previous installation!" error of Microchip s C18 Upgrade.
Simply run C18Fake and select your C18 installation directory (CREATE if necessary) and click Save button. A "fake" file will now be CREATEd into that directory, and this will fool the Upgrade into thinking you already have a former legit installation.
After that you run the C18 Upgrade setup and select the same directory you CREATEd/selected before.
Your installation will now begin installing the full C18 package.
IBM關(guān)于聲音應(yīng)用開發(fā)的白皮書.This white paper is intended for software developers who want to learn about the tools and
techniques available to CREATE new voice applications.
#if !defined(AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_)
#define AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CGAQueen
{
public:
CGAQueen(int nPopulation,int nIteration,float Mutation,int mChBoard)
virtual ~CGAQueen()
void Clear() // to clear chess board with 0 value
void InitialPopulation() // to CREATE the first and initial randompopulation
void FillArea(int index) // to fill chess board with desired chromosome
int CostFunc(int index) // determine the cost of matrix[index][index]
void PopulationSort() // to sort population from the best to the worst
void GenerateCrossOverMatrix() // a way to CREATE children from parent is CcrossOver
void Mating() // to CREATE children from parents
void Ap