Skip to content

Instantly share code, notes, and snippets.

View navio's full-sized avatar
🎯
Focusing

Alberto Navarro navio

🎯
Focusing
View GitHub Profile
@navio
navio / LarizaStewartResume.md
Created April 18, 2023 19:21
Lariza Stewart Resume

Lariza Stewart

Email: [email protected]
Phone: (956) 607 9957

Summary

Seasoned Technical Director with over a decade of experience in the railway industry. Demonstrated expertise in the software development life cycle, combined with exceptional communication skills. Adept at leading diverse technical teams and fostering cross-departmental collaboration. Highly proficient in large-scale project management and delivery. Possesses robust financial acumen, particularly in crafting intricate proposals. Recognized for effectively addressing complex challenges, enhancing customer satisfaction, and driving operational advancements in fast-paced environments.

Experience

ENSCO, Inc. — Springfield, VA

@navio
navio / LarizaStewartResume.md
Last active April 18, 2023 19:13
Lariza Stewart

Lariza Stewart

Email: [email protected]
Phone: (956) 607 9957

Summary

Technical Director with over ten years of experience in the railroad industry. Acute understanding of software development life cycle. Outstanding communication skills. Extensive experience leading highly technical teams and fostering interdepartmental cooperation. Proven record of large project management and delivery. Comprehensive financial literacy with an emphasis on complex proposal writing. Excellent reputation for resolving challenging problems, improving customer satisfaction, and driving operational improvements in a fast-paced environment.

Experience

ENSCO, Inc. — Springfield, VA

@navio
navio / create-lazyman.js
Created February 10, 2022 03:16
130 create-lazyman
// https://bigfrontend.dev/problem/create-lazyman
// interface Laziness {
// sleep: (time: number) => Laziness
// sleepFirst: (time: number) => Laziness
// eat: (food: string) => Laziness
// }
/**
* @param {string} name
* @param {(log: string) => void} logFn
@navio
navio / kebyase.md
Created May 3, 2021 14:54
Keybase.Md

Keybase proof

I hereby claim:

  • I am navio on github.
  • I am alnavarro (https://keybase.io/alnavarro) on keybase.
  • I have a public key whose fingerprint is 9195 DEF5 268E 2EF4 D6A1 8E26 CA4F 3F62 2377 9474

To claim this, I am signing this object:

@navio
navio / ProxyEngine.js
Last active August 10, 2020 15:23
Browser Proxy - Overwriting Fetch / XMLHTTPRequest
function ProxyEngine(initialRules = []) {
const storedRules = JSON.parse((localStorage.getItem(keyStorage) || '[]'));
const rules = new Map([...initialRules, ...storedRules]);
const matchRules = (url,response) => {
const element = [...rules.keys()].find((rule) => url.indexOf(rule) > 1);
if (element){
const rule = rules.get(element);
@navio
navio / lwp-cloudflare-dyndns.sh
Created July 27, 2020 01:46 — forked from Firsh/lwp-cloudflare-dyndns.sh
Cloudflare as Dynamic DNS
#!/bin/bash
# Cloudflare as Dynamic DNS
# From: https://letswp.io/cloudflare-as-dynamic-dns-raspberry-pi/
# Based on: https://gist.github.com/benkulbertis/fff10759c2391b6618dd/
# Original non-RPi article: https://phillymesh.net/2016/02/23/setting-up-dynamic-dns-for-your-registered-domain-through-cloudflare/
# Update these with real values
auth_email="[email protected]"
auth_key="global_api_key_goes_here"
zone_name="example.com"
@navio
navio / languageGetter.js
Created May 16, 2020 20:35
Language Getter
const getBrowserLocale = () => {
const countryPart =
navigator && navigator.language && navigator.language.split('-')[1];
if (countryPart) {
return countryPart;
}
};
@navio
navio / search.js
Created May 13, 2020 18:22
Podcast
fetch(`/rss-full/https://itunes.apple.com/search?media=podcast&term=alice isn't dead`).then(x=> x.json()).then(console.log)
@navio
navio / resume.js
Last active March 31, 2020 15:52
My Resume
{
"basics": {
"name": "Alberto Navarro",
"label": "Experienced Senior Software Engineer with a demonstrated history of working in the internet industry. Skilled in Node, Micro-services, Databases, React, and PWA. Strong engineering professional with a Master of Computer Science from The University of Texas.",
"picture": "",
"email": "",
"phone": "",
"website": "",
"summary": "Computer Software",
"location": {
@navio
navio / AudioEngine.ts
Last active November 20, 2019 21:17
Audio Engine 1.0
interface IAudioParams {
image?: URL;
author?: String;
title: String;
src: URL;
}
class AudioEngine {
private engine;
private queue = [];