Mats codemix

Mats codemix

A little c#, a litte .NET and throw in some c++ and you get a nice Spaghetti

Mats codemix RSS Feed
 
 
 
 

Archive for utilities

Regex for SQL

Found a regex for getting SQL-code here.
“(/\*[^\*/]*\*/)|(\r\n\s*)|\t|\s{2,}”

Test WLW with plugins

Testing code plugins  for windows Live Writer
Code snippet

1: using System;

2: using System.Collections.Generic;

3: using System.Linq;

4: using System.Text;

5: 

6: namespace blaj.model.entities

7: {

8: /// <summary>

9: [...]

Powershell-script to find files not having specified text

I had the need to find files “not containing” a certain text. I scanned the web and found all and nothing. a few dedicated search tools and editors (some payware and some free). Since i use powershell a lot in my work i wanted to use that environment.  Finding a file based on a ceratin [...]