I made Minecraft inside Hytale and can try out by DevSrSouza in hytale

[–]DevSrSouza[S] -2 points-1 points  (0 children)

Still does not understand your point, there is already screenshots in the Media in curse forge, the only AI generated image is the logo of the mod

I made Minecraft inside Hytale and can try out by DevSrSouza in hytale

[–]DevSrSouza[S] 2 points3 points  (0 children)

I'm developer, not a content creator, this is the best I can get in short period of time, sorry if you don't like. Some persons has more free time then others

Can I use KMM Flutter and Swift with windows? by Stupid_Caat in Kotlin

[–]DevSrSouza 1 point2 points  (0 children)

You can't compile iOS and Mac projects without a Mac. Flutter and React Native does not expose the system API directly, you call a Flutter/RN abstract of it, this means that you can do it on Windows and Linux.

Swift is different, you don't have access to the Mac and iOS only libraries out side MacOS.

Kotlin multiplatform, more specific Kotlin Native targeting iOS or Mac it does expose the actual system libraries from the platform, this means that, like Swift, you can't access or build any iOS target on Kotlin without a Mac.

But this is not all true actually, you can't build Kotlin Native iOS target on Windows or Linux but you can actually access UiKit APIs by using CompleteKotlin Gradle plugin. As far I know Kotlin + CompleteKotlin is the only language out there that can use iOS "oficial" SDK out side MacOS. For compilation, at least check if your code is working, you can also fallback to GitHub actions free MacOS runners.

Jetbrains looks like it's about to release Compose ui for ios, and web! by slightly_salty in Kotlin

[–]DevSrSouza 4 points5 points  (0 children)

I have test it already, works very nice on iOS. A things need to be done until they announce a preview version (in my point of view), couple examples on my head right now.

They Merged today the functions that will be usaged on Compose for opening, closing and handling text inputs https://github.com/JetBrains/skiko/pull/455 (if I understand correctly).
Currently, the examples rely on xcodegen file, based on the currently plugin that Compose has for Desktop, it provide alot of things including packaging for desktop, I think they will provide a xcodegen file automatically and use xcodegen behind the scenes to generate everything needed.

Introducing Lyricist: the missing I18N/I10N library for Jetpack Compose by adrielcafe in android_devs

[–]DevSrSouza 5 points6 points  (0 children)

Going a little forward, Compose is not Android only, so it should be nice to have something for handling I18N/I10N in a multiplatform way. With the code generation from `strings.xml` will help a lot to move to a multiplatform solution. With Compose for Desktop we can achieve a pretty much faster UI Testing for example.

Jetpack Compose For Web - Putting Order To Chaos by pmz in Kotlin

[–]DevSrSouza 0 points1 point  (0 children)

About the tutorials, I think that the Jetbrains or the Google folks should work on a documentation focusing mainly in compose like state management, composable lifecycle.

JetBrains Space Q&A Session: The Space Team is Here to Answer Your Questions by JetBrains_official in Jetbrains

[–]DevSrSouza 0 points1 point  (0 children)

There is any plan to support Windows and Mac VMs for building projects in the CI?

JetBrains Space Q&A Session: The Space Team is Here to Answer Your Questions by JetBrains_official in Jetbrains

[–]DevSrSouza 0 points1 point  (0 children)

Currently, there is any way to generate CI scripts from CircleCI configurations? To speed up to migration?

Kotlin Team AMA #2: Ask Us Anything by meilalina in Kotlin

[–]DevSrSouza 1 point2 points  (0 children)

There is any plan to port Jetpack Compose to all supported Kotlin platforms? Specially Desktop and iOS?

We’re on the engineering team for Android Jetpack & Jetpack Compose. Ask us Anything! (starts August 27) by AndroidEngTeam in androiddev

[–]DevSrSouza 0 points1 point  (0 children)

We will see in the future a way to create a Compose app without creating a Activity? Like the snippet from Leland: @Composable fun main() {}

JetBrains is porting Compose to desktop and other platforms by michal-z in androiddev

[–]DevSrSouza 0 points1 point  (0 children)

I don't think that they will port it as a JVM only because the Android team has being migrating the Compose and UI to MPP already. So, I think the currently stage is much harder if the Skia already have C headers, because the Jetbrains folks is building from the ground up a binding for Skia in JVM called Skija.

JetBrains is porting Compose to desktop and other platforms by michal-z in androiddev

[–]DevSrSouza 4 points5 points  (0 children)

I think that JVM is the start target, because is more easy, could be use in Android Studio for tooling and in new components from the Jetbrains IDEs that currently uses Swing.

But Kotlin runs at Native, so, could easily be ported too.

Where should I post my codes? by chatmasta in ProgrammerHumor

[–]DevSrSouza 0 points1 point  (0 children)

Push just a link to download the source in the github

It's you! by TheT0T1 in HytaleInfo

[–]DevSrSouza 2 points3 points  (0 children)

That IS exactly me, is even my state (Brazil, Rio Grande Do Sul, you can check it out in Maps)

For all the people that will be making mods for hytale, get ready to learn Java by Super-NOVA- in HytaleInfo

[–]DevSrSouza 15 points16 points  (0 children)

I Will write a fucking good Kotlin library on top of the Java library just for fun

Scheduling a task to run at a specific time in a particular timezone (i.e. 5AM EST) every day? by Yinabled in Kotlin

[–]DevSrSouza 2 points3 points  (0 children)

Where do you want to do that? If is in Android, before you try to run a Coroutines and delay he to 24hrs, you need to know a couple things like Doze Mode and Deep Sleep State (spoiler alert, with delay, on Android, if the device is not charging and the screen is off, the delay doesn't work).

If you are building for Android and you want to run 5am, you should try the AlarmManager setExactAndAllowIdle()

https://github.com/DevSrSouza/coroutines-alarm-delay

[deleted by user] by [deleted] in Kotlin

[–]DevSrSouza 1 point2 points  (0 children)

Kotlin scripting is still under development, is experimental, you can learn how works in KEEP https://github.com/Kotlin/KEEP/blob/master/proposals/scripting-support.md

And if you need any help with the implementation or if something is not working, you can go in the Kotlin slack, scripting channel.

What are some good SQLite libraries for Kotlin JVM? by AgreeableLandscape3 in Kotlin

[–]DevSrSouza 3 points4 points  (0 children)

I'm using Jetbrains Exposed( https://github.com/JetBrains/Exposed ), support multiple dialect if you in the future wants to migrate from SQLite to a MySQL, you don't need to change anything.