From 662d9a22482acaf80ae87be7f8554e8111d193f2 Mon Sep 17 00:00:00 2001 From: David Abram Date: Sat, 24 Feb 2024 14:38:47 +0100 Subject: [PATCH] 30 min blog --- .../src/pages/blog/thirty-minutes-rule.mdx | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 apps/company-website/src/pages/blog/thirty-minutes-rule.mdx diff --git a/apps/company-website/src/pages/blog/thirty-minutes-rule.mdx b/apps/company-website/src/pages/blog/thirty-minutes-rule.mdx new file mode 100644 index 00000000..68673996 --- /dev/null +++ b/apps/company-website/src/pages/blog/thirty-minutes-rule.mdx @@ -0,0 +1,33 @@ +import blogHeader from "../../content/images/blogs/stop-bikeshedding.png?preset=responsive"; +import BlogLayout from "../../Layouts/BlogLayout"; +import ResponsiveImage from "../../components/ResponsiveImage"; +import ContentTable from "../../components/Blog/ContentTable"; + +export const meta = { + id: "thirty-minute-rule", + title: "The old Thirty Minute Rule" + description: "", + category: "After work talks", + image: blogHeader, + date: 1683151069601, + updatedAt: 1683151069601, + author: "davidabram", + editor: "velimirujevic", + abstract: "", + pageType: "blog-posting" +}; + +Imagine you're deep into coding, and you hit a wall. You're stuck, and no matter how hard you try, you can't find a way through. Sounds familiar, right? + +So you lose hours trying to figure it out, but the wall is still not budging. + +How about a different approach? + +The Thrity Minute Rule: "If you're stuck on a problem for more than 30 minutes, it's time to ask for help." + + + + + + +export default (props) => {props.children};