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
@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 <jakub@jirutka.cz>.
#
# 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
@bivoje
bivoje / TIS-100_Reference_Manual_kor.md
Last active April 18, 2024 19:52
Markdown 포맷으로 변환된 TIS-100 매뉴얼 한국어 번역

TIS-100

Tessellated Intelligence System


레퍼런스 매뉴얼

음--

@No-Eul
No-Eul / DisablePingOnReply.js
Last active July 23, 2024 06:25
Set to disable reply ping to default
(this.disablePingToDefault = () => {
this.disablePingToDefault.interval = setInterval(() => {
if (this.disablePingToDefault.currentUrl !== location.href) { // Cached url is not equal to 'location.href', do the following:
if (this.disablePingToDefault.observer !== undefined) // If an observer which created at previous is exist,
this.disablePingToDefault.observer.disconnect(); // disconnect it.
else { // If it wasn't,
// Create new instance to detect insertion of the reply box.
this.disablePingToDefault.observer = new MutationObserver(() => {
let pingButton = document.querySelector('div[class*="mentionButton"]'); // Get ping switch in reply box.
if (pingButton !== null) pingButton.click(); // Click if it's not null. Then reply ping will be disable.