Eugenio Marletti

4.8K posts

Eugenio Marletti banner
Eugenio Marletti

Eugenio Marletti

@workingkills

Developer Advocate @JetBrains (@Kotlin Multiplatform/mobile) | @GoogleDevExpert (@Android, @Kotlin, @Flutterio) | formerly: Lead Android Engineer @Clue

Berlin, Germany เข้าร่วม Ekim 2010
482 กำลังติดตาม4K ผู้ติดตาม
Eugenio Marletti รีทวีตแล้ว
kotliners
kotliners@kotliners·
Want to hear what our keynote, @workingkills from @JetBrains has to say about Kotlin? Register now and meet us on your screen.
English
0
8
196
0
Eugenio Marletti รีทวีตแล้ว
Playdate
Playdate@playdate·
Here's some nice news: while it's still quite early, thanks to some heroic work by Brook, our Playdate Simulator (part of the Playdate SDK) is now up and running on Windows and Linux!!
Playdate tweet mediaPlaydate tweet media
English
39
104
1K
0
Eugenio Marletti รีทวีตแล้ว
Kotlin by JetBrains
Kotlin by JetBrains@kotlin·
Want to add some code to your project? You don’t need to create a file for it first. Just copy the code, select the folder in the Project View in IntelliJ IDEA or Android Studio where you want to have it, and paste it. The IDE will automatically create a file for you. #KotlinTips
GIF
English
7
120
487
0
Eugenio Marletti
Eugenio Marletti@workingkills·
@hamen assuming you have zsh as shell... ``` brew install trash \ && echo " alias 'rm!'='env rm' alias 'rm'='trash -F' " >> ~/.zshrc \ && source ~/.zshrc \ && echo '\n✨\n' ```
English
1
1
7
0
Ivan Morgillo
Ivan Morgillo@hamen·
Today it happened again. It hadn't happened for a long time, but today it happened. I "rm -rf" the wrong folder 🤦🏻‍♂️ Let's see if Disk Drill app is able to restore my files. Mindfulness is a precious skill that I'm always improving. I guess I need to keep working on it.
English
3
0
9
0
Florina Muntenescu
Florina Muntenescu@FMuntenescu·
I thought birthday alone is the way to go this year, but between a surprise standup organized by the team, an online escape room with amazing ladies and a lot of good wishes & photos of pets and plants, this birthday was awesome Thank you all ❤️ P.S. more pet photos welcomed 😬
English
41
3
260
0
Eugenio Marletti รีทวีตแล้ว
Monika NagayMarletti
Monika NagayMarletti@moni_ka_rina·
👋 Hey, is the quarantine turning you into a 🛋‍🥔? Easy fix: join me online, we are doing some couch‍-‍vegetable‍-‍friendly 🧘‍♀️‍Yoga‍🕺. No previous experience needed! 💯 Zen Guarantee or Your Calories Back 🔥 Check out mnagay.wixsite.com/life-yoga or contact me (DMs are open)
Monika NagayMarletti tweet media
English
0
2
5
0
Eugenio Marletti รีทวีตแล้ว
Kotlin by JetBrains
Kotlin by JetBrains@kotlin·
We’ve just released Kotlin 1.3.70! Learn all about the new experimental functionality in the standard library and other improvements in our latest blog post blog.jetbrains.com/kotlin/2020/03…
Kotlin by JetBrains tweet media
English
8
264
668
0
Eugenio Marletti รีทวีตแล้ว
Monika NagayMarletti
Monika NagayMarletti@moni_ka_rina·
My yoga studio website is out in the wild, please feel free to check it out, share with your friends and spread the word! See you on the mat :) Namaste 🙏🧘‍♀️🧘‍♂️ mnagay.wixsite.com/life-yoga
English
0
2
2
0
Eugenio Marletti
Eugenio Marletti@workingkills·
@nisrulz @hhariri IIRC the first time a certain Kotlin/Native version is needed (by Gradle/IDE) its toolchain is downloaded (if necessary) & installed in: ~/.konan/kotlin-native-<platform>-<version>/ eg. on my machine: /Users/workingkills/.konan/kotlin-native-macos-1.3.70-eap-14571/bin/kotlinc
Eugenio Marletti tweet media
English
1
0
1
0
NishFish
NishFish@nisrulz·
Can anyone point me to compiled binaries of KotlinNative compiler? The one people can use from commandline🧐 I am sure they used to be in release/assets but I can't find them anymore there. Not even mentioned in the readme 🤷‍♂️ cc @workingkills @hhariri github.com/JetBrains/kotl…
English
1
0
2
0
Eugenio Marletti รีทวีตแล้ว
Flutter
Flutter@FlutterDev·
Today, @materialdesign launched the Motion system, a set of transition patterns that helps users understand and navigate an app. More → goo.gle/2HIWJkS ☝️As a Flutter developer, you can use it immediately via the new `animations` package → pub.dev/packages/anima…
English
36
447
1.4K
0
Eugenio Marletti รีทวีตแล้ว
Kotlin by JetBrains
Kotlin by JetBrains@kotlin·
If you use the official kotlinx.serialization library, we have good news for you. Since v0.14.0, sealed-classes hierarchies are serialized automatically without using the @⁠Polymorphic annotation! #KotlinTips #sealed-classes" target="_blank" rel="nofollow noopener">github.com/Kotlin/kotlinx…
Kotlin by JetBrains tweet media
English
2
105
400
0
Eugenio Marletti รีทวีตแล้ว
Kotlin by JetBrains
Kotlin by JetBrains@kotlin·
Did you know? Properties declared as 'val' can be overridden as 'var', and property setters can be made less visible than their getters #KotlinTips #overriding-properties" target="_blank" rel="nofollow noopener">kotlinlang.org/docs/reference… #getters-and-setters" target="_blank" rel="nofollow noopener">kotlinlang.org/docs/reference…
Kotlin by JetBrains tweet media
English
43
170
623
0
Eugenio Marletti รีทวีตแล้ว
Hadi Hariri
Hadi Hariri@hhariri·
Did you know you can copy some code (Kotlin and/or Java), select a folder in Project View in @intellijidea, hit paste, and it will automatically create the file for you?
English
16
31
202
0
Eugenio Marletti รีทวีตแล้ว
Kotlin by JetBrains
Kotlin by JetBrains@kotlin·
Here's a secret: Kotlin multiline strings (also known as "raw" strings) can be used in a single line... Why would you do this? When escaped characters are confusing, like in this example: #KotlinTips #string-literals" target="_blank" rel="nofollow noopener">kotlinlang.org/docs/reference…
Kotlin by JetBrains tweet media
English
3
92
337
0