Skip to content

Instantly share code, notes, and snippets.

View trinadhthatakula's full-sized avatar
🎯
a mix of concentration and spontaneity

Trinadh Thatakula trinadhthatakula

🎯
a mix of concentration and spontaneity
View GitHub Profile
@JolandaVerhoef
JolandaVerhoef / .Unlocking the Power of CameraX in Jetpack Compose.md
Last active September 26, 2025 14:30
Code snippets for Medium blog post "Unlocking the Power of CameraX in Jetpack Compose"

Code snippets used in the blog post series "Unlocking the Power of CameraX in Jetpack Compose". I will add snippets as blog posts are released!

Each file can be copied as-is to the MainActivity.kt of a new project. However, it doesn't include any library dependencies or adaptations to AndroidManifest.xml, so make sure to follow the steps in the blog posts themselves to get a working sample.

@philipplackner
philipplackner / DeploymentSteps.txt
Created November 24, 2021 21:53
Ktor VPS Server Deployment Steps
1. Download Git Bash (only if on Windows)
2. Go to your users folder and open the .ssh folder. Then open Git Bash / Terminal there and generate a key pair:
ssh-keygen -m PEM -t rsa -b 2048
3. Copy the key to your server:
ssh-copy-id -i <keyname> <user>@<host>
5. Login to your Ubuntu server via SSH:
ssh -i <keyname> <user>@<host>