Skip to content

Instantly share code, notes, and snippets.

View chalkpe's full-sized avatar
🏳️‍🌈

Seol Park chalkpe

🏳️‍🌈
  • Republic of Korea
View GitHub Profile
@hibiyasleep
hibiyasleep / gshade_to_reshade_guide.md
Last active February 8, 2023 19:29 — forked from lostkagamine/gshade_to_reshade_guide.md
GShade -> ReShade migration guide for FFXIV

GShade에서 ReShade로 옮겨가는 방법

(rika (@lostkagamine)가 작성하고 hibiyasleep이 번역하면서 조금 다듬음. 테스트해봤고, 제대로 될 겁니다.)

화면이 까매지는 등의 문제가 발생한다면, 이 글 맨 아래의 FAQ를 읽어주세요!

역주:

  • 삭제→Delete (파일 삭제), 제거→Uninstall (프로그램 추가/제거)
  • 문체가 좀 이상할 수 있는데 그냥 귀찮아서 원본 어투를 최대한 따랐습니다. 뭐 내용에는 지장 없으니까…

0. 아직 GShade를 제거하지 마세요!

@wbz0100
wbz0100 / Misskey_Custom_PC
Last active February 9, 2023 06:51
Misskey_custom_PC
/*Misskey - custom css - edit by white*/
/*pc 버전*/
/*misskey v12.119.2*/
/*메인 설정*/
main.main{
width: 600px !important;
/*메인 넓이 설정*/
}
@melroy89
melroy89 / mastodon-docker-setup.md
Last active March 19, 2024 18:24 — forked from akuechl/mastodon-docker-setup.md
Mastodon Docker Setup - most complete and easiest guide online
@zi-gae
zi-gae / wontobacktick.sh
Last active April 4, 2024 05:27
won(₩) to backtick(`)
#!/bin/bash
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then
echo "~/Library/KeyBindings/DefaultkeyBinding already"
exit 0
fi
mkdir -p ~/Library/KeyBindings
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict
{
"₩" = ("insertText:", "\`");
"~4" = ("insertText:","₩");
@Treeki
Treeki / TurnipPrices.cpp
Last active April 5, 2024 13:55
AC:NH turnip price calculator
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
// munged from https://github.com/simontime/Resead
namespace sead
{
class Random
{
@dolsup
dolsup / yaong.md
Last active August 5, 2020 07:27
난해한 야옹... 언어

난해한 야옹... 언어 v0.4.5

소개

난해한 야옹... 언어(이하 야옹)는 난해한 혀엉... 언어(이하 혀엉)와 상호 트랜스파일 가능한 언어입니다. 야옹혀엉은 기본적으로 동치(equivalent) 관계이며 각 언어의 명령어셋은 서로 1:1 매핑될 수 있습니다.

명령어셋 비교

혀엉 v0.4.5를 기준으로 합니다. 아래 나열된 한글 음절 문자 명령어를 제외한 모든 스펙은 동일합니다.

난해한 야옹... 언어 난해한 혀엉... 언어 해석
@tiffany352
tiffany352 / index.html
Last active December 27, 2023 05:22
Twitter archive browser
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Twitter Archive Browser</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<style>
@serg0x
serg0x / material-design-shadows.css
Last active July 7, 2023 13:33
Google material design elevation system shadows as css. Based on https://material.io/design/environment/elevation.html#default-elevations Exported with Sketchapp from the Google material design theme editor plugin "Baseline" theme.
/* Shadow 0dp */
box-shadow: none;
/* Shadow 1dp */
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.20);
/* Shadow 2dp */
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.20);
/* Shadow 3dp */
@cthurston
cthurston / mongodb-facet-combine.js
Created November 3, 2017 14:21
MongoDb combine $facet results into a single result set.
db.getCollection('list').aggregate([
{
$facet: {
"events":[{
$match: {
'type': 'Event'
}
}],
"tasks": [{
$match: {
@redism
redism / kr_won_to_backquote.sh
Created April 26, 2017 16:20
macOS Sierra에서 원화(₩) 대신 백 쿼트(`) 입력하기
#!/bin/bash
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists"
exit -1
fi
mkdir -p ~/Library/KeyBindings
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict
{
"₩" = ("insertText:", "\`");