Skip to content

Instantly share code, notes, and snippets.

@notv1x
notv1x / kms.md
Last active January 9, 2025 02:56
KMS Keys/Product Keys for Windows/Windows Server

Here, you can find the Product Keys for activating Windows.

Warming: This won't work with Home editions. Please first update to Professional edition if you want to activate Windows.

How do I activate Windows?

  1. Search for "Command Prompt" in the search box
  2. Right Click on the Command Prompt entry
  3. Press "Run as Administrator", then press yes.
  4. Type these commands one by one:
Windows 11 Home Product Key
4BKNH-D2VBJ-HQCHQ-47RR2-4RG3V
B4J96-7NXHJ-DG92W-WX887-JQKQV
3HP6K-9N8Q6-BY7VG-P8KCW-WB47H
9NW26-K7PD9-WJBTX-9XTCW-9TPHH
9QJFK-MNQ2Y-KJG2J-P7GPD-G83DV
Windows 11 Pro Product key
XGWR7-NX2JM-CKF9Q-BYGVP-6JF9M
69HCR-4NTVC-K94M3-GRBWP-YKMQB
@Axel-Erfurt
Axel-Erfurt / PlutoTV_aktuell.m3u
Last active January 9, 2025 02:55
Pluto TV german Channels
#EXTM3U
#EXTINF:-1 tvg-name="World Poker Tour" group-title="Sport" tvg-logo="http://images.pluto.tv/channels/5ad9b7aae738977e2c312132/solidLogoPNG.png" tvg-id="",World Poker Tour
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b7aae738977e2c312132/master.m3u8?deviceType=unknown&deviceMake=unknown&deviceModel=unknown&deviceVersion=unknown&appVersion=unknown&deviceLat=90&deviceLon=0&deviceDNT=TARGETOPT&deviceId=PSID&advertisingId=PSID&us_privacy=1YNY&profileLimit=&profileFloor=&embedPartner=
#EXTINF:-1 tvg-name="Explore" group-title="Dokus + Wissen" tvg-logo="http://images.pluto.tv/channels/5ad9b8551b95267e225e59c1/solidLogoPNG.png" tvg-id="",Explore
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ad9b8551b95267e225e59c1/master.m3u8?deviceType=unknown&deviceMake=unknown&deviceModel=unknown&deviceVersion=unknown&appVersion=unknown&deviceLat=90&deviceLon=0&deviceDNT=TARGETOPT&deviceId=PSID&advertisingId=PSID&us_privacy=1YNY&profileLimit=&profileFloor=&embedPartne
@robin-collins
robin-collins / userscript.js
Last active January 9, 2025 02:54
Claude.ai-ChatDownloader - userscript to download claude.ai chats to a text file.
// ==UserScript==
// @name Claude.ai-ChatDownloader
// @namespace http://tampermonkey.net/
// @version 1.9
// @description Download all chats from Claude.ai as a single file
// @match https://claude.ai/*
// @match https://claude.ai/chats
// @match https://claude.ai/chat/*
// @grant GM_setValue
// @grant GM_getValue
@robin-collins
robin-collins / windows-11-activation.txt
Created October 7, 2023 11:05
Windows 11 Activation
# How to Activate Windows 11 for FREE
## Step 1: Click on the Start button, search for “cmd“, and click on “Run as Administrator“.
## Step 2: Type: slmgr /ipk [KEY]
Replace the [KEY] with your key as per your windows version as mentioned below.
The following is the list of Windows 11 Volume license keys.
* Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active January 9, 2025 02:50
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@kgni
kgni / context.ts
Created May 6, 2024 21:54
tRPC server (running on hono with adapter) - running on Cloudflare Workers - websocket connection in trpc context
import { type inferAsyncReturnType } from '@trpc/server';
import { Context as HonoContext } from 'hono';
import { getCookie } from 'hono/cookie';
import { Lucia, Session, User, verifyRequestOrigin } from 'lucia';
import { createAuth, getAllowedOriginHost } from '../auth';
import {
NeonDBWebSocketWithSchemas,
NeonDBWithSchemas,
createDBWebSocket,

1. 常用药物

感冒/发烧类

  • 布洛芬(退烧、止痛)
  • 对乙酰氨基酚(泰诺)

抗病毒/流感类

  • 奥司他韦(达菲,需处方)

消炎类

  • 阿莫西林(需处方)
  • 红霉素软膏(外用)
@faishal
faishal / upgrade-openssh-7.3p1-centos-6.7.sh
Created October 6, 2016 14:02
Upgrade OpenSSH to 7.3p1 in Cent OS 6
#!/bin/bash
# Copyright © 2016 Faishal Saiyed
cd
timestamp=$(date +%s)
if [ ! -f openssh-7.3.zip ]; then wget https://github.com/faishal/openssh-portable/releases/download/cent.os.6.7.openssh.7.3p1/openssh-7.3.zip; fi;
unzip -o openssh-7.3.zip -d openssh-7.3p1
cd openssh-7.3p1/
cp /etc/pam.d/sshd pam-ssh-conf-$timestamp
rpm -U *.rpm
yes | cp pam-ssh-conf-$timestamp /etc/pam.d/sshd
@dmancloud
dmancloud / How to Install SonarQube in Ubuntu Linux.md
Last active January 9, 2025 02:44
How to Install SonarQube in Linux

How to Install Sonarqube in Ubuntu Linux

Prerequsites

Virtual Machine running Ubuntu 22.04 or newer

Install Postgresql 15

sudo apt update
sudo apt upgrade

sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'