Skip to content

Instantly share code, notes, and snippets.

View nat-nat33's full-sized avatar

Natalie Ramirez nat-nat33

View GitHub Profile

Keybase proof

I hereby claim:

  • I am nat-nat33 on github.
  • I am nat_nat (https://keybase.io/nat_nat) on keybase.
  • I have a public key ASDd54sw7KRS0XqI3hmVorPWWq0ySP3Q-wo4D-G0-clb8Qo

To claim this, I am signing this object:

@nat-nat33
nat-nat33 / natalie_ramirez_resume.md
Last active November 14, 2019 19:48
Natalie Ramirez Resume

Natalie Ramirez

Honolulu, HI
Ph | (512) 844-9774
LinkedIn | nataliearamirez

Director of Technology & Innovation with expertise in diverse range of technologies within multiple industry settings. Well organized, results driven individual with proven ability to implement standards, procedures and processes that improve business functionality. Sound management skills, capable of leading and motivating individuals to maximize levels of productivity, while forming high-functioning cohesive team environments.

Core Qualifications

VS CODE
Stronger in Functional Programming
VIM
Python
Networking w/Python
Cyber Security with Python
Nginx
C#/Unity
VR/Unity
iOS/Unity
@nat-nat33
nat-nat33 / app.js
Created May 12, 2016 21:36
express/gulp/nodemon/browsersync
'use strict';
// simple express server
var express = require('express');
var app = express();
var router = express.Router();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendfile('./public/index.html');
@nat-nat33
nat-nat33 / README.md
Created March 28, 2016 19:18 — forked from jaywon/README.md
Better Buttons

###The Ask Good morning team! We have been asked to implement a better button for our marketing landing pages in the hopes it leads to more conversions. We currently do one off landing pages for inbound marketing to lead customers to our main brand site. The CEO is demanding that we increase our number of conversions this year and we want something a little more enticing to get users to click.

###Your Challenge Please mock up a simple app with a nice big blue button that when a user hovers over the button grows by 5px in all directions and changes from the dark blue we have on the site to...idk something..."warmer". We also are not sure of the color or sizes we will end up deciding on so the implementation needs to be flexible. Please mock up a prototype for us so we can sell more widgets!!

Any other styling is ok too since you guys are the web masters so impress us.

Thaaaannnks :D

@nat-nat33
nat-nat33 / cli.md
Created March 25, 2016 00:45 — forked from sgnl/cli.md
Setting up Mocha and Chai

Always 💯

  • use git status, ideally between each and every git command (especially when starting out).
  • Have the documentation up. Link to: MOCHA DOCS & CHAI DOCS API
  • Ask for help after 10 mins.

Set up your project to use Git and NPM

  1. Create or have a project ready then move into that project directory.

  2. Use Git

  • issue the command: $ git init to initialize git
@nat-nat33
nat-nat33 / palindromeNumberGenerator.md
Created March 17, 2016 19:05 — forked from sgnl/palindromeNumberGenerator.md
Palindromic Number Generator

Palindromic Number Generator

When given a positive number value, return a palindromic number and how many steps it took to reach that number.

Specs

Create a function named palindromeNumberGenerator which takes a Number value. Check if the number is a Palindromic Number, if it's not then add together the value and the value-reversed and check if the sum is a palindromic number, repeat until you reach a palindromic number value. Each time you sum up the values to get a new number to check, increase the step count by 1.

Input will always be a positive integer.

Example #1

Lets, start with palindromeNumberGenerator(87):

@nat-nat33
nat-nat33 / Ruh-Roh.md
Created March 11, 2016 19:06 — forked from jaywon/Ruh-Roh.md
Email Hell

###Email Hell

We just found out that there is a bug in production that our e-mail function was iterating errantly and sending duplicate e-mails to many users. We need to fix this quickly but we don't want to send out a mass apology letter to all of our users.

Our sysadmin gave us the SMTP logs and we need to process the logs and identify which users received multiple e-mails so that we can directly send them a follow up e-mail explaining the situation and offer super cool swag to keep them on as customers.

Also, the boss wants this done ASAP, we don't have time to do this manually...HAAALLLLPPP!

###The Fix

@nat-nat33
nat-nat33 / gist:7293dc755b2d97a8ab67
Created March 10, 2016 19:05 — forked from jaywon/gist:c76abc57dc33e1679c02
Circular String Brain Bender

###Good Morning Agents

Your challenge this morning is to create a function that implements an algorithm using the concepts we've covered this week.

###Challenge

  1. Write an algorithm that takes in 2 strings as parameters (source, find).
  2. Your function should return true if the string passed in as the find parameter is found in the source parameter if source were circular in nature. Meaning there is no end to the source string.
  3. Important: A match would be true if the word to find is partially at the end of the word and at the beginning in sequence.

Ex.

@nat-nat33
nat-nat33 / functions.md
Created January 6, 2016 05:45 — forked from jaywon/functions.md
Functions

Functions

Functions are great, they take data (input), do stuff with that data and then return it to you all shiny and fancy (output).

Below are some specifications for Functions to be built.

Declare Two Variables

  • a random Number value
  • b random Number value

We will be using both of these variables to pass as parameters to the following functions that we will write. Pay close attention to the other variable names you will create as they will become input to other functions.