(•_•)
<) )╯ All
/ \
( •_•)
\( (> tests
/ \
(•_•)
Recent Homebrew builds of zbar 0.23.93 crash with SIGSEGV inside
zbar_scan_image() on Apple Silicon Macs (observed on macOS 26 "Tahoe",
arm64, with the current Apple clang). This breaks everything that links
libzbar: zbarimg, Python pyzbar, the Ruby qrscan gem, etc.
This guide shows how to install a patched zbar through Homebrew, from scratch, on a clean machine. It is a temporary workaround until the upstream fix is released — see Upstream below.
Taglio chassis MS Flex:
-
Carteggiare l'intero chassis montato
-
Taglio bumper anteriore
-
Taglio bumper posteriore (con bicchierini)
-
Allineamento bumper anteriore con Proxxon (usare supporto lungo MS chassis stampato in 3D)
-
Allineamento bumper posteriore con Proxxon (usare supporto lungo MS chassis stampato in 3D)
| import sublime | |
| import sublime_plugin | |
| import os | |
| import json | |
| class CopyMigrationVersionCommand(sublime_plugin.WindowCommand): | |
| def run(self): | |
| file_name = self.window.active_view().file_name() | |
| if file_name: | |
| version = os.path.basename(file_name).split('_')[0] |
| require 'logger' | |
| require 'net/http' | |
| PUSHOVER_USER_KEY = 'xxx'.freeze | |
| PUSHOVER_API_TOKEN = 'xxx'.freeze | |
| def send_notification(message) | |
| uri = URI.parse('https://api.pushover.net/1/messages.json') | |
| request = Net::HTTP::Post.new(uri) | |
| request.set_form_data( |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'activerecord' | |
| gem 'mysql2' | |
| end | |
| require 'active_record' |
| import rumps | |
| import subprocess | |
| class CaffeinateApp(rumps.App): | |
| def __init__(self): | |
| super(CaffeinateApp, self).__init__("Caffeinate") | |
| self.icon = "inactive_icon.png" | |
| self.caffeinate_process = None | |
| self.menu = ["Run Caffeinate"] |
| require 'date' | |
| months_mapping = { | |
| 'gennaio' => '01', | |
| 'febbraio' => '02', | |
| 'marzo' => '03', | |
| 'aprile' => '04', | |
| 'maggio' => '05', | |
| 'giugno' => '06', | |
| 'luglio' => '07', |