This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" #### Startify | |
augroup update-startify | augroup | |
function! s:restartify() abort | |
echom 'restartify' | |
call s:startify_dirmode() | |
Startify | |
endfunction | |
function! s:startify_dirmode() abort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ msbuild FSharpMod.sln -restore -p:Configuration=Release | |
Microsoft (R) Build Engine version 16.6.0 for Mono | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch. | |
Build started 8/14/2021 1:59:20 PM. | |
Project "/Users/ec/Sync/Code/FSharpMod/FSharpMod.sln" on node 1 (Restore target(s)). | |
ValidateSolutionConfiguration: | |
Building solution configuration "Release|Any CPU". | |
_GetAllRestoreProjectPathItems: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version: 1 | |
Name: pre-v1.3 | |
Mods: | |
- Id: brrainz.harmony | |
Name: Harmony | |
- Id: ludeon.rimworld | |
Name: Core | |
- Id: ludeon.rimworld.royalty | |
Name: Royalty | |
- Id: unlimitedhugs.hugslib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version: 1 | |
Name: TEMP | |
Mods: | |
- Id: brrainz.harmony | |
Name: Harmony | |
- Id: ludeon.rimworld | |
Name: Core | |
- Id: ludeon.rimworld.royalty | |
Name: Royalty | |
- Id: fluffy.modmanager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: Pretzel [18290] | |
Path: /Applications/Pretzel.app/Contents/MacOS/Pretzel | |
Identifier: rocks.pretzel | |
Version: 0.0.19 (0.0.19.46) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Pretzel [18290] | |
User ID: 501 | |
Date/Time: 2020-04-01 16:01:30.767 -0500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AGDCDiagnose Version: 4.7.2.2 | |
### Start: GPUWrangler ####################################################### | |
Stats: GPUCAdded:3 GpuAdded:3 Eject:0/f0/fd0/c0 Remove:0/t0 Un:0 | |
gpu 0x9d07 flags 0xbe000020 (DG,published,driversStarted,hasGPUC,quiet,pubSched,pubArmed) vid.did=1002.66a3 b:d:f=14:0:0 | |
gpu 0x9d07 pci 0x100000370 IOService:/AppleACPIPlatformExpert/PC01@0/AppleACPIPCI/BR1A@0/IOPP/GU00@0/IOPP/GD10@10/IOPP/EGP0@0/IOPP/EGP1@0/IOPP/GFX0@0 | |
gpu 0x9d07 agdc 0x100000de5 /AtiDeviceControl | |
gpu 0x9d07 gpuc 0x100000c94 /AMD10000ControllerWrangler | |
gpu 0x9d07 agdpclient 0x100000de9 /AtiDeviceControl/AppleGraphicsDevicePolicy/AGDPClientControl | |
gpu 0x9d07 accel 0x100000d58 /AMDRadeonX5000_AMDVega20GraphicsAccelerator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EDID report generated by SwitchResX Version 4.9.1 for display Pro Display XDR | |
----------------------------------------------------- | |
------------------- RAW DATA ------------------------ | |
----------------------------------------------------- | |
00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | |
----------------------------------------------------- | |
0 | 00 FF FF FF FF FF FF 00 06 10 23 AE 02 0E 00 18 | |
1 | 01 1D 01 04 C5 46 27 78 80 0F 91 AE 52 43 B0 26 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: UA Mixer Engine [3354] | |
Path: /Library/Application Support/Universal Audio/*/UA Mixer Engine.app/Contents/MacOS/UA Mixer Engine | |
Identifier: com.uaudio.ua_mixer_engine | |
Version: 9.11.0 (9.11.0) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: UA Mixer Engine [3354] | |
User ID: 501 | |
Date/Time: 2020-02-12 22:04:14.662 -0600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Unshift numrow on Ergodox(en) | |
#UseHook | |
*1::+1 | |
*2::+2 | |
*3::+3 | |
*4::+4 | |
*5::+5 | |
*6::+6 | |
*7::+7 | |
*8::+8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type 'a unresolved = Unresolved | Resolved of 'a | Absent | |
type 'a or_subexpr = Sub of expression | Literal of 'a | Absent | |
and flag = { name : string; mutable payload : string or_subexpr unresolved } | |
and arg = Positional of string or_subexpr | Flag of flag | |
and expression = { count : int; cmd : string or_subexpr; mutable args : arg array } |