Skip to content

Instantly share code, notes, and snippets.

View sangwon090's full-sized avatar
🤯
Solvitur ambulando

Sangwon Ryu sangwon090

🤯
Solvitur ambulando
  • Soongsil Univ. CSE / SWM 14th / BoB 15th
  • Seoul, South Korea
  • 16:57 (UTC +09:00)
  • LinkedIn in/sangwon090
View GitHub Profile
@michaelst0
michaelst0 / Property.kt
Last active October 15, 2024 20:14
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(),
@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>
@kconner
kconner / macOS Internals.md
Last active July 25, 2026 09:37
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:

@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},
};