2. Buka HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer.
4. isi dengan value NoDrives.
5. Enter dua kali untuk membuka kotak dialog Edit DWORD Value .
B: 2
C: 4
D: 8
E: 16
F: 32
7. Tutup Registry Editor
Read more...
Routix NetCom introduces easy-to-use rules-based packets-level filtering and managment software and improved remote management features and remote scripting. NetCom is an extensible firewall, traffic controller and traffic statistics software for the Microsoft Windows™ NT, XP, 2000 and 2003 operating system. NetCom provides firewall that helps protect network resources from viruses and hackers. NetCom provides a unified management console that simplifies security and access management.











Cool'n'Quiet is a CPU speed throttling and power saving technology introduced by AMD with their Athlon 64 processor line. It works by reducing the processor's clock rate and voltage when the processor is idle. The aim of this technology is to reduce overall power consumption and lower heat generation, allowing for slower (thus quieter) cooling fan operation. The objectives of cooler and quieter result in the name Cool'n'Quiet. The technology is similar to Intel's SpeedStep and AMD's own PowerNow!, which were developed with the aim of increasing laptop battery life by reducing power consumption.
Due to their different usage; Cool'n'Quiet refers to desktop and server chips, while PowerNow! is used for mobile chips — the technologies are similar, but not exactly equivalent. This technology was also introduced on "e-stepping" Opterons, however it is called Optimized Power Management, which is essentially a re-tooled Cool'n'Quiet scheme designed to work with registered RAM.
For this, you must have one of these AMD processors below:
Processors supporting Cool'n'Quiet
* Athlon 64 & X2 - all models
* Athlon 64 FX - FX-53 (Socket 939 only) and higher
* Sempron - Socket 754: 3000+ and higher; Socket AM2: 3200+ and higher
* Opteron - E-stepping and higher, branded as Optimized Power Management
* Phenom - all versions support Cool'n'Quiet 2.0
And the most important is you have a mainboard with Bios that support Cool'n'Quiet Feature.
Firstly, you have to download and install latest AMD Processor Driver and AMD Dual-Core Optimizer.
Click this to download AMD Processor Driver Version 1.3.2.0053 for Windows XP
Click this to download AMD Dual-Core Optimizer
The AMD Dual-Core Optimizer can help improve some PC gaming video performance by compensating for those applications that bypass the Windows API for timing by directly using the RDTSC (Read Time Stamp Counter) instruction. It can make the system more faster by patching windows to run in multi-core processors with stable.
To enable the Cool ‘n’ Quiet feature on a Windows XP system, you have to change the power scheme. Open the ‘Power Options’ from the Control Panel. Choose the power scheme ‘Minimal Power Management’ and click ‘OK’ to enable Cool ‘n’ Quiet.

PHP has several libraries for generating PDF documents. This is shows how to use the popular fpdf library. The FPDF library is a set of PHP code you include in your scripts with the require function, so it doesn't require any server-side configuration or support, meaning you can use it even without support from your host.
The basic concepts of the structure and features of a PDF file should be common to all the pdf libraries, however. This library (FPDF) is available at http://www.fpdf.org.
A PDF document is made up of a number of pages. Each page contains text and/or images. This section shows you how to make a document, create pages in that document, put text onto the pages, and send the pages back to the browser when you're done.
A Simple Example
Let's start with a simple PDF document. Example below simply places "Hello Out There!" on a page and then displays the resulting PDF document.
require("../fpdf/fpdf.php"); // path to fpdf.php
$pdf = new FPDF( );
$pdf->AddPage( );
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello Out There!');
$pdf->Output( );
?>
Initializing the Document
In Example above, we started by making reference to the FPDF library with the require function. Then the code created a new instance of the FPDF object with the 'new' keyword. You will note that all the calls to the new fpdf instance are object-oriented calls to methods in that object. After you have created the new instance of the FPDF object, you will need to add at least one page to the objectso the AddPage method is called. Next, you need to set the font for the output you are about to generate with the SetFont call. Then using the cell method call, you can place the output on your created document. To send all your work to the browser, simply use the Output method.
Outputting Basic Text - Cells
The cell concept in the FPDF Library is that of a rectangular area on the page that you can create and control. This cell can have a height, width, a border, and of course can contain text. The basic syntax for the cell method is as follows:
Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, int fill [, mixed link]]]]]]])
The first option is the width, then the height, then the text to be outputted, then border, then new line control, then its alignment, any fill colour for the text, and finally if you want the text to be an HTML link. So, for example, if we want to change our original example to have a border and be center aligned we would change the cell code to the following:
$pdf->Cell(90,10,'Hello Out There!',1,0,'C');
The cell method is used extensively while generating PDF documents with fpdf, so you would be well served if you spent the time needed to learn the ins and outs of this method.
Read more...
Desc.: Public IP : 124.81.29.195/29
Local IP : 192.168.0.0/24
DNS : 202.155.0.10
202.155.0.20
Gateway IP : 124.81.29.193
Mikrotik Software Installation
Install Mikrotik with these standard packages above:
Welcome to MikroTik Router Software installation
Move around menu using 'p' and 'n' or arrow keys, select with 'spacebar'.
Select all with 'a', minimum with 'm'. Press 'i' to install locally or 'r' to
install remote router or 'q' to cancel and reboot.
[X] system [ ] isdn [ ] synchronous
[X] ppp [ ] lcd [ ] telephony
[X] dhcp [ ] ntp [ ] ups
[X] advanced-tools [ ] radiolan [x] web-proxy
[ ] arlan [ ] routerboard [x] wireless
[ ] gps [X] routing
[ ] hotspot [X] security
Follow the instructions, select needed packages, and press ‘i’ to install the software.
Change Interface Name
[admin@MikroTik] > interface set 0 name=Public
Set name interface of eth0 to Public
[admin@MikroTik] > interface set 1 name=Local
Set name interface of eth1 to Local
[admin@MikroTik] > interface print
Show all interface name that we’ve just made
Change Default Password
[admin@MikroTik] > password
old password: *****
new password: *****
retype new password: *****
Change the Host Name
[admin@MikroTik] > system identity set name=lif2k3
This will set host name from MikroTik (as default) to lif2k3
IP Address Configuration
Basic command:
ip address add address ={ip address/netmask} interface={interface name}
example :
[admin@lif2k3] > ip address add address=124.81.29 netmask=255.255.255.248 interface=Public
comment=”IP to Internet”
[admin@lif2k3] > ip address add address=192.168.0.30 netmask=255.255.255.224 interface=Local
comment = “IP to LAN”
[admin@lif2k3] > ip address print
Gateway Configuration
Basic command:
ip route add gateway={ip gateway}
example:
[admin@lif2k3] > ip route add gateway=124.81.29.193
[admin@lif2k3] > ip route print
Try ping to gateway ip:
[admin@lif2k3] > ping 124.81.29.193
If resolved, it means connected to gateway
NAT (Network Address Translation) Configuration
Basic command :
ip firewall nat add chain=srcnat action=masquerade out-inteface={ethernet that
connected directly to internet or public}
Firstly setup masquerading action, so the clients will be connected to internet through the router gateway:
[admin@lif2k3] > ip firewall nat add chain=srcnat action=masquerade out-inteface=Public
[admin@lif2k3] > ip firewall nat print
DNS Configuration
Basic command:
[admin@lif2k3] > ip dns set primary-dns={primary DNS ip} secondary-dns={Secondary DNS ip}
example:
[admin@lif2k3] > ip dns set primary-dns=202.155.0.10 secondary-dns=202.155.0.20
[admin@lif2k3] > ip dns print
Test ping to domain, ex:
[admin@lif2k3] > ping yahoo.com
If the IP resolved, it means successful
Setting Transparent Proxy Server
Set web proxy with these command parameters:
[admin@lif2k3] > ip proxy set enable=yes
port={ number of port that will be used }
maximal-client-connections=1000
maximal-server-connections=1000
[admin@lif2k3] > ip proxy direct add src-address={ network
that connected through NAT} action=allow
[admin@lif2k3] > ip web-proxy set parent-proxy={proxy parent/optional}
hostname={ proxy hostname/optional}
port={port that will be used}
src-address={ parent proxy address/default 0.0.0.0}
transparent-proxy=yes
max-object-size={ maximum cache file size
/default 4096 in Kilobytes}
max-cache-size= { maximum cache storage size on harddisk
/ set to unlimited as recommended }
cache-administrator={ usually administrator email }
enable==yes
Example:
Web proxy setting:
[admin@lif2k3] > ip web-proxy
set enabled=yes
src-address=0.0.0.0
port=8080
hostname=”proxy.routerku.co.id”
transparent-proxy=yes
parent-proxy=0.0.0.0:0
cache-administrator=”support@lif2k3.com”
max-object-size=131072KiB
cache-drive=system
max-cache-size=unlimited
max-ram-cache-size=unlimited
NAT redirect need to be added, that’s REDIRECT rule that used to redirect HTTP traffic through WEB-PROXY
Transparent Proxy NAT configuration
Basic command :
[admin@lif2k3] > ip firewall nat add chain=dstnat
protocol=tcp
dst-port=80
action=redirect
to-ports={ port proxy }
example :
——————————————————————————–
ip firewall nat add chain=dstnat protocol=tcp dst-port=80 action=redirect to-ports=8080 comment=”" disabled=yes
ip firewall nat add chain=dstnat protocol=tcp dst-port=3128 action=redirect to-ports=8080 comment=”" disabled=yes
ip firewall nat add chain=dstnat protocol=tcp dst-port=8000 action=redirect to-ports=8080 disabled=yes
————————————————————————–
These command above means that port 80,3128,8000 will be redirect to port 8080 (web-proxy port)
Look the configuration:
[admin@lif2k3] > ip web-proxy print
To show configuration result of web-proxy
[admin@lif2k3] > ip web-proxy monitor
To show and monitor web-proxy status
Bandwidth Management
With PCQ type
Firstly, we have to set rule in MANGLE:
[admin@lif2k3] > ip firewall mangle add chain=forward src-address=192.168.0.0/27 action=mark-connection new-connection-mark=users-con
[admin@lif2k3] > ip firewall mangle add connection-mark=users-con action=mark-packet new-packet-mark=users chain=forward
Then we have to make PCQ type rules:
[admin@lif2k3] > queue type add name=pcq-download kind=pcq pcq-classifier=dst-address
[admin@lif2k3] > queue type add name=pcq-upload kind=pcq pcq-classifier=src-address
The queue parents of both interface must be set:
[admin@lif2k3] > queue tree add parent=Local queue=pcq-download packet-mark=users
[admin@lif2k3] > queue tree add parent=Public queue=pcq-upload packet-mark=users
If the bandwidth both the upstream and downstream is 256kbps:
For downstream traffic :
————————————————————————
queue tree add name=Download parent=Local max-limit=256k
queue tree add parent=Download queue=pcq-download packet-mark=users
————————————————————————-
And upstream traffic :
—————————————————————————
[admin@lif2k3] > queue tree add name=Upload parent=Public max-limit=256k
[admin@lif2k3] > queue tree add parent=Upload queue=pcq-upload packet-mark=users
—————————————————————————
Beside using PCQ Type, we can use Simple Queue which can set bandwidth per client and can't be more flexible than using PCQ Type.
Monitor MRTG via Web
Example configuration:
————————————————————————-
[admin@lif2k3] > tool graphing set store-every=5min
[admin@lif2k3] > tool graphing interfaceadd interface=all allow-address=0.0.0.0/0 store-on-disk=yes disabled=no
—————————————————————————
Blocking porn sites
[admin@lif2k3] > ip web-proxy access
[admin@lif2k3] > add url=”playboy.com” action=deny comment=”block playboy site" disabled=no
[admin@lif2k3] > add url=”dutch-sex.com” action=deny comment=”block dutch-sex” disabled=no
By lif2k3
Read more...

This new edition has been updated and enhanced with coverage of new API functions, network programming, Windows Services, process and thread management, synchronization, and application performance on single and multiprocessor systems. It also describes techniques for porting applications to Win64, the new Windows 64-bit API.
Beginning with an examination of the features required in a single-process application, the text gradually progresses to increasingly sophisticated functions relating to a multithreaded environment.





MozillaHistoryView is a small utility that reads the history data file (history.dat) of Firefox/Mozilla/Netscape Web browsers, and displays the list of all visited Web pages in the last days. For each visited Web page, the following information is displayed: URL, First visit date, Last visit date, Visit counter, Referrer, Title, and Host name.
You can also easily export the history data to text/HTML/Xml file.
Fize Size: 169KB
Language: English
OS: Win2000/XP/2003 Date added:June 19,2008
License: Free
Site: http://www.nirsoft.net/
Download it!
Read more...
Content management system (CMS) is computer software used to create, edit, manage, and publish content in a consistently organized fashion.[1] CMSs are frequently used for storing, controlling, versioning, and publishing industry-specific documentation such as news articles, operators' manuals, technical manuals, sales guides, and marketing brochures. The content managed may include computer files, image media, audio files, electronic documents, and Web content.
A CMS may support the following features:
- identification of all key users and their content management roles;
- the ability to assign roles and responsibilities to different content categories or types;
- definition of workflow tasks for collaborative creation, often coupled with event messaging so that content managers are alerted to changes in content (For example, a content creator submits a story, which is published only after the copy editor revises it and the editor-in-chief approves it.);
- the ability to track and manage multiple versions of a single instance of content;
- the ability to publish the content to a repository to support access to the content (Increasingly, the repository is an inherent part of the system, and incorporates enterprise search and retrieval.);
- separation of content's semantic layer from its layout (For example, the CMS may automatically set the color, fonts, or emphasis of text.).
Source: wikipedia.org
Read more...
This is easy trick to add songs to Winamp playlist without clearing current playlist.
This trick only works on Windows XP and earlier versions.
Firstly, Winamp is already installed on your system. Be sure that audio files like mp3 are associated to winamp (default winamp files).
In Windows Explorer, click Folder Options in Tools Menu. After the box appeared, click File Types Tab then search mp3 files (or other winamp files) in registered file types list.
Click Advanced then choose "Enqueque in Winamp" then click Set Default.
Finally, click OK and Close.
Let's try. When you double click Winamp Files, the files automatically will add to current playlist without delete current playlist.
Thanx.
Read more...
You can make a CHM or Compiled HTML File with one of these two softwares:
- HTML Help Workshop from Microsoft
download it
- Vizacc Help Maker
download it
This is a simple way to make help file or ebook based on CHM.
Thanx
Read more...
AMD's New 780G Chipset
With today's introduction of its new 780G chipset, AMD is finally enabling users to build an HTPC or multimedia computer for HDTV, HD-DVD or Blu-ray playback that doesn't require an add-in graphics card. (AMD already included HDCP support and an HDMI interface in its predecessor chipset, the 690G.) The northbridge chip of the new 780G chipset also features an integrated Radeon HD3200 graphics unit that can decode any current high-definition video codec. As a result, CPU load is decreased to such a degree that even a humble AMD Sempron 3200+ is sufficient for HD video playback. Also, while Intel's chipsets get more power-hungry with every generation, AMD's newest design was designed with the goal of reducing power consumption.
The Gigabyte GA-MA78GM-SH2 formed the basis for the review platform.
The older 690G chipset was originally designed by ATI, and was essentially just rebranded with the AMD logo after the two companies merged. The new 780V and 780G chipsets unveiled today are the first chips to be designed since AMD's acquisition of ATI, and can thus be considered "real" AMD chips.
AMD has every reason to be proud of its design, which is one of the best chipsets we have ever tested. It bests Intel's chipsets in functionality, power consumption and production process. With the move to 55 nm, AMD was able to lower the power consumption of its chipset. Intel, on the other hand, still manufactures its G33 and G35 chipsets at 90 nm, resulting in a much higher thermal dissipation loss. The 780G chipset sets a new record for the lowest power consumption.
Source: tomshardware.com
Read more...

AMD Phenom X3 Processors - Spesifications and Features :
Model / Processor Frequency:
AMD Phenom Processor Model X3 8750, 8650, 8450 / 2.4GHz, 2.3GHz, 2.1GHz
L1 Cache Sizes:
64K of L1 instruction and 64K of L1 data cache per core (384KB total L1 per processor)
L2 Cache Sizes:
512KB of L2 data cache per core (1.5MB total L2 per processor)
L3 Cache Size:
2MB
Memory Controller Type:
Integrated 128-bit wide memory controller,
capable of being configured for dual 64-bit channels for simultaneous read/writes
Memory Controller Frequency:
Up to 1.8GHz with Dual Dynamic Power Management
Types of Memory:
Support for unregistered DIMMs up to PC2 8500 (DDR2-1066MHz)
HyperTransport 3.0:
One 16-bit/16-bit link @ up to 3600MHz full duplex
Total Processor Bandwidth:
Up to 31.5 GB/s bandwidth
Packaging:
Socket AM2+ 940-pin organic micro pin grid array (micro-PGA) (backward compatible with Socket AM2)
Fab location:
AMD's Fab 36 wafer fabrication facilities in Dresden, Germany
Process Technology:
65nm (.065-micron) Silicon on Insulator (SOI)
Approximate Transistor count:
approx. 450 million (65nm)
Approximate Die Size:
285 mm2 (65nm)
Nominal Voltage:
1.05-1.25 Volts
Max Ambient Case Temp:
70 degrees Celsius
Max TDP:
95 Watts
ACP:
*to be announced after launch
Future Memory Controller Note:
Future 45nm processors versions are planned to include support for DDR3 memory.

As you probaly expect, the new AMD Phenom X3 8750 looks exactly like any other socket AM2+ processor outfitted with AMD's standard heat spreader. The chip also uses the same packaging and socket as current Phenom processors; it is only the silicon underneath that has changed.

Sampai pagi2 buta ini masih aja ngenet.. padahal udah ngantuk sih
belum tidur, mana ntar siang disuruh ibuku trs sore rencananya mau ke purwokerto lg!
walahh.. kepiye iki, masa mau tidur bentar? bisa pusing aku.
Tau ga kenapa masih ngenet?
Karena bandwith nya lagi jebol ampe 1200kbps, padahal kan jatahnya cm 256kbps
gila ga tuh?
Hahaha.. mungkin ISP nya kali yang dodol? ga becus ngurusin router.
Jadinya, aku bisa donlot sepuasnya.
aku dah donlot ratusan ebook ampe 500+ MB, hahahaha...
tp bentar lagi pulang ah.. nungguin queue di IDM ku komplit semua
dah.. nguantukk... hoamm...
Read more...
Mikrotik merupakan software router yang handal dan tangguh.
Beberapa fitur handal Mikrotik seperti bandwidth management-nya yang bagus menjadikan Mikrotik sebagai router pilihan bagi warnet dan perkantoran.
Salah satu fitur dari Mikrotik yaitu adanya web-proxy yang berjalan di atas squid layaknya linux.
Web-proxy ini dapat mengcache beberapa content website yang sering dikunjungi sehingga user dapat mengakses website menjadi lebih cepat. Selain itu web-proxy dapat memblokir situs. Adapun caranya adalah:
- masuk ke terminal
- lalu ketik spt ini:
[admin@lif2k3] > ip web-proxy access add url=http://playboy.com* action=deny
Skrip diatas maksudnya akses ke playboy.com akan di deny (ditolak).
Semoga bermanfaat.
Read more...
SilverStripe merupakan salah satu Content Management System atau dikenal dengan CMS yang open source. Silverstripe ini bersifat unik karena open source sehingga kita bisa mengedit skrip, mengembangkan serta mendesain website yang kita buat dan kita atur. Silverstripe bekerja di bawah pemrograman PHP versi 5.2+. Selain itu silverstripe memiliki kemudahan, fleksibilitas dan interaktif.
Gambar site content control panel yang interaktif
kemudahan dalam meng-coding
Untukketerangan lebih lanjut serta download kunjungi www.silverstripe.com
Read more...
Subscribe to:
Posts (Atom)