Skip to content

Instantly share code, notes, and snippets.

@fritz-c
fritz-c / README.md
Last active May 17, 2025 19:14
Computer-vision-based Yakuza 0 Karaoke-playing program

Yakuza 0 Karaoke Singer

A computer-vision-based program to automatically play the Yakuza 0 karaoke minigame.

auto_karaoke

(Full video on reddit)

Setup

@evoknow
evoknow / public_dns_servers.csv
Last active May 17, 2025 19:14
Public DNS servers
Provider Type IP Address
Google primary 8.8.8.8
Google secondary 8.8.4.4
Cloudflare primary 1.1.1.1
Cloudflare secondary 1.0.0.1
Quad9 primary 9.9.9.9
Quad9 secondary 149.112.112.112
Verisign primary 64.6.64.6
Verisign secondary 64.6.65.6
Alternate DNS primary 198.101.242.72
@mutin-sa
mutin-sa / Top_Public_Recursive_Name_Servers.md
Last active May 17, 2025 19:12
List of Top Public Recursive Name Servers

DNS:

IPv4 Addr IPv6 Addr ASn Political Region Loc Svc Org
8.8.8.8 2001:4860:4860::8888 AS15169 US Worldwide (Anycast) Google Public DNS Google
8.8.4.4 2001:4860:4860::8844 AS15169 US Worldwide (Anycast) Google Public DNS Google
1.1.1.1 2606:4700:4700::1111 AS13335 US Worldwide (Anycast) Cloudflare-DNS Cloudflare/APNIC
1.0.0.1 2606:4700:4700::1001 AS13335 US Worldwide (Anycast) Cloudflare-DNS Cloudflare/APNIC
95.85.95.85 2a03:90c0:999d::1 AS199524 EU *W
@mutin-sa
mutin-sa / Top_Public_Time_Servers.md
Last active May 17, 2025 19:11
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@rupeshtiwari
rupeshtiwari / AWS Machine Learning Certification Notes.md
Last active May 17, 2025 19:11
AWS Machine Learning Certification Notes

Preparing for the AWS Certified Machine Learning – Specialty Exam: Key Concepts and Tools

Earning the AWS Certified Machine Learning – Specialty certification requires a solid understanding of various machine learning concepts, tools, and AWS services. Here are some of the key topics and resources that helped me prepare for the exam.

What is classifier?

In Amazon SageMaker, a classifier is a type of machine learning model that categorizes or classifies data into distinct classes or categories based on input features. Here are the key concepts related to classifiers and the metrics used to evaluate them:

Key Metrics for Classifiers

  1. Accuracy:
@davidfowl
davidfowl / ResourceModel.md
Last active May 17, 2025 19:08
Aspire Resource Model: Concepts, Design, and Authoring Guidance

Aspire Resource Model: Concepts, Design, and Authoring Guidance

Audience – Aspire integrators, advanced users, and contributors who are defining custom resource types, implementing publishers, or working across both runtime and publish workflows.
Just getting started? Jump straight to Quick Start and come back later for the deep‑dive.


Quick Start

A two‑minute "hello‑world" that shows the happy path.

@douduck08
douduck08 / README.md
Last active May 17, 2025 19:06
The general GetValue extension of SerializedProperty in Unity Editor.

Unity's SerializedProperty not support custom type value setting. This extension use Reflection to get target instance of SerializedProperty in Custom Editor, made value setting of general type is posible.

@IJEMIN
IJEMIN / NavMeshUtil.cs
Created August 20, 2018 14:08
Get Random Position on NavMesh in Unity
using UnityEngine.AI;
using UnityEngine;
public static class NavMeshUtil {
// Get Random Point on a Navmesh surface
public static Vector3 GetRandomPoint(Vector3 center, float maxDistance) {
// Get Random Point inside Sphere which position is center, radius is maxDistance
Vector3 randomPos = Random.insideUnitSphere * maxDistance + center;
@nebriv
nebriv / DDM2.0.md
Last active May 17, 2025 19:05
Dell Display Manager 2.0 command line documentation

Dell Display Manager 2.0 Command Line

Decompiled DLL with ILSpy to identify various commands.

Most commands can be found in DDM2._0_UX.CmdBackground.cmdService_DoWork

Write commands can be prefixed with int:command to specify which monitor to send the command to.

.\DDM.exe /0:writebrightnesslevel 50