If you are often running scripts in SSH, especially ones that have a long execution time, you might have experienced termination of your script before it actually finishes its task(s). Maybe you closed the terminal window by accident, or you lost Internet connection for a moment. What you can do is run your script persistently […]
programming
Java: Strings
First off, if you are in need of a good Java programming reference book, I suggest that you try Head First Java. In this blog entry, basics in Strings in Java programming will be briefly discussed. Assumption: You have already set up your Java development kit on your computer. (Environmental Variables, paths, etc…)
Cobol Compilers free download: MFCICS, Microsoft Cobol 2.20, Cobol IDE
I used to have several Cobol compilers available for free download in my old blog, Poochycat.com. That blog has gone, months ago, I think. I’m putting up all those Cobol compilers in this post. 🙂
Assembly Language: a simple shop/store program
A small program I made a year ago in Turbo Assembler. It’s a shop displaying four items, each item having 9 stocks. The user is first prompted for which item he/she wishes to buy, for the quantity of the purchase, and if he wants to buy again. The program closes once the shop runs out […]
Assembly Language: check if a one-digit input number is odd or even
I coded this back when I was taking up Computer System Organization. It was a homework that I decided to share in my old blog. The program accepts a one-digit number as the input, and then shows whether that number is ODD or EVEN. The program uses the attribute byte to highlight ODD or EVEN […]
Free Download- Turbo Assembler Version 2.0, SideKick version 1.56, Turbo Link Version 3.0, PILOT.EXE
contents of the zipped file: SK.COM SideKick version 1.56 Copyright © 1884-85 BORLAND Inc. PILOT.EXE PC – PILOT (Programmer’s Pop-Up) Freeware written by Tom Grubbe Edited by The Geographix Corporation. TLINK.EXE Turbo Link Version 3.0 Copyright © 1987-1990 Borland International TASM.EXE Turbo Assembler Version 2.0 Copyright © 1988-1990 Borland International
Turbo C++ 3.0 Windows 7 Free Download: Compiler with Instructions
UPDATE: If you get the error Linker Error: Unable to open include file ‘C0S.OBJ’ while running your c program (or c++), please try copying the C0S.OBJ from the OBJ folder into the main folder of the compiler. The downloadable c/c++ compiler archive has been updated with this fix. Note: The procedures on this post were […]