I hereby claim:
- I am mertcb on github.
- I am mertcb (https://keybase.io/mertcb) on keybase.
- I have a public key ASDzV99QrQ4Yan9Uiq2oH975940vkjDjVnS-Rz4VgNY8oAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package com.mertcb.sskotlin | |
| import io.ktor.application.* | |
| import io.ktor.http.ContentType | |
| import io.ktor.response.* | |
| import io.ktor.request.* | |
| import io.ktor.routing.get | |
| import io.ktor.routing.routing | |
| fun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args) |
| package com.mertcb.sskotlin | |
| import io.ktor.application.* | |
| import io.ktor.features.ContentNegotiation | |
| import io.ktor.gson.gson | |
| import io.ktor.http.* | |
| import io.ktor.response.* | |
| import io.ktor.request.* | |
| import io.ktor.routing.* | |
| import java.text.DateFormat |
| package com.mertcb.sskotlin | |
| import com.google.gson.Gson | |
| import io.ktor.application.call | |
| import io.ktor.http.ContentType | |
| import io.ktor.request.receive | |
| import io.ktor.response.respondText | |
| import io.ktor.routing.* | |
| val gson = Gson() |
| package com.mertcb.sskotlin | |
| import io.ktor.application.* | |
| import io.ktor.features.ContentNegotiation | |
| import io.ktor.gson.gson | |
| import io.ktor.routing.* | |
| import java.text.DateFormat | |
| fun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args) |
| import 'package:flutter/material.dart'; | |
| class SizeConfig { | |
| static SizeConfig _instance; | |
| static BuildContext context; | |
| static SizeConfig instance(BuildContext context) { | |
| if (_instance == null) _instance = SizeConfig._init(context); | |
| return _instance; | |
| } |
| # ENTER YOUR CUSTOM VALUES HERE | |
| HOSTNAME="subdomain.example.com" | |
| EMAIL="info@example.com" | |
| # set hostname | |
| hostnamectl set-hostname $HOSTNAME | |
| echo -e "127.0.0.1 localhost $HOSTNAME" >> /etc/hosts | |
| # add Jitsi to sources | |
| wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add - |