Posts by Gustavo Oliveira • 48 points
4 posts
-
1
votes2
answers248
viewsA: How to return values of a daughter Activity in Kotlin
the class Foo must, in addition to creating the Intent, have a reference constant for the startActivityForResult function call: val intent = Intent(this, Bar::class.java)…
-
0
votes1
answer75
viewsQ: Custom function for the Sorted function in python 3.x
In python 2.x I can pass a custom function to Sorted function, how to do this in python 3.x? Basically convert the code below def numeric_compare(x, y): return x - y print(sorted([5, 2, 4, 1, 3],…
-
0
votes4
answers971
viewsA: Select between dates in Mysql
Have you tried using the CURDATE() + INTERVAL 90 DAY?
mysqlanswered Gustavo Oliveira 48 -
1
votes1
answer649
viewsQ: How to place the mouse cursor in a specific position of a text field?
I’m trying to format a field like entry gtk I’m using for date entry and wanted to add the character / in certain positions confirm the user will typing.. And the only thing missing is positioning…