elect
06/10/2020, 3:23 PMrobstoll
06/16/2020, 9:08 AMSam Garfinkel
06/18/2020, 6:50 PMahmad abas
06/22/2020, 1:44 PMwebdev
and mobiledev
can give me a good tips on which one is easier and more future proof?
also im trying to compare between android development
and iOS development
too. I've been hearing doing `iOS`programming is far more beneficial and can generate more $ in long termursus
06/23/2020, 4:16 AMelect
06/23/2020, 11:06 AM\r\n
in Idea, only \n
gets pasted, is there a way to overcome this other than using a byte array? (long text for test)robstoll
06/23/2020, 7:33 PMidentity
lambda out of the box?Slackbot
06/26/2020, 1:35 PMuzias
06/27/2020, 2:53 AMursus
06/30/2020, 7:00 PMursus
06/30/2020, 7:55 PMd.medina
07/15/2020, 4:54 PMOrhan Tozan
07/17/2020, 1:11 PMHullaballoonatic
07/18/2020, 8:09 PMV
, the value I
, for which any other value A * I == A
, is know as the Identity of V
. (e.g. 1
)
what is the corresponding name for the value O
for which any other value A * O == O
? (e.g. 0
)ursus
07/18/2020, 8:49 PMMarc Knaup
07/21/2020, 1:06 PMinline class EmailAddress(val value: String)
for "<mailto:email@address.com|email@address.com>"
What is or should the combination of name + email address be called?
data class EmailRecipient(val address: EmailAddress, val name: String? = null)
?
EmailContact
? MailboxAddress
? EmailUser
? NamedEmailAddress
?
Got any idea or is there even any RFC definition for that?Gunslingor
07/25/2020, 2:38 PMRodrigo Quispe
07/28/2020, 3:08 PMferrugem
07/28/2020, 3:13 PMursus
07/29/2020, 9:22 PMinterface Scoped {
fun init() // NOT HERE
}
class AuthManager : Scoped {
override init() {
// WANT TO NAVIGATE HERE
}
}
authManager.init() <-- CTRL+B HERE
ursus
07/29/2020, 10:50 PMMarc Knaup
07/30/2020, 11:26 AM@IDontCareAboutJava
annotation that automatically solves all “platform declaration clashes” 😄poohbar
07/30/2020, 2:03 PMColton Idle
07/31/2020, 8:10 AMitnoles
07/31/2020, 5:23 PMrudolf.hladik
08/07/2020, 1:15 PMinterface Scope {
fun SomeObject.foo(): Bar = Bar()
}
// interface Scope is not under my control and I need to add extension function on another object so it would behave the same way like it would be in interface
// like
interface Scope {
fun SomeObject.foo(): Bar = Bar()
fun OtherObject.bar(): Foo = Foo()
}
groostav
08/17/2020, 5:20 AMhinst
08/17/2020, 8:37 PMbuild.gradle
and build.gradle.kts
hinst
08/17/2020, 8:39 PMbjonnh
08/18/2020, 3:50 PMbjonnh
08/18/2020, 3:50 PMMarc Knaup
08/21/2020, 11:28 AM