Skip to content

Instantly share code, notes, and snippets.

View Nixieboluo's full-sized avatar
❄️
My Angel @ExMikuPro

Nixieboluo

❄️
My Angel @ExMikuPro
View GitHub Profile
@dogtopus
dogtopus / sega-slider-impl.md
Last active November 26, 2024 14:21
SEGA Slider (-like) Implementation Mega List - Heavily WIP

SEGA Slider (-like) Implementation Mega List

Diva

Name Author Sensor Type Construction Controller Type # of Controllers # of Segments LED Controller Type # of LEDs/Pixels Protocol Open-source?
837-15275 SEGA Capacitive FR4 PCB CY8C22345-24SXI 2 32 THL3504 64/32 sega-slider/UART/RS232 No
(No name) benjilei Capacitive Pad hack (aggregated DS4 touchpad) MXT series or TrueTouch series (DS4 Touchpad)+? 4? 80? (virtual) None 0 maxTouch (or TrueTouch)/I2C No (aggregation method unknown)
[(No name)][fa40] fa40 Capacitive Pad hack (copper foil on wood substrate) ZET6223 (Brook Touchpad) 1 17 None 0 ZET6223/I2C N/A
(No name) Mo10 Capacitive FR4 PCB CY8C4104LQI-422 4 32 WS2812 32 Proprietary/I2C No
@dogtopus
dogtopus / sega-slider.md
Last active September 26, 2024 16:17
SEGA rhythm game slider protocol

SEGA touch slider (837-15275 and 837-15330) protocol

Some of the information are from [this writeup][ja] and some come from original researches.

Logic analyzer captures

[slider_cap.zip (sigrok format)][slider-cap-sigrok]

[slider_cap.zip (original ZeroPlus ALC format)][slider-cap-alc]

@y0ngb1n
y0ngb1n / docker-registry-mirrors.md
Last active April 24, 2025 13:38
国内的 Docker Hub 镜像加速器,由国内教育机构与各大云服务商提供的镜像加速服务 | Dockerized 实践 https://github.com/y0ngb1n/dockerized
@gaplo917
gaplo917 / IntelliJ IDEA.app.vmoptions
Last active November 3, 2024 16:24
IntelliJ IDEA Java 17 ZGC VM Options
# Personal Feeling: using the following jvm config is smoother than default
# My Machine: Macbook pro M1max 64GB
# More Info: https://github.com/FoxxMD/intellij-jvm-options-explained
# Prerequisite (Intellij < 2022.2)
# 1. Install JetBrain Runtime 17 osx-aarch64 for Apple Silicon, https://github.com/JetBrains/JetBrainsRuntime/releases
# 2. Switch the runtime from JetBrain Runtime 11 to 17, https://www.jetbrains.com/help/idea/switching-boot-jdk.html
# JetBrain Toolbox
@Fobxx
Fobxx / shige-skins.md
Last active April 24, 2025 13:43
Shigetora skins
@leanderjanssen
leanderjanssen / registry-minio.md
Last active February 11, 2025 14:12
Docker Registry with Minio storage example

Running a docker registry with Minio S3 backend

Run minio in a container

docker run -d -p 9000:9000 --name minio minio/minio server /export

Use docker logs to retrieve access key and secret key from minio container

docker logs minio

Create config.yml for Docker Registry

This file will have to be mounted to /etc/docker/registry/config.yml

input {
file {
path => [ "/data/minecraft/*/logs/latest.log" ]
tags => ["minecraft"]
}
}
filter {
if "minecraft" in [tags] {
grok {
@muink
muink / uninstall-hidden-offline-devices-in-windows.md
Last active April 15, 2025 14:31
windows删除/修改隐藏离线网卡设备方法

windows删除除/修改隐藏离线网卡设备方法

一.删除隐藏设备

  1. 打开命令提示符(cmd)
  2. 输入set devmgr_show_nonpresent_devices=1并回车
  3. 或添加环境变量 devmgr_show_nonpresent_devices 并将其值设为 1, 一次设置永久有效
  4. 输入start devmgmt.msc并回车
  5. 点开查看并勾选显示隐藏设备
  6. 卸载那些你想卸载的离线设备(半透明的设备)
@tonybruess
tonybruess / logstash.cfg
Created July 21, 2014 23:45
Overcast's logstash config for parsing log files created by our custom log4j2 config
input {
file {
path => "/minecraft/logs/*/server.log"
type => "server"
# stacktrace java as one message
codec => multiline {
pattern => "^([0-9\-: ]+ \[[A-Z]+\] )?(((\w+\.)+\w+Exception.*)|((\s|\t)+at .+)|(\s+... \d+ more)|(\s*Caused by:.+))"
what => "previous"
multiline_tag => "stacktrace"