# cat /proc/acpi/wakeup
Examples:
; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32 | |
global start | |
section .text | |
start: | |
push dword msg.len | |
push dword msg | |
push dword 1 | |
mov eax, 4 |
firstSlice := []string{"a", "b", "c", "d", "e", "f"} | |
firstSlice = firstSlice[:5] | |
secondSlice := firstSlice | |
firstSlice = append(firstSlice, "g") | |
// This will print: [a b c d e g] | |
fmt.Println(firstSlice) | |
secondSlice = append(secondSlice, "h") |
lily: main amd64 workstation used primarily for gaming, secondarily for work | |
daisy: main arm64 workstation used primarily for work | |
foxglove: secondary amd64 workstation used for recording videos, streams, podcasts, etc. in a soundproof booth -- or for quiet focus time |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit | |
colors="false" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
stopOnFailure="true"> | |
<filter> | |
<blacklist> |
set -g default-terminal "screen-256color" | |
# change prefix command to C-z | |
set -g prefix C-z | |
unbind C-b | |
bind C-z last-window | |
bind z send-prefix | |
# setup | and - for window splitting | |
unbind % | |
bind | split-window -h |