React i18n translate in route

I installed the package with i18n translation, connected it, the translation works fine, but I have a problem with the translation of the menu. The fact is that when you change the language, the site menu remains in the old language, but if you update the site page, the menu is translated. I need to … Read more

Apache Kafka Neo4j Connector issues

I set up kafka neo4j sink connector the following way: Created /tmp/plugins, downloaded neo4j-kafka-connect-neo4j-5.0.2.zip and unzip into plugins folder i.e. Modified connect-standalone.properties, added plugin.path=/tmp/plugins Created connect-neo4j-sink.properties in config with the following topics=my-events connector.class=streams.kafka.connect.sink.Neo4jSinkConnector key.converter=org.apache.kafka.connect.json.JsonConverter key.converter.schemas.enable=false value.converter=org.apache.kafka.connect.json.JsonConverter errors.retry.timeout=-1 errors.retry.delay.max.ms=1000 errors.tolerance=all errors.log.enable=true errors.log.include.messages=true neo4j.server.uri=bolt://neo4j:7687 neo4j.authentication.basic.username=neo4j neo4j.authentication.basic.password=neo4j neo4j.encryption.enabled=false neo4j.topic.cypher.my-topic=MERGE (p:Person{name: event.name, surname: event.surname}) MERGE (f:Family{name: event.surname}) MERGE (p)-[:BELONGS_TO]->(f)“` … Read more

can you help me set up Firebase with Android Studio?

I am new to Android Studio and Firebase. I am trying to build a test app linked to my Firebase database. I followed all the instructions. I copy-paste this in the main Java activity in the oncreate method. // Write a message to the database FirebaseDatabase database = FirebaseDatabase.getInstance(); DatabaseReference myRef = database.getReference(“message”); myRef.setValue(“Hello, World!”); … Read more

TypeError: DatabaseWrapper.display_name() takes 0 positional arguments but 1 was given

I am getting the following error when running “python manage.py migrate” in cpanel terminal. I am using mysql for database. The library that I am using is mysql-connector-python. TypeError: DatabaseWrapper.display_name() takes 0 positional arguments but 1 was given The following are the settings of my settings file: DATABASES = { “default”: { “ENGINE”: “mysql.connector.django”, “NAME”: … Read more