Showing posts with label Code. Show all posts
Showing posts with label Code. Show all posts

Create a folder with invalid file name in Windows

Have you ever tried to make a folder named ‘CON’ ? Its impossible, because it’s an invalid folder name for windows. There is many such names like: CON, AUX, PRN, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8 and LPT9. But you can now create such folder with a simple trick.









Step 1: Open Command Prompt, then Type

mkdir \\.\E:\CON
The red coloured text is the folder name here and the Blue Colour, Drive alphabet. Then Verify that folder by

dir \\.\E:\CON
Now that folder is Created. In this way you can create all the file names mentioned above. To delete that folder, type,

rmdir \\.\E:\CON
Enjoy.
Continue Reading

Jovel's Blog's Sharer Box, New and updated.

We've recently created a sharing box for blogs and websites. this one is updated of that. Better, Less Codes, Designed by Jovel's Blog, Plugins by Addthis. See the demo at Jovel's Blog Demos











What he Got.

Facebook Like Button

Twitter Tweet Button

Google +1 button. And even more.....

How to Add this (in Blogs).

Select your Blog-> Layout -> Add Gadget -> HTML/Javascript. now paste this code in it and click Save.
<style>
#jovelsshare{
height:auto;
width:auto;
background-color:#fffdde;
border-spacing:inherit;
left:40px;
top:15%;
padding:5px;
border:solid 5px;
border-color:#d5d5d5;
opacity:0.6;
position:fixed;
}
#jovelsshare:hover{
opacity:1;
}
</style>
<div id="jovelsshare" title="Jovel's Blog Share">
<a class="addthis_button_facebook_like" fb:like:layout="box_count"></a><br />
<a class="addthis_button_tweet" tw:count="vertical"></a><br />
<a class="addthis_button_google_plusone" g:plusone:size="tall"></a><br/>
<a class="addthis_counter"></a><br />
<a align="center" href="http://joe-amis.blogspot.com/2013/10/jovels-blogs-sharer-box-new-and-updated.html">Get This</a>
</div> <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>

<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5263902d4534c996"></script>
Continue Reading