Friday, July 10, 2009

Make Equalizer Musik Versi 3D


Even draw in application vektor, you still able to play with the picture of 3D. Yes, this application usable make the picture of three dimension in course of drawing obyek. This thank to attending of of facility “ Extrude Tool” making the process creation of impression of 3D becoming easier.
To exploit it, you can follow the guidance make the picture equalizer music of 3D with CorelDRAW X4 following. Tool the [is] sameness is also you can apply [at] obyek other be like text, for example to make the text of 3D be like comic title Superman.
This his stages;steps:
1. Equalizer is usual gorgeous box formation appear [in/on] device of amplifier. To early making, make a box with [ Rectangle Tool]. Klik-Tarik pointer at the same time depress [ Ctrl] to form the [is] equilateral parallelogram.

2. To make the overall box, click [ Edit] >> [ Step and Repeat…]. Docker Step and Repeat will emerge. Make the vertical overall box. Fill in the boxes amount will be made by theX the box “ Number of copies:”. [At] “ Horizontal Settings”, select;choose [ Offset], and fill in the box “ Distance“ with 0,0.
3. [At] “ Vertical Settings”, select;choose [ Spacing Between Objects], and fill in the number apart between box [at] box “ Distance”. Here, distance value filled 1,15 inch. Hereinafter, click [ Apply]. Hence new box, a number of values which have been “ Number of copies”, will emerge.
4. Selection all boxes with mengklik-tarik pointer in around overall. Making the overall box horizontally. Select;Choose [ Offset] and fill in 0,0 [at] “ Distance” in “ Vertical Settings”. Select;Choose [ Spacing Between Objects] and fill in the distance between box in “ Distance” [at] “ Horizontal Settings”.
5. Fill in the box duplications amount [at] “ Number of copies:”, then [ Apply]. Overall box will emerge. Overall box equalizer high unegual always, hence eliminating some of boxes by its click, then depress [ Delete]. Select all boxes, klik-kanan box, and select;choose [ Combine].
6. Present the effect of 3D. Click [ Extrude] in toolbox. Click [at] middle shares is overall box, then at the same time button [ Ctrl], click pointer up at under. Appearance of three dimension is now emerge. Try it colouring by click one of [the] colour in palette colour.
7. To start to to colour, clicking [ Pick Tool]. Click the overall box, then select;choose [ Arrange] >> [ Break Extrude Group Apart], or depress [ Ctrl] + [K]. Klik-Kanan [at] box, then select;choose [ Break Curve Apart]. Selection of one overall box vertikal]—boleh from right or left.
8. Select;Choose the colour to the overall the from palet colour in application window right. Hereinafter, give the colour of one per one complete [so/till]. Selection all boxes, then click [ Ctrl] + [G]. you can type the text to beautify desain.

6 Step Install free antivirus microsoft

Microsoft Security Essentials is antivirus free of charge from Microsoft. version Beta of this product have didownload for operating system Microsoft be like Windows 7 Beta and RC ( 32 or 64 beet), Vista RTM, SP1 and SP2 and also Windows XP SP3 32 beet.
Way pengunduhannya even also including easy to. Following is 6 kiat to menginstall Microsoft Security Essentials Beta
1. Ensure that the minimum specification PC Anda have fufilled to run this application. But don't worry, because software this including light. Following is the specification of his minimum:
* To XP-CPU with clock speed 500 MHz or higher
* To XP - Memory: 256 MB RAM or higher
* To Vista / W7 - CPU with clock speed 1.0 GHz or higher * To Vista / W7 - Memory: 1 GB RAM or higher
* VGA ( Display): 800 x 600 or higher * Storage: 140 MB

2. Ascertain the operating system used, [whether/ what] 32 beet or 64 beet.
3. Download [at] situs Microsoft following. Before all consumer have to do the registration Microsoft Connect beforehand, henceforth fill the brief survey from Microsoft.
4. [At] column download, select;choose the appropriate operating system.
5. Select;Choose your location, then click ' Download' under article Download Single File.
6. Then opened the file of result of unduhan, and follow the instruction hereinafter [so/till] Microsoft Security Essentilas attached.
Thank you for your interest in joining the Microsoft® Security Essentials Beta. We are not accepting additional participants at this time. Please check back at a later date for possible additional availability.
Sebagai alternatif, situs Softpedia menyediakan download MSE untuk beberapa versi:
- MSE untuk Windows XP
- MSE untuk Windows 7 & Vista 32 bit
- MSE untuk Windows 7 & Vista 64 bit

Thursday, July 9, 2009

make Emoticon in PHP

Hullo halo, udah old likely caw nulis this Come on ane will write the simple article, gimana the way of fetching/parsing/ngambil emoticon-emoticon kept in database, continue to change the selected symbols in text with file image emoticon. Okeh direct.
* First, which udah surely, made the tables by the name of emoticon, his field merely two: "id" with " alt". Practical to so that execute aja direct code below/under in phpMyAdmin.
CREATE TABLE `db_ente`.`emoticon` (
`id` INT NOT NULL AUTO_INCREMENT ,
`alt` VARCHAR( 100 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM
Don'T forget to change ` db_ente` by the name of the database in computer ente. If there is no could dimembuat formerly with code below/under.
CREATE DATABASE `nama_db` ;

* Database all right, now remained masukkin his data, karna merely for trial and error, masukkin aja one record formerly.
INSERT INTO `db_ente`.`emoticons` (
`id` ,
`alt`
)
VALUES (
NULL , ':lol:'
);
With query above us masukkin alt emoticon ": lol:" ( lol = laughing out loud)
. * To image animation emoticon representing the symbol " lol", bikin/copy image wanted to directory emoticon/lol.gif. Become in the directory [is] equal to especial file, make the directory emoticon, trus copy of file image by the name of " lol.gif" ( haduh ribet gw ngomongnya). Ane [by] xself for this example [of] make animation from Plurk this one.
. * Now, function in PHP to fetching emoticon:
function fetch_emo($strnya) {
$hsl = $strnya;
$qE = mysql_query("SELECT * FROM emoticon") or die(mysql_error());
while ($aE = mysql_fetch_array($qE)) {
$offst = substr($aE["alt"], 1);
$img = "";
$hsl = str_replace($aE["alt"], $img, $hsl);
}
return $hsl;
}

* Last, implementation.
?
mysql_connect("localhost", "user", "password") or die(mysql_error()); //ganti sesuai MySQL ente
mysql_select_db("db_ente") or die(mysql_error());
?
html
head
title>Test Emoticon head
body
?
.$str_test = "Test kacang euy :lol:";
.$sesudah = .fetch_emo(.$str_test);
echo "Sebelum: $str_test

";
echo "Sesudah: $ssd";
?
body
html

Hasilnya:
Sebelum: Test kacang euy :lol:
Sesudah: Test kacang euy
Now, ane jelasin few [of] his [job/activity] way.
In first step and both, we draw up the database mo dipake to nyimpan string selected which mo di-replace with emoticon.
Karna kept in database, we can easily ngapus or nambah emoticon-emoticon newly.
In function fetch_emo() which we make in step fourth, we do query to database, and nge-parse one string emoticon ( in above example [of] ": lol:"), trus changed with image in directory emoticon/lol.gif. So, possibly [at] the questioning, lol.gif dapet where from ?? In this function, so that we is caw require to busy define path image, ane make path imagenya taken away from string among dots of two (":") added with ekstensi ". gif", so that kalo string emoticon-nya ": lol:", mean path image-nya is " lol.gif".

How To Do Everything With YouTube

The easy way for anyone to create videos and share them with millions of viewers worldwide
With more than 20 million unique users, YouTube gives everyone--from casual Web users to serious video artists--access to a huge global audience. This hands-on guide leads you simply and easily through the processes of creating, posting, and promoting videos on the world's most popular online service.
How to Do Everything with YouTube explains how to shoot and edit videos, insert titles and captions, add special effects, and upload content. You will learn to set up a YouTube channel and integrate YouTube videos into your personal blogs and MySpace pages. The success secrets of YouTube celebrities are revealed, and examples of breakout videos are discussed.
From the Back Cover
Create, post, and promote your own videos on the world's most popular online service! How to Do Everything with YouTube explains how to shoot and edit videos, insert titles and captions, add special effects, and upload content. You'll learn how to set up a YouTube channel and integrate YouTube videos into your websites and blogs. You'll also discover the success secrets behind YouTube celebrities and breakout videos. Share your unique video creations with millions of viewers with help from this easy-to-follow guide.

Navigate the YouTube interface, play videos, and set up an account
* Shoot professional-quality videos with a camcorder, Web cam, or camera phone
* Get the lighting right and add sound and special effects
* Create a short film, vlog, or video mashup
* Edit your videos with Windows Movie Maker, iMovie, and Remixer
* Add audio tracks with AudioSwap
* Optimize your videos and upload them to YouTube
* Join the YouTube community, create playlists, subscribe to channels, and participate in groups
* Customize your YouTube channel
* Promote your videos to a huge audience

http://uploading.com/files/VI4F6PLV/HTDEWYT.rar.html

Wednesday, July 8, 2009

7 step to upgrade iPod Touch OS 3.0 with free of charge

Apple finally launch iPhone 3.0 Software updated, which claimed come with addition of function and also fitur newly. Update OS the is addressed for consumer iPhone and iPod Touch in all the world.
Consumer iPhone 2G and 3G truely can mengunduh iPhone OS 3.0 software free of chargely, but consumer darling iPod Touch obliged by theX payee US$ 9,95. Even also unnecessary to that way worry, [is] not illusory world [of] him name if could not provide the free alternative product, including for owner iPod Touch which wish mengunduh OS 3.0 freely.
following is 7 step to upgrade iPod Touch OS 3.0 with free of charge:
1. Download and install iTunes 8.2

2. Download iPod Touch 2G Firmware 3.0 IPSW and iPod Touch 1G Firmware 3.0 IPSW. If result unduhan still in form of .zip, change ekstension to .ipsw
3. joint iPod Touch to PC
4. Open iTunes 8.2 and select iPod Touch from device list
5. hold up Shift, and klik Restore
6. find iPod Touch file, .ipsw
7. wait proses update iPod Touch to finish.

Tuesday, July 7, 2009

Top Virus Dangerous

Serangan malware kian menggila. Ada begitu banyak jenis malware yang mengintai dan siap menyerang pengguna komputer.
Berikut daftar nama-nama malware terganas yang beredar periode 18 Juni 2009-25 Juni 2009, menurut laporan Kaspersky Lab.
1. Net-Worm.Win32.Kido.ih ( 41.9714%)
2. Exploit.Win32.SqlShell.a (9.7527%)
3. HEUR:Trojan.Win32.Generic (7.6628%)
4. Heur.Win32.Trojan.Generic (3.309%)
5. Trojan.Win32.FraudPack.owo (3.1%)
6. Trojan-Downloader.Win32.Agent.cgns (2.5427%)
7. Trojan.Win32.Agent.cltm (1.846%)
8. Trojan.Win32.FraudPack.oxv (1.7416%)
9. Trojan-Dropper.Win32.Small.axv (1.5674%)
10. Trojan.Win32.FraudPack.ovx (1.5674%)

11. Trojan-PSW.Win32.Agent.nfo (1.3236%)
12. Trojan.Win32.Buzus.bhqc (1.2539%)
13. Trojan.Win32.Agent2.kov (1.1494%)
14. Net-Worm.Win32.Kido.dam.y (1.1146%)
15. Heur.Win32.Invader (0.8708%)
16. Net-Worm.Win32.Kido.eo (0.8011%)
17. Trojan.Win32.Monder.cmwt (0.8011%)
18. Trojan-GameThief.Win32.Magania.bfru (0.7315%)
19. Trojan-Downloader.Win32.Agent.ansh (0.6618%)
20. Trojan-Dropper.Win32.Agent.zje (0.5921%
21. Trojan-Downloader.Win32.Agent.cgew (0.5921%)
22. Trojan-Downloader.Win32.Agent.wxq (0.5573%)
23. not-a-virus:Porn-Dialer.Win32.InstantAccess.f(0.5573%)
24. Trojan-GameThief.Win32.Magania.bfrp (0.5225%)
25. Trojan-Downloader.Win32.Small.jvl (0.5225%)
26. Net-Worm.Win32.Koobface.d (0.4528%)
27. Trojan-Downloader.Win32.Injecter.cqd (0.418%)
28. HEUR:Trojan-Downloader.Win32.Generic (0.3831%)
29. Virus.Win32.Sality.aa (0.3135%)
30. not-a-virus:AdWare.Win32.Relevant.n (0.3135%)
31. Trojan-GameThief.Win32.Magania.bfdq ( 0.2786%)
32. not-a-virus:AdWare.Win32.Agent.lmz (0.2786%)
33. not-a-virus:AdWare.Win32.Shopper.l (0.209%)
34. Trojan-GameThief.Win32.Magania.bful (0.209%)
35. Trojan-GameThief.Win32.WOW.bie (0.209%)
36. not-a-virus:WebToolbar.Win32.FenomenGame.pxu (0.1742%)
37. Trojan-Dropper.Win32.Small.dhn (0.1742%)
38. Exploit.Win32.DCom.ad
39. Trojan-GameThief.Win32.Magania.bffe (0.1742%)
40. Trojan-GameThief.Win32.Magania.bfws (0.1742%)
41. Trojan-Banker.Win32.Banker.aifb (0.1742%)
42. Packed.Win32.Black.d (0.1742%)
43. Trojan.Win32.Agent.cgof (0.1393%)
44. Trojan-Dropper.Win32.Small.ayg (0.1393%)
45. Trojan-Downloader.Win32.FraudLoad.wcby (0.1393%)
46. Trojan-Downloader.Win32.Small.jwq ( 0.1393%)
47. Trojan-GameThief.Win32.OnLineGames.bktw ( 0.1393%)
48. MultiPacked.Multi.Generic (0.1393%)
49. HEUR:Backdoor.Win32.Generic (0.1045%
50. Suspicious.Win32.Packer (0.1045%)
51. Virus.Win32.Virut.ce (0.1045%)
52. Backdoor.Win32.IEbooot.dfe (0.1045%)
53. Trojan-Downloader.Win32.FraudLoad.erj ( 0.1045%)
54. Trojan-Dropper.Win32.Agent.atvx (0.1045%)
55. Backdoor.Win32.Agent.ahwn (0.1045%)
56. Multi.Win32.Packed (0.1045%)
57. HEUR:Trojan.Win32.Invader (0.1045%)
58. Trojan.Win32.Agent.abud (0.1045%)
59. Backdoor.Win32.Poison.ahgc (0.1045%)
60. Trojan-GameThief.Win32.Magania.bfsy (0.1045%)
61. Trojan-Downloader.Win32.Agent.cdid ( 0.1045%)
62. Trojan.Win32.Stuh.pdm (0.1045%)
63. Trojan.Win32.Buzus.bigq (0.1045%)
64. Backdoor.Win32.Small.icr (0.1045%)
65. Backdoor.Win32.Agent.ahgv (0.1045%)
66. Trojan.Win32.Agent.cngn (0.1045%)
67. Backdoor.Win32.Hupigon.aovn (0.1045%)
68. Trojan-Dropper.Win32.Agent.atmg ( 0.1045%)
69. Packed.Win32.Black.a (0.1045%)
70. HackTool.MSIL.KKFinder.q (0.0697%)
71. Trojan-Downloader.Win32.Small.aliy (0.0697%)
72. not-a-virus:AdWare.Win32.Webdir.e (0.0697%)
73. Email-Worm.Win32.Joleee.bwu (0.0697%)
74. HEUR:Virus.Win32.Generic (0.0697%)
75. Trojan-Dropper.Win32.Small.cdw (0.0697%)
76. Trojan.Win32.Agent.cccr (0.0697%)
77. Trojan.Win32.Midgare.mqa (0.0697%)
78. Backdoor.Win32.Bifrose.aknz (0.0697%)
79. Trojan.Win32.Agent.cmud (0.0697%)
80. not-a-virus:AdWare.Win32.Shopper.v (0.0697%)
81. Backdoor.Win32.Bifrose.fpb (0.0697%)
82. Trojan-Mailfinder.Win32.Mailbot.ec
83. Trojan.Win32.Agent.cjxh (0.0697%)
84. Trojan-Spy.Win32.Zbot.xdj (0.0697%)
85. P2P-Worm.Win32.Archivarius.b (0.0697%)
86. Virus.Win32.Sality.z (0.0697%)
87. HEUR:Worm.Win32.Generic (0.0697%)
88. Trojan-Dropper.Win32.Mudrop.ask (0.0697%)
89. Trojan.Win32.Agent2.hxw (0.0697%)
90. Trojan.Win32.Agent.cmnr (0.0697%)
91. Trojan.Win32.Agent.rzw (0.0697%)
92. Trojan-Downloader.Win32.FraudLoad.eki (0.0697%)
93. Trojan-Downloader.JS.Agent.gj (0.0697%)
94. not-a-virus:AdWare.Win32.AlexaBar.n (0.0697%)
95. Trojan.Win32.KillWin.pi (0.0697%)
96. not-a-virus:AdWare.Win32.Chiem.c (0.0697%)
97. Net-Worm.Win32.Kido.cy
98. Trojan-Downloader.Win32.Agent.cgaw(0.0348%)
99. Trojan-Dropper.Win32.Mudrop.aso (0.0348%)
100. Packed.Win32.Krap.c (0.0348%)

Sunday, July 5, 2009

Suzuka, the unsung Opteron


Sunnyvale-based chip maker Advanced Micro Devices came to the market with a new line of Opteron chips, shortly following the release of the six-core Opteron processor codenamed “Istanbul.” The new silicon solution, John Fruehe, director of Business Development for Server/Workstation products at AMD, says, comes under the codename “Suzuka” and hits the market as a quad-core processor developed for single-socket systems.

Suzuka doesn't seem to come to the shelves as a breathtaking product, yet it is intended to fulfill the needs of the cost-effective SME market. The latest AMD Opteron 1000 Series processor, Fruehe says, has not been developed to offer scalability, but will fit applications that are cost and power aware, such as web servers, small business servers and workstations.


The new chips come at speeds of 2.5GHz (Opteron 1381), 2.7GHz (Opteron 1385) and 2.9GHz (Opteron 1389), having been developed on the same core as the company's “Shanghai” CPU, another quad-core Opteron processor. Suzuka, manufactured under the 45-nm SOI process technology, comes with x86-64 processing cores on a monolithic die and features 512 KB of L2 cache per core, coupled with a shared 6 MB L3 cache.

The new processors will use the AM3 socket and not the 1207-pin Socket F, while also offering compatibility with existing AM2+ mobos (can be easily used on motherboards that work with Budapest quad-core chips – the single socket version of Barcelona). The new solutions feature system bus speeds of 2200 MT/s (HyperTransport bus actual speed of 1100 MHz), while sporting a rated TDP of around 115 W.

According to John Fruehe, the performance increase when moving from a quad-core “Budapest” chip to the new “Suzuka” is not the most impressive part in the process; the fact that the power consumption drops significantly with the new processor is. As for the price tags the new chips come to the market with, Opteron 1381 costs US $189, Opteron 1385 goes for $229, while Opteron 1389 has been priced at $269.