> [!NOTE]
> Highlights information that users should take into account, even when skimming.
Note
Highlights information that users should take into account, even when skimming.
#! /usr/bin/env ys-0 | |
!yamlscript/v0/data | |
# https://eemeli.org/yaml#yaml | |
# https://npm.im/@yaml/yamlscript | |
# https://yamlscript.org/doc/cheat | |
# https://yamlscript.org/doc/core | |
# https://yamlscript.org/doc/ys-std | |
# ys --yaml */load.ys #--json |
/* @import url("reset.css"); */ | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
html { height: -webkit-fill-available } | |
body { | |
display: flex; |
#! /usr/bin/xcrun swift | |
import Cocoa | |
let args = CommandLine.arguments[1...] | |
let (target, icon) = (URL(fileURLWithPath: args.first!).path, args[2]) | |
var folder: ObjCBool = false | |
FileManager.default.fileExists(atPath: icon, isDirectory: &folder) | |
let image: NSImage = folder.boolValue |
// Crypto Expansion Pack - Numi.io | |
numi.addUnit({ | |
"id": "wei", | |
"phrases": "wei, Wei", | |
"baseUnitId": "ETH", | |
"format": "Wei", | |
"ratio": 1e-18, | |
}); |
cask "starcraft-mass-recall" do | |
version "8.0.1" | |
sha256 "76750def5b63cf58afeb63e9948b5efec23adb436964eb730fe5d800d5a89e3b" | |
resources = { | |
mod: ["3246208", "SCMR_v#{version}.zip"], | |
assets: ["3239552", "SCMRassets_v#{version}.zip", "9277d51c89e3cc473a3b5d588c2f3cdb"], | |
cinematics: ["2819339", "SCMRcinematics_v7.2.zip", "f19ea12979eb8eaf703ed00ef33b7912"], | |
redux: ["3246278", "Enslavers_Redux_v#{version}.zip", "b61129ef7df2004faa4c08480e447f31"], | |
} |
format_version: 4 | |
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | |
#project_type: macos | |
trigger_map: | |
- push_branch: '*' | |
workflow: test | |
- pull_request_target_branch: '*' | |
workflow: test |
html:focus-within { scroll-behavior: smooth } | |
footer { | |
position: sticky; | |
top: 100vh | |
} |
#! /bin/zsh -f | |
#alias -g i=install | |
#RUBY_VERSION=`ruby -e 'print RUBY_VERSION'` | |
#export PATH=$PATH:ruby/$RUBY_VERSION/bin:$GEM_HOME/bin | |
gem () { | |
case $@ in | |
install*-g*) command gem install ${@:3};; | |
install*) command gem install ${@:2} --install-dir=ruby/$RUBY_VERSION;; | |
rm*) command gem uninstall $@;; |