Skip to content

Instantly share code, notes, and snippets.

View philipphofmann's full-sized avatar
🖥️
Hacking

Philipp Hofmann philipphofmann

🖥️
Hacking
View GitHub Profile
@philipphofmann
philipphofmann / sentry-ios-sample-crash.json
Created July 21, 2021 12:18
Sentry iOS Sample Crash JSON
{
"event_id": "64e91ba728b8428eb02cb369ab6f5a8f",
"project": 5428557,
"release": "[email protected]+338",
"dist": "338",
"platform": "cocoa",
"message": "",
"datetime": "2021-07-21T12:13:23.000000Z",
"tags": [
[
@philipphofmann
philipphofmann / sampleServerDSL.kt
Last active October 26, 2018 13:42
Workshop: Creating DSLs in Kotlin by Hadi Hariri
@DslMarker
annotation class CloudProviderDSL
data class Configuration(
val provider: String,
val region: String,
val isActive: Boolean,
val fallback: Int,
val servers: List<Server>
)