Skip to content

Instantly share code, notes, and snippets.

View zeroday0619's full-sized avatar
🏫
Full Time Student

Euiseo Cha zeroday0619

🏫
Full Time Student
View GitHub Profile
@zeroday0619
zeroday0619 / Code_of_Conduct_Enforcement_Process.md
Last active April 25, 2025 03:06
Code of Conduct Enforcement Process

이 문서는 누구를 위한 것인가

이 문서는 주로 우리 커뮤니티의 지도자들이 행동 강령(CoC) 위반을 처리하고 집행하는 데 도움을 주기 위해 작성되었습니다.

행동 강령 집행의 목표

행동 강령 집행에는 두 가지 목표가 있습니다.

  1. 주된 목표는 우리 커뮤니티와 그 안의 구성원들을 보호하는 것입니다.
  2. 부차적이지만 중요한 목표는 개인이 성장할 수 있는 건강한 커뮤니티를 만드는 것입니다.

만약 이 두 가지 목표가 충돌할 경우, 반드시 첫 번째 목표부터 우선적으로 해결해야 합니다.
즉, 드물기는 하지만, 커뮤니티에 독성 있거나 해로운 행동을 보이는 개인으로부터 커뮤니티를 보호하기 위해 강력한 조치가 필요할 수 있습니다. 신체적·언어적 폭력이나 심각한 일탈 행동으로 인해 사람들이 안전하지 않다고 느끼게 만드는 경우에는, 커뮤니티를 보호하기 위해 신속하고 강력하게 조치해야 합니다. 이런 경우, 위반자의 의도는 덜 중요합니다. 의도가 좋더라도 매우 위험한 행동은 용인될 수 없으며, 우리는 이러한 행동을 멈추도록 개인을 코칭하는 데 적합한 환경이 아닙니다. 이런 개인을 커뮤니티에서 배제하는 것이 옳은 조치입니다.

#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <math.h>
#include <immintrin.h>
#include <sys/sysinfo.h>
#include <unistd.h>
#include <time.h>
#include <sched.h>
## Intel Core i9-13900K
sudo cpupower frequency-set -g performance
# P core (0~15)
sudo cpupower -c 0 frequency-set --min 3000Mhz
sudo cpupower -c 1 frequency-set --min 3000Mhz
sudo cpupower -c 2 frequency-set --min 3000Mhz
sudo cpupower -c 3 frequency-set --min 3000Mhz
sudo cpupower -c 4 frequency-set --min 3000Mhz
@zeroday0619
zeroday0619 / anamAPI.md
Created January 4, 2024 14:02
Korea University ANAM Hospital API Endpoint Document

Korea University ANAM Hospital API Endpoint Document

How to install game-porting-toolkit (aka proton for macOS)

What is this?

In the recent WWDC, Apple announced and released the "game porting toolkit", which upon further inspection this is just a modified version of CrossOver's fork of wine which is a "compatibility layer" that allows you to run Windows applications on macOS and Linux.

Why would I want this?

Playing Windows games on MacOS

@zeroday0619
zeroday0619 / migration.sh
Created May 9, 2023 13:00
legacy trusted-gpg keyring
#!/bin/bash
# https://askubuntu.com/questions/1407632/key-is-stored-in-legacy-trusted-gpg-keyring-etc-apt-trusted-gpg
for KEY in $( \
apt-key --keyring /etc/apt/trusted.gpg list \
| grep -E "(([ ]{1,2}(([0-9A-F]{4}))){10})" \
| tr -d " " \
| grep -E "([0-9A-F]){8}\b" \
); do
K=${KEY:(-8)}
@zeroday0619
zeroday0619 / nintendo-switch-presense.py
Created September 25, 2022 04:41
NINTENDO SWITCH DISCORD PRESENSE
import json
import sys
import time
import keyring
from pypresence import Presence
from nso_bridge.nsa import NintendoSwitchAccount
from nso_bridge.nso import NintendoSwitchOnlineAPI
import logging
@zeroday0619
zeroday0619 / WKU_courseRegistration.md
Last active February 10, 2025 13:32
원광대학교 수강신청 시스템 분석
@zeroday0619
zeroday0619 / nintendo-switch-presence.py
Last active June 13, 2022 04:14
Nintendo Switch discord presence
import json
import sys
import time
import keyring
from pypresence import Presence
from nso_bridge.nsa import NintendoSwitchAccount
from nso_bridge.nso import NintendoSwitchOnlineAPI
import logging