Skip to content

Instantly share code, notes, and snippets.

View pocmo's full-sized avatar
🚀
Just passing by.

Sebastian Kaspari pocmo

🚀
Just passing by.
View GitHub Profile
| | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
| | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
| | | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
| | | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
| | | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
| | | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
| | | | | +--- androidx.lifecycle:lifecycle-common:2.3.1
| | | | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
A Brainfuck interpreter (and never completed compiler)
written in C++ to play with the idea of optimization:
https://github.com/pocmo/Brainfuck.CPP
Using the Kotlin grammar docs to write a compiler for
a subset. Never completed parsing the whole AST though. :)
https://github.com/pocmo/tinyK
"Translator" for parsing Android View XML and translating
it to Jetpack Compose code:
@pocmo
pocmo / generic_middleware.kt
Created January 4, 2022 17:01
Generic middleware
interface StateWithTopSites : State {
val topsites: List<TopSite>
}
interface TopSite {
// ..
}
interface AddTopSiteAction {
val topSite: TopSite