Skip to content

Instantly share code, notes, and snippets.

View aortiz49's full-sized avatar
💭
Coding 😎

Andy aortiz49

💭
Coding 😎
View GitHub Profile
@aortiz49
aortiz49 / teach-app-users.md
Last active July 1, 2024 20:13
Users with write privileges
@aortiz49
aortiz49 / main.rb
Created January 21, 2024 04:43
Homework #01
puts "Please enter your first name: "
first_name = gets.chomp
puts "Please enter your last name: "
last_name = gets.chomp
full_name = "#{first_name} #{last_name}"
puts "Your full name is #{full_name}"
puts "Your full name reversed is #{full_name.reverse}"
puts "Your name has #{first_name.length + last_name.length} characters in it"
@aortiz49
aortiz49 / gist:2d5fd0eaf5e62e1aa96985aaf2511d69
Last active June 30, 2023 16:59
Program Assignment Affected Users
We’re excited to see you start your professional English journey! Take the Slang General English test to get a detailed grasp at your skills:
@aortiz49
aortiz49 / settings.json
Created April 5, 2023 16:46
VSCode Ruby format on save
{
"editor.tabSize": 2,
// Time (ms) to wait after keypress before running enabled linters. Ensures
// linters are only run when typing has finished and not for every keypress
"ruby.lintDebounceTime": 500,
// Basic settings: turn linter(s) on
"ruby.lint": {
"reek": true,
"rubocop": true,
"ruby": true, //Runs ruby -wc
https://software.download.prss.microsoft.com/dbazure/Win11_22H2_English_x64v1.iso?t=352d501c-0302-426f-99ee-add2139dc05b&e=1675277042&h=eb4429433568b3007b16c59de7281290792dd055f9cf10e58fec693d3e3437e8
@aortiz49
aortiz49 / aws_profile_setup.sh
Created January 25, 2023 16:22
Script to add AWS profiles for CLI
#!/bin/zsh
# set up aws staging profile
aws configure set aws_access_key_id --profile aortiz_staging $AWS_ACCESS_KEY_ID_STAGING
aws configure set aws_secret_access_key --profile aortiz_staging $AWS_SECRET_ACCESS_KEY_STAGING
aws configure set region --profile aortiz_staging $AWS_DEFAULT_REGION
aws configure set output --profile aortiz_staging $AWS_DEFAULT_OUTPUT
echo -e "\033[38;5;228mAWS \033[38;5;212mstaging\033[38;5;255m profile created."
echo -e "\033[38;5;81m------------------------------------\033[38;5;255m\n"
aws configure list --profile aortiz_staging
@aortiz49
aortiz49 / keybase.md
Created November 28, 2020 01:49
Keybase Github

Keybase proof

I hereby claim:

  • I am aortiz49 on github.
  • I am andyortiz49 (https://keybase.io/andyortiz49) on keybase.
  • I have a public key whose fingerprint is F6FF 05EB 274F 90C4 F663 855F 4140 96D2 0525 CEBB

To claim this, I am signing this object:

/*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* University of the Andes
* Department of Systems Engineering
* Licensed under Academic Free License version 2.1
* Lab 1: Dynamic Array
* Author: Andy Ortiz
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* University of the Andes
* Department of Systems Engineering
* Licensed under Academic Free License version 2.1
* Lab 1: Dynamic Array
* Author: Andy Ortiz
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/