<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Download Java Game and Aplikasi Java - Source for your cellphone &#187; aplikasi java</title>
	<atom:link href="http://nanuy.com/category/aplikasi-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://nanuy.com</link>
	<description>Download Java Game and Aplikasi Java for Nokia, Sony Ericsson, Motorola and others</description>
	<lastBuildDate>Wed, 30 Jun 2010 07:46:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Java Application Scalability</title>
		<link>http://nanuy.com/java-application-scalability/</link>
		<comments>http://nanuy.com/java-application-scalability/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:42:08 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Scalability]]></category>

		<guid isPermaLink="false">http://nanuy.com/java-application-scalability/</guid>
		<description><![CDATA[Scalability of applications has become a lot more complex than buying a bigger Windows server or z/OS mainframe.  It is not just a system’s ability to handle user requests well as the numbers grow, but has mostly to do with managing system load, handling priorities, remaining responsive under high-load situations, while scaling as linearly as [...]]]></description>
			<content:encoded><![CDATA[<p>Scalability of applications has become a lot more complex than buying a bigger Windows server or z/OS mainframe.  It is not just a system’s ability to handle user requests well as the numbers grow, but has mostly to do with managing system load, handling priorities, remaining responsive under high-load situations, while scaling as linearly as possible. A key problem of large-scale systems is data integrity as the number of transactions with write operations grows and the danger of data locks slowing down the system increases. Often the maximum number of concurrent users is seen as a measurement of scalability, but that is a dangerous shortcut. The number and kind of transactions that are required within a certain time frame is the only true measure of scalability. Response times for a transaction mix should remain below a limit at the expected peak transaction load.</p>
<p>For Java applications is difficult and expensive to achieve predictable, scalable performance. Simple switching from the single-server environments to multi-server can cause overall application throughput to collapse. Adding more data can cause the database to need progressively more resources. Java applications that work instantly in test, can be twenty times slower in response time when loaded with concurrent users.<br />
<span id="more-283"></span><br />
The only (very complex) way to truly scale Java applications is to use three server tiers. The first is a HTTP-driven GUI, the second a Java server that de/serializes the tables of the third database tier into Java objects to perform the application logic. These tree tiers are often referred to as clustering, which is incorrect. Clustering is not related to vertically fragmenting the application but paralleling each server tier horizontally. So clustering can only be implemented independently for each of the tiers and requires very different functionality in each. In the case of the Web tier, no server-to-server communication is necessary, whereas at the other extreme, the database tier must manage transactional consistency across its cluster. This means that the cost of scalability is dramatically different for each of those tiers. Management and tuning is also completely different for each as well.</p>
<p>The HTTP tier performs SSL encryption and decryption duties, handles unique client connections by means of HTTP headers with ‘sticky load balancing’ information. HTTP requests are load-balanced across stateless servers and routed to designated J2EE server for processing. The application has to support sticky load balancing from the Web tier to be able to cluster both HTTP and Java tiers. Such Java applications exhibit intra-tier communication complexity that directly impairs scalable performance. The clustering of the database server has to be a function of the database product used, but it is impossible to scale the Java server without implementing some form of local data caching. Common forms are coherent clustered caching, fully replicated caching and partitioned caching.</p>
<p>Clustered caching maintains data in the Java application tier to satisfy data access requests from the cache without loading the database. The cache must not grow too large and provide data as current as necessary. Not all data is needed up-to-date. The cache expires data by LRU – least recently used and elapsed time algorithms.  In clustered systems, servers notify each other about data modifications and either delete or refresh the outdated data page. Coherent clustered caching needs the same as application logic to synchronize cache pages to guarantee a thread-safe implementation. A kind of dual-phase commit on page changes is required in a distributed cache to maintain transactional data consistency.</p>
<p>A fully replicated cache however does not have the problems of clustered caching but shares modifications with other members of the cluster in a “push” model.  While the data access has no measurable latency, a transaction should only be closed when the data from the cache has been serialized to the database tier. This is however mostly done in lazy writes and thus risky. The other problem is related to data locking because theoretically two servers can access the same data to write at the same time and therefore cause conflicts at transaction close.</p>
<p>The solution is the partitioned cache where each cluster server owns one unique fragment of the complete data set. All data are cached to the other servers but writes have to be synchronized to the owning server, but because communication is any-to-any, partitioned caches scale linearly with number of requests and data volume as you add servers. Replicating data from the owner and de-serializing tables into objects adds substantial latency. Therefore the application servers typically ‘object-cache the database-cache’ to avoid the additional de-serialization overhead for multiple object requests. The cache can load many objects from a single cache page in one I/O request rather than reading multiple table entries.</p>
<p>However, a substantially growing number of applications no longer read data from a database. Particularly process oriented applications (and that should be all of them) require data synchronization via backend interfaces such as SOA or MQ series from application silos. More often than not such interfaces require stateful conversations. Compared to database access, Web services based communications are at least a magnitude worse in performance, response time and throughput. Much of that has to do with the problems of XML defined data structures, the weak, ambiguous, and non-canonical XSD-based data definitions and the resultant parsing and validation. To reduce the number of transfers, SOA requests often pass a lot of incidental data because it might be needed, to avoid multiple data accesses. Obviously that is similar to creating a kind of SOA cache, but without any of the above mentioned mechanisms of data concurrency. Web services provided data are in principle always out of date. Web services transactions are so slow that they can not be used for applications that involve user interactions but just for straight-through processes without user intervention. To implement clustered caching for SOA Web services creates substantial problems, mostly because there is no defined mechanism for push-updates and lazy database writes. All of it has to be manually implemented by the Java programmers and is mostly hard-coded and application specific.</p>
<p>The complexity of measuring and predicting hardware and software performance becomes therefore a very complex task. During my years in IBM one of the key elements of designing a well working mainframe environment was based on the balanced system approach. The right mix of CPU power, RAM, disk I/Os was needed to get the most bang for your buck. Today the need for network bandwidth for the various intricacies of each of the tiers becomes the key element while HW is looked at as a cheap commodity. The immense OVERHEAD involved in juggling Web/HTTP clusters, Java tier clusters and expensive High-Availability clusters for the database tier requires huge amounts of commodity HW that is mostly not balanced to achieve scalable applications. Most systems just provide enough of everything to work. The idea of Cloud computing has to do with providing virtualized resources to such tiered systems adding more overhead for the virtualization. Hm, it sounds not very professional and well thought out to me …</p>
<p>CONCLUSION: Could the substantial overhead in using sticky-load-balancing, transaction-safe Java caching and database clustering, plus the substantial overhead for parsing and validating the XML data for SOA not be avoided? All of the above have been reasons why I chose a different route for the Papyrus Platform. Rather than the immense complexity of multi-layered caches – with multiple conversion from tables to cache pages to objects and reverse – I decided to collapse the horizontal structures and work with a purely (vertical) object model from definition to storage. That enables the use of the meta-data repository for application life-cycle management and substantially simplifies systems management and tuning.</p>
<p>The proxy replication mechanism of the object-relational database of the Papyrus Platform uses a partitioned caching concept where there is always a unique data owner and each server node uses a replicated copy that is either pull or push updated as per proxy definition. The objects do not have to be de/serialized as they are cached/replicated/binary stored as is. The same mechanism works transparently for all objects that are populated via Web services or other backend interfaces. The drawback is that during testing or at low load it seems to be not as fast as a Java app, but in difference it does scale linearly without needing additional programming or software as you add more commodity HW. Papyrus uses the same concepts across all servers because there are no tiers necessary and it also does not need virtualization.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/java-application-scalability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Application development India</title>
		<link>http://nanuy.com/java-application-development-india/</link>
		<comments>http://nanuy.com/java-application-development-india/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:35:53 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://nanuy.com/java-application-development-india/</guid>
		<description><![CDATA[Java is most suitable for creating Enterprise Applications for its flexibility and control. JAVA is used to create wide range of application with an extensive functionality. Java application development can be used for creating Games or corporate application. Java development allows users to take benefit of many Smartphone features, like GPS and Bluetooth and integrate [...]]]></description>
			<content:encoded><![CDATA[<p>Java is most suitable for creating Enterprise Applications for its flexibility and control. JAVA is used to create wide range of application with an extensive functionality. Java application development can be used for creating Games or corporate application.  Java development allows users to take benefit of many Smartphone features, like GPS and Bluetooth and integrate those features flawlessly with already-existing BlackBerry apps such as the address book, calendar, and maps features. The only disadvantage is that Java provides huge functionality and that requires some expert skills to take advantages and integrating JAVA application. <br/><br/>Choosing the right Java developer is always tough task when you are creating broad applications with a large amount of functionality. One feature of Java is portability, which means that programs written in the Java language must run similarly on any supported platform. <br/><br/>Sun Microsystems officially licenses the Java Standard Edition platform for Linux, Mac OS X, and Solaris. Java Programs have a reputation for being slower and requiring more memory than the programs written in some other languages. Java syntax is largely derived from C++. Unlike C++, that combines the syntax for structured, generic, and object-oriented programming. <br/><br/>Java development Advantages <br/><br/> JAVA programming enables secure and high performance development on multiple platforms. Outsource Java at Rightway solution, expertise in JAVA/J2EE Development with professional JAVA programmer. <br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/java-application-development-india/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Application Development Using Hibernate</title>
		<link>http://nanuy.com/java-application-development-using-hibernate/</link>
		<comments>http://nanuy.com/java-application-development-using-hibernate/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:15:32 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Using]]></category>

		<guid isPermaLink="false">http://nanuy.com/java-application-development-using-hibernate/</guid>
		<description><![CDATA[Java applications are revolutionary within the computer-based business arena. However, now java application development only just got easier with the ‘hibernate’ advantage. Java application development with hibernate as middle tier is now deployable both online as well as offline. It is not at all a difficult task when left to the software development experts, who [...]]]></description>
			<content:encoded><![CDATA[<p>Java applications are revolutionary within the computer-based business arena. However, now java application development only just got easier with the ‘hibernate’ advantage. Java application development with hibernate as middle tier is now deployable both online as well as offline. It is not at all a difficult task when left to the software development experts, who have got loads of experience to leverage. If you are going for a self deployment method, you need to pay special attention to the software application knowing where to start and the tools needed and this way you will end up spending more for time, cost and quality that comes for less. Best way is to leave it to the hibernate experts. <br/><br/>Hibernate for increased business acumen: <br/><br/>You can benefit from the hibernate expertise with the help of the online resources that serve you 24&#215;7, depending upon the criticality of your project. They can help you draw up a plan and jot down the guidelines that you need to double check on while the procedure is underway, this way you donot loose out on the delivery timelines. Web development with java requires you to pay attention to the special requirements and settings prior to even beginning to write the project code. Considering the effect that one wrong move can have on the business, it is imperative for you to know and use the right tool. <br/><br/>Web development using hibernate calls for the integration of basics like version control. The application not only addresses any J2ee development project, but it also acts like a control system within. Since there are several tools in the market for the deployment of java development with hibernate version control, you need to be careful. Tools like Subversion enable you to move data in the repository and retain the change history. <br/><br/>Advantages of hibernate as middle tier: <br/><br/>Java application development also involves a lot of intricate code generation work. This makes the development projects case sensitive. Building tools like Ant Maven or Make, enable the system to reach its full potential. However, with the ‘doctor in the house’ attitude that self help sites offer you, the whole versatility of the hibernate expertise is lost to very limited scope. It helps to view and weigh the pros and cons of each tool and then go about building complex procedures in the development environment. So, be your own doctor and God bless you. <br/><br/>Application development with hibernate as middle tier integrates the Development Environment in a unique manner. The Java development edge comes from the fact that the use of the right tool actually increases productivity and efficiency. It pays to get educated on the efficiency of the developers and the tool set. Web development with java calls for a knowledge based application of the software, knowing that you are in no way limited to theuse of a single tool. Java has been created to encourage multiple tool options depending on the specific business centric requirement. <br/><br/>Support systems are all in place on the internet and only a click or a call away. In order to capitalize on the level of productivity possible with Java, you should experiment with comparison shopping and not the new tools you come across. The latter is best left to the software development experts. Going through free demo versions and downloading options could result in wanton waste of time and precious business funds. The benefits of using hibernate as the middle-tier for language JAVA are as many as the industry-specific demands made on the technology. <br/><br/>Use hibernate, but use it to the best. Outsourcebest dot com <br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/java-application-development-using-hibernate/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SMS Sender Automatic</title>
		<link>http://nanuy.com/sms-sender-automatic/</link>
		<comments>http://nanuy.com/sms-sender-automatic/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 19:21:53 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[Symbian OS]]></category>
		<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[auto sms sender]]></category>
		<category><![CDATA[auto text messaging]]></category>
		<category><![CDATA[automatic sms send]]></category>
		<category><![CDATA[free sms]]></category>
		<category><![CDATA[free sms sender]]></category>
		<category><![CDATA[sms timer]]></category>
		<category><![CDATA[text message timer]]></category>

		<guid isPermaLink="false">http://nanuy.com/?p=276</guid>
		<description><![CDATA[Sending SMS by time setting now is easy. Just set the Text Message and when it will be send. Must running on background this java application. Symbian OS phone has this feature. Windows Mobile Phone also work fine with this apps. Download and install the file SMS Sender Automatic on your phone.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Auto-SMS" src="http://nanuy.com/files/auto-msg.jpg" alt="Auto SMS Sender" width="242" height="322" /></p>
<p style="text-align: center;">Sending SMS by time setting now is easy. Just set the Text Message and when it will be send.</p>
<p style="text-align: center;">Must running on background this java application. Symbian OS phone has this feature. Windows Mobile Phone also work fine with this apps.<span id="more-276"></span></p>
<p style="text-align: center;">Download and install the file <a title="download" href="http://nanuy.com/files/auto-msg.jar">SMS Sender</a> Automatic on your phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/sms-sender-automatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Download Your Favorite Online Videos</title>
		<link>http://nanuy.com/how-to-download-your-favorite-online-videos/</link>
		<comments>http://nanuy.com/how-to-download-your-favorite-online-videos/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 18:55:15 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Favorite]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Your]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/25/how-to-download-your-favorite-online-videos/</guid>
		<description><![CDATA[By now, almost everyone has seen an online video from a streaming video site like YouTube, Google Video, and Break. Many individuals have probably even come across a video clip they loved so much that they wanted to add it to their personal collection. Without the proper knowledge, however, on how to download streaming video, [...]]]></description>
			<content:encoded><![CDATA[<p>By now, almost everyone has seen an online video from a streaming video site like YouTube, Google Video, and Break. Many individuals have probably even come across a video clip they loved so much that they wanted to add it to their personal collection. Without the proper knowledge, however, on how to download streaming video, this could turn into a very frustrating process. To prevent this, read this complete guide on how to download online videos.<br />
Streaming video 101<br />
Streaming video is a fairly new technology, so, before discussing exactly how to download streaming videos, it may be helpful to explain precisely what this is. Streaming video is basically video that is transmitted over the Web. The sending and viewing of the video is done in real time. This means that, right when the viewer receives data transmitted from a sender, the video can be played.<br />
Online videos provide a great amount of convenience for Internet users. With the introduction of streaming video technology, a wide collection of video clips has been made available to the world. Additionally, online videos make viewing a much simpler process, as watching these clips does not require the installation of media software. Videos streamed over the Internet can be downloaded and viewed directly in any browser.<span id="more-260"></span><br />
How to download streaming video<br />
You might think that downloading online video is a trivial process. However, you must be reminded that the steps on how to download streaming video are very different than those for simply watching the clips. When you are downloading online videos, you are essentially copying the streamed data permanently onto your hard drive. Downloading online videos will allow you to save videos which can be viewed even when you are not connected to the Internet.<br />
If you feel that you have always been clueless as to how to download online video, you should know that your first step to downloading online videos is simply deciding whether you want to use an online site or a software application. Online sites are a great choice because all you are required to do is input the URL of your streaming video. Finding a website that will allow you to download online videos is made easy, as these sites are abundant on the Web. These sites will give you the option of choosing the format of your saved video. Most sites offer a wide variety of format choices when downloading online videos, including FLV, MPG, AVI, and WMV.  An advantage of using an online site is that you don&#8217;t have to be at your own personal computer to save videos.  Any computer with an active Internet connection would suffice.<br />
If you don&#8217;t think an online site is for you, choosing to use a software application for downloading online video is another option. One particular advantage that a software program has over a website is that some applications allow you to scale your video to the size you want. For instance, you may want your saved video to be optimized for playback on your mp3 player. Some programs would allow you to save videos using such specified resolution.</p>
<div style="margin: 5px; padding: 5px; border: 1px solid #c1c1c1; font-size: 10px;">
<div class="text">
<p>Deniz Kumral is multimedia expert who specializes on streaming video technologies and trends. To <a rel="nofollow" href="http://www.savevid.com">Download streaming videos </a>, visit his website <a rel="nofollow" href="http://www.savevid.com">Savevid.com</a></p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/how-to-download-your-favorite-online-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classes of Client Server Applications</title>
		<link>http://nanuy.com/classes-of-client-server-applications/</link>
		<comments>http://nanuy.com/classes-of-client-server-applications/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:56:18 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/23/classes-of-client-server-applications/</guid>
		<description><![CDATA[There is a spectrum of implementation that divides the work between client and server differently. Processing can be allocated in a number of ways. There are several major operations for database applications. They are host based processing, server based processing, client based processing, and Cooperative based processing. Host based processing is not true client/server computing. [...]]]></description>
			<content:encoded><![CDATA[<p>There is a spectrum of implementation that divides the work between client and server differently. Processing can be allocated in a number of ways. There are several major operations for database applications. They are host based processing, server based processing, client based processing, and Cooperative based processing.</p>
<p>Host based processing is not true client/server computing. Rather, host based processing refers to the traditional main frame environment in which all or virtually all of the processing is done on a central host. Often the user interface is through a dub terminal. Even if the user is employing a micro computer, the user`s station is generally limited to the role of a terminal emulator.</p>
<p>The most basic class of client/server configuration is one in which the server is principally responsible for providing a graphical user interface, whereas virtually all of the processing is done on the server. This configuration is typical of early client/server efforts, especially departmental-level systems. The rationale behind such configurations is that the user workstation is best suited to provide a user-friendly interface and those databases and applications can easily be maintained on central systems. Although the user gains the advantage of a better interface, this type of configuration does not generally lend itself to any significant gains in productivity or to any fundamental changes in the actual business functions that the system supports.</p>
<p>At the other extreme, virtually all application processing may be done at the client, with the exception of data validation routines and other database logic functions that are best performed at the server. Sophisticated database logic functions are housed on the <span id="more-257"></span>client side. This architecture is perhaps the most common server/client approach in current use. It enables the user to employ applications tailored to local needs.</p>
<p>In a cooperative processing configuration, the application processing is performed in an optimized fashion by taking advantage of the strengths of both client and server machines and of the distribution of data. Such a configuration is more complex to set up and maintain. This type of configuration may offer greater user productivity gains and greater network efficiency that other client/server approaches.</p>
<p>The exact distribution of data and application processing will depend on the nature of the database information, the types of applications supported, the availability of interoperable vendor equipment, and the usage patterns within an organization.</p>
<p>Quick Note: Taking the Nonsense out of looking for the right spyware remover</p>
<p>If you really want to take the work out of looking for that right Spyware Protection from a Spybot go to the Internet and get a Free Spybot or a Free Spybot Search and Destroy</p>
<p>Download, In order to prevent your vital information from being ripped from your computer get your Spybot Remover Today.</p>
<p>Server applications are useful if you want to upload or download files from client server.</p>
<div style="margin: 5px; padding: 5px; border: 1px solid #c1c1c1; font-size: 10px;">
<div class="text">
<p>You really want to take the work out of looking for Protection from a lurking theif then you should get your free <a href="http://www.new-spybots.com" target="_new">Spybot</a> to protect you. Go to the Internet and get The New <a href="http://www.new-spybots.com" target="_new">Free Spybot</a> Download or just <a href="http://getridofspybot.com" target="_new">Spybot</a></p>
<p>to prevent your vital information from being taken from you and given to someone who will steal your money or something else that you treasure so dearly.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/classes-of-client-server-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bearshare Free Musical Downloads &#8211; A Review</title>
		<link>http://nanuy.com/bearshare-free-musical-downloads-a-review/</link>
		<comments>http://nanuy.com/bearshare-free-musical-downloads-a-review/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:58:24 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Bearshare]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Musical]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/21/bearshare-free-musical-downloads-a-review/</guid>
		<description><![CDATA[I am sure you have heard about the Napster Free Music Download website. From this website you could download whichever music you wanted for free. You cannot do that anymore. Don&#8217;t despair &#8211; there are other sites out there providing free music downloads and one of these is called Bearshare. The Bearshare peer-to-peer software applications [...]]]></description>
			<content:encoded><![CDATA[<p>I am sure you have heard about the Napster Free Music Download website. From this website you could download whichever music you wanted for free.  You cannot do that anymore.  Don&#8217;t despair &#8211; there are other sites out there providing free music downloads and one of these is called Bearshare.   </p>
<p>The Bearshare peer-to-peer software applications promises the same as other programs produced out of the GNU/Gnutella stable. It offers the promise of free musical downloads. It is a bit harder to get a &#8220;free download&#8221; of the basic Bearshare program than others, such as Limewire and Frostwire. It promises a surprise you won&#8217;t like or appreciate; more details follow in a later paragraph. Limewire was eventually obtained from a freeware website on the internet and Frostwire was acquired from the Limewire quite easily.  </p>
<p>But I am going to talk about Bearshare in this article.  This is my experience: When I went to Bearshare they offered a membership in addition to the basic Bearshare software. I downloaded the software and attempted to install it. The following experience represents a danger still present upon the internet and especially with peer-to-peer applications. </p>
<p>Upon installing the Bearshare basic software package my antivirus application went crazy! It identified two unwanted passengers, an adware robot plus another which was a Startup Registry. These were indeed unpleasant and unexpected. I was very trusting of the website, which turned out to be a terrible mistake of mine. It had all the correct &#8220;looks&#8221; of a GNU open source website which I allowed to influence me.  </p>
<p>This caught me totally unaware when my system&#8217;s protection stepped in to prevent a possible dangerous event. I now feel that Bearshare and possibly other peer-to-peer sharing software applications may have &#8220;Trojans&#8221; and other nasties embedded. Using my &#8220;leftist&#8221; brain I found that I was suspicious of the intentions of say the Record Industry Association of America.  </p>
<p>What if they were unsatisfied with the impact of their lawsuit against individuals and Napster; maybe setting up pseudo free websites with contaminated software applications, the purpose of which is to scare people off from sharing files, software, audio, and video. I know what I&#8217;m writing is totally improvable; it sounds as preposterous as claiming that sharing files on the internet can harmfully reduce musical CD sales.  </p>
<p>I wonder who would believe that? Anyway, there won&#8217;t be any free music downloads using Bearshare to my computer. The surprises it gave me outweigh any promise of no monthly charges. </p>
<div style="margin:5px;padding:5px;border:1px solid #c1c1c1;font-size: 10px">
<div class="text"><b> Ian Koch </b> likes to provide readers with <a rel="nofollow" href="&lt;a" target="_blank">http://www.1000-free-music-downloads.com/freemusicdownload_review_list.html&gt;Free</a> Music Download Reviews and Articles. Check out <a rel="nofollow" href="&lt;a" target="_blank">http://www.1000-free-music-downloads.com&gt;1000-free-music-downloads.com</a> for more download info.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/bearshare-free-musical-downloads-a-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unlimited Music Downloads â?? Where to Download Quality Music</title>
		<link>http://nanuy.com/unlimited-music-downloads-a%c2%80%c2%93-where-to-download-quality-music/</link>
		<comments>http://nanuy.com/unlimited-music-downloads-a%c2%80%c2%93-where-to-download-quality-music/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:54:54 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[â??]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Quality]]></category>
		<category><![CDATA[Unlimited]]></category>
		<category><![CDATA[Where]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/19/unlimited-music-downloads-a%c2%80%c2%93-where-to-download-quality-music/</guid>
		<description><![CDATA[Unlimited music downloads are now made readily available on the internet from different online music stores and services. Some go on a pay-per-download basis, while others go on a subscription service, either on monthly or one-time basis. They reportedly carry millions of sound tracks and MP3 files from all the known music genres you can [...]]]></description>
			<content:encoded><![CDATA[<p>Unlimited music downloads are now made readily available on the internet from different online music stores and services. Some go on a pay-per-download basis, while others go on a subscription service, either on monthly or one-time basis. They reportedly carry millions of sound tracks and MP3 files from all the known music genres you can ever find. The question of where to download music is therefore answered by going to these music services which provide unlimited music downloads. But it is equally important to know which are the best deals in town when locating where to download music online. We take a look at what is downloading online music from these music download sites all about.</p>
<p>Major online music stores like HMV, Amazon and so on carry many labels and their selection is fantastic with loads of music pieces, movie soundtracks, songs, music videos and practically unlimited music downloads are available for you to download. Never worry about where to download music again. However, music lovers after getting the thrill of downloading lots of music files start to feel the pinch. This is where the latest new generation of music download sites would make them scream with excitement again. </p>
<p>You see, the new music download sites offer unlimited music downloads. And by that, it means that you not only can find any title or album you want but also download them without any quantity restriction. Be it 1000 songs or 10,000 songs that you intend to download, it does not matter. These music download sites would charge you only once for unlimited music downloads at an affordable rate that even teens have the ability to get their memberships. That is the whole intention of the music download sites, to reach the mass musical audience.</p>
<p>But there are almost a dozen of unlimited music downloads sites that solve your problem of where to download music quickly. So it can be quite a challenge to decide which to go for. Do not worry as here are some useful tips to help you along to decide where to download music from which music download sites for unlimited music downloads. These would find you the suitable music download site.</p>
<p>Be sure to first check out the music selection of these music download sites. There is really no point in using them even if they have millions of music pieces and songs, ie unlimited music downloads in their collection but none are what you want. Most should carry the general range of music that are more common like pop, rock and so on. But if you are looking for specific niche genres which are a little bit uncommon, you need to check if the music collection at these music download sites carries your desired label or brand of music.</p>
<p>Secondly, you need to confirm the file format of the music files you are downloading from the music download sites. This is easy as many have unlimited music downloads in MP3 format. This is the most commonly readable format used by most MP3 players or digital portable players. So as long as the music download site has it, you know this is where to download music so that you can enjoy unlimited music downloads on your player.</p>
<p>Another thing to take note of is some music download sites for unlimited music downloads require you to download special client application in order to download music online. If you are a frequent traveller, you may not like the idea that you need to install software on your computer in order to download music. This means that you can only do so from home. As such, you may want to go for those that do not require any client applications to do so. That said, the client application does not need a lot of computer resources and can be easily installed and removed. It is really your choice when getting the unlimited music downloads from the music download sites.</p>
<p>Anyone who wishes to learn more about where to download music at amazingly low one-off prices can visit my music blog and begin your journey of putting unlimited music downloads on your computer or MP3 player. </p>
<div style="margin:5px;padding:5px;border:1px solid #c1c1c1;font-size: 10px">
<div class="text">
<p>Davion is a music addict and carry do without them. Find out about hot and limited offers for <a rel="nofollow" href="http://unlimited-music-downloads.blogspot.com">unlimited music downloads</a>. Also read his wildly popular article for <a rel="nofollow" href="http://ezinearticles.com/?Unlimited-Music-Downloads---Tips-On-Downloading-Music-MP3&amp;id=418845">unlimited music downloads</a> tips.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/unlimited-music-downloads-a%c2%80%c2%93-where-to-download-quality-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Download iPod Movies In 10 Easy Steps</title>
		<link>http://nanuy.com/how-to-download-ipod-movies-in-10-easy-steps/</link>
		<comments>http://nanuy.com/how-to-download-ipod-movies-in-10-easy-steps/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:57:22 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[IPod]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Steps]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/17/how-to-download-ipod-movies-in-10-easy-steps/</guid>
		<description><![CDATA[The invention of the iPod makes it easier than ever to take along your favorite media. Whether you&#8217;re interested in movies, TV shows, music videos, or sporting events you can now take all your programs with you. The iPod is one of the best portable media devices to come along in years. One frequently asked [...]]]></description>
			<content:encoded><![CDATA[<p>The invention of the iPod makes it easier than ever to take along your favorite media. Whether you&#8217;re interested in movies, TV shows, music videos, or sporting events you can now take all your programs with you. The iPod is one of the best portable media devices to come along in years.<br />
One frequently asked question is how to download iPod movies to the device for viewing at a later time or on a later date. Your first objective should be to join a network that allows you to download movies to your iPod. There are many networks across the internet that sell iPod movie download subscriptions. Generally speaking, you will get the best value for your money if you can find a network that allows you unlimited iPod movie downloads for a one-time subscription price. Beware of the websites that ask for a sign up fee, then also hit you with a fee for every movie you download. If you love to download iPod movies, the download fees can add up quickly.<br />
Once you have your network account set up, just follow these 10 easy steps to download movies to your iPod.<br />
1. Browse your chosen iPod subscription network for the movie, video or sporting event you want to download.<br />
2. Once you find the desired movie, you should be able to click the video&#8217;s title, image thumbnail or download button.<br />
3. Look for the &#8216;Video iPod/Sony PSP&#8217; option in the drop-down menu. It should appear on the video&#8217;s playback page. Please be aware that you can only download the movie if your iPod has video capabilities.<br />
4. Choose &#8216;Video iPod/Sony PSP&#8217; from the drop-down menu and then click download.<br />
5. Save the movie or video on your computer in a location you will remember.<br />
6. Now you can connect your iPod to your computer.<br />
7. Open the Apple iTunes application. Select &#8216;Add File to Library&#8217; from the &#8216;File&#8217; menu in the iTunes application. Browse your computer for the video you previously downloaded and click &#8216;Open.&#8217;<br />
8. click &#8216;Edit,&#8217; then click &#8216;Preferences in the iTunes application. Next, click the &#8216;iPod&#8217; tab, then click &#8216;Videos,&#8217; and then &#8216;Automatically update all videos.&#8217; Lastly, you should click &#8216;OK.&#8217;<br />
9. The iTunes application will copy the movie to your iPod automatically.<br />
10. To play back your movie on your iPod, click &#8216;Videos,&#8217; then click &#8216;Movies&#8217;.<br />
That was the down and dirty, quick lesson on how to download iPod movies. A good source of helpful information should be the user&#8217;s manual that came with your iPod or customer support from the maufacturer. The best sources of helpful information are friends who already own an iPod and have some experience with the device. They can also help you learn how to download IPod movies for your enjoyment. </p>
<div style="margin:5px;padding:5px;border:1px solid #c1c1c1;font-size: 10px">
<div class="text">
<p>Find and download Movies, Music and your favorite TV series (even old-time favorites), get full episodes and seasons of the hottest shows around! <a rel="nofollow" href="http://www.usfreeads.com/589925-cls.html">Download iPod Movies</a> and get a free Mp3 player with your subscription.</p>
</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/how-to-download-ipod-movies-in-10-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to Check Before you Download Vista Windows</title>
		<link>http://nanuy.com/things-to-check-before-you-download-vista-windows/</link>
		<comments>http://nanuy.com/things-to-check-before-you-download-vista-windows/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 18:55:05 +0000</pubDate>
		<dc:creator>Nanuy</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[Before]]></category>
		<category><![CDATA[Check]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Things]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nanuy.com/2010/01/15/things-to-check-before-you-download-vista-windows/</guid>
		<description><![CDATA[Vista, the new operating system from Microsoft, is being marketed as a revolution for the personal computer. All the enticing benefits the new system offers have spurred lots of people to download Vista Windows. If you’re contemplating upgrading your XP-running PC, here are some factors you need to address first. 1. Check your PC. Before [...]]]></description>
			<content:encoded><![CDATA[<p>Vista, the new operating system from Microsoft, is being marketed as a revolution for the personal computer. All the enticing benefits the new system offers have spurred lots of people to download Vista Windows. If you’re contemplating upgrading your XP-running PC, here are some factors you need to address first. </p>
<p>1. Check your PC.</p>
<p>Before you download Vista Windows, check your computer if it’s ready for upgrades. To do this, you need to download and run the Windows Upgrade Advisor tool. This will assess your computer and give you a list of the Vista versions that are compatible with your unit. To be able to download Vista Windows, your computer must have at least 800MHz. Premium-ready PCs need at least 1GHz. </p>
<p>2. Make sure you have enough memory and hard drive space.</p>
<p>Another thing to note before you download Vista Windows your PC must have at least 512 MB of RAM. The minimum requirement for a premium-ready PC is 1 GB of system RAM. Plus, to be able to download Vista Windows, your hard drive size and free space must be no less than 40 GB and 15 GB, respectively. </p>
<p>3. Determine graphics adapter capability.</p>
<p>To enable you to download Vista Windows, your graphics adapter must be DirectX 9 capable. Premium-ready machines need at least 128 MB of video RAM to be able to download Vista Windows. Cards that are Vista-capable should have a minimum 64 MB of video RAM. These requirements need to be met if you plan to exploit the Aero Glass graphics. Otherwise, if your existing video adapter is Vista-capable, there is no need to upgrade it. It should be noted that a notebook computer with graphics card that is not compatible has a lesser chance of a successful upgrade to the new system.</p>
<p>4. Your computer must have a DVD drive.</p>
<p>So you can download Vista Windows, your PC should have a DVD drive in which you could install Vista. </p>
<p>5. Determine the version of Vista your computer is capable of running.</p>
<p>Before you download Vista Windows, determine first the version most appropriate for your computer. The five different editions are:</p>
<p>·	Windows Vista Home Basic – provides basic operating system usability; suitable for average home users; will sell for $200 for new PCs, and $100 as an upgrade for those with existing Windows license</p>
<p>·	Windows Vista Home Premium – offers more functionality than previous Vista Home Basic version; best choice for most PC users; features Aero and Media Center interface, DVD Maker, Movie Maker HD, backup scheduler, SideShow that allows use of auxiliary displays, comes with a Sync Center to synchronize files with other PCs over a home network, and parental controls; premium costs $240 for new computers and P160 as an upgrade if you have an existing Windows XP Home license</p>
<p>·	Windows Vista Business &#8211; useful for standard business needs; comparable to Windows XP Professional; will be a staple on the corporate desktop.</p>
<p>·	Windows Vista Enterprise – has advanced features like BitLocker Drive Encryption for laptops, application compatibility tools, and multi-language support</p>
<p>·	Windows Vista Ultimate – has all the features of Vista Home Premium; features support for dual CPUs (multi-core are supported in lower versions), remote desktop host, file encryption (with full-drive BitLocker capability), faxing, domain-based networking for office networks, and web hosting; will sell for $400 for new PCs and $260 as an upgrade if you have an existing Windows XP Home or Pro license.</p>
<p>6. Existing applications must be capable of running under Vista. </p>
<p>To ensure that you can download Vista Windows and install it successfully, run the Application Compatibility Toolkit to help you distinguish the applications that may not be operate under Vista. </p>
<p>7. Back up your data.</p>
<p>Before you download Vista Windows, do not forget to back up your data. Prior to installation of the new operating system, be sure to check that you have all the installation media from your existing software and the proper licensing information. </p>
<p>The steps above are all essential requirements that you need to consider before you download Vista Windows. Also, notebook computers and desktop PCs should be able to meet all the hardware specifications. </p>
<div style="margin:5px;padding:5px;border:1px solid #c1c1c1;font-size: 10px">
<div class="text">
<p>Get free tips and information on how to <a rel="nofollow" target="_new" href="http://www.vista-windows.info/downloadvista.html">download Vista Windows</a> at <a rel="nofollow" target="_new" href="http://www.vista-windows.info"></a><a rel="nofollow" target="_blank" href="http://www.Vista-Windows.info.">http://www.Vista-Windows.info.</a></p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nanuy.com/things-to-check-before-you-download-vista-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
