amilasurendra.blogspot.com
July 2009 | Amila Surendra
http://amilasurendra.blogspot.com/2009_07_01_archive.html
Subscribe to RSS Feed. Friday, July 10, 2009. Wordpress 2.8.1 Released. 8212; Amila Surendra @ Friday, July 10, 2009. WordPress 2.8.1 fixes many bugs and tightens security for plugin administration pages. Core Security Technologies notified us that admin pages added by certain plugins could be viewed by unprivileged users, resulting in information being leaked. Not all plugins are vulnerable to this problem, but we advise upgrading to 2.8.1 to be safe. What else is new since 2.8? Switched back to curl as...
amilasurendra.blogspot.com
December 2010 | Amila Surendra
http://amilasurendra.blogspot.com/2010_12_01_archive.html
Subscribe to RSS Feed. Wednesday, December 15, 2010. Operating System Tutorial - Part1. 8212; Amila Surendra @ Wednesday, December 15, 2010. Before writing the assembly code there are two main things to be remembered. Compiled boot file needed to be exactly 512 bytes in size. The last two bytes of file should be AA55h. Mark the offset 0. Boot code located at 0000:7C00. Infinite Loop to hang. AA55h ;Boot Signature. More info on memory segmentation on 8086 can be found at:. In 8086 segments overlap and sam...
amilasurendra.blogspot.com
May 2009 | Amila Surendra
http://amilasurendra.blogspot.com/2009_05_01_archive.html
Subscribe to RSS Feed. Friday, May 29, 2009. Windows Vista Service Pack 2 Final Released. 8212; Amila Surendra @ Friday, May 29, 2009. Windows Vista Service Pack 2 is now available for download. The Vista SP2 update includes new support for recording Blu-ray discs straight from the Vista OS, updated support for Bluetooth v2.1, and bug fixes that address slow shutdowns and mysterious crashes. Additional Vista SP2 Updates. Besides Blu-ray and Bluetooth support, Vista SP2 also:. Send encrypted key through I...
amilasurendra.blogspot.com
April 2009 | Amila Surendra
http://amilasurendra.blogspot.com/2009_04_01_archive.html
Subscribe to RSS Feed. Wednesday, April 29, 2009. Writing to Microsoft Access Database Using java. 8212; Amila Surendra @ Wednesday, April 29, 2009. In this Tutorial We Are going to use JAVA JDBC-ODBC Driver. You Can Find More Info on ODBC(Open Database Connectivity) here. Create a user data source in Windows. 1 Goto Start Menu - Control Panel - Administrative Tools - Data Sources(ODBC). 2 Click The User DSN tab and then click Add. 6 Click ok. and exit Data Sources. Import java.sql.*;. Statement stmnt = ...
amilasurendra.blogspot.com
Dynamic Stack With C - Using Linked Lists | Amila Surendra
http://amilasurendra.blogspot.com/2010/01/dynamic-stack-with-c-using-linked-lists.html
Subscribe to RSS Feed. Monday, January 11, 2010. Dynamic Stack With C - Using Linked Lists. 8212; Amila Surendra @ Monday, January 11, 2010. Struct node *link;. Struct node *head;. Struct node *list node;. Int push(struct my stack *stack,int e). Stack- list node = malloc(sizeof(struct node) ;. If(stack- list node = NULL). Puts("Error : Cannot Allocate Memory.");. Stack- list node- data = e;. Stack- list node- link = stack- head;. Stack- head= stack- list node;. Int pop(struct my stack *stack){.
amilasurendra.blogspot.com
Operating System Tutorial - Part1 | Amila Surendra
http://amilasurendra.blogspot.com/2010/12/operating-system-tutorial-part1.html
Subscribe to RSS Feed. Wednesday, December 15, 2010. Operating System Tutorial - Part1. 8212; Amila Surendra @ Wednesday, December 15, 2010. Before writing the assembly code there are two main things to be remembered. Compiled boot file needed to be exactly 512 bytes in size. The last two bytes of file should be AA55h. Mark the offset 0. Boot code located at 0000:7C00. Infinite Loop to hang. AA55h ;Boot Signature. More info on memory segmentation on 8086 can be found at:. In 8086 segments overlap and sam...
amilasurendra.blogspot.com
RouterTech Custom Firmware | Amila Surendra
http://amilasurendra.blogspot.com/2010/01/routertech-custom-firmware.html
Subscribe to RSS Feed. Monday, January 11, 2010. 8212; Amila Surendra @ Monday, January 11, 2010. Caption id=" align="aligncenter" width="490" caption="RouterTech custom firmware - WebUI"]. Are you having problems with your AR7 based Router Firmware, or are you interested in "Get More." from your budget router. Then this is worth a try. So if you are interested Please visit http:/ www.routertech.org. NOTE: Using unofficial firmwares will void your warranty. No Response to "RouterTech Custom Firmware".
amilasurendra.blogspot.com
Determinant Of a Square Matrix - C | Amila Surendra
http://amilasurendra.blogspot.com/2010/01/determinant-of-square-matrix-c.html
Subscribe to RSS Feed. Friday, January 15, 2010. Determinant Of a Square Matrix - C. 8212; Amila Surendra @ Friday, January 15, 2010. Here I have used a recursive function to calculate determinant using expansion by Minors. Define dim 5 / Change as required. Double matrix[dim][dim] ={ {1, 2, 5, 7, 5},. Int determinant(int n, double mat[n][n]). Int i,j,i count,j count, count=0;. Double array[n-1][n-1], det=0;. If(n= 1) return mat[0][0];. If(n= 2) return (mat[0][0]*mat[1][1] - mat[0][1]*mat[1][0]);.
amilasurendra.blogspot.com
June 2009 | Amila Surendra
http://amilasurendra.blogspot.com/2009_06_01_archive.html
Subscribe to RSS Feed. Friday, June 26, 2009. Three Variable Linear Equation System Solver - JAVA. 8212; Amila Surendra @ Friday, June 26, 2009. This simple java program can solve system of three variable linear equation. Download Precompiled Windows Executable : EquationSolver-exe.zip. Download Precompiled Executable Jar File : EquationSolver-jar.zip. Download Source Code : EquationSolver-Source.zip. Tuesday, June 23, 2009. 8212; Amila Surendra @ Tuesday, June 23, 2009. Image IPTC, EXIF metadata support.