Front-end web news, tips, and more delivered daily.
Topics include HTML, CSS, JavaScript, frameworks, preprocessors, APIs, responsive design, cross-browser development, content management systems, Git, and more!

by Front-End Web Daily
Front-end web news, tips, and more delivered daily. Topics include HTML, CSS, JavaScript, frameworks, preprocessors, APIs, responsive design, cross-browser development, content management systems, Git, and more!
Language
🇺🇲
Publishing Since
2/25/2020
Pitch yourself as a guest, propose sponsorships, or reach out directly to the host.

January 28, 2021
<p>Today is January 28, 2021, and for this Thursday Thoughts episode we're covering:</p> <ul> <li>Getting Your First Dev Job</li> <li>What You Should Do as a Junior Developer</li> <li>Helping Developers Be Leaders</li> </ul> <p>Let's dive in!</p> <p>----</p> <p>When starting off as a web developer it can be difficult to juggle learning and job searching. Therefore, it is important to know what potential employers are looking for to ensure you are prioritizing the right tasks and opportunities. A recent post on freeCodeCamp gives a handful of tips from a hiring manager's perspective of <a href="https://www.freecodecamp.org/news/how-to-get-your-first-dev-job/" target="_blank">what they look for when reviewing developer résumés</a>. One of the key factors is regular commits on Github, which shows that you are just as passionate about coding as you claim to be.</p> <p>----</p> <p>Starting your career as a junior developer is very exciting, but it can also be overwhelming. A post on Hello Dev World from last week outlines <a href="https://hellodevworld.com/misc/what-you-should-do-as-a-junior-developer" target="_blank">some things you can do to improve as a junior developer</a>. This includes asking questions, finding a mentor, and learning to debug. Remember, these first few years are all about learning and growing as a developer, so don't stress!</p> <p>----</p> <p>As a manager of a development team, it is important to help developers that aspire to be a leader to do so. Fostering an environment that allows career growth for these developers can be done with a bit of effort on your end. Monday's post on The Next Web gives some helpful insights on <a href="https://thenextweb.com/growth-quarters/2021/01/25/not-all-developers-want-to-be-leaders-but-heres-how-to-help-the-ones-that-do/" target="_blank">how to help developers be leaders</a>. By providing opportunities, openly communicating, and more you can help boost your developers to the next level.</p> <p>----</p> <p>Want to know more? Head to <a href="https://fewdaily.com/">fewdaily.com</a> for more of today’s topics and other front-end web content! If you liked what you heard be sure to rate, review, and subscribe on your platform of choice. That's all for today, tune in tomorrow!</p>

January 27, 2021
<p>Today is January 27, 2021, and for this Wednesday Wisdom episode we're covering:</p> <ul> <li>Fullstack Development Trends</li> <li>Responsive CSS Frameworks</li> <li>State of Design in 2021</li> </ul> <p>Let's dive in!</p> <p>----</p> <p>Fullstack development has moved from rarity to commonplace over the past few years. In 2021 it is easier than ever to be a fullstack developer simply because of all of the tools available. A recent post on noupe.com highlights the <a href="https://www.noupe.com/development/fullstack-development-trends-to-follow-in-2021.html" target="_blank">top 7 fullstack development trends to follow In 2021</a>. It provides a stellar prediction of what to expect as the industry progresses this year and might even give you some ideas on new skills to learn.</p> <p>----</p> <p>Love 'em or hate 'em, CSS frameworks have become an integral part of web design and development. There are many out there, each with its own cult following, so Super Dev Resources has published a list of the <a href="https://superdevresources.com/responsive-css-frameworks/" target="_blank">15 best responsive CSS frameworks for web design in 2021</a>. Unsurprisingly, Bootstrap and Tailwind topped the list, but check out some of the others if you are looking for an alternative or have never used a framework before.</p> <p>----</p> <p>The design field is always changing and evolving so it's important to assess what happened last year to predict changes this year. Luckily, Abstract has done all of the hard work for us with their <a href="https://www.abstract.design/state-of-design" target="_blank">State of Design in 2021</a>. Besides the beautiful design and interface of the website, there are several key points that are thoroughly elaborated on with charts, data, and research. A couple of the top ones are the necessity for better ways to measure impact and the pain points of design collaboration.</p> <p>----</p> <p>Want to know more? Head to <a href="https://fewdaily.com/">fewdaily.com</a> for more of today’s topics and other front-end web content! If you liked what you heard be sure to rate, review, and subscribe on your platform of choice. That's all for today, tune in tomorrow!</p>

January 26, 2021
<p>Today is January 26, 2021, and for this Tuesday Tips episode we're covering How to Setup Your M1 MacBook for Web Development</p> <p>Let's dive in!</p> <p>----</p> <p>The worst part (or perhaps the most fun for some) of getting a new laptop is setting up everything you need as a web developer. Adding programs and tools that you had installed over the many years of ownership of your previous laptop can seem daunting. With the release of the new Macbook M1 laptops, there are some interesting new considerations as well that you may not be aware of. So, let's jump in and get the basics set up so you can hit the ground running developing your next project.</p> <p>----</p> <p>The first thing you should install is <a href="https://developer.apple.com/documentation/apple_silicon/about_the_rosetta_translation_environment" target="_blank">Rosetta 2</a>, which allows you to run Intel-based software on the new ARM chip. Because Apple has created their own chips they needed a way to provide backward compatibility with programs that do not yet support ARM and Rosetta 2 is that solution.</p> <p>----</p> <p><a href="https://brew.sh/" target="_blank">Homebrew</a> will be the best way to add the other software and tools on our computer, so we want to install that next. A quick tip that is good to know is when you go to open the built-in Terminal in the Applications folder: right-click, select Get Info, and check the Open with Rosetta box.</p> <p>----</p> <p>There are a lot of tools to consider when setting up your Macbook from scratch, so one of the quickest ways to add a lot of the important ones is to use a script. I recommend <a href="https://github.com/CxGarcia/setup" target="_blank">the script created by the author</a> of the original post that this is based on, but feel free to use a different one or modify this one for yourself.</p> <p>Opening the download script folder in your terminal you can choose to run the install script or modify what will be installed from the brew-installs.sh file. Once you're satisfied, run the script.</p> <p>Some of the tools and applications included in the script are:</p> <ul> <li>MongoDB</li> <li>node</li> <li>git</li> <li>zsh</li> <li>Firefox</li> <li>Chrome</li> <li>VSCode</li> <li>Zoom</li> <li>Slack</li> <li>Discord</li> <li>Notion</li> <li>and more...</li> </ul> <p>----</p> <p>Something that is not included in the script is <a href="https://github.com/nvm-sh/nvm" target="_blank">nvm</a> because there have been difficulties installing this with the ARM chip. To get around this you will have to use a curl command and make a couple of modifications afterward.</p> <p>----</p> <p>Git was installed with the brew install script so make sure to configure the settings and <a href="https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token" target="_blank">use a personal access token to authenticate GitHub</a>.</p> <p>----</p> <p>Make sure to use the <a href="https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync" target="_blank">Settings Sync plugin</a> to keep all of your VSCode settings in sync with a stored GitHub gist.</p> <p>----</p> <p>You should now be all set to start developing! Thanks to the script many tools and applications were installed for us, minimizing the manual install process.</p> <p>----</p> <p>Today’s Tuesday Tips was adapted from <a href="https://blog.logrocket.com/set-up-macbook-for-web-development-in-20-minutes/" target="_blank">a post on the Logrocket blog</a>.</p> <p>----</p> <p>Want to know more? Head to <a href="https://fewdaily.com/">fewdaily.com</a> for more of today’s topics and other front-end web content! If you liked what you heard be sure to rate, review, and subscribe on your platform of choice. That's all for today, tune in tomorrow!</p>
Have a different question and can't find the answer you're looking for? Reach out to our support team by sending us an email and we'll get back to you as soon as we can.
Front-end web news, tips, and more delivered daily.
Topics include HTML, CSS, JavaScript, frameworks, preprocessors, APIs, responsive design, cross-browser development, content management systems, Git, and more!
This podcast updates daily.
This podcast is available on 4 platforms including Apple Podcasts, Spotify, and more. You can also use the RSS feed directly.
No, this podcast does not typically feature guests.
Pod Engine is not affiliated with, endorsed by, or officially connected with any of the podcasts displayed on this platform. We operate independently as a podcast discovery and analytics service.
All podcast artwork, thumbnails, and content displayed on this page are the property of their respective owners and are protected by applicable copyright laws. This includes, but is not limited to, podcast cover art, episode artwork, show descriptions, episode titles, transcripts, audio snippets, and any other content originating from the podcast creators or their licensors.
We display this content under fair use principles and/or implied license for the purpose of podcast discovery, information, and commentary. We make no claim of ownership over any podcast content, artwork, or related materials shown on this platform. All trademarks, service marks, and trade names are the property of their respective owners.
While we strive to ensure all content usage is properly authorized, if you are a rights holder and believe your content is being used inappropriately or without proper authorization, please contact us immediately at hey@podengine.ai for prompt review and appropriate action, which may include content removal or proper attribution.
By accessing and using this platform, you acknowledge and agree to respect all applicable copyright laws and intellectual property rights of content owners. Any unauthorized reproduction, distribution, or commercial use of the content displayed on this platform is strictly prohibited.