Skip to content

Instantly share code, notes, and snippets.

View sangwon090's full-sized avatar
🫡
ROKAF (24. 7. 1. - 26. 3. 31.)

Sangwon Ryu sangwon090

🫡
ROKAF (24. 7. 1. - 26. 3. 31.)
  • Soongsil Univ. CSE 23 / SWM 14th
  • Seoul, South Korea
  • 10:33 (UTC +09:00)
View GitHub Profile
@hareeen
hareeen / main.rs
Last active February 23, 2024 13:55
Rust I/O template for competitive programming
// ✦☁️
use std::{
cell::RefCell,
fmt::Debug,
io::{stdin, stdout, BufRead, BufReader, BufWriter, StdinLock, StdoutLock, Write},
mem::transmute,
str::FromStr,
str::{from_utf8_unchecked, SplitWhitespace},
};
@kconner
kconner / macOS Internals.md
Last active July 7, 2024 19:42
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@HelloKS
HelloKS / 1st.html
Created January 23, 2018 07:12
KT ISP router usage find logic
<meta http-equiv="refresh"content="2;url=http://접속URL/?"/>
<iframe id="f"frameborder="0"style="width:1;height:1"></iframe>
<script>document.getElementById("f").src="http://KT서버/tm/?a=FF&b=WIN&c=고유값&d=고유값&e=고유값&f=고유값&g=고유값&h="+Date.now()+"&y=0&z=0&x=1&w=2018-01-03&in=고유값&id=20180123"</script>
@mchlstckl
mchlstckl / Property.kt
Last active August 4, 2023 07:37
Example entity with composite key Spring Boot and Kotlin
// This will not serialize!
data class Muppet(val name: String)
// This will serialize!
data class Puppet(val name: String = "")
// Composite key class must implement Serializable
// and have defaults.
class PropertyId(
val uuid: UUID = UUID.randomUUID(),