This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> | |
<!-- Surface Mesh --> | |
<Type Name="CGAL::SM_Index<*>"> | |
<DisplayString>{idx_}</DisplayString> | |
</Type> | |
<Type Name="CGAL::Properties::Property_array<*>"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# # # # # # # # # # # # # | |
# PDF Tools | |
# # # # # # # # # # # # # | |
# Uses Imagemagick convert tool | |
# Reduce PDF file size by compressing images to 200dpi, jpeg quality 80 | |
convert -density 200x200 -quality 80 -compress jpeg input.pdf output.pdf | |
# Apply contrast normalization to scanned PDF files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Can be executed from Terminal using "osascript safari_cache_clean.scpt" | |
-- inspired by http://www.macuser.de/forum/f30/safari-alle-cache-544226/ | |
set appname to "Safari" | |
if appIsRunning(appname) then | |
set started to true | |
-- Quit App | |
tell application appname to quit | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Inodude < Formula | |
url 'http://download.savannah.gnu.org/releases/avrdude/avrdude-5.11.1.tar.gz' | |
homepage 'http://savannah.nongnu.org/projects/avrdude/' | |
md5 '3a43e288cb32916703b6945e3f260df9' | |
depends_on 'libusb-compat' if ARGV.include? '--with-usb' | |
def patches |