Skip to content

Instantly share code, notes, and snippets.

View iyxan23's full-sized avatar
:shipit:
typeof null === "object"

Nur Ihsan AG iyxan23

:shipit:
typeof null === "object"
View GitHub Profile
@iyxan23
iyxan23 / xiaomi-a24i-edid-hex
Created February 23, 2025 05:03
Xiaomi A24i Monitor EDID (with 0'ed serial number)
00 ff ff ff ff ff ff 00 61 a9 16 b0 00 00 00 00
1c 22 01 03 80 35 1e 78 af 28 df a6 55 4f 9b 26
0e 4e 4d a5 cb 00 81 80 95 00 a9 c0 b3 00 d1 c0
01 01 01 01 01 01 02 3a 80 18 71 38 2d 40 58 2c
45 00 0f 28 21 00 00 1e 00 00 00 fc 00 50 32 34
46 42 41 2d 52 41 47 4c 0a 20 00 00 00 ff 00 30
30 30 30 30 30 30 30 30 30 30 30 30 00 00 00 fd
00 30 64 61 ba 3c 00 0a 20 20 20 20 20 20 01 03
02 03 32 b3 49 01 03 11 13 04 14 05 1f 90 e2 00
ca 67 03 0c 00 10 00 38 44 e3 05 c3 01 e6 06 05
@iyxan23
iyxan23 / webrtc_peer1.html
Created December 21, 2021 14:43
The simplest WebRTC you'll ever see
<script>
let conn = new RTCPeerConnection()
let ch = conn.createDataChannel("channel")
function appendMessage(text) {
let messages = document.getElementById("messages")
let node = document.createElement("li");
let textnode = document.createTextNode(text);
node.appendChild(textnode);
messages.appendChild(node);
@iyxan23
iyxan23 / DexifyJar.gradle
Last active March 4, 2021 10:11
Gradle build script used to build a java project into a jar file and dexify it using d8
plugins {
id "de.undercouch.download" version "4.1.1"
}
apply plugin: 'java'
group 'com.example.module'
version '1.0'
repositories {