Skip to content

Instantly share code, notes, and snippets.

View alex289's full-sized avatar
💜
I’m just here for the vibes, man

Alex alex289

💜
I’m just here for the vibes, man
View GitHub Profile
@alex289
alex289 / repos.json
Last active September 24, 2022 10:16
Repo fallback data
[{"id":537593015,"node_id":"R_kgDOIAsEtw","name":"link-in-bio","full_name":"alex289/link-in-bio","private":false,"owner":{"login":"alex289","id":38790209,"node_id":"MDQ6VXNlcjM4NzkwMjA5","avatar_url":"https://avatars.githubusercontent.com/u/38790209?v=4","gravatar_id":"","url":"https://api.github.com/users/alex289","html_url":"https://github.com/alex289","followers_url":"https://api.github.com/users/alex289/followers","following_url":"https://api.github.com/users/alex289/following{/other_user}","gists_url":"https://api.github.com/users/alex289/gists{/gist_id}","starred_url":"https://api.github.com/users/alex289/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alex289/subscriptions","organizations_url":"https://api.github.com/users/alex289/orgs","repos_url":"https://api.github.com/users/alex289/repos","events_url":"https://api.github.com/users/alex289/events{/privacy}","received_events_url":"https://api.github.com/users/alex289/received_events","type":"User","site_admin":false},"html_u
@alex289
alex289 / Dockerfile
Created January 14, 2024 12:10
Dockerfile to setup Archlinux in Docker including some tools
FROM archlinux/archlinux:base-devel
RUN pacman -Syu --noconfirm && \
pacman -S --noconfirm git bat exa nodejs tmux neofetch neovim atuin zoxide npm
RUN echo 'eval "$(zoxide init bash)"' >> /etc/skel/.bashrc && \
echo 'eval "$(atuin init bash --disable-up-arrow --disable-ctrl-r)"' >> /etc/skel/.bashrc
RUN git clone --depth 1 https://github.com/AstroNvim/AstroNvim ~/.config/nvim
RUN git clone https://github.com/alex289/astronvim_config.git ~/.config/nvim/lua/user
@alex289
alex289 / index.js
Last active February 7, 2024 14:36
Little cli game to learn the greek alphabet
const readline = require("readline");
const greekAlphabet = {
Α: "Alpha",
Β: "Beta",
Γ: "Gamma",
Δ: "Delta",
Ε: "Epsilon",
Ζ: "Zeta",
Η: "Eta",