Róbert Papp
Róbert Papp
Best demonstrated with an example: Imagine someone sends you a regex that contains `\d++` and you get this explanation:  > **`\d++` matches a digit (equal to [0-9])** > **++**...
```kotlin fun main() { doSomething() doSomeThing() } fun f(block: () -> Unit) { block() } fun doSomething() { f { println("doSomething") } } fun doSomeThing() { f { println("doSomeThing") }...
Idea[source](https://www.reddit.com/r/rust/comments/5penft/parallelizing_enjarify_in_go_and_rust/dcsgk7n/): ```kotlin class SomethingᐸTᐳ fun main() { SomethingᐸTᐳ() } ``` may need to add more red herrings, but this is already interesting: it compiles and executes! but what is T?
Late night brain-fart, could be fun. Inspiration: https://youtu.be/MYQWtNG2so8?t=1101 (took the section heading too literally) ```kotlin package by object by { val by: by by by } operator fun `by`.getValue(by: by,...
What will this print? ```kotlin fun main() { Fun().things() } data class Stuff( val s: String ) class Fun { private val stuff: Stuff = createStuff() private val x: String...
Need to uninstall and change permissions of `androidTest` apk, but I can't select that as only the `com.android.application`s' main APKs are shown in the selector. In this dialog there should...
Unexpected `${project.artifactId}/${project.version}` in url: ``` The following dependencies have later milestone versions: - org.neo4j:neo4j-cypher [3.3.6 -> 3.5.8] http://components.neo4j.org/${project.artifactId}/${project.version} - org.neo4j:neo4j-kernel [3.3.6 -> 3.5.7] http://components.neo4j.org/${project.artifactId}/${project.version} - org.neo4j.test:neo4j-harness [3.3.6 -> 3.5.7] http://components.neo4j.org/${project.artifactId}/${project.version}...
I'm trying to debug a `script: |` block, and I have to modify the script with `debug: true` to be able to do so even though there's [UI for it](https://docs.github.com/en/actions/managing-workflow-runs/re-running-workflows-and-jobs)...
**Describe the bug** debug: true does nothing. **To Reproduce** Steps to reproduce the behavior: 1. Normal run without debugging: https://github.com/TWiStErRob/github-actions-test/runs/6740560658 2. `debug: false`, all good 3. Re-ran with Enable debug...
Mockito Version: 2.22.0 Java: 1.7 (compiled with Android Studio / Gradle) Android Studio 3.1.4 Build #AI-173.4907809, built on July 23, 2018 JRE: 1.8.0_152-release-1024-b02 amd64 JVM: OpenJDK 64-Bit Server VM by...