Showing posts with label to. Show all posts
Showing posts with label to. Show all posts

Anti Virus Karpersky to Mobile Phone

| 0 comments |
Bagi pengguna Mobile phone yang menggunakan sistem operasi Symbian (9.1 keatas) atau Windows Mobile (5.0 keatas), selama piala dunia 2010 ini berlangsung, bisa mendapatkan gratis Kaspersky Mobile Security 9 dengan kode serialnya. Tidak hanya mengamankan dari serangan virus/jaringan, tetapi juga proteksi privasi, menjaga akses file, dan berbagai fitur keamanan lainnya.

Sebagai software atau aplikasi keamanan untuk mobile phone (smart phone), Kaspersky Mobile Security 9 mempunyai fitur-fitur antara lain :
  • Privacy Protection, untuk mengontrol privasi nomor atau contact yang ada di mobile phone. Menampilkan atau menyembunyikan entri phonebook, sms dan daftar panggilan (logs)
  • Menemukan lokasi smartphone ketika dicuri/hilang, dengan menggunakan fitur GPS Find and function, smartphone yang dicuri bisa diketahui lokasinya.
  • Mengamankan contact, foto dan file dari akses yang tidak di inginkan. Data bisa di enkripsi dan di blok atau dihapus ketika smartphone hilang/dicuri
  • Blok SMS atau panggilan yang tidak di inginkan
  • Parental Control, orang tua dapat mencegah/blok sms atau panggilan tertentu dan juga melacak keberadaannya dengan GPS Find
  • Proteksi dari malware (virus) dan serangan jaringan
Fitur-fitur diatas memang menarik, salah satunya ketika mobile phone di curi orang, maka hanya dengan mengirimkan sms tertentu, mobile phone kita akan otomatis terkunci dan isiya tidak akan dapat diakses, bahkan bisa otoamtis memerintahkan untuk menghapus data-datanya. Termasuk fitur GPS Find yang bisa menampilkan posisi dimana mobile phone tersebut.

Fitur lainnya adalah SIM watch, yaitu misalnya ketika pencuri mengganti SIM card mobile phone, maka SIM Watch akan otomatis mem-blok HP dan mengirinkan email ke pemiliknya nomor baru yang dimasukkan.

Tetapi sekali lagi bahwa Kaspersky Mobile Security 9 memang tidak bisa dijalankan di semua HP, hanya mobile phone (smartphone) yang menggunakan Sistem operasi Symbian 9.1, 9.2, 9.3, 9.4 Series 60 (Nokia smartphones) atau Microsoft Windows Mobile 5.0, 6.0, 6.1, 6.5. Jika ingin mengeceknya, silahkan melihat Mobile Downloads

Download dan Installasi
Jika sistem operasi mobile phone anda mendukung software ini, untuk melakukan intallasi bisa menggunakan salah satu cara berikut :
  • Scan QR Code berikut menggunakan mobile phone untuk download Kaspersky Mobile Security 9
  • Buka alamat website kms.kaspersky.com melalui smartphone
  • Download aplikasi melalui PC/komputer melalui link http://www.kaspersky.com/mobile_downloads

Setelah aplikasi di download dan di install, gunakan kode registrasi ini untuk mengaktifkan BFK48-UJ3TR-AFKN3-RP5PU ( Kaspersky world cup )
Read More..

How To Download And Install Hl Booster In Counter Strike

| 0 comments |


Download  here The hl booster.rar , unzipp the file (directly in addons or copy the booster folder in HLDScstrikeaddons, (HLDS is the directory where you have the server), then edit in HLDScstrikeaddonsmetamodplugins.ini,the
line:win32 addonshlboosterdlls ooster_mm.dll. Very important!!!! In order to work, in the HLDScstrikeserver.cfg you have to write the next line:

exec addons/hlbooster/hlbooster.cfg



Please UnCheck The Tick/Mark

Read More..

Who wants to be a millionaire

| 0 comments |

Jar game enough to increase public knowledge, this is a jar game who wants to be a millionaire. Jar game arcade with a variety of questions that should be in charge if you want to win the game, java download 176x220   free dam will probably give you a general knowledge.

Filetype: Who wants to be a millionaire. zip
Filesize: 95.5 kb
Requirment: j2me or midp2, java, jar

Download here:

176x220
Read More..

Simple Ways To Get High Traffic

| 0 comments |
There are some simple ways to get high traffic.
First Create unique titles. Optimization makes the head that contain the keyword in the search engines. And above all, make the game interesting as possible, invite the curiosity of potential readers. For example, to be number one on Google forever.
Second With the meta tag ’description’. Using the meta description tag searches Google or other search engines a summary of an article. Use a unique description for each item.
Third Use the URL structure is not practical. URL structure is easily searchable by the Google search engine is the name of the URL as short as possible (practice). Besides the short URL will be easy to remember (easier) for people who want to link to your blog.
4th Promote your blog. Promote your new blog is slowly and steadily. Promoting a blog effectively stimulate the discovery of your blog faster for those who have the same content of the blog. Such as the promotion of new products in the classified ad sites, without a list.
5th Optimizing the use of images (photos). The pictures of the blog is part of the blog, because the existence of an image will look on the blog every article of living. They are also doing well, plus advice and tips for SEO blogs and websites such as the use of a URL or a search engine friendly permalinks, use the right keywords, re-use, hiking blog, and so on. So .. the nucleus of a real quick way is to bring visitors to your blog or website to speed, to promote and optimize with your blog, so that visitors quickly.

fastcomputertools.com
Read More..

Download Pc Game Drive To Hell FULL VERSION

| 0 comments |


Description: 

Drive to Hell is an action-packed shooter where youll take a ride through an army of monsters to exact revenge on the Demon King for destroying your favorite dive bar. Enemies assault from all sides, each with its own special personality and attack style. To take them down, youll have access to many weapons and items as well as gunner upgrades, new vehicles, and more! Drive to Hell can be played solo or co-op with up to 4 players. 

SOURCE: Wikipedia.org 

Minimum System Requirements 

Operating system: Windows XP / Windows Vista / Windows 7 / Windows 8 
Processor: Pentium IV 2 ghz
Memory: 1GB 
Sound device: compatible with DirectX 
Hard disk space: 1 GB 


Download Link (43 Mb) 
Download Drive To Hell (FULL VERSION) 
Read More..

2 to 1 multiplexer verilog code using conditional operator Verilog tutorial

| 0 comments |
This verilog tutorial shows how a 2 to 1 multiplexer can be designed in verilog using conditional operator"?". This way of implementing a circuit in verilog is called behavioral modelling. A multiplexer can also be modelled using strucural modelling which was illustrated in earlier blog post 2 to 1 multiplexer Verilog Code


Verilog code for 2 to 1 multiplexer using Conditional Operator

module mux2x1(a, b, sel, z);
    input a, b, sel;
    output z;
   
    assign z = sel? a:b;
   
endmodule

The input to the multiplexer is a and b. sel is the selector signal and z is the output. assign statement is used to assign input a or b to output z according to value of sel signal.

If sel is logic 0 then z = b and if sel is logic 1 then z = a.


Compilation and Simulation Result:

The code was compiled and simulated using verilog Software and the simulation trace is shown below:



Related Simulation:

See also VHDL code for the 2 to 1 multiplexer:

VHDL code for 2 to 1 multiplexer using when, select, if, case statements and structural model

Read also 2 to 1 multiplexer simulation in Proteus Professional:

4x1 and 2x1 multiplexer circuit simulation
Read More..

How to convert between data types in VHDL

| 0 comments |
There are basically 4 data types you will encounter in vhdl programming. They are std_logic_vector, unsigned, signed and integers. Normally you would define the interface or ports as std_logic_vector. But while you create hardware that does certain function you need to convert the std_logic_vector to unsigned, signed or integer and back from these to std_logic_vector. The std_logic_vector are simply binary bits which have no information about the mathematical form such as signed or unsigned integer.

Thus we often need to convert the incoming binary bits to unsigned, signed integers. For example if the input bits are numbers on which we want to perform arithmetic operation then we want to convert these input binary bits to unsigned or signed integer and then we can use the mathematical operators.
Mathematical operators like +, -, * and / can be used in the concurrent or sequential statements.

Consider for example that your are designing an arithmetic hardware that takes as inputs two signals a and b of data type std_logic_vector.

If x is a std_logic_vector data type then to convert it to unsigned or signed use-
unsigned(x)
signed(x)

If x is unsigned or signed data type then to convert it to std_logic_vector use-
std_logic_vector(x)

If x is an unsigned or signed then to convert unsigned or signed to integer then use-
to_integer(x)

If x is an integer then you can convert it to unsigned or signed use-
to_unsigned(x,size)
to_signed(x,size)

Read More..

How to measure and place components at the edge of PCB board

| 0 comments |

How far the components should be placed from the edge of the PCB board is things that are often asked by PCB beginners. This tutorial shows how in Altium designer how one can measure the distance between the component and the distance between the component and the edge of the PCB board so that one knows where to place the component.

There are standards such as IPC standards that dictates the distance between the components, between the components and the edge for different types of components such as axial or radial, through hole or surface mount and for discrete, IC etc.

Below shows a typical example of how to measure and place distance dimension in a PCB layout in altium designer. Suppose we have an initial PCB board like the one shown below.


The picture above shows series of through hole resistors placed along the edge of the PCB board. We dont know how far the left most resistor is placed from the two edges of the board. Here we can use the standard dimension tool in altium designer. This tool can be activated and used from the toolbar. It is available in the under utility as Place Standard Dimension.



 The distance from the right side edge is 3.3mm. The minimum recommended distance from side of the PCB board is 1.9mm. The distance is well within the recommended distance from the edge. So we can go move the resistor more closer to that side of the edge.

Similarly, the distance of the center of the pad of the resistor to the bottom edge of the PCB board is 4.216 which is also within the recommended distance of 2.29,


Now lets check the side to side distance between the pads of the resistors R11 and R9. This distance should have a minimum separation of 2.54mm.


 The measure distance is 4.115mm which is also within the recommended spacing between the discrete axial THD component. So for example if there is scarcity of space in the PCB board or if the design should be made small we could place them closer without worrying about the possibility of damaging the devices when soldering them.

Another component placement is the placement of discrete radial THD such as electrolytic capacitor. The board has an electrolytic capacitor placed at the edge of the PCB board as shown below.


The measured distance of the electrolytic capacitor from the edge is 3.353mm which is also within the recommended distance from edge which is greater than the half of the diameter of the electrolytic capacitor or the radial THD device or r> 1.52mm.


This altium designer tutorial showed you how to place components at the edge of the PCB by marking the distance in PCB layout using the standard dimension tool in altium designer.
Read More..

How to Add Emoticons and Smileys to Facebook Status Updates

| 0 comments |
FaceWinks is a free software to add emoticons, and smileys to Facebook status updates. When you install this software, it installs as a browser add-on. When you open Facebook, it will show a new drop-down for FaceWinks with the status update bar. You can just click on that drop-down, and select the emoticon or smiley that you want to insert in Facebook status update.







Facewinks is a browser add on that lets you to surprise your friends with the coolest emoticons and smileys, right in your facebook statuses and comments.


  • Freeware
  • Home Page
  • Size : 1.72MB
  • Download : Mediafire
Read More..

Top Forums to promote your site or blog

| 0 comments |
There are many options to promote your blog or site. One of the best ways to promote is Forums.




Forums is one of the best place online if you are planning to promote or marketing products and services or your site.




Someone will ask me how i can do it ?? ---> Lets see how you can do it :) 



1 - Add you site to your signature in the forum 

2 - Add your site to ( my favorite site Field ) 

Go To Edit Profile -- > and put your site url in Home Page URL 

Home Page URL Field 
 PS : dont worry you will get backlinks to all your posts in this forum :D

 3 - Add a thread and at the end of the thread leave your post link 

 Like This : ---->

Source : www.xxxx.com/xxxx
  


There are many ways to promote your site in forums just be Creative

Important Question !! How i can get a forum to promote my site ?? 

Here are Text with over 30 Forums

Download From Mediafire

 and you can get more Forums by --->

Go to Google and Just write Forum and you will get milions Fourms :)
Read More..