Tuesday, December 16, 2008

Batch Watermark Creator 6.6




Batch Watermark Creator 6.6 | 
3.48 MB | (Win32, Linux, Mac)

Batch Watermark Creator is a special program what batch adds text or images watermarks to your photos, images and pictures. Nowadays, people like to upload their digital photos and pictures onto the Internet, and share them with their relatives, friends. Many enterprises resort to the Internet to demonstrate and promote their products. However, duplication and dissemination of products' pictures are very easy, and many pictures are spread without authorization. In order to protect these pictures from illegally used by others, the most effective way is to make a watermark in the pictures before upload.

Usually, we resort to specialized picture processing tool to complete the watermark work such as PHTOTSHOP. However, it's really too much work to do if you have a multitude of pictures to watermark, and it's also very inconvenient as you have to know some specialized knowledge. So, for your consideration, as a specialized batch add watermarks software is designed for you.

Key features:
  • Select and process images in batch mode.
  • Provides 40+ graphics formats (JPEG, BMP, TIFF, PCX, PNG, TGA, PBM, PGM, PPM, GIF, VDA, ICB, VST, PIX, WMF, FAX, PSD, PDD, PSP, CUT and PCD etc) and saving into 4 most popular formats.
  • Use the special technologies for smooth text. So the text watermark is comparable with Photoshop.
  • The visible watermark script editor can very easily create watermark template.
  • Supports add text and image watermark to images.
  • Supports watermark tile and fit.
  • Built-in picture editor.
  • Use PNG alpha technologies. The verge of watermarks has no any variedness.
  • You can set up text's font size, color, position etc..
  • Supports multi-template using and management.
  • Automatically Save the Users' settings on exit.
  • Batch resize the processed images.
  • Supports Drag and Drop. You can drag any images in Windows explorer and drop them the main window.
  • Preview pictures before you save.
To download, clik the icon below
click to download

Monday, December 15, 2008

WinRAR 3.80 Final




WinRAR 3.80 Final
1.29 MB | Archive manager | (Win32, Linux, Mac)

WinRAR is a powerful archive manager (Win32, Linux, Mac). RAR files can usually compress content by 8 percent to 15 percent more than ZIP files can. WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. It can backup your data and reduce size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format.

Features of WinRAR:
Changes in Version 3.80:

1. Added support for ZIP archives containing Unicode file names in UTF-8 format. When creating ZIP archive, WinRAR stores names in Unicode only if they cannot be stored correctly using the current single byte character set.
2. Added decompression support for WinZip AES encrypted ZIP archives.
3. Improved Unicode support for RAR and ZIP archive names.
4. "Ask before overwrite" and "Skip existing files" update modes are now available in archiving dialog. They allow to specify WinRAR behavior when updating already existing files in archive. Unlike already available "Fresh existing files only" and "Add and update files", these new modes ignore file date and compare only file names.


Command line equivalents of these modes are:
a) switch -o enables "Ask before overwrite" archiving mode;
b) switch -o- enables "Skip existing files" archiving mode;
c) switch -o+ enables "Overwrite all" mode (default for archiving).


5. New "Add to context menu" option in "Profile parameters" dialog. If this option is on, the profile name will be displayed in Explorer context menus allowing to activate a profile from context menu.
6. New -cp switch allows to select a compression profile in command line mode. It is supported only by GUI WinRAR.exe, not by rar.exe.
7. New "Options" page of archiving dialog contains the group of settings modifying the behavior of "Delete files after archiving" option from "General" page:
a) Delete files. Delete files normally like in previous WinRAR versions.
b) Move files to Recycle Bin. Deleted files are placed to Recycle Bin.
Command line equivalent of this option is -dr switch.
c) Wipe files. Before deleting file data are overwritten by zero bytes to prevent recovery of deleted files.
Command line equivalent of this option is -dw switch.


All these options have an effect only if "Delete files after archiving" is on. You can enable any of these options in the default compression profile to change the default behavior of "Delete files after archiving".

8. WinRAR "Extraction path and options" dialog is now resizable. You can use the mouse to drag its border to the desired size and provide more space for folder tree pane. WinRAR will store new dimensions of this dialog.
9. New "Update" SFX script command and "Update mode" group of options in "Update" page of "Advanced SFX options" dialog. These command and options allow to check time and implement file time based updating;
10. SFX script "Shortcut" command and "Add shortcut..." command in "Advanced SFX options" dialog now allow to specify an icon file containing an icon associated with shortcut.
11. New "Wipe temporary files" option in "Settings/Security" dialog provides more secure, though slower, way to delete temporary WinRAR files.
12. WinRAR and RAR display the total progress bar when unpacking a multivolume RAR archive if all volumes are present in the same folder.
13. WinRAR and RAR automatically expand names of environment variables in list files. For example, a list file can contain lines like:

%windir%\*.exe
%USERPROFILE%\Desktop


This feature is available only in Windows RAR version.

14. Added support of TAR archives with non-zero "extra field" data.
15. Added support of TAR archives, which does not contain the end of archive entry consisting of 512 zero bytes.
16. Improved Unicode support when dragging files from WinRAR window.
17. Shift+Tab key combination can be used in main WinRAR window to switch the input focus between interface elements (files, comment, tree, address) in reverse order. In previous versions Shift+Tab used the same order as Tab.
18. Corrected a possible WinRAR crash when opening truncated UDF ISO files.


Click download icon below to download the file:
Click the icon to download

Saturday, December 13, 2008

Java Servlet and JavaServer Pages


Java Servlet
The Java Servlet API allows a software developer to add dynamic content to a Web server using the Java platform. The generated content is commonly HTML, but may be other data such as XML. Servlets are the Java counterpart to non-Java dynamic Web content technologies such as PHP, CGI and ASP.NET. Servlets can maintain state across many server transactions by using HTTP cookies, session variables or URL rewriting.
A Servlet is an object that receives a request and generates a response based on that request. The basic servlet package defines Java objects to represent servlet requests and responses, as well as objects to reflect the servlet's configuration parameters and execution environment. The package javax.servlet.http defines HTTP-specific subclasses of the generic servlet elements, including session management objects that track multiple requests and responses between the Web server and a client. Servlets may be packaged in a WAR file as a Web application.
Servlets can be generated automatically by JavaServer Pages (JSP) compiler, or alternately by template engines such as WebMacro. Often servlets are used in conjunction with JSPs in a pattern called "Model 2", which is a flavor of the model-view-controller pattern.

JavaServer Pages (JSP)
JavaServer Pages (JSP) is a Java technology that allows software developers to dynamically generate HTML, XML or other types of documents in response to a Web client request. The technology allows Java code and certain pre-defined actions to be embedded into static content.
The JSP syntax adds additional XML-like tags, called JSP actions, to be used to invoke built-in functionality. Additionally, the technology allows for the creation of JSP tag libraries that act as extensions to the standard HTML or XML tags. Tag libraries provide a platform independent way of extending the capabilities of a Web server.
JSPs are compiled into Java Servlets by a JSP compiler. A JSP compiler may generate a servlet in Java code that is then compiled by the Java compiler, or it may generate byte code for the servlet directly. JSPs can also be interpreted on-the-fly, reducing the time taken to reload changes.

JSP and Servlets
Architecturally, JSP may be viewed as a high-level abstraction of servlets that is implemented as an extension of the Servlet 2.1 API. Both servlets and JSPs were originally developed at Sun Microsystems. Starting with version 1.2 of the JSP specification, JavaServer Pages have been developed under the Java Community Process. JSR 53 defines both the JSP 1.2 and Servlet 2.3 specifications and JSR 152 defines the JSP 2.0 specification. As of May 2006 the JSP 2.1 specification has been released under JSR 245 as part of Java EE 5.

Here I've share some note about Servlet and JavaServer Pages(JSP). You can download it learn about servlet and JSP by yourselft. That note will teach you step-by-step about to use and learn servlet and JSP.. To download it, just click thedownload icon below..happy download..

click to download the note

Thursday, December 11, 2008

Macromedia FreeHand


Macromedia FreeHand is a computer application for creating two-dimensional vector graphics (use of geometrical primitives such as points, lines, curves, and polygons to represent images, also known as geometric modeling), oriented to the professional desktop publishing market. It is available in versions for Microsoft Windows and Mac OS X.

FreeHand is very similar in scope, intended market, and functionality to Adobe Illustrator. It was created by Altsys and licensed to Aldus, which released versions 1 to 4. When Aldus merged with Adobe Systems, because of the overlapping of market with Illustrator, Adobe returned FreeHand to Altsys soon after the merger (after some legal wrangling, and intervention by the Federal Trade Commission). Altsys was later bought by Macromedia, which released FreeHand 5.0, 5.5 (Mac only), 7, 8, 9, 10 and 11/MX. In 2005 Adobe acquired Macromedia, thus returning the FreeHand product to Adobe.

A flexible application, it is used for page layout (especially since version 4 which was based on Altsys Virtuoso for NeXTstep and had multi-page capabilities) as well as the creation and editing of vector graphic files for print and the Web.

Its current version, FreeHand 11, is marketed as FreeHand MX, which shows its integration with the Macromedia MX line of products, which also includes Macromedia Flash, Macromedia Dreamweaver and Macromedia Fireworks and more.

Below is the screen shot about Macromedia FreeHand.
Figure 1.

Figure 2

Here I've share tutorial about how to use Macromedia FreeHand. You can download and learn it. This tutorial is teach you step by step. Dummies also can learn from this tutorial.
Click download icon below to download this tutorial.
Click to download

source:http://en.wikipedia.org/wiki/Macromedia_FreeHand
tags: macromedia FreeHand, wikipedia, learn freehand, tutorial

Monday, November 17, 2008

IT Planning and Management


This subject presents a strategic perspective to the planning and management of IS/IT in an organization. It consists of two modules. The first module is on the strategic planning of IS/IT and covers the concept of strategic IS planning (SISP), the context of SISP and the process of formulating an SISP for an organization. This module introduces the student to a strategic perspective of IS/IT, provides an overview of business strategy and IS/IT strategy concepts, and introduces a framework for formulating an SISP for an organization. The second module is on the strategic management of IS/IT in an organization. Topics covered in this module are information management, knowledge management, organizing and resourcing IS/IT, managing IS/IT investment, and managing IS services, applications and infrastructure.


Content of this note.
Chapter 1 . A Strategic Perspective of IS/IT Role in Organisations
Chapter 2 . Understanding Business Strategy and IS/IT Strategy
Chapter 3 . Establishing an effective IS/IT Strategy Process
Chapter 4 . IS/IT Strategy Process: Assessing and Understanding the Current Situation
Chapter 5 . IS/IT Strategy Process: Determining the Future Potential
Chapter 6 . Formulating Business IS Strategy
Chapter 7 . Managing Applications Portfolio
Chapter 8 . IS/IT Strategic Management: Organisation and Resourcing for IT
Chapter 9 . Management of IS/IT Investments
Chapter 10 . Strategies for Information Management: Towards Knowledge Management
Chapter 11. Concepts of IS/IT Service and Service Quality; Managing the Supply of IT Services, Applications and Infrastructure

clik the download icon below to download the note..

click to download

Tuesday, November 11, 2008

Information Systems Control And Auditing


Hello folk.. long time not update my blog.haha... lately so busy with my project.. this time i will share note for information system (computer science) course, but other course can used this note..The note is title Information Systems Control And Auditing..

Here the chapter in this note..
1. Introduction – Auditing, Assurance and Internal Control
• Attest Services Vs Assurance Services
• Internal Control
• Assessing Audit Risk and Designing Tests of Control

2. Computer Operations
• Structuring Data Processing
• The Computer Center
• Operating Systems
• Personal Computer Systems

3. Data Management Systems
• Data Management Approaches
• Centralized Database Systems
• Databases in a Distributed Environment
• Controlling and Auditing Data Management Systems

4. Systems Development and Maintenance Activities
• Participants in Systems Development
• Information Systems Acquisition
• The Systems Development Live Cycle
• New Systems Development
• Systems Maintenance
• Controlling and Auditing The SDLC

5. Electronic Commerce Systems
• Network Topologies
• Electronic Commerce Technologies
• Network Software
• Internet Commerce
• Electronic Data Interchange (EDI)
• Controlling and Auditing Electronic Commerce
• Controlling Electronic Data Interchange

6. Computer Assisted Audit Tools and Techniques
• Application Controls
• Testing Computer Application Controls
• Computer Aided Audit Tools and Technique For Testing Controls

7. CATTs For Data Extraction and Analysis
• Data Structures
• Embedded Audit Module
• Generalized Audit Software
• ACL Software

8. Auditing The Revenue Cycle
• Overview of Revenue Cycle Technologies
• Revenue Cycle Audit Objectives, Controls, And Test of Controls
• Substantive Test of Revenue Cycle Accounts

9. Auditing The Expenditure Cycle
• Overview of Expenditure Cycle Technologies
• Expenditure Cycle Audit Objectives, Controls And Tests of Controls
• Substantive Tests of Expenditure Cycle Accounts

10. Fraud and Fraud Detection
• Ethics
• Fraud
• Auditor’s Responsibility For Detecting Fraud
• Fraud detection Techniques


click the icon below to download the note..Happy download..
Click for download the note

Friday, October 10, 2008

Baby do's and baby don'ts


This tips show how to taking care of your child..












Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Image Hosted by ImageShack.us

Wednesday, October 8, 2008

Men vs Women


How girls and boys handle their morning differently.

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

Free Image Hosting at www.ImageShack.us

That's why women always late....they late to school, to class, to office and etc....

Monday, September 15, 2008

Download from Rapidshare using Internet Download Manager(FDM) and Free Download Manager(FDM)


A lots of my friend ask me how to download from rapidshare using download manager.. Here I give you all simple tutorial using Internet Download Manager(FDM) and Free Download Manager(FDM) if you want to download from rapidshare.. It is a simple step. Dummies also can understand from this tutorial.

Using Internet Download Manager(FDM)
1. Open IDM and go to Download menu. From Download, choose Option. You can look like figure below.
2. After you choose Option, it will appear window Internet Download Manager Configuration. Choose tab Sites Logins. Like figure below.
3. After that, click to the New Button to enter the server,username and password configuation. You can look like picture below..


4. After you have enter it, you can download from rapidshare using IDM..



Using Free Download Manager(FDM)
1. Open FDM and go to Downloads menu. From Download menu, choose Create new download. Like figure below.

2.After that, it will appear Add Download window like figure below.


3.Then you click to User name and password required. After that, enter your username and password like figure below. Then you can proceed to download...



for me, i prefer use IDM rather used fmd...hope you got what i give to you.. happy download.. :) so that is simple step right.??if you have any question or anything to ask, pelase e-mail me or comment to this entry.
Related Posts Plugin for WordPress, Blogger...