sudo apt install xrdp
sudo adduser xrdp ssl-cert
sudo systemctl restart xrdp
This file contains 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
# Waydroid | |
# WSl custom kernel | |
# https://gist.github.com/oleksis/eb6d2f1cd2a6946faefb139aa0e38c35 | |
# https://github.com/waydroid/waydroid/issues/217 | |
# https://www.youtube.com/watch?v=SfK4PBcFq0w | |
# Powershell shutdown & remove config | |
wsl --shutdown | |
rm /mnt/c/Users/user/.wslconfig | |
# install dependencies |
This file contains 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
{-# LANGUAGE OverloadedStrings #-} | |
-- build-depends: tar, bytestring, zlib | |
-- Example of how to iterate through a .tar.gz file | |
module Lib | |
where | |
import qualified Codec.Archive.Tar as Tar |
This file contains 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
[Unit] | |
Description=ZFS Event Daemon (zed) | |
Documentation=man:zed(8) | |
After=zfs-import-cache.service | |
After=zfs-import-scan.service | |
[Service] | |
Type=forking | |
ExecStart=/sbin/zed | |
PIDFile=/run/zed.pid |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>WinImage 9.0 KeyGen</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body style="text-align: center;"> | |
<h1>WinImage 9.0 KeyGen</h1> |
This file contains 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
FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 | |
Windows XP PRO Corporate serial number S/N: Key: MQPWW-PGVKX-YPMKG-8DH3G-KC8PW | |
windows xp home edition serial number S/N: 034634-262024-171505-828316-729010-413531-800424-400442 | |
Windows XP 64 serial number S/N: B2RBK-7KPT9-4JP6X-QQFWM-PJD6G | |
Windows XP serial number S/N: K6C2K-KY62K-DQR84-RD4QV-QB74Q | |
Windows XP Professional 64-bit Corporate Edition 5.2.3790.1830 serial number S/N: VCFQD-V9FX9-46WVH-K3CD4-4J3JM | |
Microsoft Windows XP Professional SP2 serial number S/N: YY8F2-3CKVQ-RKTRG-6JMDR-9DTG6 | |
Windows XP Professional Service Pack 1 sp1 serial number S/N: F46YY - 2R8VQ - R8GMY - 926VK - 6BQ73 | |
Windows XP Pro serial number S/N: KBWR7-76BD8-J7MDQ-KKG&C-V9Q2J |
This file has been truncated, but you can view the full file.
This file contains 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
#EXTM3U | |
#EXTINF:-1 ,Channel T1 | |
http://128.199.212.160/channelt1/1080/index.m3u8 | |
#EXTINF:-1 ,Channel-S | |
https://a.jsrdn.com/r-373576a3/publish/22679_24MrQma9TX/index.m3u8 | |
#EXTINF:-1 ,NTV (UK Time) | |
https://a.jsrdn.com/r-373576a1/publish/22680_3BR3zocwi9/index.m3u8 | |
#EXTINF:-1 ,NTV (US Pacific Time) | |
https://a.jsrdn.com/broadcast/22680_3BR3zocwi9/-0800/c.m3u8 | |
#EXTINF:-1 ,CGTN Documentary (Backup) |
This file contains 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
#!/bin/sh | |
# Execute Windows programs with Proton from Steams installation folder, without | |
# starting Steam client. | |
# | |
# 1. Create a directory for Proton environment to run in. As an example make a | |
# folder "proton" in your home directory. This folder must exist in order | |
# to make Proton work. | |
# | |
# 2. Point the variable "env_dir" in this script to that folder or... |