[BRIEF DESCRIPTION OF THE SLACK AND ITS PURPOSE]
The current admins are:
- [NAMES]
 
| #!/bin/bash | |
| # Based on the Windows version by mrsilver76 | |
| # https://github.com/mrsilver76/itunes_playlist_exporter | |
| # ASSUMPTIONS | |
| # 1. You have a Plex server. | |
| # 2. You have exported your playlists to a folder of .m3u files. | |
| # 3. You can update configuration values below. | 
| Log uploaded on Sunday, April 21, 2024, 9:35:33 PM | |
| Loaded mods: | |
| Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
| Core(Ludeon.RimWorld): (no assemblies) | |
| Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
| Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
| Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
| HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.3]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.3) | |
| XML Extensions(imranfish.xmlextensions): XmlExtensions(av:1.3.0,fv:1.7.1) | |
| P-Music(Peppsen.PMusic): (no assemblies) | 
| /* | |
| This file is now hosted here: | |
| https://github.com/victornpb/undiscord | |
| */ | 
| { | |
| "shell_cmd": "pandoc -f markdown-raw_tex --pdf-engine=xelatex -N --highlight-style=espresso -H \"${packages}\"/User/head.tex -V CJKmainfont=\"Noto Sans CJK SC\" -V colorlinks \"${file}\" -o \"${file_path}/${file_base_name}.pdf\" ", | |
| "path": "C:/Users/east/AppData/Local/Pandoc/;%PATH%", | |
| "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
| "working_dir": "${file_path}", | |
| "selector": "text.html.markdown", | |
| "variants": | |
| [ | |
| { | 
| %YAML 1.2 | |
| --- | |
| name: 'GoHTML' | |
| file_extensions: | |
| - gohtml | |
| - html.go | |
| scope: text.html.gohtml | |
| contexts: | |
| main: | |
| - match: '' | 
| {{ range first 3 (where (where .Site.Pages.ByDate.Reverse "Section" "posts") ".Title" "!=" .Title) }} | |
| <!-- latest posts --> | |
| {{ end }} | 
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management | 
| Method 1 | |
| git config --global core.editor "'c:/program files/sublime text 3/sublime_text.exe' -w" | |
| Method 2 | |
| git config --global core.editor "subl -n -w" | |
| Method 3 | |
| $ echo 'alias subl="/cygdrive/c/Program\ Files/Sublime\ Text\ 3/sublime_text.exe"' >> ~/.bashrc | 
| #!/usr/bin/env python | |
| # | |
| # Very simple Python script to dump all emails in an IMAP folder to files. | |
| # This code is released into the public domain. | |
| # | |
| # RKI Nov 2013 | |
| # | |
| import sys | |
| import imaplib | |
| import getpass |