Showing posts with label Hacking and Tools. Show all posts
Showing posts with label Hacking and Tools. Show all posts

Wednesday, November 30, 2011

CSS Borders Tutorial

Basic Concepts, Tips, Tricks & Design Ideas

In this tutorial you will learn all about CSS borders. Learn how to create rounded corners in CSS and more! The CSS code for all these designs are also included below. Please do like, tweet or share this tutorial if you find it helpful!

css borders



Hemisphere
Round Rectangle
Bullet
Leaf











The Css Border property is used to add borders to html elements. With the Css

Border Property width, color and border type can be changed. Border Radius can also be used to produce round corners in supported

Browsers like IE9, Opera 8+, Firefox and webkit browsers like Chrome &

Safari
.



IE9 and Opera both use the same code to display Border Radius. For using Border Radius in Firefox and Webkit Browsers a prefix -moz- for Firefox and -webkit- for Webkit browsers like Chrome and Safari.












If your Browser supports Css Borders then you can see the following border effects.









Advanced Hemisphere
Advanced Round Rectangle
Advanced Bullet


Advanced Leaf





Borders can be applied in the following ways.





Border Syntax



border-(sub-property): (top) (right) (bottom) (left);












sub-property



top

right

bottom

left




we can use width, color, style and radius as sub-properties of Border.

This value gets assigned to the top portion of the border


This value gets assigned to the right portion of the border

This value gets assigned to the bottom portion of the border

This value gets assigned to the left portion of the border






Here in sub-property we can use width, color, style and radius as sub-types of Border.





Four values need be to defined.

  1. The first value gets assigned to the top portion of the border.
  2. The second value gets assigned to Right portion of the border.
  3. The third value gets assigned to the Bottom portion of the border.
  4. The last value gets assigned to the left portion of the border.
The values in the right are used to assign numerical values in pixels

for width and radius. Colors can be assigned to the borders by using RGB

Color Code, Hex Color Code or by Color names.







Border Color






Syntax : border-color: (top) (right) (bottom) (left);



Example: border-color: #85C226 #F7C200 #4493A0 #DF127B ;












Here the top border is green(#85C226) in color,



right border is yellow(#F7C200),



the bottom has blue(#4493A0)



and Left border is pink(#DF127B) in color.











Border Styles Important

This property must be used if you are using any of the Border properties.



Without using this border-style property you won't see any borders at all.





Syntax : border-style: (top) (right) (bottom) (left);




Example: border-style: solid dotted groove double;











Here the top border (green) has a solid style,



right (yellow) one has dotted,




bottom (blue) one has groove and



the left (pink) one has the double style.








Border Width

Syntax : border-width: (top) (right) (bottom) (left);




Example: border-width: 5px 10px 15px 20px;







Here Top (green) border's width is 5 pixel,



right (yellow) border is 10 pixel wide,




bottom (blue) is 15 pixel



and left (pink) is 20 pixel wide.








Border Radius

Syntax : border-radius: (top-left) (top-right) (bottom-right) (bottom-left);




Example: border-radius: 0px 30px 70px 20px;



For displaying round corners Border Radius property is used.



IE9 and Opera use the same code.

For Firefox a prefix -moz- needs to be added before the code. And for Webkit Browsers -webkit- needs to be added before the code.


Box-shadow property for all the browsers.







For IE and Opera



For Mozilla Firefox

For Webkit Browsers


box-shadow:

-moz-box-shadow:

-webkit-box-shadow:



0px 30px 70px 20px;

0px 30px 70px 20px;

0px 30px 70px 20px;

























No Border radius ( 0px ) has been applied on the top-left (green-pink) corner.



Border radius ( 30px ) has been applied on the top-right (green-yellow) corner.



Border radius ( 70px ) has been applied on the bottom-right (blue-yellow)corner.



Border radius ( 20px ) has been applied on the bottom-left (blue-pink) corner.











Now lets try making Hemisphere, Round Rectangle, Bullet and Leaf as shown at the top.




What we'll do here is create an empty <div> </div> inside your <body> </body> tags, then assign some width and height to it. We'll apply a thick border width to it so that the effect is visible clearly.












Stylesheet Code for <head> </head> tag





1
2
3
4
5
6
7
8
9
10
11
12
13




<head>

<style type=text/css>


#example{
width:120px; height:60px; border:thick solid; }
</style> </head>











! : Line 8 border:thick solid;



Border width (thick) wont work unless border type (solid) is also included in the code.










Please Note !The width and height as defined above will be same for all the <div> </div> tag's below. Just add the border-properties that I'm going to explain below.












Code for <body> </body> tag

1
2
3
4
5
6
7




<body>
<div id=example> </div>
</body>















Hemisphere



Use values of width, height and border as defined above. Only add these codes to your existing stylesheet or make a new one.



Hemisphere




1
2
3
4
5




#hemisphere{
border-radius:100px 100px 0 0 ; -moz-border-radius:100px 100px 0 0 ; -webkit-border-radius:100px 100px 0 0 ;
}






Green

Yellow


Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Hemisphere



Now we'll add more effects to the border by applying different values for width and using different border style.




Adv-Hemisphere
1
2
3
4
5
6
7
8




#adv-hemisphere{
border-width: 4px 30px 4px 30px; border-style: groove ridge dashed groove; border-color: #cc0000; border-radius:100px 100px 0 0 ; -moz-border-radius:100px 100px 0 0 ; -webkit-border-radius:100px 100px 0 0 ;
}








Here Border Properties like border-width, border-style and border-color are added and rest of the codes for Advanced Hemisphere are same as Hemisphere above.







Round Rectangle





Here all the corners have the same border radius (20px).

Round

Rectangle


1
2
3
4
5


#round-rectangle{
border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Round Rectangle



We'll make top border's and bottom border's width zero pixel, Use same

border-radius (40px) for both top corners and for both the bottom


corners (60px).



Advanced Round Rectangle
1
2
3
4
5
6
7
8


#adv-round-rectangle{
border-width: 0px 12px 0px 12px; border-style: double; border-color: violet; border-radius:40px 40px 60px 60px; -moz-border-radius:40px 40px 60px 60px; -webkit-border-radius:40px 40px 60px 60px;
}

















Bullet



Same border radius (20px) is assigned to the corners on the left, and

same border radius (100px) is assigned to the right corners.



Bullet
1
2
3
4
5




#bullet{
border-radius: 20px 100px 100px 20px; -moz-border-radius: 20px 100px 100px 20px; -webkit-border-radius: 20px 100px 100px 20px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Bullet



Here Groove style border and different colors for each border is used and the code is same as above.




Advanced Bullet
1
2
3
4
5
6
7
8


#adv-bullet{
border-width: 12px; border-style: groove; border-color: red blue green black; border-radius:20px 100px 100px 20px; -moz-border-radius:20px 100px 100px 20px; -webkit-border-radius:20px 100px 100px 20px;
}


















Leaf




Same border radius (120px) is assigned to the corners on the top-right

and bottom-left, and a border radius (0px) is assigned to the top-left

and bottom-right corners.



Leaf
1
2
3
4
5




#leaf{
border-radius: 0 120px 0 120px; -moz-border-radius: 0 120px 0 120px; -webkit-border-radius: 0 120px 0 120px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Leaf

Background color (orange) is used for the <div>


.

Solid style border is used here same color (blue) for the top and right

border and same color (green) is used for bottom and left border.





Advanced Leaf
1
2
3
4
5
6
7
8
9


#adv-leaf{
background:orange; border-width:4px 30px 4px 30px; border-style: solid; border-color: #56c6d9 #56c6d9 #fe2192 #fe2192; border-radius:0 120px 0 120px; -moz-border-radius:0 120px 0 120px; -webkit-border-radius:0 120px 0 120px;
}

Tuesday, November 29, 2011

Make windows xp theme with SkinStudio

Make windows xp theme with SkinStudio 
Okay here I'll explain a little how to make windows xp theme using windows blind. For that I use WB version 6.0 and skinstudio 6

Immediately, the initial explanation. At this point say a button will make first start

1. WB to finish install and run, if WB wants to reboot then reboot first. To WB6 can be downloaded here:




2. Install skin studio please select your own version

3. Enable WB advance please if you have a serial / crack it

4. If it is then in the system tray icon will appear WB then 5. Double click on the icon / right click and select configure windows blind

6. If it appears choose a theme that we will edit. Here I will only change the existing theme, if you want to create from scratch just run Skin studio and began to design a theme that you want

I'll start from the start button. If the position I would like this

Ex. Select the Edit start menu and taskbar and then select Edit on the sub horizontal taskbars


 

It will appear as below



7. On the list select the Start button. If it is then it will look like below

9. Then select the fame is to click on the frame that will be on fox. In addition to the frame is there an explanation of the function of the frame itself. Ex on frame No. 1 explanation that the frame under normal circumstances. No two frames on the state of suppressed / we click, etc..

10. Now I will change the way the files on the choice pick the right side and I will replace with a picture as below

















11. Insert a picture in a frame builder. Then it would be like under

12. If it is then Click the save file and close. After we close, we will return to the previous window, kemdian Click Apply then the theme will be in pairs with all amendments thereto.

Ex got me







Hope can help

Monday, November 28, 2011

Eset Nod & Smart Auto Update Keys

  • Eset Nod & Smart Auto Update Keys
NOD the best solution for automatically updating Eset NOD32 keys. Every day you get new keys and your Eset will never expire.


DOWNLOAD :

http://www.fileserve.com/file/Ew9SnCN/Eset_Nod_&_Smart_Auto_Update_Keys.rar

http://www.filejungle.com/f/BQZC2g/Eset_Nod_&_Smart_Auto_Update_Keys.rar

http://oron.com/n4fbm2zlbnxg

http://www.wupload.com/file/2578932342/Eset_Nod_&_Smart_Auto_Update_Keys.rar

RELATED POST

Adobe Flash Player 13.1.102.55 Internet Explorer, AOL, Mozilla Firefox, Netscape and Opera

Adobe Flash Player 11.1.102.55 For Internet Explorer, AOL, Firefox, Mozilla, Netscape and Opera - x86/x64 | 22.77 MB


Adobe Flash Player – browser plugin for Internet Explorer, AOL, Firefox, Mozilla, Netscape and Opera, allowing to play Flash-videos files (SWF). Without this program, the browser will correctly display Web pages and interactive web elements, developed by technology Flash. Adobe Flash Player – is a cross-platform runtime for browser-based delivery of dynamic applications, content and video on different screens and browsers. Wednesday Flash Player 10 is optimized for creating high-performance mobile applications and maintains the original functionality of the device, providing the user experience with the established applications.

Year : 2011
OS : Windows 2000/XP/Vista/7
The house. Home: adobe.com
Language : Ml
Crack : (freeware)



Just Click This

Saturday, April 30, 2011

Cheat Point Blank 30 April 2011 Cheat WALLHACK Update Point Blank 30042011

Cheat Cheat PB 30 April 2011 Update WALLHACK PointBlank 30,042,011 latest version - Met again with the latest articles today. post this time is to cheat point blank version 30 April 2011. pb cheat this time named cheat point blank Cheat cheat WALLHACK latest version 30042011 bp. cheat hopefully point blank this time helping a friend of all who again searched 30-04-2011 pb cheat this. The following links download cheat point blank 30/04/2011 and its features.
Point Blank Cheat Cheat WALLHACK 30 April 2011 Update Point Blank 30,042,011

FEATURES:
* WALLHACK / CHAMS AUTO ON
* crosshair AUTO ON

Expired 30 APRIL IF NO TAXABLE PATCH
ITS USE IN THE LIMIT TO 30 APRIL
Put the DLL FILE IN ORDER FLASHDISK Cheat WORK (DRIVE IN OTHER've LOCK)
UPDATE END-USER DirectX Runtime HERE: END-USER DirectX runtime
Langkah2 FOLLOW ABOVE FOR WORK!
Tested WORK ON XP SP2 & SP3!

PASSWORD: indrascott [lowercase fit her]

Tutor:
+ Cheat Open it, extract to the FD
+ Open PB, Check, STAR
+ Sleck DLL, injek
+ Enter password
+ Resume.
+ TARAAA ... NO HotKey work wh


Note: before using the cheat Cheat To INSTALL VCREDITS first work
DOWNLOAD ==> LINK

Friday, April 29, 2011

FISHING TECHNIQUES, HOW EASY SOFTWARE TO-CRACK

FISHING TECHNIQUES, HOW EASY SOFTWARE TO-CRACK

Cracking is the art of modifying a program to work according to our wishes. For those who master the language of Assembly, disassembly can download the EXE file from an application and then edit a specific hex code and restore it to its original shape exe to run as desired. This technique is known by the name of Dead Listings.
For the beginner, could use the technique of fishing techniques Fishing ie a serial number of a limited application (trial version,) with the help of a software called SoftICE. SoftICE is a type of software used to perform debbuger disassembly of a program when the program was executed.

For operating systems Windows XP and earlier versions, can use Softice version 4.2.7 which can be download 


CONFIGURATION SoftICE
Softice installation process is not difficult, just like the installation program in general. However, SoftICE To configure the PC system, there are 5 options, all depending on our needs. Namely Boot, Softice walk before you run Windows. System, running together with Windows. Automatic, Softice run automatically but, not all active drivers debug. Manual, Softice run manually and the latter Disable, disable Softice on every Windows startup.

After the installation is complete, modify a file that is winice.dat SoftICE to simplify the initialization symbol when loaded.

How, search winice.dat. usually, there is at C: / Program Files / NuMega. Then open with Notepad. Remove the semicolon (in front of every command EXP. Change the value PHYSMB with a capacity of RAM that is on the computer. When you're done, click 'Save' and restart the computer for the changes could have an impact.

SoftICE runs automatically in the back of the operating system, then to bring it on screen, press the Ctrl + D on your keyboard simultaneously. Similarly, when you want to close it to the back of the screen.


START CRACKING:

1. Open Program Trial Version
Open the program you want in the trial version crack and then click 'Enter Registration Code'. Enter information 'Name' and 'Registration' as you like (do not press ENTER yet). Show Softice by pressing CTRL-D, install breakpoint by typing in a command prompt line: BPX Getdlgitemtexta, then

SoftICE window appears on the screen. SoftICE displays the code lines. Press F12 twice and see the value of EAX register if the value 6. This value is the number of characters that you enter on the Registration. If the typed as much as 4 characters, then EAX will be worth 4.

Press F10 as much as 10 times and stop on CALL 004079D5 because underneath there is TEST EAX, EAX, which means that you compare the value of EAX with EAX type made within 004079D5 CALL above. Now press F8 once.

2. Looking for Registration Code
Press F10 as much as 58 times until the EAX register is blue and you stop at PUSH ESI after LEA EAX, [EBP-0140]. Now type d eax (disvalid registration # that you entered previously) and the press.

See the right side, there is the Registration code generated by CALL 004079D5 which corresponds to the name that you entered. Then type bc * and press Enter. .

3. Test Registration Code
Open Trial Versionnya program. If there is an error message we skip. In the Name field type according to which we enter first. Similarly, the entries in the column Registration #. Then click OK. Now you can enjoy it as full version.

Using the personal software crack results, can still be forgiven. But mengkomersilkannya to reap a profit is part of the crime.

Wednesday, April 27, 2011

10 Best Antivirus in 2012


Old taste do not love a human being updated information on world best antivirus, last year had a post about the best antivirus 2010. Given the years have changed the posting of the 10 Best Antivirus in 2010 already passed so now We replace its news about the 10 Best Antivirus 2011. No different from last year 2011, ordinary people continue to use as source 10 ToptenReviews.com Antivirus is the best in 2011. Not much different from previous years the best antivirus in 2011 based on Several Important points who've ordinary people never posted here and here please please refer to there
On 10 Best Antivirus 2011 the position has not changed much from 10 Best Antivirus in 2010, there were the resource persons only A Few antivirus the which switch position or a freefall ride (emangnya use a Parachute). Well, here are the top 10 Best Antivirus 2011 Ordinary Humans get the which recently.
BitDefender Antivirus rated first there successfully defended his title the WHO for the 4th time in permission from the throne of the top 10 best antivirus in 2011 ... let's give a rousing applause for BitDefender AntivirusRated second is still overshadowed by Kaspersky Anti-Virus the which is Apparently Unable to overtake BitDefender to take permission from the rank 1 in the top 10 best antivirus in 2011. To note Kaspersky Anti-Virus for the 4th time it was also only Able to reach posis to-2 this year.
The third statistic is Webroot AntiVirus is still stalking the two competing anti-virus on it.
As if not to be outdone by its Rivals Norton AntiVirus also meramikan world of the best antivirus World wide with a fourth position for the second time
The next statistic is ESET NOD32 Antivirus to be satisfied to survive in the fifth position in 2011 for the second time. :Login to positions of six AVG Anti-Virus is still entrenched in a position like this for the 2nd time.
Log in seven positions of the WHO in 2010 yesterday at the occupied by F-Secure Anti-Virus seems a to be satisfied was thrown from a list of 10 best antivirus in 2011 this. G DATA AntiVirus is a new occupant in the top 10 best antivirus 2010, managed to go up one trip and sure to be in a position 7 for this year 2011. Good job: D
Further there keposisi Continue Successful repair Avira AntiVir position from 2010 yesterday ranked ninth Ditahun now ride a 2011 trip to position 8. Again applause for Avira AntiVir donk: D
Continue the next 10 best antivirus positions of our 2011 arrival of new residents WHO sped straight into the sequence 9 is VIPRE Antivirus. Still not safe can kelempar wkwkwkwkwkwwkwk later .... : D
Go to the order of the most bloated or caretaker or something, there's Trend Micro Titanium is Apparently still like to keep this position. : D
he 10 best antivirus in 2010.Well, the best antivirus on the computer / pc, a laptop, you are there in one Ordinary Man Who has been Mentioned above, if there are survivors deh ...: D
Do not forget the ordinary people congratulate new year: DHopefully this article useful,Keep smileKeep n touch 'Happy blogging: D

BitDefender Ranked first in 2011

On 10 Best Antivirus 2011 the position has not changed much from 10 Best Antivirus in 2010, there were the resource persons only A Few antivirus the which switch position or a freefall ride (emangnya use a Parachute). Well, here are the top 10 Best Antivirus 2011 Ordinary Humans get the which recently.

BitDefender Antivirus rated first there successfully defended his title the WHO for the 4th time in permission from the throne of the top 10 best antivirus in 2011 ... let's give a rousing applause for BitDefender Antivirus

please try this first ranking antivirus Free




How to Make a simple game with 20 applications

Here are a variety of applications can be used to make games that anyone who wants to make the game itself.
Create Flash-Based Game



1. AlbinoBlackSheep
http://www.albinoblacksheep.comHere a lot of games and videos, including tutorials on how to make flash-based games.
2. FlashKit

http:// www.flashkit.com
Here you can find a lot of work with flash tutorials include step by step guide to some types of games.
3. Kirupahttp://kirupa.comLots of extensive tutorial to make flash games including guidelines for specific games like shooter games.
4. Lassie Adventure Studiohttp://lassie.gmacwill.com/lower.php?section=news&page=indexWith this application, you can create 2D drawings for adventure game with ease and make the game.
5. Sploderhttp://www.sploder.comHere you can create flash games from various types of objects and then put it on MySpace, Blogger and other sites.
Creating Game Standard and guidance
6. Anim8orhttp://www.anim8or.comApplication modeling 3D animation for games that are easy to use.
7. Byondhttp://www.byond.comHere you can create your own game with the help of equipment that has been provided alikasi and then you share with others for their opinions.
8. Discovery Gamehttp://www.gamediscovery.comHere all you want to make games there, character making, making the gameplay and also you can find ideas to make the game here.
9. Martin Piecyk's Websitehttp://www.pages.drexel.edu/% 7Emfp27/gamemaking Guide to learn how to create games with accompanying links to various sources.
10. VGMusichttp://vgmusic.comIf you want to add sound effects or soundtrack of the game you created, you can find here, a lot of midi files that you can use for games that you create.
11. Visionaire2dhttp://www.visionaire2d.netThis application can help you create a 2D adventure game without programming knowledge.
12. YoYoGameshttp://www.yoyogames.comHere you will find a lot of equipment to make the game such as beta testing, downloads, work in progress, community, and many others.
Creating a RPG Game
13. Charas-Projecthttp://charas-project.netCharacter generator is easy to use for RPG characters that you want to create.
14. CrankEyehttp://www.crankeye.comThere are plenty of guides to make a RPG like character editors, soundfile and so forth.
15. DualSolacehttp://dualsolace.comHere you can find the software makes the RealFeel 2D MMORPG.
16. FreeMMORPGMakerhttp://www.freemmorpgmaker.comFree software to create a MMORPG including making parts of games like character, and sound effects.
17. PhanxGameshttp://www.phanxgames.com/index.aspYou can make RPG and also with making graphics, sound files midi, wav, then if you finish him, you can upload it on the site up to size 50 MB.
18. PlayerWorldshttp://www.playerworlds.comPopular applications are widely used to make a RPG game series.
19. RPG Makerhttp://www.rpg-maker-downloads.tnrstudios.com/RPG Maker program at this site there are some series that you can choose according to your wishes.
20. RPGCrisishttp://rpgcrisis.netHere you can find various downloads and applications for making RPGs on the various systems whether PC or the other.
21. RPG Revolutionhttp://www.rpgrevolution.comEquipment and applications for making RPG games on more than 13 different systems making games.
Free download 3d rpgmaker


Download 


==> May Beneficial yes <==

Friday, April 22, 2011

Hack Registry Booster 2011





Once Installed Go To Task Manager And End The Process Of Uniblue
Then Go To Registry Editor
Open Run And Type regedit And Hit Enter You Will Taken To The Registry Editor
Select HKEY-CLASSES-ROOT
Then Find CLSID
Then Right Click On CLSID And Click On Find
Uncheck "Keys" And "Data" And Check " Match Whole String Only " And Type " FC " In The Search Then Click Find Next
It Will Take You To The Next Step
Under FC Right Click Then Click On New Then Click String Value
Name It License
Then Double Click It You Should See A New Window
In The Value Data Field Paste This Key
RB-0HR4N7-NWYFRE-WGVT8T-P2GVR7­-T50U22
Click Ok
Close Your Registry Editor
Start The Registry Booster And Boom You Have The Registered Version
Congrats You Just Saved Few Dollars For Yourself

I Hope I Helped You In Some Way

Tags