Ken Yee

Results 107 comments of Ken Yee

> a request for userInfo is made (which will result in a token request) simultaneously with the explicit request for tokens (auth flow) Yep, I think that's why that happens...the...

Thanks...that let me remove useOktaAuthState(useAuthUser()) from Home.tsx :-) so for completeness, this now what App.tsx looks like: ``` const oktaAuth = new OktaAuth(oktaAuthConfig); const App = () => { const...

nvm...this might be a documentation issue...looks like we can create separate a new gradle module for each aggregation :-)

Sorry..should have mentioned: no query cache, no transaction. Entity name is correct. Small snippet of entity declaration: ``` @DatabaseTable(tableName = ActivityTable.TABLE_NAME) @Root(strict = false) public class ActivityItem { @DatabaseField(columnName =...

Right, but it gets a cursor back and the values...I was wondering if it could also log the values for the rows it read before it converts the data into...

That tool window is available in IntelliJ so the JBang plugin is installed (0.24.1 if that matters)

Tried InteliJ CE 2023.3.3 (in case my version of Ultimate is the issue), then 2022.1.4, 2021.2.4. The new project template shows up in 2021.2.4 (JBang template in new project dialog)...

I uninstalled jbang from sdkman and used homebrew instead and it's in a different location: ``` % which jbang /opt/homebrew/bin/jbang % ls ~/.jbang/ cache implicit-catalog.json ```

> Maybe we should provide some proper way to do just that while keeping the Delay implementation, something like class CoroutineDispatcherWrapper(wrapped: CoroutineDispatcher): CoroutineDispatcher(), Delay. FWIW, I think this would be...