Skip to content

Instantly share code, notes, and snippets.

View alexcmgit's full-sized avatar

Alex Castro alexcmgit

View GitHub Profile
@iznaut
iznaut / readme.txt
Created February 24, 2021 23:56
A Snowball's Chance in Hell (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@vganin
vganin / FlexRow.kt
Last active September 1, 2024 19:19
[DEPRECATED, use official FlowRow instead] Jetpack Compose simple flex-wrap container
@Composable
fun FlowRow(
horizontalGap: Dp = 0.dp,
verticalGap: Dp = 0.dp,
alignment: Alignment.Horizontal = Alignment.Start,
content: @Composable () -> Unit,
) = Layout(content = content) { measurables, constraints ->
val horizontalGapPx = horizontalGap.toPx().roundToInt()
val verticalGapPx = verticalGap.toPx().roundToInt()
@barseghyanartur
barseghyanartur / how to write a valentine's day message in rust.md
Last active July 29, 2023 20:12
How to write a Valentine's Day message using Stable Diffusion and Rust

How to write a Valentine's Day message using Stable Diffusion and Rust

A practical guide

Step 1

Use your favorite search engine to search for "stable diffusion image generator". You will find a lot of services. Pick one, for example Night Cafe Creator.

Step 2