-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'e740bbe3215664338498f8c13fe8ab0756ef6322'
- Loading branch information
Showing
8 changed files
with
274 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "@slide/how-to-tech-writing", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "slidev build", | ||
"export": "slidev export", | ||
"dev": "slidev" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,241 @@ | ||
--- | ||
theme: default | ||
titleTemplate: '%s - ken7253' | ||
colorSchema: 'dark' | ||
fonts: | ||
sans: 'M PLUS 2' | ||
mono: 'M PLUS 1 Code' | ||
--- | ||
|
||
# テックブログ文豪への道 | ||
Road to tech-blog "Bunngou" | ||
|
||
--- | ||
src: "../reuse/me.md" | ||
--- | ||
|
||
--- | ||
layout: center | ||
--- | ||
|
||
## 技術記事書いてますか? | ||
|
||
--- | ||
layout: full | ||
--- | ||
|
||
### 閲覧数少ないけど書いてます | ||
|
||
![2023年11月時点でのzenn.devの自分(ken7253)のページをスクリーンショットした画像、少なくとも9件以上の記事の投稿が確認できる](/img/zenn.dev_ken7253-screenshot.png) | ||
|
||
--- | ||
|
||
## なぜ記事を書くのか | ||
|
||
最初はインプットとアウトプットのバランスを取るために始めた。 | ||
|
||
- 記事を書くことで技術の理解を深める | ||
- 自分の考えを広めたい | ||
- 文章を書くのが好き | ||
- 他のアウトプットは敷居が高い | ||
|
||
記事を書くことを通じて **インプットした知識を洗練させる** ことができる。 | ||
|
||
--- | ||
layout: center | ||
--- | ||
|
||
## どのように記事を書いているか | ||
|
||
--- | ||
|
||
### 題材集め | ||
|
||
自分の知識は広く浅くなので、そこまで特定の分野について色々と書けるわけではない。 | ||
|
||
とにかく題材になりそうなものはメモしておいてあとから肉付けして記事にする。 | ||
|
||
- times | ||
- X(twitter) | ||
- Zennのスクラップ機能 | ||
|
||
など、後から見返すことのできる媒体に保存することが大切 | ||
|
||
**専門分野・得意分野がはっきりしていない人の戦略** として有効 | ||
|
||
<!-- 記事を書いている人は知っていることを書いているわけではなくて学習のログとして学びながら記事を書いていることが多い --> | ||
|
||
--- | ||
layout: center | ||
--- | ||
### いい題材・よく思われない題材 | ||
|
||
<!-- 基本的に記事の内容はその人の自由だけど、面白いかどうかは別として自分がいい記事・良くない記事だと思う基準を共有しておきます。 --> | ||
|
||
--- | ||
|
||
#### いい題材 | ||
|
||
基本的に独自性があって自身の体験が含まれているものがベスト | ||
**誰とも被らない内容** や **誰もまだ書いていない知識** は真っ先に書くべき | ||
|
||
- チームで〇〇を導入してよかったこと・悪かったこと | ||
- サービスを作ってみて〇〇の理解が進んだ話 | ||
- レビューで指摘された〇〇を深掘りしてみた | ||
|
||
新規性がなくても自分たちで考えた結果や、努力をアピールする場所でいい。 | ||
|
||
きっかけは他人の記事や発言であっても **自分で調べて検証する** ことが大切。 | ||
|
||
--- | ||
|
||
#### いい題材 | ||
|
||
**解説記事** などは独自性が無くても大丈夫な部類ではある。 | ||
|
||
- 過去の自分がどこで躓いたのかを思い出しながら書く | ||
- どの程度の知識を持っている人向けの解説なのかを決めておく | ||
|
||
めちゃくちゃ基礎的な内容でも深掘りしてみると意外な知見がある。 | ||
|
||
- `flex`と`grid`の使い分け | ||
- `table`関連要素の使い方 | ||
- `${任意のライブラリ名}`とは何か | ||
|
||
--- | ||
|
||
#### よく思われない題材 | ||
|
||
こういう内容の記事を書くな!という話ではない。 | ||
|
||
個人的にに **質の高い記事に仕上げるのが難しい** と思っている内容がある | ||
|
||
<div v-click> | ||
|
||
- 参考になった記事〇〇選 | ||
- エンジニアが読んでおくべき本〇〇選 | ||
|
||
</div> | ||
|
||
<div v-click> | ||
|
||
なぜか? | ||
|
||
- どうしてもリンク集になりがち | ||
- 自分の意見を入れるのが難しい | ||
- リンク先の記事の内容が正しいのか精査するのがめんどい | ||
|
||
</div> | ||
|
||
--- | ||
|
||
#### よく思われない題材 | ||
|
||
- 特定のライブラリや技術に対してネガティブな内容を含むもの | ||
- 技術に関する用語が微妙に間違っている | ||
|
||
前者は、比較記事やライブラリの移行記事とかでも気を遣うほうがベター | ||
|
||
後者は結構自分もやりがちだけど、ここにこだわると文章の印象が違う。 | ||
自分の中での表記ルールとかを持っておくと更にいい。 | ||
|
||
- React.jsではなくReact | ||
- 要素とタグという用語の使い分け | ||
|
||
最初は **指摘されたら修正すればいい** ぐらいの感覚でOK | ||
|
||
<!-- ネガティブなことは書かない:ライブラリ批判(〇〇はオワコン)やブラウザ批判(〇〇の機能を実装していないのは△△だけ!)みたいなことを書かない、技術の裏には人間がいることを忘れずに。 --> | ||
|
||
--- | ||
layout: center | ||
--- | ||
|
||
## 記事を書く流れ | ||
|
||
--- | ||
|
||
## 記事を書く流れ | ||
|
||
自分の場合はこういう流れで書いてます。 | ||
**書き方に正解はない** のであくまで一例として。 | ||
|
||
<v-clicks> | ||
|
||
1. 着地点を決める | ||
2. 見出しを作る | ||
3. とにかく書く | ||
4. 文章を削る | ||
|
||
</v-clicks> | ||
|
||
--- | ||
|
||
### 着地点を決める | ||
|
||
何も考えずに文を書き出すと **作文中に迷子** になる。 | ||
|
||
文章に矛盾や迷いが生じがちになるので、着地点を決めておく。 | ||
|
||
解説記事とかだと要約とかで締めることが多いかも。 | ||
|
||
--- | ||
|
||
### 見出しを作る | ||
|
||
フロントエンドなら記事も正しくマークアップする。 | ||
|
||
文章を構造化することで **自分が今何を書いているのか** が分かりやすくなる。 | ||
|
||
--- | ||
|
||
### とにかく書く | ||
|
||
見出しと着地点に沿ってとにかく文章を書いていく。 | ||
|
||
構造化は先に済ませているので **書きやすいセクションから** 書いていく。 | ||
|
||
このフェーズで見出しの構造を変更したり着地点を変えたりもする。 | ||
|
||
--- | ||
|
||
### 文章を削る | ||
|
||
小学生の読書感想文ではないので文字数稼ぎは不要 | ||
|
||
勢いに任せて文章を書くと文章が長くなりがちなので文を絞る | ||
|
||
- 無くても伝わる表現は削る | ||
- 語順を並び替えて括弧を削る | ||
- 意味が曖昧な表現があったら書き直す | ||
|
||
**文章もリファクタリング** することで直すべき箇所が分かってくるようになる。 | ||
|
||
個人的に楽しい時間なので時間をかけがち、やり過ぎると永遠に記事が公開できない。 | ||
|
||
--- | ||
layout: image-left | ||
image: https://img.honto.jp/item/5/324/470/27536698_1.jpg | ||
--- | ||
|
||
## おすすめ書籍 | ||
|
||
日本語の作文技術 | ||
|
||
- 句読点の打ち方 | ||
- 修飾語の使い方 | ||
- 語順の整理のしかた | ||
|
||
などなど、相手に伝えるための文章の書き方が勉強できる。 | ||
|
||
--- | ||
|
||
## 最後に | ||
|
||
アドカレや普段の記事を書きたい人向けの相談とかも受け付けています。 | ||
|
||
- 記事のレビュー | ||
- 題材が決まらない人向けの相談 | ||
- 記事の構成についての相談 | ||
- もっと記事のクオリティを上げたい | ||
|
||
などなど **TimesやDMで連絡** いただければ相談時間確保します! |
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,2 @@ | ||
import "./mod.css" | ||
import "@slide/reuse/styles"; |
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,3 @@ | ||
[layout="image-left"] > div:first-child { | ||
background-size: 50% !important; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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