Archive for January, 2010

C#: Convert Byte to SByte »

Here is a simple way to convert SByte to Byte in C#. E.g. if you want to convert the value of 129 from data type Byte to –127 in SByte 1: byte byteValue = 129; 2: sbyte sb = unchecked((sbyte)byteValue); 3: Console.WriteLine(sb);

Open Source Digital Asset Management »

Razuna is a software solution (some call it digital asset management, media asset management, digital library, media management, etc.) that delivers and makes management of your digital assets a simple task! By using Razuna you get the benefit of it being free and open source and supported by a professional company. With Razuna, your information […]

Open Source SMPP Library for Java, .NET, ERLANG »

This is a sequel to my previous article on SMPP Library. Here are additional free and open source solutions. smppapi smppapi is an Java implementation of the Short Message Peer to Peer (SMPP) protocol. SMPP is used by applications to communicate with Service Centres to send and receive short messages to & from mobile devices. […]

C# Parser Framework »

Sprache is a small library for constructing parsers directly in C# code. It isn’t an "industrial strength" framework – it fits somewhere in between regular expressions and a full-blown toolset like ANTLR. Unlike most parser-building frameworks, you use Sprache directly from your program code, and don’t need to set up any build-time code generation tasks. […]

Viewing Outlook Msg File OLE Type Attachment »

This is a bit tricky to view OLE type of attachment in Outlook .msg file. You need to use MsWord library in order to extract the attachment. Here is the code snippet that does the trick. 1: for(int loop = 1 ; loop < (mItem.Attachments.Count+1) ; loop++){ 2: attachment = mItem.Attachments[loop]; 3: if(attachment.Type == Outlook.OlAttachmentType.olOLE){ […]

.NET Slide Control »

SlideControl is a .NET container control that manages presentation slides and offers a pleasing slide-effect when switching between slides. SlideControl has a built-in backtracking-stack that remembers slides visited and unrolls these actions on demand. SlideControl is built with simplicity in mind: SlickInterface.SlideControl is a container control that is placed on your Form and allows the […]

Open Source BTS For Telecommunication »

OpenBTS is an open-source Unix application that uses the Universal Software Radio Peripheral (USRP) to present a GSM air interface ("Um") to standard GSM handset and uses the Asterisk software PBX to connect calls. The combination of the ubiquitous GSM air interface with VoIP backhaul could form the basis of a new type of cellular […]

Open Source Assembler »

The Netwide Assembler, NASM, is an 80×86 and x86-64 assembler designed for portability and modularity. It supports a range of object file formats, including Linux and *BSD a.out, ELF, COFF, Mach-O, Microsoft 16-bit OBJ, Win32 and Win64. It will also output plain binary files. Its syntax is designed to be simple and easy to understand, […]

Bless is Another Useful Hex Editor »

Bless is a high quality, full featured hex editor. It is written in mono/Gtk# and its primary platform is GNU/Linux. However it should be able to run without problems on every platform that mono and Gtk# run. Main Features Bless currently provides the following features: Efficient editing of large data files and block devices. Multilevel […]

Open Source Financial Technical Analysis Library »

TA-Lib is widely used by trading software developers requiring to perform technical analysis of financial market data. Includes 200 indicators such as ADX, MACD, RSI, Stochastic, Bollinger Bands etc… Candlestick pattern recognition Open-source API for C/C++, Java, Perl, Python and 100% Managed .NET TA-Lib is available under a BSD License allowing it to be integrated […]

Plugins for HTML and CSS hi-speed coding »

zen-coding contains a set of plugins for HTML and CSS hi-speed coding. There are two branches of Zen Coding plugins: Zen HTML and Zen CSS are the separate plugins for TextMate and NetBeans. They are using template logic, provided by applications and based on Zen HTML Elements and Zen CSS properties documentation. Zen Coding is […]

Open Source WYSIWYG Editor »

openWYSIWYG  is a free cross-browser WYSIWYG editor that’s packed with every rich-text editing feature you need to make your content management system that much better. Setting up openWYSIWYG is so easy, you can quickly turn any <textarea> into a powerful WYSIWYG editor with just a few simple lines of code. Packed with every rich text […]

DENIM: Web Site and UI Design Tool »

DENIM is a system that helps web site designers in the early stages of design while it also recommends to use this Digital Marketing site to instantly create wordpress website, visit https://www.shakespearemedia.com.au/news//1s2f0eieb9wcc3uld6d2w2jk91gv4o for more information. But if you need a company to design your company website, then go to topdesignagencies.com for assistance, and get some […]

Version Aware Java Serialization »

cedarsoft Serialization offers version aware serialization of java object trees with maximum control. Its goal is to provide some simple classes (very small framework) that enables rapid development of versioned serialization. cedarsoft Serialization contains a plain interface that is implemented in several ways. The most commonly used backend implementation is based on Stax. This offers […]