All collected Discord error codes, categorized by type. See on Userdoccers.
| Code | Message |
|---|---|
| 10001 | Unknown Account |
| 10002 | Unknown Application |
| 10003 | Unknown Channel |
| 10004 | Unknown Guild |
| package cz.datalite.tsm.process.camunda.boot3 | |
| import jakarta.persistence.EntityManager | |
| import jakarta.persistence.EntityManagerFactory | |
| import jakarta.persistence.PersistenceException | |
| import jakarta.persistence.TransactionRequiredException | |
| import org.camunda.bpm.engine.ProcessEngine | |
| import org.camunda.bpm.engine.ProcessEngineException | |
| import org.camunda.bpm.engine.impl.cfg.* | |
| import org.camunda.bpm.engine.impl.context.Context |
All collected Discord error codes, categorized by type. See on Userdoccers.
| Code | Message |
|---|---|
| 10001 | Unknown Account |
| 10002 | Unknown Application |
| 10003 | Unknown Channel |
| 10004 | Unknown Guild |
| --- PSQL queries which also duplicated from https://github.com/anvk/AwesomePSQLList/blob/master/README.md | |
| --- some of them taken from https://www.slideshare.net/alexeylesovsky/deep-dive-into-postgresql-statistics-54594192 | |
| -- I'm not an expert in PSQL. Just a developer who is trying to accumulate useful stat queries which could potentially explain problems in your Postgres DB. | |
| ------------ | |
| -- Basics -- | |
| ------------ | |
| -- Get indexes of tables |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.function.Consumer; | |
| import reactor.core.publisher.Flux; | |
| import reactor.core.publisher.FluxSink; | |
| /** | |
| * Created by ton on 10/11/16. | |
| */ |
| import java.io.IOException; | |
| import java.net.URISyntaxException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.security.KeyFactory; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.PrivateKey; | |
| import java.security.interfaces.RSAPublicKey; | |
| import java.security.spec.InvalidKeySpecException; | |
| import java.security.spec.PKCS8EncodedKeySpec; |
http://stackoverflow.com/questions/24380159/corebluetooth-and-wifi-interference
http://lists.apple.com/archives/bluetooth-dev/2013/Aug/msg00023.html
This is a well known issue, and it has a solution that is confirmed to work for the Mac side.
sudo defaults write /Library/Preferences/com.apple.airport.bt.plist bluetoothCoexMgmt Hybrid
After you run this script, the issue will go away and BT connections will remain stable.
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <databaseChangeLog | |
| xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | |
| xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd | |
| http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd"> | |
| </databaseChangeLog> |