Skip to content

Instantly share code, notes, and snippets.

View neodevelop's full-sized avatar
🏠
Working from home

José Juan Reyes Zuñiga neodevelop

🏠
Working from home
View GitHub Profile
@neodevelop
neodevelop / vim-shortcuts.md
Created September 6, 2021 04:15 — forked from tuxfight3r/vim-shortcuts.md
VIM SHORTCUTS

VIM KEYBOARD SHORTCUTS

MOVEMENT

h        -   Move left
j        -   Move down
k        -   Move up
l        -   Move right
$        -   Move to end of line
0        -   Move to beginning of line (including whitespace)
@neodevelop
neodevelop / fish-agent.sh
Created December 5, 2023 23:13 — forked from josh-padnick/fish-agent.sh
Run ssh-agent via fish shell
#!/bin/bash
#
# Convert ssh-agent output to fish shell
#
eval "$(ssh-agent)" >/dev/null
echo "set SSH_AUTH_SOCK \"$SSH_AUTH_SOCK\"; export SSH_AUTH_SOCK"
echo "set SSH_AGENT_PID \"$SSH_AGENT_PID\"; export SSH_AGENT_PID"
@neodevelop
neodevelop / descubre_elixir_y_phoenix.livemd
Created October 22, 2025 18:11
🧠 Descubre por qué tantos desarrolladores se están enamorando de Elixir y Phoenix

🧠 Descubre por qué tantos desarrolladores se están enamorando de Elixir y Phoenix

Mix.install([
  {:kino, "~> 0.13"},
  {:phoenix, "~> 1.7"},
  {:phoenix_live_view, "~> 0.20"},
  {:plug_cowboy, "~> 2.7"}
@neodevelop
neodevelop / emit_log.exs
Created December 13, 2025 22:49 — forked from jeffweiss/emit_log.exs
RabbitMQ Tutorial - Elixir examples
{:ok, connection} = AMQP.Connection.open
{:ok, channel} = AMQP.Channel.open(connection)
message = Enum.join(System.argv, " ") || "Hello World!"
AMQP.Exchange.declare(channel, "logs", :fanout)
AMQP.Basic.publish(channel, "logs", "", message)
IO.puts " [x] Sent '#{message}'"