Skip to content

Instantly share code, notes, and snippets.

View channprj's full-sized avatar

Heechan Park channprj

View GitHub Profile
@channprj
channprj / cheatsheet-elasticsearch.md
Last active August 25, 2023 07:45 — forked from ruanbekker/cheatsheet-elasticsearch.md
Elasticsearch Cheatsheet : Example API usage of using Elasticsearch with curl
View cheatsheet-elasticsearch.md
@channprj
channprj / simulate.js
Created October 11, 2022 11:27 — forked from cs09g/simulate.js
Mouse/Touch Event Simulation
View simulate.js
/**
* @desc It triggers mouse event.
* @param {HTMLElement} element target DOM element
* @param {string} type type of event
* @param {number} x clientX of event
* @param {number} y clientY of event
*/
export function simulateEvent(element, type, x, y) {
const mouseEvent = new MouseEvent(type, {
screenX: 0,
@channprj
channprj / safari-hacks.css
Created February 11, 2022 10:15
Hacks for Safari
View safari-hacks.css
@media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
div.something.annoying {
line-height: 18px;
}
}
}
@channprj
channprj / alert-ssh-login.sh
Last active May 12, 2022 07:34
Simple SSH Login Notifier via PAM
View alert-ssh-login.sh
# Create trigger file
touch /etc/ssh/sshd_notifier.sh
chmod +x /etc/ssh/sshd_notifier.sh
vim /etc/ssh/sshd_notifier.sh
#!/bin/bash
# /etc/ssh/sshd_notifier.sh
BOT_TOKEN="xxxxxx:12345678901234567890"
CHAT_ID="1234567890"
@channprj
channprj / deep-link-from-browser.js
Created November 24, 2021 13:36 — forked from diachedelic/deep-link-from-browser.js
Deep link to a native app from a browser, with a fallback
View deep-link-from-browser.js
@channprj
channprj / log-all-zsh-bash-commands-syslog.md
Last active August 3, 2021 16:24 — forked from dayreiner/log-all-zsh-bash-commands-syslog.md
Log all users zsh / bash commands via syslog without 3rd-party tools or auditd
View log-all-zsh-bash-commands-syslog.md

Sending Bash and ZSH Commands to Syslog

Also posted here: http://18pct.com/sending-bash-and-zsh-commands-to-syslog/

Your bash/zsh history is great if its complete, but it doesn't capture commands across all users, sudo's, root commands etc. In particular with test environments, someone may perform a "one-off" procedure and then months later it needs to be repeated. It would be nice to be able to look up what the user did at the time, and searching through multiple, possibly truncated history files is a pain.

Tools like typescript are great if you're actively documenting, but not something you would use all the time in practice and capture more than just a history of your commands. There are third-party tools like rootsh and Snoopy that can accomplish this, but third-party tools can be overkill if all you want is a quick reference in a re

@channprj
channprj / notion-worker.js
Last active November 28, 2021 18:33
Publish Notion homepage using https://fruitionsite.com
View notion-worker.js
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'chann.dev';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
View I'm a night 🦉
🌞 Morning 61 commits █▊░░░░░░░░░░░░░░░░░░░ 8.8%
🌆 Daytime 130 commits ███▉░░░░░░░░░░░░░░░░░ 18.7%
🌃 Evening 216 commits ██████▌░░░░░░░░░░░░░░ 31.0%
🌙 Night 289 commits ████████▋░░░░░░░░░░░░ 41.5%
@channprj
channprj / disable-macbook-linux.sh
Created April 13, 2021 10:24
Turn off macbook (linux) screen
View disable-macbook-linux.sh
#!/bin/sh
echo 0 > /sys/class/backlight/nv_backlight/brightness
View postmanTest.js
// csrftoken 쿠키 설정
const csrftoken = pm.cookies.get('csrftoken')
pm.environment.set('csrftoken', csrftoken);
// jwt 토큰 환경변수 설정
const responseData = pm.response.json();
pm.environment.set('access', responseData.access);
pm.environment.set('refresh', responseData.refresh);