Skip to content

Instantly share code, notes, and snippets.

View beinghassandar1's full-sized avatar

Hassan Dar beinghassandar1

  • Berlin, Germany
  • 08:29 (UTC +02:00)
View GitHub Profile
@bmc08gt
bmc08gt / 1_Keyboard.kt
Last active May 13, 2025 13:34
KMP Software Keyboard Controller
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue
import androidx.compose.ui.platform.SoftwareKeyboardController
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
public abstract class KeyboardController(
@Shreemanarjun
Shreemanarjun / rolebasedAuthPlugin.Kt
Last active August 16, 2024 06:46
plugin for role-based authorization
package example.com.plugins
import io.ktor.http.*
import io.ktor.server.application.*
import io.ktor.server.auth.*
import io.ktor.server.auth.jwt.*
import io.ktor.server.request.*
import io.ktor.server.response.*