Intellij Java remote debug with SSH tunnel
This is the simplest explanation how to do it: https://arjon.es/2014/remote-debug-of-a-java-app-using-ssh-tunneling-without-opening-server-ports/ (it is a bit confusing, as is uses localhost for both...
View ArticleDocker container connecting to host service on Windows
docker run -d -p 80:80 --name webserver nginx docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES2733688156aa nginx "/docker-entrypoint.…" 14 seconds ago Up 13 seconds 0.0.0.0:80->80/tcp...
View ArticleReverse Proxy with nodejs
https://github.com/http-party/node-http-proxy npm install http-proxy --save node .\server.js var http = require('http'), httpProxy = require('http-proxy');//// Create your proxy server and set the...
View ArticleReverse Proxy with Spring Boot
https://github.com/vernetto/myreverseproxy/blob/master/src/main/java/org/pierre/myreverseproxy/CharonConfiguration.java  I really like the simplicity and power of this CHARON, a Spring Boot- based...
View ArticleReverse Proxy with Docker httpd container on Windows
 https://www.middlewareinventory.com/blog/docker-reverse-proxy-example/ I have followed these instructions for Windows and it works, the only change I had to do is to start the container with the...
View ArticleChatGPT in ESLint (I will soon lose my job, replaced by this little bastard...)
Question:Â Â please write a ESLint rule to flag as deprecated the usage of variable names like Button.size.NORMAL Answer: To write an ESLint rule to flag the usage of variable names like...
View ArticleExcellent ESLint tutorial
https://www.youtube.com/watch?v=veDP5ij_i8U&list=PL_euSNU_eLbeVd_eDmWzUpEmXizWQRmEm&index=8&ab_channel=LeelaWebDev Sure the indian accept is a bit strong, but also enjoyable to hear.
View ArticlePopular VSCode Extensions for React
https://www.syncfusion.com/blogs/post/7-vs-code-extensions-for-react-developers.aspx
View ArticleFunctions vs Components in React, and useState
useState example: import React, {useState} from 'react' export default function Counter({initialCount}) { const [count, setCount] = useState(initialCount) return ( <div><button onClick = {()...
View Article@react-oauth/google for React authentication in google
https://www.npmjs.com/package/@react-oauth/google Sample application https://github.com/MomenSherif/react-oauth
View ArticleSwagger 2.0 vs OpenAPI 3.0, conversion
https://swagger.io/docs/specification/2-0/basic-structure/ Swagger 2.0 specifications https://swagger.io/docs/specification/basic-structure/ OpenAPI 3.0 specifications https://editor.swagger.io/...
View ArticleReact menus
So far in React tutorials I have seen only tiny applications with a very simple menu system. Menus are simply hardcoded, maybe using React Router to simplify a bit the navigation. A real life...
View ArticleFun with jhipster
Precious video to get started: https://www.youtube.com/watch?v=uQqlO3IGpTU&ab_channel=MattRaible remember to set your postgres password in src/main/resources/config/application-dev.yml Then you can...
View ArticleAI-900 exam
https://youtu.be/edEfRpQSjXs excellent video with questions and answers (skip first 20 minutes) https://learn.microsoft.com/en-us/certifications/exams/ai-900/ official doc This also is watchable,...
View ArticleAI and Deep Learning courses
Someone deeply recommended me this Coursera course https://www.coursera.org/learn/neural-networks-deep-learning/ , for me it turned out to be quite disappointing, the lessons show lot of formulas with...
View Articleopenapi-generator-maven-plugin
The openapi-generator-maven-plugin is a plugin for the Apache Maven project management tool, which is used to build and manage projects written in Java and other languages. This plugin specifically...
View Articlespringdoc-openapi-maven-plugin
I will guide you to build a simple RESTful web service using Spring Boot, and then we will generate the OpenAPI 3.0 documentation using the springdoc-openapi-maven-plugin. Step 1: Setup Spring Boot...
View ArticleCoursera and verifying ID with Persona
It was a total nightmare being able to verify my Id with Coursera. Coursera will not issue a certificate unless you verify your Id. It turned out that Coursera/Persona doesn't recognize my Italian...
View ArticleChaatGPT Prompt Engineering course
https://learn.deeplearning.ai/courses/chatgpt-prompt-eng/ this course is really informative, and it comes with a Jupyter notepad to test your code...
View ArticleOpenAI API cookbook
Available from Packt https://www.packtpub.com/en-us/product/openai-api-cookbook-9781805121350?srsltid=AfmBOop4_tSXUIIh8QCxkveMIyopDU59kwcTbQfqEmDMBzTTLT_bZZyw
View ArticleDynatrace getting started
here a github repo with tutorial:  https://github.com/dynatrace-perfclinics/dynatrace-getting-started  and corresponding video (lot of blabla at the beginning)...
View ArticleSplunk getting started
here some valuable introductory videos:  https://www.youtube.com/watch?v=tMacaM1I1CI  here an excellent channel https://www.youtube.com/@splunk_ml/videos with a lot of topics analyzed in depth... no...
View ArticleLife 3.0: Being Human in the Age of Artificial Intelligence
Very savvy book about AI, worth reading even if it's from 2017Life 3.0: Being Human in the Age of Artificial Intelligence
View ArticleSpring Book 3 Recipes
  https://github.com/Apress/Deinum_Spring-Boot-3-Recipes.git  Really interesting book, no fluff. Â
View ArticleCloud Native Spring in Action
 Nice book, it covers really a lot of topics, well worth reading.
View Article