Monday, November 4, 2013

Published 1:18 AM by with 0 comment

google translator

.skiptranslate { display:none !important; visibility:hidden !important; } .lang { cursor:pointer; } $(document).ready(function () { $('.lang').on('click', function () { $.cookie('googtrans',$(this).attr('lang')); ...
Read More
    email this       edit

Friday, November 1, 2013

Published 4:21 AM by with 1 comment

Simple pagination using http://flaviusmatis.github.io/simplePagination.js

$(document).ready(function () { var itemsOnPage = 3; $('#paging').pagination({ items: $('#content > div').length, itemsOnPage: itemsOnPage, cssStyle: 'light-theme', onPageClick: function (pageNumber, event) { var pageN = pageNumber != 0 ? (pageNumber - 1) : pageNumber; ...
Read More
    email this       edit

Monday, June 17, 2013

Published 10:29 AM by with 0 comment

Increase Virtual Box VDI disk size on MAC or Windows

Need more space on your Virtual Box disc? I installed Windows 7 on Oracle Virtual Box but didn’t estimate the size of disk correctly. The drive is now nearing it’s capacity, how do you extend the size? It will take the following steps to achieve an extended disk capacity: Create a new virtual...
Read More
    email this       edit

Sunday, June 9, 2013

Published 1:14 AM by with 0 comment

Abstract Classes C#

Abstract The abstract modifier can be used with classes, methods, properties, indexers, and events. Use the abstract modifier in a class declaration to indicate that a class is intended only to be a base class of other classes. Abstract classes have the following features: An abstract class cannot be instantiated. An abstract class may contain abstract methods and accessors. It...
Read More

    email this       edit
Published 1:13 AM by with 0 comment

Abstract Classes C#

...
Read More
    email this       edit

Wednesday, May 29, 2013

Published 12:31 PM by with 0 comment

Installing Active Directory Domain Services (AD-DS)

Method 1 – Server Manager/Initial Configuration Tasks Roles can and should be added from Server Manager (but they can also be initiated from the Initial Configuration Tasks wizard that auto-opens the first time you log on to the server). Open Server Manager by clicking the icon in the...
Read More
    email this       edit
Published 12:06 PM by with 0 comment

Create and map shared folder in VirtualBox

VirtualBox is a great virtualization software from Sun Microsystems. I’ve previously written many articles on how to create a virtual machine in VirtualBox and how to install Windows 7 using VirtualBox. If you’ve had any experience with virtualization software, you’ve probably also...
Read More
    email this       edit
Published 10:41 AM by with 0 comment

Creating a Virtual Machine using VirtualBox

 Creating a Virtual Machine ( For Guest OS) Open Application -> System Tools -> VirtualBox ( Command name is “virtualbox” ) Click Machine -> New. This will launch a “Create New Virtual Machine” wizard. Click Next. Enter the name of the Guest machine as you desire and choose the Operating...
Read More
    email this       edit