Nothing here yet.
I am a driven individual with the ability to adapt to any situation and proven potential to grow self and others.
Dec 13, 2024 · 1 min read · /** * @param {string} b * @returns {string} */ const btoa = (b) => { let s = ''; const bytes = new Uint8Array(b.split('').map(x => x.charCodeAt(0))); const ALPHABET_TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567...
Join discussionDec 13, 2024 · 1 min read · tmux -V &> /dev/null if [[ $? -eq 0 ]]; then function clear_tmux_scrollback_buffer() { tmux clear-history } zle -N clear_tmux_scrollback_buffer bindkey "^[^L" clear_tmux_scrollback_buffer fi https://github.com/fuadop/zsh-conf...
Join discussionJan 1, 2023 · 5 min read · Golang is not purely an object-oriented programming language, but it has features that make OOP possible.In this article, we will look at OOP in Golang by building an auto-shop project. The project is described in this document: https://docs.google.c...
Join discussion