MrPowerGamerBR

Results 187 comments of MrPowerGamerBR

@Delthas this issue is really strange, here is another log https://gist.github.com/MrPowerGamerBR/24a8f42f04294689c9a17cdd37320d8b Why it wouldn't work on my dedicated machine? (dedicated machine from OVH), it seems it fails to authenticate, but...

@Delthas dude, I'm facepalming so hard right now. Like, I think I'm retarded... ...I was compiling with my local JavaSkype copy... after changing the pom.xml to compile with the latest...

@Delthas uhhh... now I successfully reproduced it on my local machine with my main account (my bot now works on my dedicated and on my local machine for SOME REASON,...

@Delthas I'm not using Skype anymore (migrated to Discord) so... yeah, I can't test this issue, sorry!

@Delthas yeah, I got fed up with Skype hanging randomly when opening a huge group chat... Also because Discord allows you to create very powerful bots, with Skype... Not so...

There was a code on how to login in a Microsoft account at https://github.com/samczsun/Skype4J/issues/128 , but the message was deleted (and the user account doesn't exist anymore) Maybe @Manevolent still...

Something that my friend pointed out recently: On his Discord server, he can paste the localized commands without needing to rewrite to use the non-localized label, and I tested it...

My own workaround for this issue, mimicking Exposed's `transaction` behavior.: ```kotlin suspend fun newSuspendedTransaction(repetitions: Int = 5, statement: org.jetbrains.exposed.sql.Transaction.() -> T): T { var lastException: Exception? = null for (i...

> @MrPowerGamerBR Why do you just catch an ExposedSQLException rather than all types of exceptions? Because if any other exception happened during the transaction, probably it is an issue in...