├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── EpisodeBlock.js │ ├── HomeBackground.js │ ├── HomeHeader.js │ ├── PageHeader.js │ ├── TeamMemberBlock.js │ ├── episode.css │ ├── footer.css │ ├── footer.js │ ├── header.css │ ├── homeBackground.css │ ├── image.js │ ├── player.js │ └── seo.js ├── data │ └── bios.js ├── episodes │ ├── 2019-07-01-new-career-who-dis │ │ └── index.md │ ├── 2019-07-08-side-project-balancing-act │ │ └── index.md │ ├── 2019-07-15-blogging-101 │ │ └── index.md │ ├── 2019-07-22-web-technologies-were-excited-about │ │ └── index.md │ ├── 2019-07-29-how-the-ladybugs-got-their-spots │ │ └── index.md │ ├── 2019-08-05-impostor-syndrome │ │ └── index.md │ ├── 2019-08-12-css-part-1 │ │ └── index.md │ ├── 2019-08-14-css-part-2 │ │ └── index.md │ ├── 2019-08-19-ask-kelly-about-entrepreneurship │ │ └── index.md │ ├── 2019-08-26-career-paths-in-tech │ │ └── index.md │ ├── 2019-09-16-what-the-heck-is-graphql │ │ └── index.md │ ├── 2019-09-23-teaching-code │ │ └── index.md │ ├── 2019-09-30-design-systems │ │ └── index.md │ ├── 2019-10-07-hacktoberfest-part-1 │ │ └── index.md │ ├── 2019-10-10-hacktoberfest-part-2 │ │ └── index.md │ ├── 2019-10-13-javascript-frameworks │ │ └── index.md │ ├── 2019-10-21-technical-portfolios │ │ └── index.md │ ├── 2019-10-28-shopify-and-e-commerce │ │ └── index.md │ ├── 2019-11-04-working-remotely │ │ └── index.md │ ├── 2019-11-11-debugging │ │ └── index.md │ ├── 2019-11-18-web-performance │ │ └── index.md │ └── 2019-11-25-conference-talks │ │ └── index.md ├── images │ ├── books │ │ ├── habits.jpg │ │ ├── invisible-women.jpg │ │ └── it-doesnt-have-to-be-crazy-at-work.jpg │ ├── brand │ │ ├── background.svg │ │ ├── episode-header-background.svg │ │ ├── ladybug.svg │ │ ├── ladybug@2x.png │ │ ├── light-logo.svg │ │ ├── logo-white.svg │ │ ├── logo.svg │ │ ├── logo@2x.png │ │ └── page-header-background.svg │ ├── footer │ │ ├── google.svg │ │ ├── itunes.svg │ │ ├── podcast.svg │ │ ├── rss.svg │ │ ├── spotify.svg │ │ └── twitter.svg │ ├── nav │ │ ├── close.svg │ │ ├── menu-red.svg │ │ └── menu-white.svg │ ├── player │ │ ├── pause-button.svg │ │ ├── play-button-red.svg │ │ └── play-button.svg │ ├── sponsors │ │ ├── RC_logo.svg │ │ ├── digitalocean.svg │ │ ├── jamstack.svg │ │ ├── logrocket.svg │ │ ├── netlify.svg │ │ ├── sanity.svg │ │ └── shopify.svg │ └── team │ │ ├── ali.jpg │ │ ├── emma.jpg │ │ └── kelly.jpg ├── pages │ ├── 404.js │ ├── about.js │ ├── books.js │ ├── contact.js │ ├── episodes.js │ ├── index.js │ └── pages.css ├── templates │ └── episode.js └── transcripts │ ├── 01-new-career-who-dis.md │ ├── 02-side-project-balancing-act.md │ ├── 03-blogging-101.md │ ├── 04-web-technologies-were-excited-about.md │ ├── 05-how-the-ladybugs-got-their-spots.md │ ├── 06-impostor-syndrome.md │ ├── 07-css-part-1.md │ ├── 08-css-part-2.md │ ├── 09-ask-kelly-about-entrepreneurship.md │ ├── 10-career-paths-in-tech.md │ ├── 11-what-the-heck-is-graphql.md │ ├── 12-teaching-code.md │ ├── 13-design-systems.md │ ├── 14-hacktoberfest-part-1.md │ ├── 15-hacktoberfest-part-2.md │ ├── 16-javascript-frameworks.md │ ├── 17-technical-portfolios.md │ ├── 18-shopify-and-e-commerce.md │ ├── 19-working-remotely.md │ ├── 20-debugging.md │ ├── 21-web-performance.md │ └── 22-conferences.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # dotenv environment variables file 55 | .env 56 | 57 | # gatsby files 58 | .cache/ 59 | public 60 | 61 | # Mac files 62 | .DS_Store 63 | 64 | # Yarn 65 | yarn-error.log 66 | .pnp/ 67 | .pnp.js 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | #VS Code 72 | .vscode/ 73 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "lf", 3 | "semi": false, 4 | "singleQuote": false, 5 | "tabWidth": 2, 6 | "trailingComma": "es5" 7 | } 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 gatsbyjs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
{`${episode} | ${formattedDate}`}
23 |{description}
24 |{length}
26 |{location}
12 | {bio.map((paragraph, i) => ( 13 |{paragraph}
14 | ))} 15 | {links.map((link, i) => ( 16 | 24 | {link.title} 25 | 26 | ))} 27 |{`${episode} | ${formattedDate}`}
92 |{description}
93 |{length}
104 |You just hit a route that doesn't exist... the sadness.
10 |19 | We've started a book club! Each month we'll be reading a popular 20 | non-fiction book and bringing you an extra episode to discuss our 21 | thoughts. 22 |
23 |24 | If you'd like to follow along, feel free to join our{" "} 25 | 30 | Goodreads group 31 | 32 | . 33 |
34 |18 | Have some feedback or just want to get in touch? Feel free to send us a 19 | DM on{" "} 20 | 26 | Twitter 27 | {" "} 28 | or send an email to hello@ladybug.dev 29 | . 30 |
31 |33 | We're Emma Wedekind, Kelly Vaughn, and Ali Spittel - three seasoned 34 | software developers working in different sectors. We wanted to add our 35 | voices to the podcasting sphere and share our experiences and advice. We 36 | have great discussions around how to start coding, the hot technologies 37 | right now, how to get your first developer job, imposter syndrome, how 38 | to write CSS and more! 39 |
40 |41 | Our podcast has been reaching a large audience of diverse developers 42 | from junior to senior and everything in between. According to Spotify's 43 | analytics, 35% of our listeners are women, far outpacing the industry. 44 |
45 |46 | Our podcast is new, but growing fast. We hit the 35,000 listens mark a 47 | month after our first episode. Our first episode has reached 8,000 48 | listens before it was four weeks old. Each episode is passing the 5k 49 | listens mark one week after publication. The growth has been enormous, 50 | and we expect these numbers to keep climbing rapidly. 51 |
52 |53 | Our episodes are released first thing each Monday morning, and are about 54 | both technical topics and career advice for other developers. 55 |
56 |84 | We can customize your message in keeping with our tone and experiences, 85 | or deliver a script you send us. We do want to make sure we are excited 86 | about our sponsors, and we would love to participate in demos or even 87 | build sample apps ourselves if applicable and possible. 88 |
89 |90 | We ask for a 3 episode minimum agreement for sponsorship so that you 91 | consistently reach our audience each week. 92 |
93 |94 | Send us an email at hello@ladybug.dev{" "} 95 | with any questions or to sponsor the show! 96 |
97 |