This is a semi automatically generated summary, made by CyberGwen with assistance of Python, BeautifulSoup, ChatGPT o1 and Claude Sonnet 3.5. The summary does not try to be complete, and leaves out many of the points in the original (like a detour about the good and bad aspects of true peak limiting, or the places CTZ has been implemented successfully) that might or might not be essential. If you want the full experience, go to the source by Baphometrix:
This file contains hidden or 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 | |
require 'json' | |
require 'spreadsheet' | |
def process_hash(translations, current_key, hash) | |
hash.each do |new_key, value| | |
combined_key = [current_key, new_key].delete_if { |k| k == '' }.join(".") | |
if value.is_a?(Hash) | |
process_hash(translations, combined_key, value) |
The Tabletop Simulator uses Unity, which doesn't quite work on Mac OS when it comes to TLS connections - due to using SSLv2, which is insecure and blocked everywhere.
There's this solution, but it didn't work for me because I didn't find the modules in question.
This file contains hidden or 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
[alias] | |
cheat = !git add -A && git commit --amend -C HEAD && git push -f | |
branchdates = !git for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate) %(authorname) %(refname:short)' | |
deletemerged = !git branch --merged | grep -v '^* master$' | grep -v '^ master$' | xargs git branch -d | |
cleanup = !git checkout master && git pull && git deletemerged && git branch | |
[log] | |
decorate = full | |
[color] | |
ui = true |
This file contains hidden or 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
# inspired by: https://github.com/oxon/logistaegvm/blob/master/lib/tasks/export.rake | |
# required gems: | |
# * pg | |
# * rubyzip | |
unless ARGV.count == 1 | |
puts 'Required argument: Output directory' | |
exit 1 | |
end |
This file contains hidden or 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 | |
require 'yaml' | |
require 'deep_merge' | |
require 'find' | |
require 'spreadsheet' | |
def process_hash(translations, current_key, hash) | |
hash.each do |new_key, value| | |
combined_key = [current_key, new_key].delete_if { |k| k == '' }.join(".") |
This file contains hidden or 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 Concerns | |
module ModelWithJSONData | |
extend ActiveSupport::Concern | |
module ClassMethods | |
def json_data_field_descriptions | |
[] | |
end | |
end |
Dinge, die fürs Yosemite-Update mit Homebrew helfen können:
XCode 6.1, Command Line Tools 10.10: https://developer.apple.com/downloads/index.action
brew doctor
brew update