Pas de Code – Telegram
Pas de Code
76 subscribers
106 photos
1 file
402 links
What I cannot create, I do not understand.

DM: @alexey_mileev
Original channel in RU: @devballet
Twitter: twitter.com/pasdecode_
Download Telegram
A nice post on Unicode related Github vulnerability. This thing allowed an attacker to receive a reset password link for a Github account. That’s kinda fun!

#cybersec #unicode #vulnerability
@Harmonizr recommended a great talk by Jonathan Blow - game designer of Braid and The Witness. The main point is that it’s easy to lose the knowledge, and it’s happening right now in the software industry.

#talk #language #gamedev
@etolstoy shared with us Kotlin Census 2019 survey. It’ll take ~20 minutes of your time. Good luck! :)

#survey #kotlin
Looks like something dedicated to initialization of different components / libraries is coming to AndroidX.

#androidx #library
Android 11 Developer Preview is now available. What a surprise! :)
The most interesting updates are dedicated section for conversations in the notifications shade and single session permissions. The link sent by @Remych04

#google #android #preview
Looks like we'll be able to handle keyboard visibility via Insets more casually. And a bit more on that on Twitter.

#android #insets #keyboard
Good one: this document describes which languages Fuchsia supports. Short summary:
- C - platform , end-developers
- C++ - platform , end-developers
- Dart - platform , end-developers
- Rust - platform , end-developers
- Go - platform , end-developers
- Python - platform , end-developers
 
#fuchsia #google #language
@MightySeal shared an interesting link: looks like a much more convenient and typesafe wrapper for the whole startActivityForResult thing is coming soon.
 
#activity #google
Check out this JEP. They propose to enhance instanceof so it can be used like this:
if (obj instanceof String s) {
    // can use s here
} else {
    // can't use s here
}

 
#java #jep #instanceof
In this strange post author explores what happens when you try to close your app via System.exit(). It's not clear why would anyone want to do this, but it's always fun to know.
 
#system #jvm #activity