Skip to content

Instantly share code, notes, and snippets.

View ixe013's full-sized avatar

Guillaume ixe013

View GitHub Profile
@ixe013
ixe013 / xmlsort.py
Last active June 10, 2016 20:00 — forked from dalelane/xmldiff.py
Comparing XML files ignoring order of attributes and elements - see http://dalelane.co.uk/blog/?p=3225 for background
##########################################################################
#
# xmlsort
#
# Simple utility script to enable a diff of two XML files in a way
# that ignores the order or attributes and elements.
#
# Forked from
# Dale Lane (email@dalelane.co.uk)
# 6 Oct 2014
@ixe013
ixe013 / check_inc.py
Last active August 29, 2015 14:08 — forked from zach-brockway/check_inc.py
Tells you what include file is missing from your projec, making your Visual Studio always build.
#!/c/Python32/python.exe
import sys
import os
import os.path
import xml.etree.ElementTree as ET
ns = '{http://schemas.microsoft.com/developer/msbuild/2003}'
#Works with relative path also
projectFileName = sys.argv[1]