Saturday, October 24, 2009

Travel Diary : Mahabaleshwar

Mahabaleshwar is a popular hill station. It has pleasant walks and good lookouts valleys, and the area has interesting historical connections with Shivaji. This hill station was founded in 1828 by Sir John Malcolm.

Mahabaleshwar war closes for the monsoon season from Jun to September - an unbelievable six meters around 235 inches of rain falls during this monsoon time. The Veena Lake, about four km from Mahabaleshawr, has boating and fishing facilities. In the village of Old Mahabaleshwar there are three old temples, The Krishnabai or Panchganga Temple is said to contain the springs of the Krishna, Venna and Koyana rivers.

The Local specialists - strawberry and raspberry jam - are good to taste. Elphinstone, Babington, Bombay and Kate's point all offer fine view from this wooded plateau to the plains bellow. Arther's seat km from Mahabaleshwar, looks out a sheer drop of 600 meters to the Konkan coastal strip.

Getting there and Away

Mahabaleshwar is 117 km south-west of Pune via Panchgani. The closest railway station is Satara Road. about 5 km noth-east of the town of Satara. There are daily buses to Kolhapur (Rs. 75 five hours), Satara(Rs. 50, two hours), Pune (Rs. 60, 3 hours) from Mumbai (Rs. 500 seven hours).

Around Mahabaleshwar

Panchgani

Panchgani (Five Hills) is 19 km east of Mahabelshwar and at 1334 meters is just 38 meters lower. It's is also a pupular hill station. splendidly located, but overshadowed by its neighbour. On the way up to Panchgani from Pune you pass through Wai. a site feartured in the Mahabharata.

Pratapgarh and Raigad Forts

Built in 1656, Pratapgarh Fort is about 24 km west to Mahabaleshwar and is connected with one of the more notable feats in Shivaji Maharaj's dramatic life. Raigad Fort, 80 km north-west of Mahabaleshwar, was the Maratha capital for six years before Shivaji Maharaj's death.

Photos of Mahabaleshwar

Click here to view my Mahabaleshwar Photo Album

Tuesday, October 20, 2009

XDb - XML Base Proprietary Database


Project Synposis by : Mr. Atanu Maity, Email : am@programmer2programmer.net


XML (Extensible Markup Language) is a general-purpose specification for creating custom markup languages. It is classified as an extensible language, because it allows the user to define the mark-up elements. XML's purpose is to aid information systems in sharing structured data.

Proposed XML based proprietary database - XDb will be developed for Image based application. It will be file system based database system. It uses XML to store table definition and storing data. XML has inbuilt DTD data type definition features to validate the input data. Proposed System will use XQuery to query the stored data from XML file. Images will be stored in file system. File name or file pointer will be used to retrieve the image file from the file system.

System.XML, System.XML.XPath and System.XML.Schema namespace will be used to manipulate XML node, element, attribute and value in a XML file within .Net application.

Advantages

  1. It is completely Proprietary database.
  2. Data will be stored in XML file which is easy to manipulate in ADO.Net
  3. Image will be stored in file system which will give better access speed.
  4. Multiple images can be stored in single file and system can read individual image from one file.
  5. Individual image can be stored in single image folder and can read from that folder.
  6. Data and Image can be encrypted by any industry standard encryption algorithm like DES, AES, 3 DES.
  7. System will query the by using XQuery.
  8. Complete manage code written in .NET 2.0.
  9. Easy to integrate in .NET application.

Project Scope

1. Database Designing

Database details will be stored in XML file, like image folder or image storing file name, location.

2. Table Designing

Table definition will be stored in XML schema file having .xsd extension. With standard XML data type and precision, A "Valid" XML document is a "Well Formed" XML document, which also conforms to the rules of a XML file.

veh_data.xsd

xml version="1.0"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="veh_data">

<xs:complexType>

<xs:sequence>

<xs:element name="vd_id" type="xs:integer" use="required" />

<xs:element name="vd_loan" type="xs:string" use="required" length="16" />

<xs:element name="vd_loc" type="xs:string" use="required" />

<xs:element name="vd_date" type="xs:date" use="required" />

<xs:element name="vd_img_name" type="xs:string" use="required" />

<xs:element name="vd_img_type" type="xs:string" use="required" />

xs:sequence>

xs:complexType>

xs:element>

schema>

3. Storing of Data

Data will be stored in xml file, data integrity and constraint will be maintain by XML schema file

veh_data.xml

xml version="1.0" encoding="utf-8" ?>

<include xmlns="veh_data.xsd" />

<veh_data>

<vd_id>Tovevd_id>

<vd_loan>VDPU00000011vd_loan>

<vd_loc>Mumbaivd_loc>

<vd_date>10-Jan-2009vd_date>

<vd_img_name>VDPU00000011.jpgvd_img_name>

<vd_img_type>jpgvd_img_type>

>

<veh_data>

. . .

. . .

>

<veh_data>

. . .

. . .

>

<veh_data>

. . .

. . .

>

<veh_data>

. . .

. . .

>

4. Storing of Data

4.1 Store multiple images in a single imagebase file

While write single file in imagebase file it stores file information in imagebase header like file name, file type, byte start position, byte length. While read single file from imagebase it reads file information from header and read the bytes from imagebase by reading byte position and byte length. While write and read data in imagebase it can be used and standard byte encryption algorithm like DES, 3DES, RC4, PGP, AES. This will maintain data integrity and data security.


4.2 Store images in folder

Image will be stored in folder and file name will be stored in database table. It will give best performance however it reduces data integrity. While storing the file in folder we can apply standard encryption algorithm like DES, 3DES, RC4, PGP, AES.

Query the Data

XDb will use XQuery to query the data from XML file. XQuery is the language for querying XML data. XQuery is a language for finding and extracting elements and attributes from XML documents. XQuery provides the means to extract and manipulate data from XML documents.

XQuery uses XPath expression syntax to address specific parts of an XML document. It supplements this with a SQL-like "FLWOR expression" for performing joins. A FLWOR expression is constructed from the five clauses after which it is named: FOR, LET, WHERE, ORDER BY, RETURN. The language is based on a tree-structured model of the information content of an XML document, containing seven kinds of node: document nodes, elements, attributes, text nodes, comments, processing instructions, and namespaces.

Out of Scope

Following are the out of scope for current version of XDb 1.0, will be work upon on next version.

  1. Data Compression
  2. Store image file in different drive for single file concept.
  3. DB Interface for creating, altering and managing data base.

Database Architechture

Following diagram will explain the different file in the XDb database and their purpose.

Monday, October 19, 2009

Academic Project Idea, Title, Concept, Abstract Download

Academic Project Idea, Project Title, You can use this project title for your final year project submission.
Check more than 500+ unique free project idea, download this project abstract, source code and complete your projects

  • .NET File Encrypter
  • Accounting and invoicing system
  • Accounting System
  • Accounts Management System
  • Advertisement posting website
  • After sales Service System
  • Airline Ticket Booking System
  • Annual Maintenance Contract
  • Annual Maintenance Contract System
  • Apartment Management System in Vb .Net
  • Artificial intelligence network load balancing using ant colony optimization
  • Asp network monitor
  • ATM Simulator
  • Auction System
  • Audio Book Mp File Manager
  • Automated employee info system
  • Automobiles Sales System
  • Banking System
  • Bb - Bulletin Board based portal
  • Budget management system
  • Bug tracker design and implementation
  • Building intelligent shopping assistant using data mining technique for web services
  • Business software solution
  • Call center CRM portal
  • Call center management
  • Call Center Management
  • Cargo Airway Bill generation system
  • Cargo tracking system
  • Cargo Tracking System
  • CDAC Store Management
  • Chart Generator
  • Child care system
  • Child care system
  • Claims management system
  • Claims Management System
  • Clean proxy
  • College Management System
  • Complete Recruitment Management System
  • Complete recruitment system
  • Computer Spares
  • Conference Management System by managing author, reviewer and chairs
  • Content Management Portal
  • Content management System
  • Convolution filters
  • Credit card banking System
  • Credit card management system for bank
  • CRM - Customer Relation Management System
  • CRM (Customer Relation Manager) design and implementation
  • Cryptography Solutions
  • Customer Relationship Management (CRM)
  • Data hiding additional files in a zip archive
  • Data mining for application processing
  • Data mining For Credit Card Application Processing
  • Data mining For Credit Card Fraud Detection
  • Data warehouse project
  • Data warehouse Project
  • Data warehousing
  • Database schema comparison
  • Defect tracking design and implementation
  • Defect Tracking Tool
  • Design and implementation HRMS
  • Diagnostics Fuzzy Logic
  • Digital Photo Sorter.Net Portrait
  • Dispatch Management System
  • Distributed data mining in credit card fraud detection analysis
  • Distributed information report
  • Doctors assistant
  • Document management versioning system
  • Dying System
  • Dynamic college information system and data integrity maintenance
  • Dynamic college web portal
  • Dynamic University Linking
  • Dynamic university linking design and implementation
  • E Ticketing
  • E commerce business to business B2B Portal
  • E commerce front store
  • E governance
  • eBanking design and implementation
  • Ecareer & consultancy service
  • eCareer and consultant design and implementation
  • eCommerce application for B2C
  • Edge detection filters
  • Edge detection in images with wavelet transform
  • Education Software Solutions
  • Efficient Distributed Data Mining Using Intelligent Agents Vb.Net
  • EGovernance
  • eHealth care system
  • eHospital design and implementation
  • E-learning Solution with Testing Engine
  • E-Logistics Application Management
  • eLogistics for warehouse management design and implementation
  • eMail security system design and implementation
  • Employee management system
  • Employee profile management system
  • Employees information system
  • Enterprise Application Integration (EAI)
  • Enterprise Resource Planner
  • Enterprise Resource Planning (ERP)
  • ePay secure transactions
  • ePharmacy design and implementation
  • eRecruitment design and implementation
  • ERP - Enterprise Resource Planner
  • ERP design and implementation
  • eSales order processing
  • Event Scheduler and Activity Planner
  • Expert System Application System
  • Face Recognition
  • File encryption decryption with hash verification
  • Fleet Rental Management System
  • Flood fill algorithms in c# and gdi+
  • Flower Shop System
  • FTP - FTP Client Application System
  • Furniture Mart Solutions
  • Garage Program System
  • Genetic algorithms and the traveling salesman problem using
  • GSM online mobile shop shopping cart using ASP.NE
  • Health Care Management System
  • Health care mgt design and implementation
  • Hiding binary data in HTML documents
  • Hiding messages in the noise of a picture
  • Hopfield model of neural network for pattern recognition
  • Hospital Managemnet System
  • Hospitality & Travel Industry Software Solutions
  • Hotel management System
  • HR Consultancy System
  • Human Resources Management System
  • Image processing for bilinear filters and resizing
  • Image processing for displacement filters, including swirl
  • Image processing for the hsl color space
  • Image recognition with neural networks
  • Institute Management System
  • Insurance system
  • Integrated And Network Internet Mailing,
  • Browsing And Messaging System And Solutions
  • Integrated Business Applications - EAI
  • Integrated Campus Management
  • Integrated Enterprise Management Solution system
  • Integrated Internet Information Monitoring and Messaging System
  • Intelligent Network Information and Messaging System
  • Internet banking
  • Inventory Management and Control
  • Inventory System
  • Issue and Defect Management automation
  • Issue tracking
  • Jeweler Designing System
  • Job consultancy portal
  • Job orders system
  • Judicial management system
  • Library management system
  • LIC
  • Mailer System
  • Mask Address Finder
  • Mask Address Finder
  • Material forecasting
  • Material Maintainace System
  • Materials Management System
  • Matrimonial
  • Matrimony & Marriage Portal
  • Membership Management System
  • Message digest
  • Mobile Bluetooth System
  • Mobile phone file transferring
  • Morphing System
  • Multilevel/Network Marketing System
  • My explorer in c sharp
  • Net banking system
  • Network Simulator and Communicator With Rat
  • Networking Monitoring And Management System
  • Neural network for Unicode optical character recognition
  • Online Affiliate Management
  • Online Alumni / Reunion Management
  • Online auction and shopping cart
  • Online Auction Management
  • Online Automobile Website Management
  • Online Automobile Website Management
  • Online Banner Advertisement Management
  • Online Billing Management
  • Online Book Sale Portal
  • Online book shopping
  • Online Directory Management
  • Online Discussion Forum
  • Online Education Courses & Events Booking Management System
  • Online event management
  • Online Examination
  • Online executive time and activity scheduler
  • Online Feedback Management
  • Online File Exchange / Share Management
  • Online forum to post reply and manage members
  • Online Gamming Portal
  • Online job site
  • Online leasing management system with e-commerce
  • Online library Management System
  • Online Matrimony Management
  • Online Net banking System
  • Online Newsletter Management
  • Online Newspaper / Magazine Publishing
  • Online ordering and tracking system with payment integration
  • Online Payment Solution
  • Online Pet & Vet Management
  • Online Photo Gallery Management
  • Online Product Website Management
  • Online Project & Resource Management
  • Online Project Management & Collaboration - Plan, Track, Collaborate and Manage your Projects Online
  • Online Property Search Management
  • Online purchase, invoice and order processing
  • Online Quotation Sales Management
  • Online recruit system
  • Online Resume & Placement Management
  • Online sales order processing
  • Online school registration asp net
  • Online shop cart
  • Online shop shopping cart
  • Online Support Ticket Management
  • Online task management
  • Online university portal
  • Online VRS vehicle reservation system
  • Online Web Based Hospital Management Solution
  • Online Website Analysis Management
  • Online Website Analysis Management
  • Online Website Content Management
  • Order processing client
  • Orthodontist Treatment System
  • Patient Care System Vb Net
  • Patient Management System
  • Pc rental system
  • PC Rental System
  • Personal Information Manager
  • Pharmacy Management System
  • Photo Editor, Image Editor for the Image Management Solution
  • Point of Sale System for Big Shopping Marts
  • Policy Management Software Solution
  • Portfolio Manager - Bse, Nse, Mutual Fund
  • Portfolio manager - bse, nse, mutual fund
  • Portfolio of Content Management System
  • Production Management System
  • Project Monitoring and Management Software
  • Project scrutinizer
  • Project tracking tool
  • Property management system
  • Proxy Server
  • Proxy Server Manager
  • Purchase information system
  • Purchase order processing
  • Purchase Order System
  • Quick car rental system
  • Quiz biz
  • Railway Reservation System
  • Real estate Agents Portal Design System
  • Real estate management system
  • Recruitment Solution System
  • Remote Access Server
  • Remote Explorer and Remote Task Manager
  • Remote System Management
  • Report Writer Solutions
  • Resorts sites
  • Restaurant Management System
  • Resume cruiser
  • Retail Business Software Solutions
  • RFID based Access Control System, Time & Attendance management
  • RFID based Asset Management Solution
  • RFID based Health Management Systems/Smart Health Cards
  • Sales & Service Maintenance System
  • Sales and purchase System
  • Sales and Services Maintenance
  • Sales Force and Target Monitoring system
  • Sales invoice system
  • Sales order processing
  • Sales order processing System
  • Sales Order System
  • Scribe automation
  • Send Sms to Cell Phone Through SMTP Mail
  • Serial Code Communication
  • Serial Code Communication
  • Service flow automation
  • Service flow automation System
  • Service flow automation system
  • Shipping Management
  • Shipping Management
  • Shopping cart for business and developers
  • Shopping mall management system
  • Smart Billing System
  • Smart knowledge provider
  • Social Network Site like Orkut
  • Social Networking Portal with Chat and Messaging, Sharing
  • Software license monitoring system
  • Source Control Managem,net
  • SQL Server Schema Manager
  • Steganography for data hiding messages in midi songs
  • Steganography for data reading and writing avi files
  • Steganography for hiding data in wave audio files
  • Steganography for indexed images and their palettes
  • Steganography for multiple key and carrier files
  • Steganography for regions with different data density
  • Stock Management System
  • Stock trading system
  • Stock trading system
  • Supply chain & Inventory Management in ecommerce system
  • Supply Chain Management (SCM)
  • Supply Chain Management solutions for Logistics/Warehouse Management
  • Survey Guideline for Product Launch
  • Sw License Monitoring System
  • TCPIP chat client-server using c#
  • Telecom Software Solutions
  • Tender quote management
  • Tender Quote Management
  • Text text steganography
  • Textiles Management System
  • Trainee Management System
  • Training Centre Maintenance
  • Universal banking
  • VB .Net Dynamic Switch Port Mapper
  • VB .Net File Encryption and Decryption
  • Vb .Net HTML Editor
  • Vb .Net Image Converter
  • Vb .Net Multi-Threaded Port scanner
  • Vb .Net Pc Lister
  • VB .Net Screen Capture
  • VB .Net Send Sms Utility
  • VB .Net Smart Mail Transfer Protocol
  • VB .Net System Information
  • VB .Net Virtual Desktop System
  • VB .Net Wallpaper Changer Program
  • VB .Net Windows Management Instrument
  • VB .Net Windows Multi File Search Utility
  • Vb Bug Tracking
  • Vehicle Service Maintenance
  • Vertical market
  • Vibe .Net Internet History Viewer
  • Virtual bulletin board
  • Virtual Classroom
  • Virtual Classroom
  • Virtual exam controller
  • Voice Navigation System
  • Web admin & server info system
  • Web admin and web server information
  • Web based Business Process Management Solution
  • Web based Business Process Management Solution
  • Web based Customer management system
  • Web Based Email Solutions
  • Web Based Healthcare Insurance Policy Sales and Management System
  • Web based Insurance Management System
  • Web based Inventory
  • Web based portal system
  • Web based Supply Chain Management
  • Web conference system
  • Web network stats generator and server information system
  • Web shop, online shop
  • Website for Real Estate Classifieds
  • Wedding tracker system
  • Windows management instrumentation WMI implementation
  • Work flow automation system
  • Workflow management system
  • XML Data Exchange Tool

Free Download of Academic and Live Project of IGNOU, SMU

Live Projects - Free Download Complete source code, documentation

Download IGNOU, SMU Last Year, Previous Year, Final Year / Semester project files for MCA (Master of Computer Application), BCA (Bachelor of Computer Application), BSc. (Bachelor of Science), BE (Bachelor of Engineer), BTech (Bachelor of Technologies), BSC-CS (Bachelor of Computer Science), BSC-IT (Bachelor of Science in Information Technology), DIT (Diploma In Information Technology), BCom IS (Bachelor of Commerce in Information System), PGDCA (Post Graduate Diploma in Computer Application), MScCS (Master of Science in Computer Science), MCom IS (Master of Commerce in Information System), MBA IT ( Master of Business Administration Information Technology), BIT, ADIT, ME, MTech, MBA IT/System, Diploma, Polytechnic Engineering , Computer Science college student of Indian university.

Click here to get more than 500 unique academic project idea in different programming languages. Download this project concept, abstract, SRS, source code to complete project for IGNOU, SMU, DOEACC University and college submission.

Project # 1 eBilling and Invoice System
Computerization of Billing and Invoice system, Download project documentation, project source code, project executable files.

Type :
Desktop / Client Server
Technology :
Visual Basic, MS ACCESS
Credit : Mr. Atanu Maity

Project # 2 IMPRO (Industrial Manpower Resource Organizer)
This project is developed for Industrial Manpower Resource Organizer for managing Employees, branches, planning, controlling and executing HR policies, HR Automation software and Reports.

Type :
Desktop / Client Server
Technology :
VB.NET, SQL Server
Credit : Mr. Joydeep Dass

Project # 3 Online Registration (Online Student Registration System)
Online Registration System is an web based application for on line submission of application forms, On-line Quizzes for the first semester courses, online results will display after completing the test. Inbuilt login security system for Authentication.

Type :
Web Application
Technology :
ASP (Active Server Page), Java Script, MS Access
Credit :
AJProfessionals

Project # 4 WCPS (Web Based Claims Processing System)
Web Based Claims Processing System (WCPS) which is web based so that the employee can fill the form online and submit it so that the form is sent to Claim Processing Department (CPD) through Internet. At CPD, the form needs to be checked automatically by a program which will compute the amount that needs to be reimbursed to the employee for the treatment undertaken.

Type :
Web Application
Technology :
ASP.Net, C#, SQL Server
Credit :
AJProfessionals

Project # 5 eProperty (Estate Agent / Property Management System)
eProperty – is an Estate Agent and Property Management System is a user friendly contact and property manager for real estate professionals. Save time and sell more by empowering to easily keep track of leads, manage listings, and market to new prospects.

Type :
Desktop / Client Server
Technology :
VB6, SQL Server, Crystal Report
Credit :
Readymadeproject