Skip to content

Instantly share code, notes, and snippets.

@tejaskhot
tejaskhot / shapenet_synset_list
Created June 24, 2018 00:44
List of category names and their id in the ShapeNet dataset
04379243 table
03593526 jar
04225987 skateboard
02958343 car
02876657 bottle
04460130 tower
03001627 chair
02871439 bookshelf
02942699 camera
02691156 airplane

Easy Telemetry Disable for 10/11

Prerequisites

  1. Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
    • You can do this through the Change Edition option in the Extras menu in MAS.

Disabling Telemetry via Group Policy

  1. Open the Group Policy Editor. Search for "Edit Group Policy" in search or run gpedit.msc.
@iamjairo
iamjairo / syno-wildcard.sh
Created July 24, 2026 19:30 — forked from gtrabanco/syno-wildcard.sh
Synology acme.sh wildcard cert creation
#!/usr/bin/env bash
# DOMAINS
DOMAINS="example.com,*.example.com"
# DNS Provider
CERT_DNS="dns_namecheap" # For more: https://github.com/acmesh-official/acme.sh/wiki/dnsapi
NAMECHEAP_API_KEY=''
NAMECHEAP_USERNAME=''
NAMECHEAP_SOURCEIP=''
@iamjairo
iamjairo / renew_ssl_synology.md
Created July 24, 2026 19:28 — forked from huettern/renew_ssl_synology.md
Wildcard certificate on Synology NAS

Use certbot to create a wildcard certificat with DNS challenge

DOMAIN="example.com"
sudo certbot certonly  --manual --manual-public-ip-logging-ok --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory -d "*.$DOMAIN"

Follow the instructions on the console and create the DNS TXT record.

Copy the generated files to a working directory

@huettern
huettern / renew_ssl_synology.md
Last active July 24, 2026 19:28
Wildcard certificate on Synology NAS

Use certbot to create a wildcard certificat with DNS challenge

DOMAIN="example.com"
sudo certbot certonly  --manual --manual-public-ip-logging-ok --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory -d "*.$DOMAIN"

Follow the instructions on the console and create the DNS TXT record.

Copy the generated files to a working directory

We are going to use the acme.sh script to accomplish this. For authentication of the domain name, we will use the DNS option. First login to your Synology with ssh as the admin user and then sudo -i to get root access. When you login into the Synology with ssh you will end up in the /root path. I assume for the rest of the guide we run everything from that path. Now we need to get the script and change the permissions so it is executable.

wget https://raw.githubusercontent.com/Neilpang/acme.sh/master/acme.sh
chmod a+x acme.sh

Next we issue the certificate:

./acme.sh --issue -d *.website.come --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please

We are going to use the acme.sh script to accomplish this. For authentication of the domain name, we will use the DNS option. First login to your Synology with ssh as the admin user and then sudo -i to get root access. When you login into the Synology with ssh you will end up in the /root path. I assume for the rest of the guide we run everything from that path. Now we need to get the script and change the permissions so it is executable.

wget https://raw.githubusercontent.com/Neilpang/acme.sh/master/acme.sh
chmod a+x acme.sh

Next we issue the certificate:

./acme.sh --issue -d *.website.come --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
@SvenGDK
SvenGDK / unpkg.md
Created July 23, 2026 12:34
The execution of a (f/d) package on PS5
@cptpiepmatz
cptpiepmatz / nushell-testing.skill.md
Last active July 24, 2026 19:25
An AI agent skill for writing tests in the `nushell` repo.
name nushell-testing
description Use when writing or refactoring Nushell Rust tests that use nu_test_support, NuTester, Playground, rstest, deps, plugins, CompleteResult, or when replacing old nu!/nu_with_plugins! tests.
license MIT
compatibility opencode
metadata
audience workflow language
nushell-contributors
testing
rust
@Doulgs
Doulgs / readme.md
Last active July 24, 2026 19:25
Automação Google Calendar, n8n, Telegram e ClickUp

Google Calendar + n8n + Telegram + ClickUp

Automação para receber convites do Google Calendar no Telegram, confirmar ou recusar por meio de botões e, após a confirmação, criar automaticamente uma tarefa no ClickUp com os dados e a duração do evento.

Objetivo do fluxo

Quando um novo convite for adicionado ao Google Calendar:

  1. O n8n identifica o evento pendente de resposta.
  2. O Telegram envia uma mensagem com os dados do evento.