Skip to content

Instantly share code, notes, and snippets.

View montchr's full-sized avatar
I may be slow to respond.

chris montgomery montchr

I may be slow to respond.
View GitHub Profile
building the system configuration...
Building in flake mode.
$ nix --extra-experimental-features nix-command flakes build /etc/dotfield#nixosConfigurations."tuvok".config.system.build.toplevel --verbose
evaluating derivation 'git+file:///etc/dotfield#nixosConfigurations."tuvok".config.system.build.toplevel'...
evaluating file '/nix/store/ggbkmkrg5z5pddzjixkmjpa3h9g9p4kn-source/flake.nix'
evaluating file '/nix/store/26y910qypf3wqrsmrxakbh1zg2c945w5-source/flake.nix'
evaluating file '/nix/store/83hm0lifwjwhsgwayn4517r23wnklqsj-source/flake.nix'
evaluating file '/nix/store/dwkh0r9jmkmz4xjgg04vdh9ykafl21iq-source/flake.nix'
evaluating file '/nix/store/cys15p6lyyhj85bk4bckn82waih2l945-source/flake.nix'
these 121 derivations will be built:
Index Name Author FileName Tags Dependencies URL
0 Party Limit Begone Sildur PartyLimitBegone_1d6c4030-67b9-4b0a-b3ab-caf6dd73d1af.pak
1 TutorialChestSummoning wesslen TutorialChestSummoning_505c630c-79fa-49b6-9f21-29a5f2322c2d.pak
2 BagsBagsBags Liareth BagsBagsBags_3e158fb8-686e-4153-9430-e27f4b9fb7f8.pak
3 NoIntroPak Caites NoIntroPak_12a1fc9f-e39d-43f2-ab49-25026f073e46.pak
4 Mark Book As Read FallenStar Fallen_Mark_As_Read_c72d9f6a-a6e4-48b1-98c0-0ecdc7c31cf7.pak
5 LOR_allhotbar LORELEILIES LOR_allhotbar_985a1b05-6f7d-4c57-89ca-e24003435ea7.pak
6 VladsGrimoire VladmirFFXI VladsGrimoire_66666666-4444-4444-4444-666666668000.pak
7 5eSpells DiZ 5eSpells_fb5f528d-4d48-4bf2-a668-2274d3cfba96.pak
8 SecretScrolls5eSpells darkcharl SecretScrolls5eSpells_b093bc44-ccf9-4eec-b5ec-e96a6f2940f9.pak
@montchr
montchr / 1-first-run.log
Last active July 28, 2023 14:10
bud non-deterministic build
╭ logan-center [d3f153f7ee89d8e5] ./public
│ │ [stylelint]
│ │ resources/styles/app.css
│ │ 1:1 ✖ Unknown rule media-query-no-invalid media-query-no-invalid
│ │
│ │ 1 problem (1 error, 0 warnings)
│ app
@montchr
montchr / BedrockTinkerwellDriver.php
Created April 12, 2023 19:11
Bedrock/Acorn Tinkerwell Driver
<?php
// @phpstan-ignore-file
use Illuminate\Support\Collection;
class BedrockTinkerwellDriver extends TinkerwellDriver
{
public function canBootstrap($projectPath)
{
@montchr
montchr / surfingkeys.config.js
Created February 18, 2023 03:21
surfingkeys configuration
// Compatibility Prefix
const {
Clipboard,
Front,
Hints,
Normal,
RUNTIME,
Visual,
aceVimMap,
addSearchAlias,
# SPDX-FileCopyrightText: 2022-2023 Temple University
# SPDX-License-Identifier: GPL-3.0-or-later
{
inputs,
cell,
}: let
inherit (inputs) devenv nixpkgs std;
inherit (inputs.cells) logan-center media wordpress;
l = inputs.nixpkgs.lib // builtins;
prj = logan-center.meta.project;
{
"nodes": {
"agenix": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1652747504,
"narHash": "sha256-0FnoUBia9EYeDlg/XcPf043Tl/5RneSUaZ6IMsBYreY=",
"owner": "montchr",
#!/usr/bin/php -d open_basedir=/usr/syno/bin/ddns
<?php
if ($argc !== 5) {
echo 'badparam';
exit();
}
// Entered into DSM (Control Panel > External Access > DDNS)
$username = (string) $argv[1]; // Resource ID
@montchr
montchr / ANSI.md
Created April 28, 2022 15:23 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27