Skip to content

Instantly share code, notes, and snippets.

@lnwncentral
lnwncentral / Officially Translated Light Novels
Last active May 16, 2024 00:25
Officially Translated Light Novels
Last update: 11/05/2024 10:24
!Completed: https://mega.nz/folder/sMcCXKpa#_R-M2Cqh9NYbFWWVWVAmxw
!EPUB: https://mega.nz/folder/5AE2DTKS#-u5vZ1LauFo4vRDiAvFQIw
!PDF: https://mega.nz/folder/ER1HXJZT#AnftN521aESOeisBWk_tMw
!Yaoi/37C: https://mega.nz/folder/8A0RyZIS#x4N8tGqddmDHMMbCy1L0qA
!Yaoi/A Kiss and a Pair of Handcuffs: https://mega.nz/folder/0V9zTQ6J#TnF--X0XuXuKr_lmIqTOxA
!Yaoi/Ai no Kusabi: https://mega.nz/folder/5FUhmLyA#p_iCdky89s6sTHJNAHXMDQ
!Yaoi/Ai Shika Iranee yo: https://mega.nz/folder/cR9FRADS#8Byg_qCw_mQ1VIGEFCc4KA
!Yaoi/All My Loving: https://mega.nz/folder/Ud80ATRK#BFzuo5vhxZx1uYtZlhwbVw
!Yaoi/Amazing Grace: https://mega.nz/folder/FcFW2bRC#vxpnv6Kq4MwPYOsUI1353g
@jonlabelle
jonlabelle / ldap_search_filter_cheatsheet.md
Last active May 16, 2024 00:24
LDAP Search Filter Cheatsheet
@vratiu
vratiu / .bash_aliases
Last active May 16, 2024 00:23
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@y0ngb1n
y0ngb1n / docker-registry-mirrors.md
Last active May 16, 2024 00:19
国内的 Docker Hub 镜像加速器,由国内教育机构与各大云服务商提供的镜像加速服务 | Dockerized 实践 https://github.com/y0ngb1n/dockerized

Docker Hub 镜像加速器

国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务。

Dockerized 实践 https://github.com/y0ngb1n/dockerized

配置加速地址

Ubuntu 16.04+、Debian 8+、CentOS 7+

@dirkarnez
dirkarnez / build.gradle
Last active May 16, 2024 00:16
Java Gradle Fat Jar (Build jar with dependencies, support Javafx)
// see https://www.mkyong.com/gradle/gradle-create-a-jar-file-with-dependencies/
import org.gradle.plugins.ide.eclipse.model.AccessRule
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: 'javafx-gradle-plugin'
buildscript {
@endolith
endolith / Has weird right-to-left characters.txt
Last active May 16, 2024 00:12
Unicode kaomoji smileys emoticons emoji
ּ_בּ
בּ_בּ
טּ_טּ
כּ‗כּ
לּ_לּ
מּ_מּ
סּ_סּ
תּ_תּ
٩(×̯×)۶
٩(̾●̮̮̃̾•̃̾)۶
@dbrentley
dbrentley / beltmatic.py
Last active May 16, 2024 00:18
Beltmatic Optimizer
from collections import deque
"""
Beltmatic Optimizer
Author: Brent Douglas (https://github.com/dbrentley)
Edit the two variables "max_number" and "target". max_number is the
highest number you have unlocked and target is the target you are trying
to reach.
"""
@codigoconjuan
codigoconjuan / db.json
Last active May 16, 2024 00:10
Gist Platillos JSON-Server
{
"platillos": [
{
"id": 1,
"nombre": "Pizza a la Leña Chica",
"precio": 30,
"categoria": 1
},
{
"id": 2,
import { prefixStorage } from "unstorage";
import type { Storage } from "unstorage";
type Session = {
id: string
userId: string
expiredAt: Date
}