Skip to content

Instantly share code, notes, and snippets.

View italopessoa's full-sized avatar
🎯
Focusing

Italo Pessoa italopessoa

🎯
Focusing
View GitHub Profile
@italopessoa
italopessoa / .gitignore
Created September 9, 2017 16:16 — forked from kmorcinek/.gitignore
Example .gitignore file I use for C# projects
# Download this file using PowerShell v3 under Windows with the following comand:
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
# or wget:
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
# User-specific files
*.suo
*.user
*.sln.docstates
@italopessoa
italopessoa / removedeadstrings.cs
Created September 8, 2017 16:33 — forked from danmoseley/removedeadstrings.cs
Remove unused strings
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace FindDeadResources