Tuesday, February 24, 2015

Published 12:53 AM by with 0 comment

Getting Started with NPM

Getting Started with NPM (as a developer) If you haven't already set your NPM author info, now you should: npm set init.author.name "Your Name" npm set init.author.email "you@example.com" npm set init.author.url "http://yourblog.com" npm adduser Then create a package.json and publish it: cd /path/to/your-project npm init npm install -g pakmanager # this shows you dependencies as you `require`d...
Read More
    email this       edit

Wednesday, August 27, 2014

Published 11:20 PM by with 0 comment

CSS3 Animation

<style>  @-webkit-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px }   50% { opacity: 1;width:200px;margin-left:200px  } } @-moz-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px }   50% { opacity: 1;width:200px;margin-left:200px  } } @-o-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px...
Read More
    email this       edit

Sunday, January 5, 2014

Published 11:09 PM by with 0 comment

Google Excel Time Difference

Google Excel Time Difference    function TimeDiff(cell1, cell2) {         return ConvertMilliSecondsToTimeSpan(Math.abs(cell1 - cell2));     }     function ConvertMilliSecondsToTimeSpan(t) {         var cd = 24 * 60 * 60 * 1000,            ...
Read More
    email this       edit

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