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
# Requires exiftool, install using Homebrew: | |
# brew install exiftool | |
require 'time' | |
Dir.glob('*.{heic,mov}') do |file| | |
puts "Renaming #{file}" | |
case File.extname(file) | |
when '.heic' |
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
# Run this script using `ruby package.rb` with an executable named `app` | |
# in a `build/` directory. | |
# Build an app bundle for macOS | |
def build_macos_package | |
require 'fileutils' | |
info_plist = %( | |
<?xml version="1.0" encoding="UTF-8"?> |
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 | |
RUBY_VERSION=3.3.0 | |
brew update | |
brew install rbenv ruby-build | |
read -d '' String <<"EOF" | |
# rbenv | |
eval "$(rbenv init -)" |
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 | |
# -------------------------------------------------------------------------------------------- | |
# Installs Ruby using rbenv/ruby-build on the Raspberry Pi (Raspbian) | |
# | |
# Run from the web: | |
# bash <(curl -s https://gist.githubusercontent.com/blacktm/8302741/raw/install_ruby_rpi.sh) | |
# -------------------------------------------------------------------------------------------- | |
# Set the Ruby version you want to install |
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
/* | |
* module.js - The description of the module. | |
*/ | |
var Module = (function () { | |
// Properties | |
/////////////////////////// | |
var x = 0; |
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
{ | |
"organization": "String", | |
"category": "String", | |
"alias": "String", | |
"location": { | |
"street": ["String"], | |
"city": "String", | |
"state": "String", | |
"zip": "String", | |
"lat": "Number", |
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
class String | |
def colorize(c); "\e[#{c}m#{self}\e[0m" end | |
def error; colorize("1;31") end | |
def bold; colorize("1") end | |
end |
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
{ | |
"date_range": { | |
"start": "templateId[root='2.16.840.1.113883.10.20.22.2.6.1'] > effectiveTime > low.value", | |
"end": "templateId[root='2.16.840.1.113883.10.20.22.2.6.1'] > effectiveTime > high.value" | |
}, | |
"name": "templateId[root='2.16.840.1.113883.10.20.22.4.7'] > code.displayName", | |
"code": "templateId[root='2.16.840.1.113883.10.20.22.4.7'] > code.code", | |
"code_system": "templateId[root='2.16.840.1.113883.10.20.22.4.7'] > code.codeSystem", | |
"code_system_name": "templateId[root='2.16.840.1.113883.10.20.22.4.7'] > code.codeSystemName", | |
"status": "templateId[root='2.16.840.1.113883.10.20.22.4.28'] > value.displayName", |
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
require 'fileutils' | |
if Dir.exists? "App.app" | |
puts "Nope" | |
exit | |
end | |
FileUtils.mkpath "App.app/Contents/MacOS" | |
FileUtils.mkpath "App.app/Contents/Resources" |
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
{ | |
"organization": "String", | |
"category": "String", | |
"alias": "String", | |
"location": { | |
"address": "String", | |
"city": "String", | |
"state": "String" | |
}, | |
"url": { |
NewerOlder