Saturday, February 26, 2011
Virtualization
Input and Output Devices
Virtual Memory
Most computers today have something like 32 or 64 megabytes of RAM available for the CPU to use. Unfortunately, that amount of RAM is not enough to run all of the programs that most users expect to run at once.
For example, if you load the operating system, an e-mail program, a Web browser and word processor into RAM simultaneously, 32 megabytes is not enough to hold it all. If there were no such thing as virtual memory, then once you filled up the available RAM your computer would have to say, "Sorry, you cannot load any more applications. Please close another application to load a new one." With virtual memory, what the computer can do is look at RAM for areas that have not been used recently and copy them onto the hard disk. This frees up space in RAM to load the new application.
Because this copying happens automatically, you not even know it is happening, and it makes your computer feel like is has unlimited RAM space even though it only has 32 megabytes. Because hard disk space is so much cheaper than RAM chips, it also has a nice economic benefit.
The read or write speed of a hard drive is much slower than RAM, and the technology of a hard drive is not geared toward accessing small pieces of data at a time. If your system has to rely too heavily on virtual memory, you will notice a significant performance drop. The key is to have enough RAM to handle everything you tend to work on simultaneously - then, the only time you feel the slowness of virtual memory is when there is a slight pause when you are changing tasks. When that is the case, virtual memory is perfect.
When it is not the case, the operating system has to constantly swap information back and forth between RAM and the hard disk. This is called thrashing, and it can make your computer feel incredibly slow.
The area of the hard disk that stores the RAM image is called a page file. It holds pages of RAM on the hard disk, and the operating system moves data back and forth between the pages file and RAM. On a Windows machine, page files have a .SWP extension.
Friday, February 25, 2011
windows 7
Unlike its predecessor, Windows Vista, which introduced a large number of new features, Windows 7 was intended to be a more focused, incremental upgrade to the Windows line, with the goal of being compatible with applications and hardware with which Windows Vista was not at the time. Presentations given by Microsoft in 2008 focused on multi-touch support, a redesigned Windows shell with a new taskbar, referred to as the Superbar, a home networking system called HomeGroup, and performance improvements.
The first aspect which can simply decide the fate of a particular product. Well, Microsoft has worked a lot on this part it seems. Windows 7 uses the concept of jumplists, to organize recently used files as well as webpages. Windows 7 also presents to the users a new improved taskbar - an interactive taskbar that allows you to align the objects on the taskbar of your own accord and with more functionalities. The three new features, Aero Shake, Aero Peek and Snap provide very simple ways to get yourself out of the clutter on your desktop.
Media sharing is another aspect which any common user would find a very much enhanced and improved factor in Windows 7. Technology has kept on changing over the ages and media formats have not been an exception. Windows 7 provides much better enhancements and drag and drop features which were not available with the previous Windows Media Player. TV tuner cards can be used with much more ease, making the media viewing experience a much more lively utility of the Windows 7 operating system.
Windows 7 has made home networking a much more easy to use feature. The interface for connecting the machines to a home network has been made much more lively and easy to use. Setting up a few computers in a network is a much more easier task and sharing information is also relatively easier, not that it was much complicated in the earlier versions. It has also provided better features for network security making a small home or office network less vulnerable to hackers. Read more on computer networking.
Windows 7 SP1 update
Unless you belong to one of Microsoft’s secret clubs, in which case it’s already been made available to you, the very first service pack for Windows 7 should be popping into your Windows Update right around now. For many system administrators out there, this news marks the start of a very long week. A week in which typically work must be interrupted, machines must be individually updated, and of course being ready in case anything goes wrong (my condolences you are also running a Windows Phone 7 network).
One really notable feature to this update isn’t even in the update, but rather its deployment. Microsoft has made it easy(er) for system administrators to manually apply the Service Pack 1 update.
By making available a single massive file (2GB) with install capabilities for all versions and options within Windows 7, Microsoft has created an opportunity for both time and resources to be saved. No untimely network strain, no complicated set of installation instructions, no installing the wrong version accidentally. Just load the file onto a flash drive or compile an autorun CD and you are good to go. It’s an important step for Microsoft to achieve their goal of making sure that as many computers as possible are at the current version.
So for you home users why should you grab the SP1 update today? As always the service pack is, first and foremost, a compilation of the security updates that have been released up until this point. Additionally new stabilization methods have been implemented allowing for smoother function of features such as window recovery, designed to make sure your open folders are still there even if your computer powers down. Microsoft has also implemented a new licensing system for remote desktop, allowing for more secure remote computing experience.
To download SP1, simply go to the Windows Update icon in your control panel, and install the most recent updates. This initial process is brief, though will require a system restart. The total time for the update is estimated at 15 min. Good luck!
Monday, February 21, 2011
What is a computer bus?
A bus, in computing, is a set of physical connections (cables, printed circuits, etc.) which can be shared by multiple hardware components in order to communicate with one another.
The purpose of buses is to reduce the number of "pathways" needed for communication between the components, by carrying out all communications over a single data channel. This is why the metaphor of a "data highway" is sometimes used.
If only two hardware components communicate over the line, it is called a hardware port (such as aserial port or parallel port).
Characteristics of a Bus
A bus is characterised by the amount of information that can be transmitted at once. This amount, expressed in bits, corresponds to the number of physical lines over which data is sent simultaneously. A 32-wire ribbon cable can transmit 32 bits in parallel. The term "width" is used to refer to the number of bits that a bus can transmit at once.
Additionally, the bus speed is also defined by its frequency (expressed in Hertz), the number of data packets sent or received per second. Each time that data is sent or received is called a cycle.
This way, it is possible to find the maximum transfer speed of the bus, the amount of data which it can transport per unit of time, by multiplying its width by its frequency. A bus with a width of 16 bits and a frequency of 133 MHz, therefore, has a transfer speed equal to:
16 * 133.106 = 2128*106 bit/s,
or 2128*106/8 = 266*106 bytes/s
or 266*106 /1000 = 266*103 KB/s
or 259.7*103 /1000 = 266 MB/s
Bus Subassembly
In reality, each bus is generally constituted of 50 to 100 distinct physical lines, divided into three subassemblies:
• The address bus (sometimes called the memory bus) transports memory addresses which the processor wants to access in order to read or write data. It is a unidirectional bus.
• The data bus transfers instructions coming from or going to the processor. It is a bidirectional bus.
• The control bus (or command bus) transports orders and synchonisation signals coming from the control unit and travelling to all other hardware components. It is a bidirectional bus, as it also transmits response signals from the hardware.
The primary Buses
There are generally two buses within a computer:
• the internal bus (sometimes called the front-side bus, or FSB for short). The internal bus allows the processor to communicate with the system's central memory (the RAM).
• the expansion bus (sometimes called the input/output bus) allows various motherboard components (USB, serial, and parallel ports, cards inserted in PCI connectors, hard drives, CD-ROM and CD-RW drives, etc.) to communicate with one another. However, it is mainly used to add new devices using what are called expansion slots connected to the input/outpur bus.
The chipset
A chipset is the component which routes data between the computer's buses, so that all the components which make up the computer can communicate with each other. The chipset originally was made up of a large number of electronic chips, hence the name. It generally has two components:
• The NorthBridge (also called the memory controller) is in charge of controlling transfers between the processor and the RAM, which is way it is located physically near the processor. It is sometimes called the GMCH, forr Graphic and Memory Controller Hub.
• The SouthBridge (also called the input/output controller or expansion controller) handles communications between peripheral devices. It is also called the ICH (I/O Controller Hub). The tembridge is generally used to designate a component which connects two buses.
Sunday, February 20, 2011
Pros and Cons of Virtual Reality
Virtual reality has reached far beyond the interest of only computer scientists and engineers. It has also peaked interest in many other fields including; communication and telecommunication industrialists, artists, the entertainment industry, the medical field, the military, and major businesses and industries. Virtual reality is rapidly becoming an advanced means for communication. Virtual reality technology allows for users to observe and access information in a number of ways.
Virtual reality will be used in order to prevent mistake or practice trial and error. For example, in the medical field simulated surgery would serve in the training of new doctors and medical students. Experimentation with new procedures on simulated patients could become possible as well. In the military the use of simulators has been a practice for years. The use of virtual reality would provide even more advanced, realistic situations for military training in flight as well as in combat. Virtual reality in businesses and corporations would provide tremendous means of communication and equal access to data.
There are also several drawbacks to this technological advance. The present cost and the complications with the virtual reality equipment are two of the main negatives facing scientists. For example, the head set sometimes cannot keep up with the natural movements of the user's head. The issue of dehumanization in our society is a another negative aspect. Virtual reality, if as widespread as predicted, could result in a significant decrease in human interaction in the real world.
In addition, virtual reality defeats the traditional view that fantasy is unattainable. In a way fantasy and what we cannot obtain is intrinsic to our existence. People may begin to spend more and more time in their preferred "virtual or fantasy world" and less time in reality. If we begin to lose our hold on distinguishing between fantasy and reality, it may ruin our lives.
Saturday, February 19, 2011
Honda-ASIMO
Do you know…Honda ASIMO has celebrated its 10th Anniversary on 31st October 2010? In a decade ago, Honda has successful to create a humanoid robot. By this advance creation in the technology field has generate a revolution in humanoid robot technology. Before the creation of Honda-ASIMO, they have already started a research from a quarter of a century ago and 14 years later, on 31st October 2000, ASIMO was created.
ASIMO is one of the Honda’s long standing programs of research and development into robotics and human mobility. They are still holding with their goal in which they believe that a robot will be able to help people in their everyday lives. Others that this, robot will take on some of the tasks that would be able to make all the human lives become easier and more pleasant at all. The benefits bring by the robot will not only toward home environment but it could any situation where people need support. Honda’ teams are now focusing on the development of the robot’s intelligence as well as improve the relationship or understand with human and robot. What they are trying to do is as well as makes the robot 100% same like the human. They want it become truly usable humanoid robot and is clever as like the human.
Anyway, there is a website you can explore and interact with ASIMO-http://asimo.honda.com/. It is a very interactive and interesting website for me in where it can let me more understand and most important is I can play with ASIMO. You can give an order for ASIMO and then you are able to see how ASIMO is respond to your order. Go and try it^^
And there is the link for you to download the ASIMO sreen saver-http://asimo.honda.com/downloads/ASIMO.exe. Enjoy it^^
Pls: If can, please put your comment regardless this title. i'm interesting with your opinion^^
Friday, February 18, 2011
What is Bot?
- Link citations can be used as a proxy for editorial trust.
- Link anchor text may help describe what a page is about.
- Link co citation data may be used to help determine what topical communities a page or website exist in.
- Additionally links are stored to help search engines discover new documents to later crawl.
Friday, February 11, 2011
Specialized Application Software
The latest technological developments have created an opportunity for home users to take advantage of software previously used only in professional environments. For example, it is now possible, and quite common, for people to create their own Web sites. Home users also have access to software that helps manipulate and create graphic images. Many musicians and artists work from home to create complex and beautiful work using specialized applications.
Some of these same technological advances have allowed researchers and computer scientists to make advances in the field of artificial intelligence that previously were envisioned only in science fiction. Robots now provide security and assistance in homes. Virtual reality is providing opportunities in the fields of medicine and science but also commonly appears in video games.
Competent end users need to be aware of specialized applications. They need to know who uses them, what they are used for, and how they are used. These advanced applications include graphics programs, audio and video editing software, multimedia, Web authoring, and artificial intelligence, including virtual reality, knowledge-based systems, and robotics.
example
FilmMaker -
RIP software for creating screenprint films on most commonly used inkjet printers. Precision tools that provide ultimate screen quality and film densities while simplifying a complicated and critical process in you screenprint production cycle.
FilmMaker- The screenprinters choice
• Featuring patent pending variable dot halftoning technology
• Biggest selection of printer support
• Easy to use interface featuring Visual Production Manager (VPM) a multiple printer and queue job management system
Digital Factory is essential for digital printing of color graphics. Digital Factory offers an award-winning RIP and:
File Management
• Print directly from most design applications or import files from them
Color Management
• Expert color management based on AGFA technology
Output Solutions
• Advanced queue system
• Wide selection of printer/cutter drivers
• Color profiles for all major printers
Only Digital Factory integrates all your digital printing production needs into one easy to use package.
Software development services for manufacturers and solutions providers looking to market unique workflow solutions that involve design, production and product web fulfillment.
Experienced, Market-Proven, Custom Software Provider
Design software
A complete design feature set that can be structured to meet specific market requirements.
Production software
Integrated production features and output device drivers that support a variety of production workflows including; Cutting (engravers, routers, plotters, etc), Printing (desktop and wide format printers) used in the production of goods.
Electronic web fulfillment
Management software for design, production and delivery of goods via the internet. Specializing in product customization and fulfillment of products across remote sites tied to a central production facility.
EngraveLab - The ultimate engraving software solution for rotary and laser engravers — A complete design to production package, or the perfect companion to CorelDraw™.
Your Creativity.
No signmaking software has as many design features specific to large format layout and design. Your imagination, our software, unlimited design possibilities.
Your Productivity
Unmatched workflow support. SignLab Version 9 is completely integrated with many popular design applications such as Corel, Illustrator and PhotoShop. Our customers enjoy seamless file sharing with all these applications. Visual Production Manager manages print, cut, print and cut workflows all in a single easy to use interface.
Your Opportunities
SignLab is the only signmaking software that enables virtually instant access to additional profit centers. Add-on specialty modules such as Vehicle Graphics, Engraving, Garment Decorating to your existing package and avoid having to learn new software when new business opportunities arise.
CADlink Technology Corporation is pleased to announce the release of SignLab Version 9.
The inclusion of “Total Solutions Modules” as possible add-ons to SignLab V9, reinforces the positioning of the software as a complete, commercial production product. Customers are able to add “Professional Vehicle Graphics”, “Garment Decorating” (for either direct to garment printing or rhinestone application), “Sign Routing” or “Engraving” modules to most SignLab V9 packages and immediately begin to produce products without having to learn an entirely new software product.
“The new feature-set included within SignLab V9 is specifically intended to address design and production issues that signmakers face on a daily basis” says Jim Ramsden, CADlink President. “We are also very much aware that signmakers want to integrate and leverage the use of other design applications used in their daily workflow to produce vinyl cut signs as well as wide format digital print signage. SignLab V9 does exactly this”.
SignLab Version 9 includes the following key, new features;
• Optimized memory handling leveraging Windows 32 and 64 O/S’s; Windows 7, Vista and XP. Unmatched large file handling and RIP processing speeds.
• Automated workflow support from popular design applications such as Corel, Illustrator and PhotoShop.
• Easy to use menu-board design interface.
• Complete transparency support.
• Dozens of new bitmap and vector special effects features.
About CADlink Technology Corporation
Since 1987, CADlink Technology Corporation has been developing software applications for sign making, engraving, screenprintingß, garment decorating, routing and digital printing. Products include SignLab™, EngraveLab™, FilmMaker™, ProfileLab™, and Digital Factory™.
Recently CADlink has greatly expanded its software engineering scope to include custom software development for 3rd party OEM partners in a variety of niche markets that require design, printing, cutting and routing support.
CADlink’s corporate office is in Ottawa, Canada, and CADlink has branch offices in the USA, the UK, and Germany. CADlink software is available in over 50 countries worldwide, in 14 languages, through more than 200 dealers.