How to make an application icon for macOS using
iconset
&iconutil
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
diff --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) |
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 resolution
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
-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 |
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//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> |
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
#include <time.h> | |
#include <stdio.h> | |
int main() | |
{ | |
char buf[26]; | |
long t; | |
time(&t); | |
ctime_r (&t, buf); |
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:
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
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> | |
+ |
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
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) || |
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 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 |