jw
08/20/2020, 1:27 AMNikky
08/20/2020, 1:28 AMalec
08/20/2020, 1:44 AMNikky
08/20/2020, 1:47 AM<https://plugins.jetbrains.com/plugins/eap/8191>
for sqldelight? i hope that works
got snapshots to work, hopefully the SERIAL thing is fixed soon, then i can probably more more code away from jooq
edit: SERIAL
is partially fixed, it can be used now but it seems to refuse to omit it on insertsdimsuz
08/20/2020, 8:13 PMfun work(body: (String) -> Unit)
then whenever I type wor
, IntelliJ will auto-suggest only one completion option work { ... }
and readily insert it.
Does anyone know how can I (as the author of the library with work
function) prevent it from doing this for library users? I want work(...)
to be inserted instead.
Usecase: I have a set of "body"-functions available in the library, so I want the user to write work(predefinedBody)
. Currently they'd have to delete auto-inserted {}
first, not great.jw
08/21/2020, 12:03 AMjw
08/21/2020, 12:03 AMdimsuz
08/21/2020, 12:31 AMjw
08/21/2020, 12:36 AMignored: Nothing? = null
?dimsuz
08/21/2020, 8:46 AMsaket
08/21/2020, 10:35 PMalec
08/21/2020, 10:55 PMalec
08/21/2020, 10:55 PMandev
08/22/2020, 6:49 PMcreate table child
before create table parent
and because of that, at the runtime it throws java.sql.SQLException: Cannot add foreign key constraintNikky
08/22/2020, 8:44 PMincludeBuild
but normal compiling / running works fine, just specific tasks seem to fail, in this case tasks from
id("com.vanniktech.dependency.graph.generator")
how do i add the batik-ext jar like what was suggested in the issue ?harry.singh
08/22/2020, 11:09 PMJsonAdapter.fromJson()
method inside a suspend
method and IntelliJ is giving me a lint warning:
Inappropriate blocking method callIs it a valid warning? If it is, then how can I handle this warning?
jw
08/22/2020, 11:10 PMjw
08/22/2020, 11:11 PMjw
08/22/2020, 11:12 PMharry.singh
08/22/2020, 11:12 PMAre you passing a String or a stream?A stream. But it also gives me a warning on String too
harry.singh
08/22/2020, 11:13 PMjw
08/22/2020, 11:13 PMharry.singh
08/22/2020, 11:13 PMjw
08/22/2020, 11:14 PMharry.singh
08/22/2020, 11:15 PMrusshwolf
08/23/2020, 2:23 PMkotlin.js.compiler=both
to gradle.properties
or changing the js target declaration to js(BOTH)
, depending on your style preference.jw
08/23/2020, 2:24 PMjw
08/23/2020, 2:24 PMrusshwolf
08/23/2020, 2:25 PM