Author: BostonianAdam

  • Sharing resources with you: LinkedIn profile and job searching tips, and optimizing Google fonts

    I came across a few good resources I wanted to share with everyone, ranging from LinkedIn profile tips to job interview tips to optimizing Google fonts performance. LinkedIn profile tips – Blog post from dev.to, you may not agree with every tip that is listed but they’re something to look at and consider Things to…

  • Using “srcset” for your images and more image delivery techniques

    After watching a recent video posted by Google Chrome Developers on YouTube, I wanted to blog about using the “srcset” attribute in the “img” tag in your HTML code to make more web developers aware of this easy-to-use/add code that will help your website. Definitely make sure to watch the video and check out the…

  • Free online courses and learning sites

    There are a lot of free online resources, including tutorials and courses. I put together a list of websites that offer free online courses that I wanted to share with others, hoping to help others. If you know of other websites that offer free online courses, please leave a comment. These websites are geared more…

  • Take a full page screenshot in Chrome

    Here’s a quick tip that I thought would be helpful for others (and myself in case I forget in the future). I needed to take a screenshot of a website in the Chrome web browser and I remembered there was an option in the Dev Tools to do this but I couldn’t find it. So…

  • Where does “localStorage” save data?

    I have been taking a Javascript online course and we have been using “localStorage” to create a task list app. So I was wondering where does this actual data get stored because the data can be retrieved, edited and deleted so it must get saved somewhere. Since cookies aren’t being used I assumed the data…

  • Sharing resources with you: HTML5 input types, Picular and cheatsheets

    This will be a quick/short blog post with a few links to an article and helpful resources for developers. HTML5 Input Types: Where Are They Now? – Blog post from SmashingMagazine.com, that talks about HTML5 form input types and shows their support in various web browsers Picular – A free service to see many color…

  • Sharing resources with you: Firefox extensions, shady Google and data breaches

    Here are some resources from around the web I thought would be helpful for everyone. Make your Firefox browser a privacy superpower with these extensions – Blog post from blog.mozilla.org, where they put together a list of Firefox browser extensions for your privacy Google and Mastercard Cut a Secret Ad Deal to Track Retail Sales…

  • Git and GitHub basics video tutorial

    I have used GitHub for my job but I never used Git before, so I found the below YouTube video to be helpful to get a sense of it.

  • Sharing resources with you: get a web dev job, web dev portfolio tips, a lightweight lightbox, and more

    It’s been awhile since I’ve shared resources from around the web, so here we go: How to get a web development job in four steps – Blog post from simplestepscode.com Web development portfolio tips from an interviewer’s perspective – Another good blog post from simplestepscode.com Featherlight.js – A very lightweight jQuery lightbox How to Stop…

  • Media query max-width and min-width

    I wanted to write a quick blog post explaining in plain English what max-width and min-width mean when setting up media queries in your CSS, so here we go first with an example of media query code in your CSS. Code examples of min-width and max-width Using the code example above, “min-width: 480px”, means that…