精简了上游直播源内容,仅保留个人所需的。
https://gist.githubusercontent.com/inkss/0cf33e9f52fbb1f91bc5eb0144e504cf/raw/ipv6.m3u
| ## Download Go | |
| sudo wget --output-document /opt/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | |
| ## Remove Existing Go and Extract Downloaded Go | |
| sudo rm -rf /usr/local/go && sudo tar --directory /usr/local --extract --gzip --file /opt/go.tar.gz && sudo rm /opt/go.tar.gz | |
| ## Delete & Recreate user for Derper | |
| id -u derp &>/dev/null || sudo useradd --system --create-home --home-dir /opt/derp --shell /bin/bash derp | |
| ## Export Profile path |
%appdata%\..\Local\Microsoft\PowerToys\PowerToys Run\Logs\0.57.2.0\.
Open PowerToys Run will active these broken plugins, log system will print detail in these file.
[2022-04-21 19:49:00.7245] [ERROR] [C:\a\_work\1\s\src\modules\launcher\Wox.Plugin\PluginPair.cs::154]
-------------------------- Begin exception --------------------------
Message: Couldn't get assembly types for Everything in C:\Program Files\PowerToys\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.Everything\Community.PowerToys.Run.Plugin.Everything.dll. The plugin might be corrupted. Uninstall PowerToys, manually delete the install folder and reinstall.
Exception full name : System.Reflection.ReflectionTypeLoadException
Exception message : Unable to load one or more of the requested types.
| <!-- | |
| /* | |
| * Serverless contact form handler for Cloudflare Workers. | |
| * Emails are sent via Mailgun. | |
| * | |
| * Learn more at https://maxkostinevich.com/blog/serverless-contact-form | |
| * Live demo: https://codesandbox.io/s/serverless-contact-form-example-x0neb | |
| * | |
| * (c) Max Kostinevich / https://maxkostinevich.com | |
| */ |
| #!/usr/bin/env python3 | |
| """ | |
| Author: Ming Wen (bitmingw@gmail.com) | |
| When resolving conflicts on a merge or rebase, this script | |
| automates `git add/rm` and `git checkout` with --ours or --theirs | |
| for a large batch of changes. | |
| Usage: `python3 git_batch_resolver.py` in your git repository. |
| using System; | |
| using System.Diagnostics; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| public static class ProcessAsyncHelper | |
| { | |
| public static async Task<ProcessResult> ExecuteShellCommand(string command, string arguments, int timeout) | |
| { | |
| var result = new ProcessResult(); |