This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function stateFarmModule() { | |
//previous code here | |
} | |
module.exports = stateFarmModule; | |
function emailModule() { | |
//previous code here | |
} | |
module.exports = emailModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
email: "YOUR_EMAIL", | |
password: "YOUR_PASSWORD" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const page = await browser.newPage(); | |
await page.goto("https://statefarm.csod.com/ats/careersite/search.aspx?site=1&c=statefarm"); | |
await page.click("#ctl00_siteContent_widgetLayout_rptWidgets_ctl03_widgetContainer_ctl00_rptCustomFields_ctl02_customFieldWrapper > button"); | |
await page.click("body > div > ul > li:nth-child(46) > label > span"); | |
await page.click("#ctl00_siteContent_widgetLayout_rptWidgets_ctl03_widgetContainer_ctl00_rptCustomFields_ctl00_customFieldWrapper_ctl00_txtValue"); | |
await page.keyboard.type("technology"); | |
await page.click("#ctl00_siteContent_widgetLayout_rptWidgets_ctl03_widgetContainer_ctl00_btnSearch"); | |
await page.waitFor(2000); |
NewerOlder