Ubuntu 22.04 - Complete Guide
Version 1.0 | October 2025
Author: Cynthia Vázquez
Status: Production Ready
rails new first to generate all of the boilerplate files necessary.rails new .--css tailwind as an option on the rails new call to do this automatically.rails new will do this automatically but take care if you write any custom SQL that it is SQLite compatible.rails new myapp --devcontainer but only do this if requested directly.| # Window Navigation | |
| Mod j / k : Focus next / prev window | |
| Mod Enter : Move to master | |
| Mod Tab : Prev tag | |
| # Window Management | |
| Mod h / l : Shrink / Grow master | |
| Mod Shift c : Close window | |
| Mod Shift Space : Toggle float | |
| Mod Shift f : Fullscreen |
| title | Common Webpage Layouts With TailwindCSS Using CSS Grid & Flex box (w/ Code Examples) | |||||
|---|---|---|---|---|---|---|
| tags |
|
| package com.example.irfan.rest; | |
| import org.springframework.boot.actuate.health.HealthEndpoint; | |
| import org.springframework.http.MediaType; | |
| import org.springframework.http.ResponseEntity; | |
| import org.springframework.web.bind.annotation.GetMapping; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| import org.springframework.web.bind.annotation.RestController; | |
| @RestController |
| const http = require('http'); | |
| const fs = require('fs'); | |
| const url = require('url'); | |
| // Simulated user data | |
| const users = [ | |
| { id: 1, username: 'john_doe', password: 'password123' }, | |
| { id: 2, username: 'jane_smith', password: 'example456' } | |
| ]; |
| # proxy to vnc port | |
| ngrok tcp --region=us --remote-addr=1.tcp.ngrok.io:99999 5900 | |
| # or via Docker. Tunnel ports are random and will be specific to your tunnel | |
| docker run -it -e NGROK_AUTHTOKEN=1232121212 ngrok/ngrok tcp 5900 --region=us --remote-addr=7.tcp.ngrok.io:99999 |
In this series of pages, I will discuss project reactor and reactive programming from basic concepts to reactor internal implementation details. This discussion is based on the official reference documentation, the java-doc, talks by maintainers of reactor e.g. at the spring I/O and other distributed material, and should summarise and connect all this information. It should complement the official reference documentation and java-doc. Although the name says "from zero to hero", basic knowledge about the library is advised to fully benefit from it.
As a short disclaimer, I am a professional software engineer with some years of experience in using reactor, but not a maintainer or creator of the library. Information and knowledge in this post are based on the official documentation and talks, but I cannot exclude misconceptions on my side.