updated 2024-09-20
Version 2409? (Build 16.0.17928.20148)
| // A Color Slider that is similar to one in | |
| // iOS 18+ when configuring a tinted Home Screen | |
| // Full video-walktrough on building this component: https://youtu.be/VFVyN5hNW24 | |
| import SwiftUI | |
| fileprivate let SLIDER_HEIGHT = 34.0 | |
| fileprivate let KNOB_DIAMETER = SLIDER_HEIGHT + 4.0 | |
| struct ColorSlider: View { |
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <profiles version="13"> | |
| <profile kind="CodeFormatterProfile" name="myProfile" version="13"> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="next_line"/> | |
| <setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="next_line"/> |
| // A Color Slider that is similar to one in | |
| // iOS 18+ when configuring a tinted Home Screen | |
| // Full video-walktrough on building this component: https://youtu.be/VFVyN5hNW24 | |
| import SwiftUI | |
| fileprivate let SLIDER_HEIGHT = 34.0 | |
| fileprivate let KNOB_DIAMETER = SLIDER_HEIGHT + 4.0 | |
| struct ColorSlider: View { |
To help make Mac keyboard shortcuts more like Windows/Linux, and/or just customize them to your liking and boost your productivity.
The instructions here worked for me on macOS Ventura 13.4.1 (22F82) and with Karabiner-Elements (where applicable) version 14.12.0.
This is the standard version of the guide, meant to be easy to use/understand by non-advanced users, and explicit/complete in its instructions. For a more terse guide / reference see the condensed version.
| FROM opensuse/tumbleweed:latest | |
| RUN set -ex && \ | |
| rpm --import https://dl.google.com/linux/linux_signing_key.pub && \ | |
| zypper addrepo http://dl.google.com/linux/chrome/rpm/stable/x86_64 google-chrome && \ | |
| rpm --import https://packages.microsoft.com/keys/microsoft.asc && \ | |
| zypper addrepo https://packages.microsoft.com/yumrepos/vscode vscode && \ | |
| zypper refresh && \ | |
| zypper install --no-confirm \ | |
| binutils \ |
If you want to use Bitwarden CLI for ssh have a look at: How to use use Bitwarden CLI for SSH-Keys in macOS
Wirtten and tested on macOS Ventura
To allow Touch ID on your Mac to authenticate you for sudo access instead of a password you need to do the following.
Current static binaries do not target https://bitbucket.org/multicoreware/x265_git/issues/563/patch-neon-arm64-improvements which can be identified
Before
x265 [info]: using cpu capabilities: none!
[libx264 @ 0xaaab0a5fc000] using cpu capabilities: ARMv8 NEON
| <!-- Wherever your head tag is located, add the new partial --> | |
| <head> | |
| {{ partial "google-fonts" . }} | |
| </head> |