Go Golang and Google reCaptcha v3 OverviewGoogle’s reCAPTCHA is one of the tool we can use to stop malicious internet bots from abusing our web applications. It comes in two versions, reCAPTCHA v2 and v3.
VoiceBot - Discord Veröffentlichung Dieser Bot wurde speziell für die Verwaltung von Sprachkanälen entwickelt. Der VoiceBot erstellt automatisch eine neue Kategorie für die verwalteten Sprachkanäle und einen Sprachkanal zur Auslösung des "Erstellungsprozesses". Wenn ein
other-stuff Discord installation errors / problems Discord auf dem Rechner deinstallieren über Systemsteuerung -> Software/Programm entfernen.Task-Manager öffnen ob Discord als Prozess noch läuft ggf. Prozesse manuell beenden."Ausführen"-Fenster mit Windows-Taste + R öffnen
other-stuff Working with lists Everyone knows that kind of lists full of our daily and weekly tasks, sometimes also monthly-tasks and recurring tasks. I think most people are thinking about something like "Wunderlist" or
other-stuff Formatting Currency JavaScript This function is really often in use and many times in the requirements. So let's save it here like an entry in a knowledge base. If something goes wrong with
Go Getting started with Go Installing Go on your system, setting up environment variables, understanding root / workspace directories. InstallationA language typically consists of the language specifications (syntax), standard library, a runtime environment, and a compiler.
other-stuff Microsoft Edge - will it blend?! Chrome has won the last years on desktop. Is it really helpful to develop the own browser based on the Chrome-Browser? Why not using just Chrome? Maybe it's a little
Life & Journeys The new office at home I thought everything would be easier if I would have the space for it... But how i should start and what is really important to feel good and also to
jQuery Concrete 5 page shows json after saving the page This behaviour is really annoying, especially if you just want to edit some text on your concrete5 page. But how can you solve this problem? The problem in your theme
Browser: brave 'brave' is hopefully changing the way how we are able to find our information in web. The browser helps you to keep focus on content and not getting crazy cause
google cloud Start developing with Firebase and the Spark-Plan Sometimes you not only need the correct tool for your job to make things done. Start developing with little applications without producing unnecessary costs is also essential to keep everything
npm The dependency hell - npm vulnerability in `tar` Sometimes it really hurts to work with dependencies which are loaded by other dependencies. One of this time-consuming tasks can be to fix npm audits. Before you break the internet
Vue.js Create your first Vue.js application Creating a vue.js application blank project is pretty easy. Using the "vue cli" will help you to setup the basic environment. First of all, to install vue/cli we
google Google Cloud Platform My first experience with GCP (Google Cloud Platform). After testing Microsoft Azure and AWS I was still looking for another good looking and easy to handle solution for my different
google cloud GCP - app.yaml Example of app.yaml for a spring boot environment: service: backend runtime: java11 env: standard env_variables: SPRING_PROFILES_ACTIVE: "gcp,backend" handlers: - url: /.* script: this field
npm NPM WARN npm does not support Node.js v.10.15.2 Your current installed version of npm is not compatible with the installed node. Easy solution to fix it: Mac: sudo npm uninstall -g npmWindows: npm uninstall -g npmNow you can
spring Spring Boot - SSLException: closing inbound before receiving peer's close_notify Check the version from your spring-boot-starter-parent dependency. If you are using an older version than 2.1.5.RELEASE, its possible that you are using the embedded mysql-connector which is
java Spring Boot, JWT and Axios NEVER forget: axios.defaults.withCredentials = true;Or you will start crying after hours of analyzing why the communication to your backend-service still is not allowed.
npm NPM & NPM CI - optimizing the CI npm install Installs a package and all its dependencies. Dependencies are driven by npm-shrinkwrap.json and package-lock.json (in that order). without arguments: installs dependencies of a local module. Can