360Amigo System Speedup Pro v1.2.1.7000

Posted by chiasedamme on Saturday, July 2, 2011



If your PC has slowed down lately and if you feel annoyed while sitting in front of your slow PC, it just means that your computer needs professional help. When new PCs are purchased, they start up quickly and programs seem to open in a snap.
But, over time, you begin to notice that your PC is slow or that it develops a habit of hanging at the most annoying times. While the causes of system slowdown are many and varied, 360Amigo System Speedup identifies and fixes all the most common PC problems, so it once again gives you the speed you need. Using 360Amigo System Speedup, you will discover what is going on inside your PC.








More about

Tiện ích Nhận xét mới nhất không dùng Javascript

Posted by chiasedamme on Friday, July 1, 2011

Để một blogspot có tốc độ load trang nhanh nhất trong một chừng mực nào đó thì việc sử dụng các tiện ích không dùng đến hoặc hạn chế dùng javascript là một giải pháp tối ưu nhất. Mình đã từng giới thiệu các tiện ích Bài viết mới nhất cho cả blog và Bài viết mới nhất cho từng nhãn, Auto Readmore không dùng javascript. Để thêm vào bộ tiện ích không javascript này, hôm nay xin giới thiệu tiếp một tiện ích không dùng javascript, đó là tiện ích Nhận xét mới nhất không dùng javascript (Recent Comments without Javascript).

Để tạo tiện ích này, bạn hãy thực hiện như sau:

Bước 1. Đăng nhập Blogger, vào Design >> Edit HTML, chọn Expadn Widget Templates. Tìm đến một thẻ đóng </b:widget> tại khu vực một tiện ích nào đó mà bạn định đặt tiện ích Nhận xét mới nhất gần với tiện ích đó. Đặt sau thẻ </b:widget> với đoạn code bên dưới.

<b:widget id='BlogList100' locked='false' title='Nhận xét mới nhất' type='BlogList'>
<b:includable id='main'>
<!-- Recent Comments without Javascript by Huynh Nhat Ha -->
<!-- only display title if it's non-empty -->
<b:if cond='data:title != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<ul>
<b:loop values='data:items' var='item'>
<li>
<a expr:href='data:item.itemUrl' expr:title='data:item.itemSnippet' target='_blank'><data:item.itemTitle/></a>
</li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>

Lưu Template.

Bước 2. Vào Page Elements, tìm đến widget có tiêu đề Nhận xét mới nhất, chọn Edit để chỉnh sửa. Nhấn ADD TO LIST rồi lần lượt dán các URL theo thứ tự bên dưới:

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=1

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=2

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=3

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=4

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=5

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=6

http://huynh-nhat-ha.blogspot.com/feeds/comments/default?start-index=7

Chú ý thay huynh-nhat-ha bằng tên blogspot của bạn. Nhấn SAVE để lưu tiện ích.

Đến đây có thể hoàn thành một tiện ích Nhận xét mới nhất không dùng javascript, tiện ích này hiển thị một list các tiêu đề nhận xét với thuộc tính title hiển thị đoạn trích dẫn nhận xét (khi rê trỏ vào tiêu đề nhận xét).

Bạn có thể so sánh 2 URL sau đây để xác định một vấn đề quan trọng:

http://huynh-nhat-ha.blogspot.com/feeds/posts/default (1)

http://huynh-nhat-ha.blogspot.com/feeds/comments/default (2)

So sánh 2 URL trên bạn có thể thấy URL (1) là feed của bài viết, trong feed này có thumbnail, URL (2) là feed của nhận xét, trong feed này không có thumbnail. Chính vì vậy mà tiện ích Nhận xét mới nhất không dùng javascript không thể hiện thị thumbnail. Nếu sau này trong feed của nhận xét trên blogspot có sự cải tiến để hiển thị Avatar thì lúc đó tiện ích Nhận xét mới nhất không dùng javascript này có thể hiện thị Avatar.

Nếu bạn muốn tiện ích Nhận xét mới nhất không dùng Javascript có hiệu ứng màu sắc và đánh số như trên trang chủ của Bloggerism thì bạn có thể áp dụng thêm Bước 3.

Bước 3. Vào Edit HTML. Đặt đoạn code dưới đây vào trước thẻ </head>.

<style type='text/css'>
#BlogList100 {
width:280px;
margin: 40px 0 0;
}
#BlogList100 ul{
list-style-type: none;
margin: 0 0 10px;
padding: 0;
}
#BlogList100 ul li {
width:280px;
height:50px;
margin: 5px 0 ;
padding: 10px;
list-style:none;
}
.red1 { background: #8787ff; }
.red2 { background: #9797ff;width:97% !important;}
.red3 { background: #a7a7ff;width:94% !important;}
.red4 { background: #b7b7ff;width:91% !important;}
.red5 { background: #c7c7ff;width:88% !important;}
.red6 { background: #d7d7ff;width:85% !important;}
.red7 { background: #e7e7ff;width:82% !important;}
.red8 { background: #f0f0ff;width:79% !important;}
.num {font-size:60px; margin: 15px 5px 15px -5px; float:left; color:#f5f5f5;}
</style>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js ' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){
$(&#39;#BlogList100 ul&#39;).children(&#39;li&#39;).addClass(function (i) {
return &#39;red&#39; + (i+1);
});
$(&quot;#BlogList100 ul&quot;).each(function() {
$(&quot;li&quot;, this).each(function (i) {
$(this).prepend(&quot;<span class='num'>&quot; + (i+1) + &quot;</span>&quot;);
});
});
});
</script>

Ở đây mình dùng thêm jQuery để tạo hiệu ứng màu sắc cho tiện ích thêm vẻ độc đáo. Hy vọng tiện ích này sẽ giúp bạn hài lòng với tiêu chí vừa nhẹ mà vừa đẹp lại vừa đủ tính năng (ráng chờ Blogger cải tiến để thêm Avatar nhé bạn).
More about

SUPERAntiSpyware Professional v4.55.1000

Posted by chiasedamme


SUPERAntiSpyware will remove all the spyware, not just the easy ones. Quick, complete and custom scanning of hard drives, removable drives, memory, registry, individual folders and more. Includes trusting items, and excluding folders for complete customization of scanning. Detect and remove spyware, adware, malware, Trojans, dialers, worms, key loggers, hijackers, parasites, root kits and many other types of threats. Light on system resources and won't slow down your computer like many other anti-spyware products. Repair broken internet connections, desktops, registry editing and more with our unique repair system. Real-time blocking of threats. Prevent potentially harmful software from installing or re-installing.








More about

Winamp PRO v5.62 Build 3161

Posted by chiasedamme


Winamp 5 features our new Modern Skin that's easier to use and more powerful than ever.Easily access the Media Library (ML), Playlist Editor (PL), integrated Video or Visualizations (Video/Vis Drawer), or the EQ, Skin Options, and Color Themes (Config Drawer) from the Main Window.Includes over 50 color themes that suit nearly every mood or occasion.Winamp 5 carries forward the unobtrusive "Window Shade" .








More about

TrustPort USB Antivirus v11.0.0.4621

Posted by chiasedamme


TrustPort USB Antivirus 2011 is the mobile solution for the secure transmission of data on interchangeable memory media for example flash disks or memory cards. Prevents the copying of harmful code onto memory media, carries out antivirus tests on any host computer. Enables the encryption of files against unauthorized entry and offers the reliable shredding of private data which is no longer in use.If features include permanent protection of media,scanning of any computer,data protection by encryption and reliable data shredding.









More about

AnyDVD & AnyDVD HD v6.8.2.0

Posted by chiasedamme


AnyDVD works in the background to automatically remove the copy protection of a DVD movie as soon as it’s inserted into the drive, allowing you then to backup the movie using a DVD backup tool such as CloneDVD and CloneDVD mobile. You can also remove the RPC region code, thereby making the movie region free and viewable on any DVD player and with any DVD player software.AnyDVD is capable of removing unwanted movie features, including subtitles and prohibition messages such as copyright and FBI warnings. It also allows you to launch an external application whenever you insert or remove a disc, or prevent ‘PC-friendly’ software from automatically launching when you insert a video DVD.Decryption is not all that AnyDVD offers. You can control the drive speed of your DVD drive, allowing you to reduce the noise level when watching movies on your PC. You can even adjust the display frequency of your monitor for both NTSC and PAL displays.








More about

Symantec Endpoint Protection v12.1.601.4699

Posted by chiasedamme

Symantec Endpoint Protection combines Symantec AntiVirus with advancedthreat prevention, providing unsurpassed protection of laptops anddesktops, and servers from malicious programs. The program not onlyoffers industry leading antivirus protection, but also based on thesignatures protect against spyware. This solution also ensures theprevention of threats, which helps protect endpoints from targetedattacks and unknown. Symantec Endpoint Protection includes ready intensive technologies thatautomatically analyze application behaviors and network connections todetect and block suspicious activities, as well as administrationcapabilities that allow certain actions to ban devices and applicationsthat are considered extremely dangerous for the organization. Certainactions can be blocked even by the location of the user. In addition,protected from even the most complex, elusive to traditional means ofsecurity attacks, such as a rootkit, exploit zero day and changingspyware.




DOWNLOAD HERE








More about