Skip to content

Commit

Permalink
feat(posts): add new entry (#86)
Browse files Browse the repository at this point in the history
* feat(posts): add new entry

* fix: link

* fix(posts): remove link
  • Loading branch information
9renpoto authored Feb 11, 2024
1 parent 4433c5f commit 7e88a72
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 9renpoto
Copyright (c) 2024 9renpoto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"9renpoto",
"bluesky",
"denoland",
"healthz"
"healthz",
"ROLLCAKE"
]
}
40 changes: 40 additions & 0 deletions posts/2024/02/11/join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
date: 2024-02-11
title: ROLLCAKE株式会社にJoinしました
snippet:
---

# TL;DR

私信です。

- From: CADDi Inc
- To: [ROLLCAKE Inc](https://rollcake.co/)

## ROLLCAKEのJoinを決めた理由

この会社の魅力は「共に成長し、楽しみを作り出す挑戦を楽しめること」です。

## 入社(前|後)のギャップ

ROLLCAKEでは「体験設計書」を通して「ゴール」の定義にこだわっています。これは課題の定義とは異なり我々の考える**楽しみ**をぶらさないための指標として保守されています。
最初はこの体験設計書の使われ方がイメージしきれてなかったなと今だと感じます。

我々の考える楽しみとは多種多様でありますし、試したい施策も多岐に渡ります。
適宜優先度の判断等も入りますが、ゴールに向かっていく中で必要な施策の実行や計画は現場にも多くの責任を任せてもらえています。

言語化が難しいのですが現場の裁量の大きさが非常に心地よいです。様々自由にさせてもらっています。

## スモールチームに戻って

スモールチームは特有の強さがあります。困ったときには誰にでも相談できる身軽さや、それに答えてくれる心強いメンバーもそれをサポートしてくれる会社もあります。

毎日楽しく働いけておりますし、自分が作ったアウトプットで自分も楽しめています。
「楽しみが待っている毎日」を作っていくぞ。

## Refs

- [26.[前編] ROLLCAKEの体験設計書とユーザーの課題とゴールのどちらにフォーカスするか問題と ゲスト: 伊野亘輝 (@memocamela)](https://takejune.com/podcast/26-memocamera)
- [27.[後編] MUSEUMと新規事業を生む仕組みとデザインするときのチェックリストと ゲスト: 伊野亘輝 (@memocamela)](https://takejune.com/podcast/27-memocamera)
- [地方移住を検討](https://9renpoto.win/entry/2023/09/09/migration-plan)
- [CADDi株式会社にJoinしました](https://9renpoto.win/entry/2020/12/05/join)
17 changes: 10 additions & 7 deletions routes/entry/[...all].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ export default function PostPage(props: PageProps<Post>) {
</Head>
<main class="flex-grow max-w-screen-md w-full px-4 pt-4 mx-auto">
<h1 class="text-2xl font-bold">{post.title}</h1>
<time class="text-gray-500">
{new Date(post.publishedAt).toLocaleDateString("en-us", {
year: "numeric",
month: "long",
day: "numeric",
})}
</time>
<div class="grid grid-cols-2 gap-4">
<time class="text-gray-500">
{new Date(post.publishedAt).toLocaleDateString("en-us", {
year: "numeric",
month: "long",
day: "numeric",
})}
</time>
<p class="text-gray-500">Number of word {post.content.length}</p>
</div>
<div
class="mt-8 markdown-body"
dangerouslySetInnerHTML={{ __html: render(post.content) }}
Expand Down

0 comments on commit 7e88a72

Please sign in to comment.