-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
328 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "23 things to celebrate from 2023" | ||
authors: mcclowes | ||
tags: [blog] | ||
--- | ||
|
||
The trend of eg the balloon museum continues a trend of infantilisation, | ||
|
||
<!--truncate--> | ||
|
||
|
||
Does this have implications on the world of product design and building compelling experiences? Particularly in this case a museum is ostensibly a place of serious consumption of culture |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
--- | ||
title: "Product led orgs" | ||
title: "Product-led orgs" | ||
authors: mcclowes | ||
tags: [apple, tech] | ||
draft: true | ||
--- | ||
|
||
![Test](/img/posts/product-led-neutral.jpeg) | ||
|
||
As I recently posted, I bought the AirPods Max and one of the nice features there was its massive 20-hour battery life. | ||
This is actually the third device I bought in six months where battery life has been a massive part of loving it. | ||
|
||
<!--truncate--> | ||
|
||
I purposely bought the previous two devices just for the battery life. I had an iPhone 12 and whether it would make it through the day was unpredictable. | ||
|
||
![Test](/img/posts/product-led-engineering.jpeg) | ||
|
||
I also had a MacBook Pro from 2017 which really struggled to make it through one hour on the go. Its battery had degraded that much and of course within 20 minutes it was on energy saving mode and it had to slow down. | ||
|
||
![Test](/img/posts/product-led-client.jpeg) | ||
|
||
I also had a MacBook Pro from 2017 which really struggled to make it through one hour on the go. Its battery had degraded that much and of course within 20 minutes it was on energy saving mode and it had to slow down. | ||
|
||
![Test](/img/posts/product-led-sales.jpeg) | ||
|
||
Using both of these devices had become so painful simply because of poor battery life that it was worth the large price to buy new | ||
devices (with minimal trade-in values helping just a tiny bit). | ||
|
||
Obviously there are other benefits to these new devices. They are certainly faster and more responsive but ultimately the thing I | ||
just love is that when I turn the device on it works, it isn't out of battery. | ||
I can go and sit on the sofa and not be plugged in and my laptop isn't going to die on me. I could work there for an hour and then pop to the coffee shop for another few hours. | ||
I can watch YouTube on my phone on the bus, then take calls. None of my devices are running out of battery when I need them most. | ||
![Test](/img/posts/product-led-neutral.jpeg) | ||
|
||
I know this might feel obvious but I thought I think in 2024 this is the first time in my life where my devices | ||
aren lasting the day with me. Whenever I need to do something with them they're able to do it. | ||
I no longer have power access anxiety, and it's just such a sort of simple but brilliant quality of life improvement. | ||
The true balancing of these concerns is where the product led organisation lies. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: "Doing things well" | ||
authors: mcclowes | ||
tags: [product] | ||
--- | ||
|
||
I've historically thought of myself as someone who *can* do things well but often does so haphazardly or inconsistently. | ||
|
||
<!--truncate--> | ||
|
||
Jon's feedback | ||
|
||
Doing things well is not exciting but it’s more powerful than ideas | ||
Eg 1-1s, agendas for meetings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React from "react"; | ||
|
||
const Arcade = ({url, title}) => { | ||
return <div | ||
style={{ | ||
position: "relative", | ||
paddingBottom: "calc(55.43859649122807% + 41px)", | ||
height: 0, | ||
width: "100%", | ||
margin: "1em 0", | ||
borderRadius: "8px", | ||
overflow: "hidden", | ||
}} | ||
> | ||
<iframe | ||
src={url} | ||
title={title} | ||
frameBorder={0} | ||
loading="lazy" | ||
allow="clipboard-write" | ||
webkitallowfullscreen | ||
mozallowfullscreen | ||
allowFullScreen | ||
style={{ | ||
position: "absolute", | ||
top: 0, | ||
left: 0, | ||
width: "100%", | ||
height: "100%", | ||
colorScheme: "light" | ||
}} | ||
/> | ||
</div> | ||
} | ||
|
||
export default Arcade; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React, { useEffect, useState } from "react"; | ||
|
||
import { initializeCodatLink } from "@codat/sdk-link-types"; | ||
|
||
import styles from './styles.module.scss'; | ||
|
||
export const CodatLink = (props) => { | ||
const [componentMount, setComponentMount] = useState( | ||
null | ||
); | ||
|
||
useEffect(() => { | ||
const target = componentMount; | ||
if (target && target.children.length === 0) { | ||
initializeCodatLink(target, props); | ||
} | ||
// CodatLink does not support changing props after initialisation. | ||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [componentMount]); | ||
|
||
return ( | ||
<div className={styles.modalWrapper}> | ||
<div className={styles.modal} ref={setComponentMount}/> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.modalWrapper { | ||
position: fixed; | ||
z-index: 999; | ||
inset: 0; | ||
background: #333333aa; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 0.5em; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.modal { | ||
border: 2px solid #ededed; | ||
background: white; | ||
border-radius: 8px; | ||
overflow: hidden; | ||
width: 100%; | ||
height: 100%; | ||
min-height: min(95vh, 180vw, 640px); | ||
max-height: min(95vh, 180vw, 860px); | ||
max-width: min(150vh, 95vw, 500px); | ||
} | ||
|
||
@media (max-width: 499px) { | ||
.modalWrapper { | ||
align-items: flex-end; | ||
} | ||
|
||
.modal { | ||
border-radius: 16px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import ReactDiffViewer, { DiffMethod } from 'react-diff-viewer-continued'; | ||
|
||
const Diff = (props) => { | ||
const {oldCode, newCode, showDiffOnly=true, compareMethod=DiffMethod.CHARS} = props | ||
|
||
return ( | ||
<div className="diff-checker"> | ||
<ReactDiffViewer | ||
oldValue={oldCode} | ||
newValue={newCode} | ||
splitView={true} | ||
showDiffOnly={showDiffOnly} | ||
compareMethod={compareMethod} | ||
/> | ||
</div> | ||
) | ||
}; | ||
|
||
export default Diff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.