Skip to content

Instantly share code, notes, and snippets.

This is for ASUS PG43UQ. I can say these settings are pretty darn close to 1st gen LM monitors we have at R1.

Gamma and OD are the most important settings for fighting ghosting.

Gamevisual

User Mode

Color

Brightness = 10 (in the dark; set to higher when room is bright)

@kinetic-flow
kinetic-flow / beatoraja-config.bat
Last active March 11, 2024 00:41
my beatoraja launch file
REM *** Set system-wide "_JAVA_OPTIONS" environment variable to use OpenGL pipeline (improved performance of > 30% potentially. Also use anti-aliasing for non-LR2 fonts, and finally allow Swing framework to utilize AA and GTKLookAndFeel for config window. ***
REM set _JAVA_OPTIONS='-Dsun.java2d.opengl=true -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel' -Dfile.encoding="UTF-8"
set _JAVA_OPTIONS=-Dfile.encoding="UTF-8"
pushd %~dp0
start "beatoraja cmd window" /high /affinity 3c java -Xms16g -Xmx16g -cp beatoraja.jar;ir/* bms.player.beatoraja.MainLoader
popd
REM plus, use FULLSCREEN@1080p, VSync on, BGA off, Audio to PulseAudio
@kinetic-flow
kinetic-flow / clock.html
Created December 10, 2020 10:08 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
@kinetic-flow
kinetic-flow / dani_clear_rate.py
Last active August 24, 2020 06:52
iidx dan-i-nin-tei clear rate calculation
from statistics import median
def clear_rate(pgreat, great, good, bad, poor, note_count):
progress = min(pgreat + great + good + bad + poor, note_count)
if note_count <= 0 or progress <= 0:
return 0
x = 8 * (pgreat + great) + 2 * good - (68 * bad + 100 * poor)
y = 100 * x / (6 * note_count)
if y >=0: