EMACS Classic Basic Movement

C-f move forward a character
C-b move backward a character
M-f move forward a word
M-b move backward a word
C-n move to the next line

Gemini Clarifying Directness

        
      I'm focusing on distilling the core message to deliver it with maximum clarity. I'm aiming for directness and concision, streamlining the communication process to eliminate extraneous layers. The goal is to provide a more immediate and easily understandable
      explanation.

      Unveiling Transparency

      I understand the desire for a more transparent, single-layer explanation. This entails shifting to a more conversational style. I'll reveal my thought process, providing context for each step, and clarifying why specific actions are taken. My goal is to offer a more insightful look into the decision-making. I will show you behind the curtain, instead of just the final result.

      Adapting the Approach

      I'm now fully committed to the "single layer" approach.  I'm focusing on weaving in my internal thought process, demonstrating the transition from thinking to action. My style will become more conversational, openly sharing the reasoning behind the command selection. The primary intent is to provide immediate, clear, and unvarnished access to the problem-solving journey. I will start by building the bridge from ffprobe to jq.

    

espanol/espanhol accute accent gnu linux code values in table

como poner acentos en teclado ingles

espanhol/spanish nombre/name GNU Composite
ñ Ctrl + Shift + u, f + 1, Space.
á Ctrl + Shift + u, e + 1, Space.
Á Ctrl + Shift + u, c + 1, Space.
é Ctrl + Shift + u, e + 9, Space.
É Ctrl + Shift + u, c + 9, Space.
í Ctrl + Shift + u, e + d, Space.
Í Ctrl + Shift + u, c + d, Space.
ó Ctrl + Shift + u, f + 3, Space.
Ó Ctrl + Shift + u, d + 3, Space.
ú Ctrl + Shift + u, f + a, Space.
Ú Ctrl + Shift + u, d + a, Space.
Open Question (¿) Ctrl + Shift + u, b + f, Space.
Close Question (?) Ctrl + Shift + u, 3 + f, Space.
Open Exclamation (!) Ctrl + Shift + u, a + 1, Space
Closing Exclamation (!) Ctrl + Shift + u, b + 7, Space
Open Curly Brace ({) Ctrl + Shift + u, 7 + b, Space.
Closing Curly Brace (}) Ctrl + Shift + u, 7 + d, Space.
Open Parenthesis (() Ctrl + Shift + u, 2 + 8, Space.
Close Parenthesis (() Ctrl + Shift + u, 2 + 8, Space.
Arrow Ctrl + Shift + u, 2192
Translingual IOTA (℩) Ctrl + Shift + u, 2129
Centro comercial Moctezuma Francisco Chang Mexico

git config credential.helper store

journalctl -fu uehara.service -o cat

git flow feature start MYFEATURE

git reset --hard

git revert commit hash

git remote -v

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

sudo lsof -i tcp:3000

sudo dpkg -i /path/to/deb/file

sudo apt-get install -f

HiveMQ 3.1.1. Borrar -XX: -UseSplitVerifier en hivemq.service

npm init

tsc [nombre archivo]

tsc --init

Crea un archivo tsconfig.json

tsconfig.json tiene una propiedad llamada outDir, donde caen todos los archivos de javascript creados.

tsc -w watch mode observa todos los cambios realizados en la carpeta que está observando

        npm install express
        npm install body-parser
        npm install cors
        npm install mongoose
        npm install express-fileupload
        npm install jsonwebtoken
        npm install bcrypt


        npm install express body-parser cors mongoose express-fileupload jsonwebtoken bcrypt
      

npm install @types/express -- save-dev

    NOTICE: Not enabling PHP 7.4 FPM by default.
    NOTICE: To enable PHP 7.4 FPM in Apache2 do:
    NOTICE: a2enmod proxy_fcgi setenvif
    NOTICE: a2enconf php7.4-fpm
    
    docker run -d --rm --network=javaspringvulny_JSV_Uno --ip=192.168.0.77 -p 3000:3000 bkimminich/juice-shop
    
    docker run --name basic-postgres-uno --rm -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=rikasneed -e PGDATA=/var/lib/postgresql/data/pgdata -v /tmp:/var/lib/postgresql/data -p 5432:5432 --network=javaspringvulny_JSV_Uno --ip=192.168.0.75  -it postgres:14.1-alpine
    

The Go Programming Language

get current working directory

      // Test_One indicates the current working directory
        func Test_One(t *testing.T) {
	      fmt.Println(os.Getwd())
      }
    

get path of program

      // Test_Two indicates the path for the executable that initialized the program
      func Test_Two(t *testing.T) {
	      fmt.Println(os.Executable())
      }
    

set a private git server to perform get inside a project

      go env -w GOPRIVATE=git.yourserver.sys/*