Category Archives: Programming

How to write multilevel-recursive make file to build java files in sub-directory structure

This is a quick post showing how to write makefile which can build files recursively in sub-directories . When i wanted this info for one of my academic projects, i could not find a quick one online and had to refer to docs . So here it is…. Let me first describe the file structure. [...]

Posted in Programming | Leave a comment

Design & implementation of (totally ordered multicast) using lamport logical clocks(Synchronization)

This post deals with the various issues and design decisions  faced during implementation of synchronization between processes using Lamport Logical clocks in a distributed system. Lamport Logical clock concept can be used implement synchronization between multiple processes ,where each process observe the changes in the same order ,regardless of the order in which the updates [...]

Also posted in Distributed Computing | Tagged , , , | 9 Comments

Issues with ASP.net Development server and Windows Vista

this post shows you how to solve the issues with asp.net development server and windows vista the easy way.

Also posted in Web and Internet, Windows | Leave a comment

migrating from turbo c++ to visual c++ 2008

here i am giving some tips for all those who are new to visual c++ 2008 and have decided to ditch turbo c++.if you are finding it difficult to run your old turbo c programs on visual c++ compiler,here are some tips to solve those frustrating compatibility issues.

Posted in Programming | 3 Comments

8 Easy Steps to Run Turbo C in Windows Vista

This tutorial is about running a  turboc compiler in windows vista in full screen mode. i know ! running decade old turbo c compiler in vista doesnt make any sense when you have much advanced compilers.but there are some cases where you have to run turboc on your vista machine,just because your university doesnt use [...]

Posted in Programming | 77 Comments

How To Load A Program Automatically at Startup (thru code)

i am using dev-c++ compiler (with MinGW) lately.and i am liking it very much . loading a program at start-up automatically ( program is loaded automatically when system starts) can be done in many ways ,however i find following two ways easier. in the system Startup’s folder by making some changes in registry

Posted in Programming | Leave a comment

My experience with Dev-c++ compiler

Migrating from Turbo C to Dev- C++ Compiler all these days i was programming using the decade old compiler turboc which is still used in many of the engineering colleges in karnataka.i was very much interested about graphics turboc could offer.here i am going to share my experience with dev c++ compiler. ive got many [...]

Posted in Programming | Leave a comment