I hereby claim:
- I am Benitoite on github.
- I am kd6kxr (https://keybase.io/kd6kxr) on keybase.
- I have a public key whose fingerprint is D1BA C925 F31D 9A99 7A90 D519 2DBA 0680 C336 0E5F
To claim this, I am signing this object:
$ locale -a | |
af_ZA | |
af_ZA.ISO8859-1 | |
af_ZA.ISO8859-15 | |
af_ZA.UTF-8 | |
am_ET | |
am_ET.UTF-8 | |
be_BY | |
be_BY.CP1131 | |
be_BY.CP1251 |
#!/usr/bin/env ruby -Ku | |
require 'net/http' | |
require 'net/https' | |
require 'open-uri' | |
require 'cgi' | |
require 'optparse' | |
ACCOUNT = '' # Set to Google Voice account email for default account | |
PASSWORD = '' # Set to Google Voice account password for default account |
diff --git a/rtengine/dcraw.cc b/rtengine/dcraw.cc | |
--- a/rtengine/dcraw.cc | |
+++ b/rtengine/dcraw.cc | |
@@ -6113,6 +6113,7 @@ | |
break; | |
case 305: case 11: /* Software */ | |
fgets (software, 64, ifp); | |
+ RT_software = software; | |
if (!strncmp(software,"Adobe",5) || | |
!strncmp(software,"dcraw",5) || |
diff -r 6fce4eda8251 rtengine/dcraw.cc | |
--- a/rtengine/dcraw.cc Wed Oct 24 12:03:15 2018 +0200 | |
+++ b/rtengine/dcraw.cc Sat Oct 27 13:53:10 2018 +0200 | |
@@ -30,6 +30,10 @@ | |
//#define BENCHMARK | |
#include "StopWatch.h" | |
+#include <zlib.h> | |
+#include <stdint.h> | |
+ |
I hereby claim:
To claim this, I am signing this object:
#include <time.h> | |
#include <stdio.h> | |
int main() | |
{ | |
char buf[26]; | |
long t; | |
time(&t); | |
ctime_r (&t, buf); |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleExecutable</key> | |
<string>myexecutable</string> | |
</dict> | |
</plist> |
-Dplatforms=x11,wayland -Ddri-drivers=[] -Ddri3=enabled -Dgallium-extra-hud=true -Dvulkan-drivers=['amd','intel','swrast'] -Dshader-cache=enabled -Dvulkan-overlay-layer=true -Dvulkan-device-select-layer=true -Dopengl=true -Dgles1=disabled -Dgles2=disabled -Degl=disabled -Dllvm=enabled -Dlmsensors=enabled -Dtools=glsl,nir -Dopencl-spirv=true -Dgallium-vdpau=enabled -Dgallium-xvmc=enabled -Dgallium-va=enabled -Dglvnd=true -Dgbm=enabled -Dlibunwind=enabled -Dosmesa=true -Dgallium-nine=true -Dgallium-opencl=icd -Dopencl-spirv=false |
ffmpeg -r 24 -pattern_type glob -i '*.JPG' DSC_%04d.JPG -s hd1080 -vcodec libx264 timelapse.mp4
-r 24
- output frame rate-pattern_type glob -i '*.JPG'
- all JPG files in the current directory-i DSC_%04d.JPG
- e.g. DSC_0397.JPG-s hd1080
- 1920x1080 resolutiondiff --git a/CMakeLists.txt b/CMakeLists.txt | |
index bf204a5d2..194cf2da5 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -1,6 +1,7 @@ | |
if(APPLE) | |
- cmake_minimum_required(VERSION 3.5) | |
+ cmake_minimum_required(VERSION 3.7) | |
cmake_policy(SET CMP0025 NEW) | |
+ cmake_policy(SET CMP0037 NEW) |