Skip to content

Instantly share code, notes, and snippets.

View tsubik's full-sized avatar

Tomasz Subik tsubik

View GitHub Profile
@tsubik
tsubik / dialogmanager.js
Created October 7, 2012 21:37
Simple jQueryUI DialogManager
;(function(w){
var DialogManager = (function(){
function DialogManager(){
this.dialogIdx= 1;
};
DialogManager.prototype.createDialog = function(options){
var defaults = {
modal: true,
resizeable: false,
@tsubik
tsubik / vspniff_command
Created September 22, 2012 13:28
Keep your VS project files included. Fast and elegant solution Blog
PM> Find-MissingFiles
@tsubik
tsubik / FindProjectMissingFilesReferences.ps1
Created August 8, 2012 16:25
Looking for missing references to files in project config file
#Author: Tomasz Subik http://tsubik.com
#Date: 8/04/2012 7:35:55 PM
#Script: FindProjectMissingFiles
#Description: Looking for missing references to files in project config file
Param(
[parameter(Mandatory=$false)]
[alias("d")]
$Directory,
[parameter(Mandatory=$false)]
[alias("s")]