This file contains 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
These are the settings that I find on my Canon EOS R5 with firmware | |
1.9.0 I have tried to dive into each menu if there are sub-menus but | |
it isn't always obvious which menu items have sub-menus so I may have | |
missed some. This was done with a lens attached and two cards | |
inserted but no flash. | |
SHOOT1 | |
Image Quality | |
Dual Pixel Raw | |
Cropping/aspect ratio |
This file contains 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
#!/usr/bin/env zsh -x | |
# How to verify the signature | |
# gpg --verify emacs-29.2.tar.xz.sig emacs-29.2.tar.xz | |
# My build script. I delete the cached eln files to make the test run | |
# more consistent. If a previous test run successfully compiles a | |
# file, then a subsequent test run doesn't try when it actually might | |
# not be able to. |
This file contains 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
#!/usr/bin/env zsh | |
function tag | |
{ | |
exiftool -s3 -$1 $2 | |
} | |
FILE=$1 | |
shift |
This file contains 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
#!/bin/bash -x | |
VERSION=emacs-26.1 | |
if [[ ! -d /usr/local/src/${VERSION} ]] ; then | |
cd /usr/local/src | |
tar xf /usr/local/images/${VERSION}/${VERSION}.tar.* | |
fi | |
cd /usr/local/images/${VERSION} |
This file contains 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
While checking Campaign-Protoss-Arbiter-0-General, key R used for default setting for ArbiterMPRecall/ArbiterMP conflicts with user setting from 'Pedz Core 40 Left Plus' for ControlGroupRecall2 | |
While checking Campaign-Protoss-Arbiter-0-General, key F used for default setting for ArbiterMPStasisField/ArbiterMP conflicts with user setting from 'Pedz Core 40 Left Plus' for ControlGroupRecall4 | |
While checking Campaign-Protoss-DarkArchon-0-General, key R used for default setting for DarkArchonMindControl/DarkArchon conflicts with user setting from 'Pedz Core 40 Left Plus' for ControlGroupRecall2 | |
While checking Campaign-Protoss-DarkArchon-0-General, key F used for default setting for DarkArchonConfusion/DarkArchon conflicts with user setting from 'Pedz Core 40 Left Plus' for ControlGroupRecall4 | |
While checking Campaign-Protoss-Mothership-0-General, key R used for default setting for MothershipMassRecall/Mothership conflicts with user setting from 'Pedz Core 40 Left Plus' for ControlGroupRecall2 | |
While checking Campaig |
This file contains 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
[Settings] | |
AllowSetConflicts=1 | |
[Hotkeys] | |
FPS= | |
Music= | |
Sound= | |
PTT= | |
DisplayMode= | |
ChatAll= |
This file contains 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
dump -H /usr/work/build/gcc.git/./gcc/cc1 | |
/usr/work/build/gcc.git/./gcc/cc1: | |
***Loader Section*** | |
Loader Header Information | |
VERSION# #SYMtableENT #RELOCent LENidSTR | |
0x00000001 0x000000cf 0x0000dd1c 0x00000181 | |
#IMPfilID OFFidSTR LENstrTBL OFFstrTBL |
This file contains 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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.postgresql.data</string> | |
<key>Disabled</key> | |
<false/> | |
<key>ProgramArguments</key> | |
<array> |
This file contains 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
I added this to the top of /etc/profile.d/rvm.sh | |
[[ -n "${ZSH_VERSION:-""}" ]] || set -o errtrace | |
export rvm_trace_flag=1 | |
set -o xtrace | |
[[ -n "${ZSH_VERSION:-""}" ]] || | |
export PS4="+ \${BASH_SOURCE##\${rvm_path:-}} : \${FUNCNAME[0]:+\${FUNCNAME[0]}()} \${LINENO} > " | |
--------------------- output when shell is started ----------- | |
++ [[ -n '' ]] |