Skip to content

Instantly share code, notes, and snippets.

View rromanv's full-sized avatar

Rodolfo Román rromanv

View GitHub Profile
@rromanv
rromanv / .zsh_plugins.txt
Last active June 24, 2023 00:05
New ZSH Conf
# Jump to a common used Folder https://github.com/rupa/z/
rupa/z
# https://github.com/zsh-users/zsh-completions
zsh-users/zsh-completions
# Oh My Zsh Library folder to use their plugins
ohmyzsh/ohmyzsh path:lib
# prompts:

Frontend Server Setup and Deployment

Create Server

Digital Ocean, Welcome to the developer cloud. They make it simple to launch in the cloud and scale up as you grow—whether you’re running one virtual machine or ten thousand.

  1. Go to Digital Ocean with the previus link and create an account or Click this link for a $100 credit for 60 days (pretty much two months free)
  2. Create a $6 Droptlet with Ubuntu 22.04, selecting a temporary password option.
  3. Copy the IP Address when the server is created.
  4. Login to the server with Putty on Windows, or SSH with Powershell, or ssh command on mac
@rromanv
rromanv / starship.toml
Created January 28, 2022 22:33 — forked from ryo-ARAKI/starship.toml
Starship configuration file
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "🔌"
discharging_symbol = "⚡"
[[battery.display]]
threshold = 30
style = "bold red"
@rromanv
rromanv / ._ Node.js Project with ES6 + Babel 7 + ESLint + Airbnb + Prettier.md
Last active February 14, 2024 00:44 — forked from vukhanhtruong/._README.md
Setup Javascript / Nodejs Project with ES6 + Babel 7 + ESLint + Airbnb + Prettier

Project Setup

Create a directory and run the following command.

npm init 

For this tutorial, I will be adding an index.js file to the src folder, and this will be our entry point. Our file directory should look like this.

// 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: 'canary',