Skip to content

Instantly share code, notes, and snippets.

View Vitor0liveira's full-sized avatar
💭
🎯 Determined

Vitor Oliveira Vitor0liveira

💭
🎯 Determined
View GitHub Profile
@will-fong
will-fong / .Oracle Live SQL.md
Last active June 16, 2023 15:52
Oracle Live SQL

SQL Exercises

Databases for Developers

  • Analytic Functions - Databases for Developers.sql
  • Creating Tables: Databases for Developers.sql
  • Introduction to SQL.sql
  • Subqueries - Databases for Developers.sql
@marcoandre1
marcoandre1 / SSH-configuration-github-gitlab.md
Last active June 10, 2024 04:03
Managing SSH keys for Github and Gitlab

Managing SSH keys for Github and Gitlab

NOTICE: This guide will help you set ssh keys for GitHub and GitLab. However, this is not going to change your commit user.name or user.email. If you need to change those for specific repositories, just run the following commands while in your repository:

git config user.name "Your Name Here"
git config user.email your@email.com

For more info, see this answer. Also, keep in mind this only changes the .git folder inside your repository which never gets added/committed/pushed/uploaded.

I recently had to manage two ssh keys (one for Github and one for Gitlab). I did some research to find the best solution. I am justing putting the pieces together here.

@mdang
mdang / RAILS_CHEATSHEET.md
Last active June 14, 2024 13:33
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before