Fraktalio · @fraktalio
18 followers · 35 posts · Server fosstodon.org

aims to bring functional, algebraic, and reactive domain modeling to . Check out the new demo application 💙github.com/fraktalio/fmodel-kt

#fmodel #kotlin #ktor #r2dbc #eventsourcing #cqrs #eventmodeling

Last updated 1 year ago

haliphax 👾 · @haliphax
140 followers · 659 posts · Server hachyderm.io
Alex Nedelcu ☕️ · @alexelcu
823 followers · 701 posts · Server social.alexn.org

This is a toy server with a very real-world use for me, that I built in , with . I first built it in Haskell, but then I changed to Kotlin, just to learn some Kotlin 🙂

It listens for GitHub's webhooks, and I use it to automatically refresh the websites hosted on my self-hosted server.

I'm building 2 images from it: one native (GraalVM native image), and the other JVM-based.

1/2

github.com/alexandru/github-we

#kotlin #ktor #docker

Last updated 1 year ago

Beowulf · @Beowulf
34 followers · 170 posts · Server androiddev.social

is broken with Gradle 8.0 and Gradle Plugin 8.1.0-alpha11.

If the minification is on, all URL parameters (set with `parameter("key", "value")`) are missing. 🤔

#ktor #android

Last updated 1 year ago

ToBe · @tobe
22 followers · 50 posts · Server mastodontech.de

Ich habe heute gelernt
- wie man auth serverseitig aufsetzt
- wie man custom authentication provider in hinzufügt
- wie man 32gb RAM konsumiert indem man einfach nur laufen lässt -_-
- das zwar irgendwie serverless ist, man sich aber trotzdem mit ganz schön viel Container Innereien auseinandersetzen muss
- das auf Windows eine ganz schöne bitch ist :[
- wie man via Google cloud managed und mounted
- das nie nie nie funktioniert

#firebase #ktor #docker #CloudRun #openjdk #secrets #nurmalkurz

Last updated 1 year ago

lucapette · @lucapette
178 followers · 226 posts · Server hachyderm.io

I just deployed a application on fly.io using a pretty stock dockerfile and it worked at first try. Amazing dev experience

#ktor #kotlin

Last updated 1 year ago

Tom Smykowski · @tomaszs
11 followers · 98 posts · Server techhub.social

Ktor 2.2.4, Kotlin framework, comes with some important communication fixes
link.medium.com/cB81lBxGdyb

#programming #kotlin #ktor

Last updated 1 year ago

Beowulf · @Beowulf
31 followers · 122 posts · Server androiddev.social

Sad that has nothing ready to parse a stream 😔

#ktor #mjpeg

Last updated 1 year ago

Wavesonics · @Wavesonics
43 followers · 201 posts · Server mastodon.gamedev.place

I'm doing some investigation for the server side component of my, so far, clientside only project.

The server library is pretty nice and simple so far, all non-blocking/coroutine based which is neat. And a very ergonomic API.

Also, no need for Post Man for testing! The IDE understands the library, picks out the end points i've defined, and then you can execute requests against them and see the response all right in the IDE, pretty slick developer experience!

#ktor #kotlin #jetbrains

Last updated 1 year ago

Simon Vergauwen · @vergauwen_simon
242 followers · 72 posts · Server fosstodon.org

Last week I gave a webinar with @antonarhipov on zero-downtime deployments on with in with .

You can find the webinar here, youtube.com/watch?v=zKrTBH8jqH

And all the source-code, and instructions to run the sample locally can be found here. github.com/nomisRev/ktor-k8s-z

#kubernetes #ktor #kotlin #arrowkt

Last updated 1 year ago

Simon Vergauwen · @vergauwen_simon
238 followers · 70 posts · Server fosstodon.org

Don't miss the webinar on Thursday !

As always there is too much I want to talk about😅 Composing different DSLs and to running JVM/Native
on with zero-downtime.

& be sure to bring all your questions! ☺️

info.jetbrains.com/kotlin-webi

#kotlin #arrowkt #kotlinx #coroutines #jetbrains #ktor #kubernetes

Last updated 1 year ago

Simon Vergauwen · @vergauwen_simon
234 followers · 67 posts · Server fosstodon.org

Next week Thursday the 16th I'll be talking with
@antonarhipov again about and .

I'll be doing some live coding again showing Arrow's Resource DSL & SuspendApp running on
with JVM & Native!😱

Register here: info.jetbrains.com/kotlin-webi

#jetbrains #ktor #arrowkt #kubernetes #kotlin

Last updated 2 years ago

Simon Vergauwen · @vergauwen_simon
222 followers · 63 posts · Server fosstodon.org

SuspendApp 0.4.0 is now available! This release adds a new integration module for .

Read more details about this release at xebia.com/blog/suspendapp-0-4-.

The full changelog is available on Github: github.com/arrow-kt/suspendapp

#ktor #jetbrainsktor #arrowkt #kotlin #functionalprogramming

Last updated 2 years ago

Harsh Shandilya · @msfjarvis
110 followers · 137 posts · Server androiddev.social

My lobste.rs client Claw is basically feature complete so I've started learning to build a sync backend service for saved posts, does anybody happen to have any tips on how to go about it? Databases, authentication, deployment for the JVM environment are all new things to me so any and all information I can get would be welcome 🙏

#ktor

Last updated 2 years ago

Kerfuffle · @kerfuffle
127 followers · 956 posts · Server mastodon.online

@THISWILLWORK I'd look at using & . Then you could add Spring Boot or, if you're not a fan of dragging everything but the kitchen sink in from the get-go, you could look at a more lightweight framework like which has built in, or which is pretty well established. Tbh the ecosystem is filled with more good options. I read your view on but I believe Maven 4 is around the corner and is looking quite promising.

#maven #JVM #ktor #jetty #Javalin #gradle #kotlin

Last updated 2 years ago

Alex Nedelcu · @alexelcu
508 followers · 197 posts · Server mastodon.social

I used for a personal project built in , and it's pretty good.

Latest version shows what difference tooling can make. can basically generate an OpenAPI spec for you. Though, I don't like that the OpenAPI doc isn't generated via a build plugin, because via the IDE it can get to be out of date.

blog.jetbrains.com/ktor/2022/1

#ktor #kotlin #intellijidea #gradle

Last updated 2 years ago

Hrefna (DHC) · @hrefna
300 followers · 850 posts · Server hachyderm.io

On one end of the complexity scale we could have a single box setup:

1. or as a sort of reverse proxy.
2. Vertx as an HTTP server and Guava caches for caching.
3. A simple LinkedBlockingQueue as our queuing mechanism. Maybe with a to-disk write-ahead log.
4. The EventBus as a controller.
5. Vertx verticles as our processors.
6. as a database and post store.
7. On-disk media storage.
8. for search.

Here we've checked all of the boxes. It won't scale, however. 3/

#ktor #vertx #sqlite #lucene

Last updated 2 years ago

Raúl Raja · @raulraja
412 followers · 126 posts · Server fosstodon.org

RT @antonarhipov
is coming, and I'll be there! With @gAmUssA we are hosting a workshop building microservices with Ktor and Kafka and I'm sure will add some interesting stuff with @thekonginc into the mix ;)

#kotlinconf #kotlin #ktor #kafka #kong

Last updated 2 years ago

Simon Vergauwen · @vergauwen_simon
181 followers · 41 posts · Server fosstodon.org

Announcing the first public example project from 47 Degrees / Xebia Functional! It showcases many different patterns using with and to build functional microservices.

Blog posts discussing our design decisions are coming soon!

github.com/47deg/gh-alerts-sub

This is one of the finest examples out there at the moment. There is also a super interesting PR that refactors the codebase to leverage Context Receivers. 😍

#kotlin #arrowkt #ktor #kafka

Last updated 2 years ago

Andrew From · @fromanator
6 followers · 1 posts · Server hachyderm.io

So I guess I should do an

I live in with my spouse (they/them), our toddler son, and a cat. Hobbies are and I dabble in

For work I'm a backend developer, who's also done infra (I guess you could say ). Current code base uses

Contributor to (and a few other OS projects) and have spoken at Cassandra Summit 2016

#introduction #Minneapoils #minnesota #homebrew #simracing #homeimprovement #mechanic #electronics #devops #kotlin #kafka #postgres #rocksdb #ktor #cassandra #ScyllaDB

Last updated 2 years ago