Skip to content

Instantly share code, notes, and snippets.

View williameom5678's full-sized avatar
:shipit:
2004년 12월 31일, 대한민국 철도청은 오랜지 병이었던 한국철도공사에 의해 쓰러졌다.

williameom williameom5678

:shipit:
2004년 12월 31일, 대한민국 철도청은 오랜지 병이었던 한국철도공사에 의해 쓰러졌다.
View GitHub Profile
@No-Eul
No-Eul / DisablePingOnReply.js
Last active July 16, 2025 14:47
Set to disable reply ping to default
// If you want to see an explanation of the code, please refer to the previous revisions
(this.disablePingToDefault = () => {
this.disablePingToDefault.interval = setInterval(() => {
if (location.href !== this.disablePingToDefault.currentUrl) {
if (this.disablePingToDefault.observer !== undefined)
this.disablePingToDefault.observer.disconnect();
else {
this.disablePingToDefault.observer = new MutationObserver(() =>
document.querySelector('div[class*="mentionButton"]')?.click()
);
@bivoje
bivoje / TIS-100_Reference_Manual_kor.md
Last active July 2, 2025 23:29
Markdown 포맷으로 변환된 TIS-100 매뉴얼 한국어 번역

TIS-100

Tessellated Intelligence System


레퍼런스 매뉴얼

음--

@lenivene
lenivene / get_real_ip_cloudflare.php
Last active October 30, 2025 09:28
Get REAL IP in CloudFlare by PHP
<?php
function get_ip(){
if( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ){
$ip = $_SERVER['HTTP_CLIENT_IP'];
}
elseif( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ){
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
else{
$ip = $_SERVER['REMOTE_ADDR'];
@jirutka
jirutka / rules-both.iptables
Created September 18, 2012 12:42
Basic iptables template for ordinary servers (both IPv4 and IPv6)
###############################################################################
# The MIT License
#
# Copyright 2012-2014 Jakub Jirutka <[email protected]>.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is