Skip to content

Instantly share code, notes, and snippets.

View nardsqq's full-sized avatar
🚧
Transitioning to DevOps

Nards Paragas nardsqq

🚧
Transitioning to DevOps
View GitHub Profile
@nardsqq
nardsqq / tech_stack.md
Created June 12, 2022 21:55
Personal Tech Stack 2022

Personal Tech Stack 2022

These are the technologies that I'll invest my time to learn and try to get proficient with. Tools or technologies that I'm planning to learn during the remainder of the year is marked with *

Tools

  • Code Editor: VSCode
  • Terminal Editor: Vim
  • Note Taking: Obsidian
  • Public Note Sharing: GitHub Gist
  • Browser: DuckDuckGo
  • Command Interpreter: Zsh wrapped with Oh-My-Zsh configuration
@nardsqq
nardsqq / database.eg.yml
Created November 14, 2019 10:51
Local development database template file for Rails 6 + PostgreSQL stack.
# PostgreSQL. Versions 9.3 and up are supported.
#
# Install the pg driver:
# gem install pg
# On macOS with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On macOS with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
@nardsqq
nardsqq / add_path_manually.md
Last active March 16, 2019 07:51
Add $PATH of environment to Git Bash Manually

Add $PATH of environment to Git Bash Manually

  1. Open the bash window and you by default you're in the root directory
$pwd
  1. Change to user directory
$ cd ~
$ pwd
@nardsqq
nardsqq / settings.json
Last active October 25, 2023 02:48
VS Code Personal User Settings
{
// Workbench
"workbench.settings.editor": "json",
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "right",
// Editor
"editor.fontFamily": "Liberation Mono, Cascadia Code, Fira Code",
"editor.fontSize": 14,
"editor.fontWeight": "400",
@nardsqq
nardsqq / git.md
Last active February 5, 2020 06:32
A collection of helpful git commands when working in a team of developers

Git

A collection of helpful git commands when working in a team of developers

To check your repository's remote URL:
git config --get remote.origin.url

Renaming branches

Renaming a separate branch:
git branch -m

@nardsqq
nardsqq / .hyper
Last active December 24, 2018 05:33
Hyper Config
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',