DHDiego hernandezindiegocode.hashnode.dev·Mar 10, 2025 · 2 min readTired of git add . ?Using Git is a big part of every developer's workflow whether they use a GUI or the terminal. Wouldn't making things a little faster make it a little more fun? `git commit -am`: A Quick Time-Saver One simple but effective shortcut is the git commit -...00
DHDiego hernandezindiegocode.hashnode.dev·Mar 20, 2024 · 4 min readReddit CLI Built With GolangOverview: You will lean how to get json data form the reddit api and open the Reddit post in your default web browser. Prerequisites: Go run time To download the go runtime visit this link. Getting started Start by creating a new directory for your...00
DHDiego hernandezindiegocode.hashnode.dev·Feb 7, 2024 · 3 min readHow to Host a Static Website With Github PagesThere are two ways to host a website on github one way is to give a special name for your github repository another way is to create a branch in your github repo named gh-pages. First I will show you how host your website by giving your repository a ...00
DHDiego hernandezindiegocode.hashnode.dev·Dec 26, 2023 · 3 min readWhat are Hash Tables?Otherwise known as hash map, hash, and dictionary. A Hash Table is a data structure that organizes data for fast lookups; finding a value for a given key is fast with hash tables on average. A hash table is much like an array, except that it lets you...00
DHDiego hernandezindiegocode.hashnode.dev·Dec 15, 2023 · 5 min readChatGPT CLI with NodeJSDependencies: NodeJS (node can be installed with NVM this must be done before continuing any further) openai ( Use NPM to install openai) dotenv (Use NPM) Open up a new folder for development, I called mine gpt-cli In your folder Run npm init -...00