A Python script that automatically creates macOS application launchers for your Firefox profiles, allowing you to launch specific Firefox profiles directly from your Applications folder or Dock as independent running applications.
Inspired by:
A Python script that automatically creates macOS application launchers for your Firefox profiles, allowing you to launch specific Firefox profiles directly from your Applications folder or Dock as independent running applications.
Inspired by:
#!/usr/bin/env bash | |
# | |
# NixOS install script synthesized from: | |
# | |
# - Erase Your Darlings (https://grahamc.com/blog/erase-your-darlings) | |
# - ZFS Datasets for NixOS (https://grahamc.com/blog/nixos-on-zfs) | |
# - NixOS Manual (https://nixos.org/nixos/manual/) | |
# - Original gist by @nuxeh (https://gist.github.com/nuxeh/35fb0eca2af4b305052ca11fe2521159) | |
# |
This confused me, so I'm documenting my workaround, which is probably not the correct workaround, but it seemed to work (leaving non-persistent state, lol).
When in a shell with mix and clang provided via nix, the file_system package fails to build the mac_listener binary via clang, with the error (reproduced in a shell):
$ clang -framework CoreFoundation -framework CoreServices -Wno-deprecated-declarations c_src/mac/*.c -o priv/mac_listener
In file included from c_src/mac/cli.c:2:
In file included from c_src/mac/cli.h:4:
# Configure vim keybindings for switching panes | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# Configure ctrl-vim keybindings for switching windows | |
bind C-h previous-window | |
bind C-l next-window |
" Get the defaults that most users want. | |
source $VIMRUNTIME/defaults.vim | |
if &t_Co > 2 || has("gui_running") | |
" Switch on highlighting the last used search pattern. | |
set hlsearch | |
endif | |
" Add optional packages. | |
" |
I hereby claim:
To claim this, I am signing this object:
""" | |
De/construct ubnt discovery packets | |
references: | |
- https://github.com/nitefood/python-ubnt-discovery | |
- https://gist.github.com/trhura/5998584 | |
""" | |
from base64 import b64decode, b64encode | |
from enum import IntEnum |
" When started as "evim", evim.vim will already have done these settings. | |
if v:progname =~? "evim" | |
finish | |
endif | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim |
user nginx; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
group: H01 | |
emp = { | |
id:number, salary:number | |
12345, 100 | |
99999, 200 | |
} |