Skip to content

Instantly share code, notes, and snippets.

@YoSoyPhil
YoSoyPhil / README.md
Last active June 28, 2024 16:42
Install Canon EOS Utility 2 full version

How to install Canon EOS Utility 2 full version

EOS Utility 2.14.20a full version install

Go to Canon and select your camera model under software downloads. At the time this guide was written, the link was https://www.canon-europe.com/support/consumer_products/software/eos-utility.html

Select your camera and download "EOS Utility 2.14.20a Updater for Windows" (yes, we will do full install with this file).

Before we can run the installer we need to add a key to our registry.

@lihas
lihas / gist:6514840808159f3892806b80871dba12
Created December 7, 2021 05:28
Canon Digital Photo Professional installer (direct link)
https://gdlp01.c-wss.com/gds/7/0200006477/01/dppw4.15.20-installer.zip
@TheCherno
TheCherno / Instrumentor.h
Last active June 25, 2024 18:39
Basic Instrumentation Profiler
//
// Basic instrumentation profiler by Cherno
// Usage: include this header file somewhere in your code (eg. precompiled header), and then use like:
//
// Instrumentor::Get().BeginSession("Session Name"); // Begin session
// {
// InstrumentationTimer timer("Profiled Scope Name"); // Place code like this in scopes you'd like to include in profiling
// // Code
// }
@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active July 5, 2024 11:13
crack activate Office on mac with license file
@mayurah
mayurah / sips: CR2 to jpeg
Created August 9, 2017 20:42
Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
# Mass convert CR2 (Raw Image File) to JPEG in macOS command-line.
mkdir Converted
for i in *.CR2; do sips -s format jpeg $i --out Converted/$i.jpg;done