Quantcast
Channel: Java mon amour
↧

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 Article


Docker 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 Article


Reverse 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 Article

Reverse 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 Article

Reverse 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 Article


ChatGPT 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 Article

Image may be NSFW.
Clik here to view.

Excellent 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 Article

Popular VSCode Extensions for React

https://www.syncfusion.com/blogs/post/7-vs-code-extensions-for-react-developers.aspx

View Article


Functions 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 Article

Swagger 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 Article

React 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 Article

Fun 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 Article


AI-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 Article

AI 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 Article


openapi-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 Article

springdoc-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 Article


Coursera 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 Article

ChaatGPT 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 Article

Image may be NSFW.
Clik here to view.

OpenAI API cookbook

Available from Packt https://www.packtpub.com/en-us/product/openai-api-cookbook-9781805121350?srsltid=AfmBOop4_tSXUIIh8QCxkveMIyopDU59kwcTbQfqEmDMBzTTLT_bZZyw

View Article

Dynatrace 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 Article


Splunk 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 Article


Image may be NSFW.
Clik here to view.

Life 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 Article

Image may be NSFW.
Clik here to view.

Spring Book 3 Recipes

  https://github.com/Apress/Deinum_Spring-Boot-3-Recipes.git  Really interesting book, no fluff.  

View Article

Image may be NSFW.
Clik here to view.

Cloud Native Spring in Action

 Nice book, it covers really a lot of topics, well worth reading.

View Article