Skip to content

Instantly share code, notes, and snippets.

View brignano's full-sized avatar
👾
Coding

anthony brignano

👾
Coding
View GitHub Profile
const parks = [
{
name: 'Canyonlands',
areaInSquareKm: 1366.2,
location: { state: 'Utah' },
},
{
name: 'Crater Lake',
areaInSquareKm: 741.5,
location: { state: 'Oregon' },
@brignano
brignano / resume.json
Last active November 27, 2023 19:12
resume.json
{
"basics": {
"name": "Anthony Brignano",
"label": "Sr. Staff Software Engineer",
"image": "https://avatars3.githubusercontent.com/u/9291621?s=460&u=99e94ca4708d41417ffbc5cbea7d4a7318bd07ba&v=4",
"email": "hi@brignano.io",
"website": "https://brignano.io",
"summary": "I'm a full stack developer based in Hartford, CT specializing in building exceptional websites, applications, and everything in between. I enjoy strong coffee, open source, clean code, and continuous integrations. Focused on solving everyday problems with highly scalable solutions in the cloud. Please feel free to reach out to me directly with any inquires.",
"location": {
"city": "Bloomfield",
@brignano
brignano / strLetterCount.js
Last active December 14, 2020 05:57
count character occurrence in a word
function strLetterCount(word) {
/**
* initialize new key value pair (Map) where;
* key = character
* value = count
*/
let characterCounts = new Map();
/**
* loop through each character in the word