Drafts

Draft and unpublished posts

0 posts simple view

006

Setup ** for _

1 min

005

** setup is _

1 min

004

🔥 #kedrotips use find-kedro to assembly your pipelines

1 min

002

** 0.3.0 just launched with _ support 🎉

1 min

Gatsby Scripts with onload

This might be useful https://github.com/nfl/react-helmet/issues/146 https://github.com/gatsbyjs/gatsby/issues/13136

Thanks For Subscribing

✨ You’re Awesome Thank you so much for subscribing to my newsletter. It’s still early days, please let me know what you want to hear about, I would love to get the conversation started! My hope is that you find some wicked sweet content here and stay tuned for more, but if you dont like it you can opt-out at any time. What to expect # [2] - Weekly inspirational message based on my experiences breaking into the industry - monthly-ish message about what is going on new posts, life, updates - Future annouce premium content ( let me know what you think it should be ) References: [1]: /og/ [2]: #what-to-expect
1 min read

Practice your craft

Show up For Practice # [1] how I practice # [2] What Works for You # [3] References: [1]: #show-up-for-practice [2]: #how-i-practice [3]: #what-works-for-you

Productive one on one

[1]Inspired by https://m.soundcloud.com/front-end-happy-hour/episode-095-shot-for-shot-one-on-ones References: [1]: https://dropper.wayl.one/file/33e9b982-c621-4506-a61c-bfe106d633f1.webp

Long variable names are good

🏷️ Long variable names are a good thing. Self documenting code is more important than poorly documented code. Simply adding a few characters to your variable names can go a long ways. Containers are plural # [1] Aliases are welcome # [2] Scope is important References: [1]: #containers-are-plural [2]: #aliases-are-welcome
1 min read

What is Refactoring

Make the change easy Make the easy change Martin Fowler When to refactor
1 min read

RSS feed for your Gatsby Site

Adding an rss feed to your gatsby js site is super simple. https://www.gatsbyjs.org/packages/gatsby-plugin-feed/ Install # [1] npm install --save gatsby-plugin-feed How to use # [2] // In your gatsby-config.js module.exports = { plugins: [ { resolve: `gatsby-plugin-feed`, options: { query: ` { site { siteMetadata { title description siteUrl site_url: siteUrl } } } `, feeds: [ { serialize: ({ query: { site, allMarkdownRemark } }) => { return allMarkdownRemark.edges.map(edge => { return Object.assign({}, edge.node.frontmatter, { description: edge.node.excerpt, date: edge.node.frontmatter.date, url: site.siteMetadata.siteUrl + edge.node.fields.slug, guid: site.siteMetadata.siteUrl + edge.node.fields.slug, custom_elements: [{ "content:encoded": edge.node.html }], }) }) }, query: ` { allMarkdownRemark( sort: { order: DESC, fields: [frontmatter___date] }, ) { edges { node { excerpt html fields { slug } frontmatter { title date } } } } } ...
Conda Build

Conda Build

Conda Build Install Conda Build # [1] conda update conda conda install conda-build References: [1]: #install-conda-build
1 min read

Pyspark

I have been using pyspark since March 2019, here are my thoughts.
1 min read

Making good documentation in python

Tools Sphinx # [1] Portray # [2] I just started using portray and it is amazingly simple to use! Methodology References: [1]: #sphinx [2]: #portray
1 min read

Amazon Web Services

I started using aws in March 2019. Here are some of my notes. aws-cli # [1] ec-2 # [2] SageMaker # [3] S3 # [4] References: [1]: #aws-cli [2]: #ec-2 [3]: #sagemaker [4]: #s3
1 min read