stitcherLogoCreated with Sketch.
Get Premium Download App
Listen
Discover
Premium
Shows
Likes

Listen Now

Discover Premium Shows Likes

Bad For Education - Coding Tips For The Junior Developer & Beyond

35 Episodes

20 minutes | Jun 18, 2021
Learning To Trust The Process
Today we discuss trusting the process,  which means truly believing that the end result of your goal will be worth all of the struggles that you have to face throughout the process of getting there.The problem with trusting the process, especially after going through an arduous boot camp or life obstacle, is that it can seem like an endless tunnel with no positive end in sight. But there is, and we discuss how to better prepare your mindset for those setbacks.  Resources Psychology Today Article 10 Reasons Why Trusting The Process Is Important To Life Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
29 minutes | Jun 11, 2021
Content Management Systems: Shopify vs. WordPress
Today we discuss content management systems (CMS),  why they are used, and a comparison between the two most popular ones: Shopify and WordPress.WordPress is a content management system (CMS). It exists in two wrappings; a hosted version on WordPress.com and the WordPress CMS version on wordpress.org. WordPress had its origins as a blogging platform, but many buyers choose it today to build websites in which blogging is not the primary function. Its core system of templates, pages, and posts allows users to focus on adding content once the initial set up is made. Shopify is one of the best e-commerce platforms in the market. It is similar to WordPress in that it’s an open platform where developers provide apps and themes. Shopify's core functionality is e-commerce. It gives users the ability to add products, prices, and sell via a store. Its store builder can produce a good-looking, easy to build e-commerce store. Its themes are the layout of the store, and the apps are used to add more functionality for e-commerce management or marketing your products. Resources Shopify vs. WordPress What Is A Content Management System? Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
23 minutes | May 7, 2021
Digital Minimalism: How To Declutter In An Electronic World
Today we discuss Digital Minimalism and how we practice it. But what exactly is that?Digital Minimalism is a philosophy of technology use based on the understanding that our relationship with our apps, tools, and phones is nuanced and deserves more intention than we give it, a term coined by computer science professor Cal Newport. Resources Cal Newport's Book Ways to Practice Digital Minimalism Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
18 minutes | Apr 20, 2021
Top 8 VSCode Extensions Every Developer Should Have Installed For Productivity
This episode we discuss eight Visual Studio Code Extensions that developers in the tech industry should have. They consist of: Custom Theme (Your own preference) GitLens Prettier VSCode Icons Bracket Colorizer 2 JavaScript ES6 Snippets Auto Complete Tag Live Server Resources Top 8 VSCode  Article Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
20 minutes | Mar 30, 2021
7 Stereotypes About People Who Work In Tech (Specifically, Developers)
This episode we discuss seven stereotypes about developers in the tech industry. We will debunk or confirm these common preconceptions: They are nerds It is male-dominated They are overweight/unattractive They are antisocial/ introverted  They are super smart They know math They have big egos  Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
13 minutes | Mar 30, 2021
This Is Crazy, But Here's A Podcast, So Callbacks, Maybe?
Today we discuss JavaScript Callbacks! What is a Callback? A callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.For example, paste this code block in your editor and try it! function greeting(name) { alert('Hello ' + name);}function processUserInput(callback) { var name = prompt('Please enter your name.'); callback(name);}processUserInput(greeting); Resources MDN Callback Function Definition Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
20 minutes | Mar 25, 2021
What's the Difference Between CSS, SCSS, SASS, CSS Modules, and Styled Components?
Today we discuss CSS, and the preprocessors + variations such as SCSS, SASS, CSS Modules, and Styled Components.CSS (Cascading Style Sheets) is a declarative language that controls how webpages look in the browser. The browser applies CSS style declarations to selected elements to display them properly. A style declaration contains the properties and their values, which determine how a webpage looks.A CSS preprocessor is a program that lets you generate CSS from the preprocessor's own unique syntax. There are many CSS preprocessors to choose from, however most CSS preprocessors will add some features that don't exist in pure CSS, such as mixin, nesting selector, inheritance selector, and so on. These features make the CSS structure more readable and easier to maintain. SASS, SCSS, and LESS are examples of theseA CSS Module is a CSS file in which all class names and animation names are scoped locally by default. The key words here are scoped locally. With CSS Modules, your CSS class names become similar to local variables in JavaScript. By the way, a 'CSS Module' is just a .css file. You call it a 'CSS Module' if you plan on using it with a CSS Modules compiler. Styled Components are tagged template literals combined with the power of CSS, which allows you to write actual CSS code to style your components. It also removes the mapping between components and styles – using components as a low-level styling construct could not be easier!Resources CSS Preprocessors SASS vs SCSS vs LESS CSS Modules Styled Components Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
28 minutes | Mar 23, 2021
How To Build Your First Coding Or Developer Resume!
This episode we go back into the technical, and we discuss more soft skills in the scope of resume building. We talk about how to build and design you resume, what information to put on it, and things to avoid. If you have any questions feel free to email us!Resources Andrew's Portfolio Andrew's Website Jason's Portfolio Jason's Resume For some guidance, email badforeducationpodcast@gmail.com with the email title: "Resume Help Please" and attach your resume with your name and we will be glad to help!  Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
31 minutes | Mar 20, 2021
Stop Hate, Start Love: The Rise Of Anti Asian-American Sentiment
Today we have a serious discussion about the rising anti Asian-American sentiment throughout the United States during to Covid-19 pandemic.Almost every week there's been a new attack on an Asian-American in densely populated cities. 3,800 attacks have been confirmed, and a notably staggering 150% rise in these hate crimes. Together we need to #StopAsianHate because #HateIsAVirus and if we don't stand together we cannot hope to heal as a country.This isn't new and has become a recurring occurrence amplified by poisonous rhetoric from former President Trump, seeping into the fabric of our society. The attacks reached a boiling point in which 6 women were killed in Atlanta by racially charged attacks. We must do and be better. Resources:Articles Ways to Help Fight Asian Hate Self Defense Tips Atlanta Spa Shooting 3,800 Racially Charged Attacks Against Asians, majority being women Organizations to follow https://stopaapihate.org/ https://aapip.org/what-we-do/supporting-api-communities-resource-directory/view-all-resources https://hateisavirus.org/ Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
25 minutes | Mar 18, 2021
Databases, Wireframes, Schema, and Dummy Data, Oh My!
Today's episode we discuss databases! A topic a full-stack developer should know. The two most popular database types we'll cover are relational vs. non-relational.  Relational databases A relational database works by linking information from multiple tables through the use of “keys.” A key is a unique identifier which can be assigned to a row of data contained within a table. This unique identifier, called a “primary key,” can then be included in a record located in another table when that record has a relationship to the primary record in the main table. When this unique primary key is added to a record in another table, it is called a “foreign key” in the associated table. The connection between the primary and foreign key then creates the “relationship” between records contained across multiple tables. Historically, the most popular relational databases have been Microsoft SQL Server, Oracle Database, MySQL and IBM DB2.  Non-relational databases The non-relational database, or NoSQL database, stores data. However, unlike the relational database, there are no tables, rows, primary keys or foreign keys.  Instead, the non-relational database uses a storage model optimized for specific requirements of the type of data being stored. Some of the more popular NoSQL databases are MongoDB, Apache Cassandra, Redis, Couchbase and Apache HBase.Within computer programming, the acronym CRUD stands for create, read, update and delete. These are the four basic functions of persistent storage. Also, each letter in the acronym can refer to all functions executed in relational database applications and mapped to a standard HTTP method, SQL statement or DDS operation.Dummy data is benign information that does not contain any useful data, but serves to reserve space where real data is nominally present. Dummy data can be used as a placeholder for both testing and operational purposes.A wireframe is a schematic or blueprint that is useful for helping you, your programmers and designers think and communicate about the structure of the software or website you're building. References: Relation vs Non-relational databases Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
17 minutes | Mar 16, 2021
Blogging: Why We Do It & Why You Should Too
Today we discuss blogs! The benefits of starting a blog include: Develop unique and original content Solve problems for others Express their perspective and personality through a written perspective Reinforce previous knowledge Create a community Build Your Professional Network And much more! Reference Links: Andrew's Blog Andrew's Medium Blog Andrew's Fiction Novel Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
19 minutes | Mar 11, 2021
This I 'Promise' You!
Today we talk about asynchronous operations in 'Promises', in addition to async and await. A JavaScript Promise object be in one of four states: Pending - While a Promise object is "pending" (working), the result is undefined. Fulfilled - When a Promise object is "fulfilled", the result is a value. Rejected - When a Promise object is "rejected", the result is an error object. Settled - While a Promise object has been "settled", the result is a value or error object. The Promise object supports two properties: state and result. The keyword await before a function makes the function wait for a promise, while the keyword async before a function makes the function return a promise. The async and await make promises easier to write. References: Andrew's Blog Article on Promises Another article for Promises Async and Await Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
26 minutes | Mar 9, 2021
Modern Front End JavaScript Frameworks You Should Know In 2021!
This episode we discuss three, modern front end JavaScript frameworks you should look into as you progress your career as a developer. React, Angular, and Vue are the most popular frameworks and we break down what a framework vs. library is, an overview of each, the career prospects among these three, and our own personal choices/thoughts! Angular - https://angular.io/ React - https://reactjs.org/ Vue - https://vuejs.org/ Each have their benefits and their pain points, but you can't go wrong learning any of these three! References https://2020.stateofjs.com/en-US/ https://insights.stackoverflow.com/survey/2020#most-popular-technologies Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email! Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
42 minutes | Mar 7, 2021
What is ‘This’ in JavaScript + Dating
This episode we discuss some more nuance features of JavaScript. Like, what is 'this'? The JavaScript 'this' keyword refers to the object it belongs to. In a method, this refers to the owner object. Alone, this refers to the global object. In a function, this refers to the global object. In a function, in strict mode, this is undefined. In an event, this refers to the element that received the event. Methods like call(), and apply() can refer this to any object. For the second half we dive deep into dating! We share our experiences, what we like, what we don't like, and more! Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
43 minutes | Jan 14, 2021
So You're In A Hackathon + Cyberpunk 2077: The Biggest Letdown
This episode we get into the discussion of your first hackathon. To help guide you along the way, we have an articled linked to the steps that cover our conversation by our cohort mate, Michelle Poole! Article Link:Ten Things I Wish I'd Known Before My First HackathonDuring our second half we discuss the failure of the hotly anticipated video game, Cyberpunk 2077. Let's just say, it didn't deliver...Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
34 minutes | Jan 7, 2021
Object-Oriented Programming In JavaScript + New Year's Resolutions
This episode we go back into the technical, and we discuss Object-Oriented Programming! Today we talk about how to cultivate your dev story! We talk about why we use it and the four pillars of OOP.The four pillars of object-oriented programming are: Abstraction - To abstract something away means to hide away the implementation details inside something – sometimes a prototype, sometimes a function. So when you call the function you don't have to understand exactly what it is doing. Encapsulation -Removing access to parts of your code and making things private is exactly what Encapsulation is all about (often times, people refer to it as data hiding). Inheritance - Inheritance lets one object acquire the properties and methods of another object. In JavaScript this is done by Prototypal Inheritance. Polymorphism - Polymorphism means "the condition of occurring in several different forms." That's exactly what the fourth and final pillar is concerned with – types in the same inheritance chains being able to do different things. During our second half we discuss our New Year's Resolutions in coding/developing and in general.Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
37 minutes | Jan 4, 2021
Developer Soft Skills: Dev Story + LinkedIn Creation + Our Lives Before Developing
This episode we go back to developing your soft skills! Today we talk about how to cultivate your dev story! We give tips and major points on what to avoid and use. Essentially your dev story is what separates you from the crowd of CS degree majors, and other junior developers who are vying for the same job! It is the story of you. How to stand out How to leverage your unique story What you should avoid saying The time constraints on your speech And much more! Afterwards we go over the process of creating your LinkedIn profile, and what should be there to catch the attention of a future employer! During our second half we discuss our own backgrounds and give you our dev stories! Don't miss this one!Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
40 minutes | Dec 28, 2020
Bootstrap + The Music Landscape
This episode we took a deep dive into Bootstrap, a CSS framework. We talked about the pros/cons, when you should be using it,  why you should be using it, and where it is relevant within your software development career. Later we speak about music, our preferences to music, and the music landscape scene as a whole.Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Want a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
53 minutes | Dec 21, 2020
Interview With A Professional Photographer! How To Break Into The Industry ft. Randy Tran
This episode we sat down with a friend and professional fashion/beauty photographer, Randy Tran. We deep dive into his background and how he got his start in the business. Randy also divulges a few trade secrets and his opinion on photography in 2020, and if it is a career option worth pursuing.  This is a must listen episode for those who want to become photographers or are interested in photography behind-the-scenes!Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comSend us questions! Or say hello to  us via email!Guest SpeakerRandy TranInstagram: @rtranphotoHis Website: randytran.photographyWant a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
43 minutes | Dec 17, 2020
Day in a Life of a Coding Bootcamp Student + Fantasy Sports
This episode we give both our accounts and a walkthrough for a typical day in the life of a coding bootcamp student.  We dive into the nitty gritty of what we do during the morning, afternoon, and evening.  Later on we also discuss Fantasy Sports, in particular a breakdown for a football league. So for all you sports fans or those interested in partaking in a fantasy league, you've come to the right place! Connect With Us!Instagram: @badforeducationpodcastTwitter: @badforedupodEmail: badforeducationpodcast@gmail.comWant a free $20 Amazon gift card and to start your own podcast with Buzzsprout?It's as simple as one click in our link below. Get started today, and have access to their extensive network and assistance. Podcasting isn't hard when you have the right partners!Click our link here
COMPANY
About us Careers Stitcher Blog Help
AFFILIATES
Partner Portal Advertisers Podswag
Privacy Policy Terms of Service Do Not Sell My Personal Information
© Stitcher 2022