Skip to content

Instantly share code, notes, and snippets.

View agithony's full-sized avatar
🤩
Follow me to see what I'm building

Anthony Dellavecchia agithony

🤩
Follow me to see what I'm building
View GitHub Profile
@agithony
agithony / agithony.gif
Last active July 3, 2026 06:21
agithony.com
agithony.gif
@agithony
agithony / hello-world.gif
Last active September 12, 2026 02:02
hello, world
hello-world.gif
@agithony
agithony / resume-product-manager.json
Last active February 12, 2023 03:14
resume.json (For Product/Program Manager)
{
"$schema": "https://raw.githubusercontent.com/anthonyjdella/customized-resume-schema/main/schema.json",
"basics": {
"name": "Anthony Dellavecchia",
"label": "Technical Product Visionary",
"image": "https://www.anthonydellavecchia.com/images/contact/profile-pic.png",
"email": "hireme@anthonydellavecchia.com",
"phone": "(940) 242-1288",
"summary": "As an experienced Software Engineer and Developer Relations Leader, my objective is to introduce innovative products to the market. Skilled in creating a clear product vision, soliciting feedback from key stakeholders, and collaborating with cross-functional teams to drive product enhancements.",
"location": {
@agithony
agithony / resume-head-of-dev-rel.json
Last active February 12, 2023 02:30
resume.json (For Head of DevRel)
{
"$schema": "https://raw.githubusercontent.com/anthonyjdella/customized-resume-schema/main/schema.json",
"basics": {
"name": "Anthony Dellavecchia",
"label": "Strategic Developer Relations Leader",
"image": "https://www.anthonydellavecchia.com/images/contact/profile-pic.png",
"email": "hireme@anthonydellavecchia.com",
"phone": "(940) 242-1288",
"summary": "As a seasoned Software Engineer and Developer Relations Leader, I aim to teach and inspire thousands of developers to change the world with code. Adept at leading programs that foster thriving developer communities, executing strategic initiatives, and driving business outcomes.",
"location": {
@agithony
agithony / resume-dev-rel.json
Last active February 24, 2023 01:14
resume.json (For DevRel)
{
"$schema": "https://raw.githubusercontent.com/anthonyjdella/customized-resume-schema/main/schema.json",
"basics": {
"name": "Anthony Dellavecchia",
"label": "Software Engineer, passionate about Developer Advocacy and Experience",
"image": "https://www.anthonydellavecchia.com/images/contact/profile-pic.png",
"email": "hireme@anthonydellavecchia.com",
"phone": "(940) 242-1288",
"summary": "I write code on stage in front of a crowd. With 5+ years of experience in full-stack software development, I aim to teach and inspire thousands of developers to change the world with code. I enjoy sparking the imagination of developers and helping them build deep experiences with technology. I'm interested in applying creativity to software engineering, public speaking, advocating for the developer community, creating technical content and storytelling, improving developer experiences, contributing to open-source software, and influencing teams to build great products.
@agithony
agithony / hello.gif
Last active October 28, 2021 04:39
👋
hello.gif
@agithony
agithony / resume.json
Last active February 24, 2023 01:18
Resume in JSON format
{
"$schema": "https://raw.githubusercontent.com/anthonyjdella/customized-resume-schema/main/schema.json",
"basics": {
"name": "Anthony Dellavecchia",
"label": "Software Engineer, passionate about Developer Advocacy and Experience",
"image": "https://www.anthonydellavecchia.com/images/contact/profile-pic.png",
"email": "hireme@anthonydellavecchia.com",
"phone": "(940) 242-1288",
"summary": "I write code on stage in front of a crowd. With 5+ years of experience in full-stack software development, I aim to teach and inspire thousands of developers to change the world with code. I enjoy sparking the imagination of developers and helping them build deep experiences with technology. I'm interested in applying creativity to software engineering, public speaking, advocating for the developer community, creating technical content and storytelling, improving developer experiences, contributing to open-source software, and influencing teams to build great products.
@agithony
agithony / MagicNumber.java
Created April 18, 2018 01:12
Java without Magic Numbers
class MagicNumber {
String pipeDelimitedString = "This|is|an|example|of|Magic|Numbers|123 Parker Road|cityline@gmail.com";
String [] splitString = pipeDelimitedString.split("\\|");
obj.doSomething(splitString[Constants.HOME_ADDRESS]);
obj.doSomething(splitString[Constants.EMAIL_ADDRESS]);
}
class Constants {
@agithony
agithony / MagicNumber.java
Created April 18, 2018 01:10
Java with Magic Numbers
class MagicNumber {
String pipeDelimitedString = "This|is|an|example|of|Magic|Numbers|123 Parker Road|cityline@gmail.com";
String [] splitString = pipeDelimitedString.split("\\|");
obj.doSomething(splitString[7]);
obj.doSomething(splitString[8]);
}
function stateFarmModule() {
//previous code here
}
module.exports = stateFarmModule;
function emailModule() {
//previous code here
}
module.exports = emailModule;