Help
Because sometimes I forget how to drive the software I'm running.
Todoโ
- Make all links absolute. ( e.g. /docs/sass/ai ) While training the documents with OpenAI, I noticed that some of the link references were not absolute.
- Create Github Actions to rebuild a Supabase index of the documents on every commit for the AI Assistant to use.
Logโ
Reposโ
Docusaurusโ
npm install
npm run start
npm run build
npm run serve
24/09/02 - upgrades ( 3.4.0 ๐๐ผ 3.5.2 ) all good ๐๐ผ
24/07/11 - upgrades ( 3.3.2 ๐๐ผ 3.4.0 ) all good ๐๐ผ
24/05/15 - upgrades ( 3.1.1 ๐๐ผ 3.3.2 ) all good ๐๐ผ
npm install @docusaurus/core@latest @docusaurus/plugin-content-blog@latest @docusaurus/preset-classic@latest @docusaurus/theme-mermaid@latest --save
24/01/28 - upgrades ( 3.0.1 ๐๐ผ 3.1.1 ) no overides. didn't have to reswizzle. Watch the letter casing, anchors, and relative URLs because the broken link checker has gotten more strict.
Watch the letter casing, anchors, and relative URLs because the broken link checker has gotten more strict.
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm outdated
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.3 /Users/david/Sites/daw_til
โโโ @docusaurus/core@3.1.1
โโโ @docusaurus/plugin-content-blog@3.1.1
โโโ @docusaurus/preset-classic@3.1.1
โโโ @docusaurus/theme-mermaid@3.1.1
โโโ @mdx-js/mdx@3.0.0
โโโ @mdx-js/react@3.0.0
โโโ clsx@2.1.0
โโโ docusaurus-lunr-search@3.3.2
โโโ docusaurus-plugin-matomo@0.0.8
โโโ markprompt@0.1.7
โโโ plugin-image-zoom@1.1.0 (git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de)
โโโ react-dom@18.2.0
โโโ react-player@2.14.1
โโโ react@18.2.0
23/12/12 - ๐ฅneeded a way to preface my posts
and wanted to change the default width so I swizzle
'd the BlogListPage
and BlogLayout
to widen it with col--9
.
npm run swizzle @docusaurus/theme-classic BlogLayout -- --eject
npm run swizzle @docusaurus/theme-classic BlogListPage -- --eject
line 15 of BlogLayout/index.js
<main
className={clsx('col', {
//'col--7': hasSidebar,
'col--9': hasSidebar,
'col--9 col--offset-1': !hasSidebar,
})}
...
</main>
line 33 of BlogListPage/index.js
<BlogLayout sidebar={sidebar}>
<h1>Posts</h1>
<p>...</p>
<hr/>
<br/>
<BlogPostItems items={items} />
<BlogListPaginator metadata={metadata} />
</BlogLayout>
23/11/27 - noticed my Lunr search was kicking JavaScript errors because I had swizzle
'd it in a previous version and needed to eject
it before the build. ( see github repo comment )
david@ovid๐ :~/sites/daw_til(mainโ) ยป npm run swizzle docusaurus-lunr-search SearchBar -- --eject
> daw-til-2@0.0.3 swizzle
> docusaurus swizzle docusaurus-lunr-search SearchBar --eject
[WARNING]
Swizzle action eject is unsafe to perform on SearchBar.
It is more likely to be affected by breaking changes in the future
If you want to swizzle it, use the `--danger` flag, or confirm that you understand the risks.
โ Do you really want to swizzle this unsafe internal component? โบ YES: I know what I am doing!
[SUCCESS]
Ejected SearchBar from docusaurus-lunr-search to
- "daw_til/src/theme/SearchBar/DocSearch.js"
- "daw_til/src/theme/SearchBar/HighlightSearchResults.jsx"
- "daw_til/src/theme/SearchBar/algolia.css"
- "daw_til/src/theme/SearchBar/index.jsx"
- "daw_til/src/theme/SearchBar/lunar-search.js"
- "daw_til/src/theme/SearchBar/styles.css"
- "daw_til/src/theme/SearchBar/templates.js"
- "daw_til/src/theme/SearchBar/utils.js"
Also noticed that since it now uses the default Algolia search elements which includes dark mode, I had to change the styling on it in /src/css/custom.css
.
[data-theme='dark'] .ds-dropdown-menu {
--ifm-background-color: #383a42;
border-color: #535763;
}
v3.0.0โ
23/11/12 - Docusaurus updated 2.4.3 ๐๐ผ 3.0.0 and React 17.0.2 ๐๐ผ 18.2.0
david@ovid๐ :~/sites/daw_til(mainโ) ยป npm outdated
Package Current Wanted Latest Location Depended by
@docusaurus/core 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/core daw_til
@docusaurus/plugin-content-blog 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/plugin-content-blog daw_til
@docusaurus/preset-classic 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/preset-classic daw_til
@docusaurus/theme-mermaid 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/theme-mermaid daw_til
@mdx-js/react 1.6.22 1.6.22 3.0.0 node_modules/@mdx-js/react daw_til
clsx 1.2.1 1.2.1 2.0.0 node_modules/clsx daw_til
docusaurus-lunr-search 3.0.0 3.3.0 3.3.0 node_modules/docusaurus-lunr-search daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til
Docusaurus v3 now requires React 18 and Typescript 5
This introduced a bunch of breaking errors in the markdown formatting via the MDX formatting that are documented at:
Went in and cleaned up the markdown formatting - mostly the tags on links and indented code highlighting formatting.The build process was also failing due to some errors defining text wrapped in {}
๐๐ผ
Error: Failed to compile due to Webpack errors.
Error: Docusaurus server-side rendering could not render static page with path /docs/editors/git because of error: stash_number is not defined
Error: Docusaurus server-side rendering could not render static page with path /docs/lang/Rust because of error: url is not defined
Error: Docusaurus server-side rendering could not render static page with path /docs/shell/zsh because of error: bz2 is not defined
Error: Docusaurus server-side rendering could not render static page with path /lists/tweets_follow because of error: SoftwareHardwareDeveloperDesignerMakerInventor is not defined
at /Users/david/Sites/daw_til/node_modules/@docusaurus/core/lib/webpack/utils.js:207:24
at /Users/david/Sites/daw_til/node_modules/webpack/lib/MultiCompiler.js:554:14
at processQueueWorker (/Users/david/Sites/daw_til/node_modules/webpack/lib/MultiCompiler.js:491:6)
at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
}
[INFO] Docusaurus version: 3.0.0
Node version: v18.12.1
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@3.0.0
โโโ @docusaurus/plugin-content-blog@3.0.0
โโโ @docusaurus/preset-classic@3.0.0
โโโ @docusaurus/theme-mermaid@3.0.0
โโโ @mdx-js/mdx@3.0.0
โโโ @mdx-js/react@3.0.0
โโโ clsx@2.0.0
โโโ docusaurus-lunr-search@3.3.0
โโโ docusaurus-plugin-matomo@0.0.6
โโโ markprompt@0.1.7
โโโ plugin-image-zoom@1.1.0 (git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de)
โโโ react-dom@18.2.0
โโโ react-player@2.13.0
โโโ react@18.2.0
23/09/23 - docusaurus updated - 2.4.1 ๐๐ผ 2.4.3 -> left react at 17 for now, but updated the react player to 2.13.
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@2.4.3
โโโ @docusaurus/plugin-content-blog@2.4.3
โโโ @docusaurus/preset-classic@2.4.3
โโโ @docusaurus/theme-mermaid@2.4.3
โโโ @mdx-js/react@1.6.22
โโโ clsx@1.2.1
โโโ docusaurus-lunr-search@3.0.0
โโโ docusaurus-plugin-matomo@0.0.6
โโโ markprompt@0.1.7
โโโ plugin-image-zoom@1.1.0
โโโ react-dom@17.0.2
โโโ react-player@2.13.0
โโโ react@17.0.2
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm outdated
Package Current Wanted Latest Location Depended by
@mdx-js/react 1.6.22 1.6.22 2.3.0 node_modules/@mdx-js/react daw_til
clsx 1.2.1 1.2.1 2.0.0 node_modules/clsx daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til
23/08/20 - added an image zoom plugin from https://github.com/flexanalytics/plugin-image-zoom because I didn't like linking to the images or having them constrained between the sidebars.
23/08/18 - updated notes structure to include some personal documents like /documents/family/mom/mom.md which is actually a directory outside of the site build on my computer. I ignore them in the builds and repos. The reason for this is that the more I use machine learning against my own documents, the more the information becomes valuable in vector searches. Because of that, I'm rethinking the way I even organize documents on my computer. For instance this doc when I'm talking to my mom on the phone about whatever, I can reference references I've previously made.
23/05/24 - docusaurus updated - 2.4.0 ๐๐ผ 2.4.1
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@2.4.1
โโโ @docusaurus/plugin-content-blog@2.4.1
โโโ @docusaurus/preset-classic@2.4.1
โโโ @docusaurus/theme-mermaid@2.4.1
โโโ @mdx-js/react@1.6.22
โโโ clsx@1.2.1
โโโ docusaurus-lunr-search@2.3.2
โโโ docusaurus-plugin-matomo@0.0.6
โโโ markprompt@0.1.7
โโโ react-dom@17.0.2
โโโ react-player@2.12.0
โโโ react@17.0.2
23/05/09
- added react-player
- added markprompt
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@2.4.0
โโโ @docusaurus/plugin-content-blog@2.4.0
โโโ @docusaurus/preset-classic@2.4.0
โโโ @docusaurus/theme-mermaid@2.4.0
โโโ @mdx-js/react@1.6.22
โโโ clsx@1.2.1
โโโ docusaurus-lunr-search@2.3.2
โโโ docusaurus-plugin-matomo@0.0.6
โโโ markprompt@0.1.7
โโโ react-dom@17.0.2
โโโ react-player@2.12.0
โโโ react@17.0.2
23/03/24
- npm up doc/core 2.3.1 -> 2.4.0
# still have issues with mdx-js/react@latest - holding it in place
david@ovid๐ :~/sites/daw_til(mainโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@2.4.0
โโโ @docusaurus/plugin-content-blog@2.4.0
โโโ @docusaurus/preset-classic@2.4.0
โโโ @docusaurus/theme-mermaid@2.4.0
โโโ @mdx-js/react@1.6.22
โโโ clsx@1.2.1
โโโ docusaurus-lunr-search@2.3.2
โโโ docusaurus-plugin-matomo@0.0.6
โโโ react-dom@17.0.2
โโโ react@17.0.2
22/01/31
- upgraded to docusaurus v2.3.0
david@ovid๐ :~/sites/daw_til(masterโก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โโโ @docusaurus/core@2.3.0
โโโ @docusaurus/plugin-content-blog@2.3.0
โโโ @docusaurus/preset-classic@2.3.0
โโโ @docusaurus/theme-mermaid@2.3.0
โโโ @mdx-js/react@1.6.22
โโโ clsx@1.2.1
โโโ docusaurus-lunr-search@2.3.2
โโโ docusaurus-plugin-matomo@0.0.6
โโโ react-dom@17.0.2
โโโ react@17.0.2
22/11/13
- added a Reader page
- move branch master -> main for Git
- addped mermaid and created overview graph
- upgraded to v.2.2.0
david@ovid๐ :~/sites/daw_til(masterโก) ยป npm outdated 127 โต
Package Current Wanted Latest Location Depended by
@docusaurus/core 2.0.0-beta.15 2.2.0 2.2.0 node_modules/@docusaurus/core daw_til
@docusaurus/preset-classic 2.0.0-beta.15 2.2.0 2.2.0 node_modules/@docusaurus/preset-classic daw_til
@mdx-js/react 1.6.22 1.6.22 2.1.5 node_modules/@mdx-js/react daw_til
clsx 1.1.1 1.2.1 1.2.1 node_modules/clsx daw_til
docusaurus-lunr-search 2.1.15 2.3.1 2.3.1 node_modules/docusaurus-lunr-search daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til
- colorMode.switchConfig is deprecated #6771 rm'd -
switchConfig: {
darkIcon: '\u2800',
darkIconStyle: {
marginLeft: '1px',
},
lightIcon: '\u2800',
lightIconStyle: {
marginLeft: '1px',
},
},
- lunr-search broken ( see: https://github.com/praveenn77/docusaurus-lunr-search/pull/91 ) made the following change in the plugin to fix
src/theme/SearchBar/lunar-search.js
29 - url: this.baseUrl !== '/' || doc.url.charAt(0) !== '/' ? this.baseUrl + doc.url : doc.url,
+ url: doc.url,
12/04/2021
- added in Notes for non-technical docs
- upgraded to v.2.0.0-beta.13
11/10/2021
- Updated the Docusaurus & NPM packages.
- Combined my old awesome-david repo into it for simplicity and rebuilt.
03/18/2021
Migrated this version from Gitbook because it wasn't playing nicely with Node.js v14 and it had a couple security vulnerabilities in the packages. Gitbook stop supporting the open source version likely for business reasons, so I migrated it all to https://docsify.js.org/... didn't do docsify because I can't generate static HTML which is what my DOM parser depends on to pull content elsewhere. Decided on using https://docusaurus.io/ instead. It required a bit of cleanup in the Markdown to do so. See: https://davidawindham.com/til/help
05/02/2017
While working on another project yesterday afternoon, I ran into set of documentation (https://docs.feathersjs.com/) that I spent a lot of time reading and will likely forget about sometime soon after I abandon using the library in other projects. Of course I stuffed a bookmark of the documentation into my quasi organized set of chrome bookmarks based on each project, but the fact that the documentation was hosted using Gitbook, reminded me of a practice I've seen others do.
03/18/21 - Gotta Migrate my TIL. Just noticed that gitbook doesn't play nicely with Node.js v14.
david@macs๐ถ:~/sites/daw_til(masterโก) ยป gitbook serve --no-live
/Users/david/.nvm/versions/node/v14.15.4/lib/node_modules/gitbook-cli/node_modules/npm/node_modules/graceful-fs/polyfills.js:287
if (cb) cb.apply(this, arguments)
TypeError: cb.apply is not a function
at /Users/david/.nvm/versions/node/v14.15.4/lib/node_modules/gitbook-cli/node_modules/npm/node_modules/graceful-fs/polyfills.js:287:18
at FSReqCallback.oncomplete (fs.js:184:5)
david@macs๐ถ:~/sites/daw_til(masterโก) ยป node -v
v14.15.4
david@macs๐ถ:~/sites/daw_til(masterโก) ยป nvm ls
v6.10.3
v6.11.2
v7.6.0
v8.4.0
v8.11.4
v8.12.0
v10.16.3
-> v14.15.4
system
default -> 14 (-> v14.15.4)
unstable -> N/A (default)
node -> stable (-> v14.15.4) (default)
stable -> 14.15 (-> v14.15.4) (default)
iojs -> iojs- (-> system) (default)
lts/* -> lts/fermium (-> v14.15.4)
lts/argon -> v4.9.1 (-> N/A)
lts/boron -> v6.17.1 (-> N/A)
lts/carbon -> v8.17.0 (-> N/A)
lts/dubnium -> v10.23.2 (-> N/A)
lts/erbium -> v12.20.1 (-> N/A)
lts/fermium -> v14.15.4
david@macs๐ถ:~/sites/daw_til(masterโก) ยป nvm use 10.16.3
Now using node v10.16.3 (npm v7.5.4)
david@macs๐ถ:~/sites/daw_til(masterโก) ยป gitbook serve --no-live
info: 18 plugins are installed...
3/14/20 Ran into a couple errors with Gitbook and noticed that they are deprecating the open source version. Will need to migrate Gitbook to Docsify:
- https://github.com/GitbookIO/gitbook
- https://github.com/docsifyjs/docsify/
- the current Gitbook Search Plugin key to the current setup and the docsify search is good.
- ran package upgrades before migration.
- docsify doesn't support all prism languages - https://docsify.js.org/#/language-highlight?id=language-highlight
- gitbook-prism-plugin has an outdated version of prism.
- forked pkg to https://www.npmjs.com/package/gitbook-plugin-prism-dw
- add "gitbook-plugin-prism-dw": "^2.4.1" to pkg.json
migrateโ
# install docsify globally
npm i docsify-cli -g
# copy existing repo
mv til/ til_old
cp /til_old /til
docsify init til/
# Rename summary.md to _sidebar.md
mv summary.md _sidebar.md
#add loadSidebar: true to window.$docsify in index.html
docsify serve
migrate notes:โ
{
"name": "windhamdavid_til",
"version": "1.0.0",
"description": "my til gitbook",
"dependencies": {
"gitbook": "^3.2.3",
"gitbook-plugin-ace": "^0.3.2",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-github-embed": "^1.3.1",
"gitbook-plugin-piwik": "^0.2.1",
"gitbook-plugin-search-plus": "^1.0.4-alpha-3",
"gitbook-plugin-toggle-chapters": "0.0.3",
"gitbook-plugin-toggle-headers": "^0.1.0",
"gitbook-plugin-video": "0.0.3"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/windhamdavid/til.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "David A. Windham",
"private": true,
"license": "UNLICENSED",
"homepage": "https://davidawindham.com"
}
david@macs:~/sites/til(masterโก) ยป npm outdated 130 โต
Package Current Wanted Latest Location
gitbook-plugin-search-plus 1.0.3 1.0.4-alpha-3 1.0.4-alpha-3 windhamdavid_til
gitbook 3.2.2 3.2.3 2.6.9 windhamdavid_til
gitbook-plugin-github-embed 1.1.2 1.3.1 1.3.1 windhamdavid_til
Admonitionsโ
Some content with Markdown syntax
. Check this api
.
Mermaidโ
Creating Docsโ
Create a Markdown file in /docs/doc.md
Add to sidebars.js
Meta Data using Front Matterโ
---
id: my-doc
title: My document title
description: My document description
sidebar_label: My doc
---
Markdown content
Markdown linksโ
url paths or relative file paths
[Create a page](/create-a-page)
[Create a page](./create-a-page.md)
Gitbook:โ
https://github.com/GitbookIO/gitbook
https://github.com/GitbookIO/gitbook/blob/master/docs/setup.md
https://toolchain.gitbook.com/
npm install -g gitbook-cli
cd sites/til
gitbook help
gitbook build .
gitbook serve .
http://localhost:4000/
run for production without livereload.js
gitbook serve --no-live
Markdown:โ
Markdown Cheatsheet from Github Markdown Cheatsheet
Headersโ
# h1
## h2
### h3
#### h4
##### h5
###### h6
Header 1
========
Header 2
--------
Emphasisโ
*italic*
_italic_
**bold**
__bold__
***bold italic***
___bold italic___
~~strikethrough~~
`code`
Listsโ
* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
Linksโ
[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>
Imagesโ
![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg
Codeโ
4 space indent
makes a code block
```
code fences
```
```js
codeFences.withLanguage()
```
Blockquotesโ
> This is
> a blockquote
>
> > Nested
> > Blockquote
Horizontal lineโ
----
****
Tablesโ
| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content
Code:โ
Piwik Pluginโ
https://github.com/emmanuel-keller/gitbook-plugin-piwik
use the language identifier after the back ticks for the code block in markdown
<style>
* {
margin: 0;
padding: 0;
}
</style>
<script>
$(document).ready(function(){
var something = 5;
if (something == 5){
console.log('woohoo');
}
});
</script>
<section>
<p>Hello world</p>
</section>
Githubโ
https://github.com/visallo/gitbook-plugin-github-embed
Toggle Chaptersโ
https://github.com/poojan/gitbook-plugin-toggle-chapters
https://github.com/hypertrack/gitbook-plugin-toggle-headers
Media:โ
Images:โ
![tabs](./img/til_tabs.png)
Add video from Youtube or Vimeoโ
{% video %}https://www.domain.com/video_url{% endvideo %}
Add video from source fileโ
//add url using html5
<video width="720" height="480" controls src="/media/wha.mp4" type="video/mp4"></video>
###HTML adding published date with microformat https://www.w3.org/TR/NOTE-datetime
<time class="updated" datetime="2016-11-30T11:16:16+00:00" itemprop="datePublished">11/30/2016</time>
Emojisโ
People
:bowtie: :bowtie: | ๐ :smile: | ๐ :laughing: |
---|---|---|
๐ :blush: | ๐ :smiley: | โบ๏ธ :relaxed: |
๐ :smirk: | ๐ :heart_eyes: | ๐ :kissing_heart: |
๐ :kissing_closed_eyes: | ๐ณ :flushed: | ๐ :relieved: |
:satisfied: :satisfied: | ๐ :grin: | ๐ :wink: |
๐ :stuck_out_tongue_winking_eye: | ๐ :stuck_out_tongue_closed_eyes: | ๐ :grinning: |
๐ :kissing: | ๐ :kissing_smiling_eyes: | ๐ :stuck_out_tongue: |
๐ด :sleeping: | ๐ :worried: | ๐ฆ :frowning: |
๐ง :anguished: | ๐ฎ :open_mouth: | ๐ฌ :grimacing: |
๐ :confused: | ๐ฏ :hushed: | ๐ :expressionless: |
๐ :unamused: | ๐
:sweat_smile: | ๐ :sweat: |
๐ฅ :disappointed_relieved: | ๐ฉ :weary: | ๐ :pensive: |
๐ :disappointed: | ๐ :confounded: | ๐จ :fearful: |
๐ฐ :cold_sweat: | ๐ฃ :persevere: | ๐ข :cry: |
๐ญ :sob: | ๐ :joy: | ๐ฒ :astonished: |
๐ฑ :scream: | :neckbeard: :neckbeard: | ๐ซ :tired_face: |
๐ :angry: | ๐ก :rage: | ๐ค :triumph: |
๐ช :sleepy: | ๐ :yum: | ๐ท :mask: |
๐ :sunglasses: | ๐ต :dizzy_face: | ๐ฟ :imp: |
๐ :smiling_imp: | ๐ :neutral_face: | ๐ถ :no_mouth: |
๐ :innocent: | ๐ฝ :alien: | ๐ :yellow_heart: |
๐ :blue_heart: | ๐ :purple_heart: | โค๏ธ :heart: |
๐ :green_heart: | ๐ :broken_heart: | ๐ :heartbeat: |
๐ :heartpulse: | ๐ :two_hearts: | ๐ :revolving_hearts: |
๐ :cupid: | ๐ :sparkling_heart: | โจ :sparkles: |
โญ :star: | ๐ :star2: | ๐ซ :dizzy: |
๐ฅ :boom: | :collision: :collision: | ๐ข :anger: |
โ :exclamation: | โ :question: | โ :grey_exclamation: |
โ :grey_question: | ๐ค :zzz: | ๐จ :dash: |
๐ฆ :sweat_drops: | ๐ถ :notes: | ๐ต :musical_note: |
๐ฅ :fire: | :hankey: :hankey: | ๐ฉ :poop: |
:shit: :shit: | ๐ :+1: | :thumbsup: :thumbsup: |
๐ :-1: | :thumbsdown: :thumbsdown: | ๐ :ok_hand: |
:punch: :punch: | ๐ :facepunch: | โ :fist: |
โ :v: | ๐ :wave: | :hand: :hand: |
โ :raised_hand: | ๐ :open_hands: | โ :point_up: |
๐ :point_down: | ๐ :point_left: | ๐ :point_right: |
๐ :raised_hands: | ๐ :pray: | ๐ :point_up_2: |
๐ :clap: | ๐ช :muscle: | ๐ค :metal: |
๐ :fu: | :walking: :walking: | :runner: :runner: |
:running: :running: | ๐ซ :couple: | :family: :family: |
๐ฌ :two_men_holding_hands: | ๐ญ :two_women_holding_hands: | ๐ :dancer: |
:dancers: :dancers: | ๐ :ok_woman: | :no_good: :no_good: |
:information_desk_person: :information_desk_person: | :raising_hand: :raising_hand: | ๐ฐ :bride_with_veil: |
:person_with_pouting_face: :person_with_pouting_face: | :person_frowning: :person_frowning: | :bow: :bow: |
:couplekiss: :couplekiss: | :couple_with_heart: :couple_with_heart: | :massage: :massage: |
:haircut: :haircut: | ๐
:nail_care: | ๐ฆ :boy: |
๐ง :girl: | ๐ฉ :woman: | ๐จ :man: |
๐ถ :baby: | ๐ต :older_woman: | ๐ด :older_man: |
:person_with_blond_hair: :person_with_blond_hair: | ๐ฒ :man_with_gua_pi_mao: | ๐ณ :man_with_turban: |
:construction_worker: :construction_worker: | :cop: :cop: | ๐ผ :angel: |
๐ธ :princess: | ๐บ :smiley_cat: | ๐ธ :smile_cat: |
๐ป :heart_eyes_cat: | ๐ฝ :kissing_cat: | ๐ผ :smirk_cat: |
๐ :scream_cat: | ๐ฟ :crying_cat_face: | ๐น :joy_cat: |
๐พ :pouting_cat: | ๐น :japanese_ogre: | ๐บ :japanese_goblin: |
๐ :see_no_evil: | ๐ :hear_no_evil: | ๐ :speak_no_evil: |
๐ :guardsman: | ๐ :skull: | :feet: :feet: |
๐ :lips: | ๐ :kiss: | ๐ง :droplet: |
๐ :ear: | ๐ :eyes: | ๐ :nose: |
๐
:tongue: | ๐ :love_letter: | ๐ค :bust_in_silhouette: |
๐ฅ :busts_in_silhouette: | ๐ฌ :speech_balloon: | ๐ญ :thought_balloon: |
:feelsgood: :feelsgood: | :finnadie: :finnadie: | :goberserk: :goberserk: |
:godmode: :godmode: | :hurtrealbad: :hurtrealbad: | :rage1: :rage1: |
:rage2: :rage2: | :rage3: :rage3: | :rage4: :rage4: |
:suspect: :suspect: | :trollface: :trollface: |
Nature
โ๏ธ :sunny: | โ :umbrella: | โ๏ธ :cloud: |
---|---|---|
โ๏ธ :snowflake: | โ :snowman: | โก :zap: |
๐ :cyclone: | ๐ :foggy: | ๐ :ocean: |
๐ฑ :cat: | ๐ถ :dog: | ๐ญ :mouse: |
๐น :hamster: | ๐ฐ :rabbit: | ๐บ :wolf: |
๐ธ :frog: | ๐ฏ :tiger: | ๐จ :koala: |
๐ป :bear: | ๐ท :pig: | ๐ฝ :pig_nose: |
๐ฎ :cow: | ๐ :boar: | ๐ต :monkey_face: |
๐ :monkey: | ๐ด :horse: | ๐ :racehorse: |
๐ซ :camel: | ๐ :sheep: | ๐ :elephant: |
๐ผ :panda_face: | ๐ :snake: | ๐ฆ :bird: |
๐ค :baby_chick: | ๐ฅ :hatched_chick: | ๐ฃ :hatching_chick: |
๐ :chicken: | ๐ง :penguin: | ๐ข :turtle: |
๐ :bug: | ๐ :honeybee: | ๐ :ant: |
๐ :beetle: | ๐ :snail: | ๐ :octopus: |
๐ :tropical_fish: | ๐ :fish: | ๐ณ :whale: |
๐ :whale2: | ๐ฌ :dolphin: | ๐ :cow2: |
๐ :ram: | ๐ :rat: | ๐ :water_buffalo: |
๐
:tiger2: | ๐ :rabbit2: | ๐ :dragon: |
๐ :goat: | ๐ :rooster: | ๐ :dog2: |
๐ :pig2: | ๐ :mouse2: | ๐ :ox: |
๐ฒ :dragon_face: | ๐ก :blowfish: | ๐ :crocodile: |
๐ช :dromedary_camel: | ๐ :leopard: | ๐ :cat2: |
๐ฉ :poodle: | ๐พ :paw_prints: | ๐ :bouquet: |
๐ธ :cherry_blossom: | ๐ท :tulip: | ๐ :four_leaf_clover: |
๐น :rose: | ๐ป :sunflower: | ๐บ :hibiscus: |
๐ :maple_leaf: | ๐ :leaves: | ๐ :fallen_leaf: |
๐ฟ :herb: | ๐ :mushroom: | ๐ต :cactus: |
๐ด :palm_tree: | ๐ฒ :evergreen_tree: | ๐ณ :deciduous_tree: |
๐ฐ :chestnut: | ๐ฑ :seedling: | ๐ผ :blossom: |
๐พ :ear_of_rice: | ๐ :shell: | ๐ :globe_with_meridians: |
๐ :sun_with_face: | ๐ :full_moon_with_face: | ๐ :new_moon_with_face: |
๐ :new_moon: | ๐ :waxing_crescent_moon: | ๐ :first_quarter_moon: |
๐ :waxing_gibbous_moon: | ๐ :full_moon: | ๐ :waning_gibbous_moon: |
๐ :last_quarter_moon: | ๐ :waning_crescent_moon: | ๐ :last_quarter_moon_with_face: |
๐ :first_quarter_moon_with_face: | :moon: :moon: | ๐ :earth_africa: |
๐ :earth_americas: | ๐ :earth_asia: | ๐ :volcano: |
๐ :milky_way: | โ
:partly_sunny: | :octocat: :octocat: |
:squirrel: :squirrel: |
Objects
๐ :bamboo: | ๐ :gift_heart: | ๐ :dolls: |
---|---|---|
๐ :school_satchel: | ๐ :mortar_board: | ๐ :flags: |
๐ :fireworks: | ๐ :sparkler: | ๐ :wind_chime: |
๐ :rice_scene: | ๐ :jack_o_lantern: | ๐ป :ghost: |
๐
:santa: | ๐ :christmas_tree: | ๐ :gift: |
๐ :bell: | ๐ :no_bell: | ๐ :tanabata_tree: |
๐ :tada: | ๐ :confetti_ball: | ๐ :balloon: |
๐ฎ :crystal_ball: | ๐ฟ :cd: | ๐ :dvd: |
๐พ :floppy_disk: | ๐ท :camera: | ๐น :video_camera: |
๐ฅ :movie_camera: | ๐ป :computer: | ๐บ :tv: |
๐ฑ :iphone: | โ๏ธ :phone: | :telephone: :telephone: |
๐ :telephone_receiver: | ๐ :pager: | ๐ :fax: |
๐ฝ :minidisc: | ๐ผ :vhs: | ๐ :sound: |
๐ :speaker: | ๐ :mute: | ๐ข :loudspeaker: |
๐ฃ :mega: | โ :hourglass: | โณ :hourglass_flowing_sand: |
โฐ :alarm_clock: | โ :watch: | ๐ป :radio: |
๐ก :satellite: | โฟ :loop: | ๐ :mag: |
๐ :mag_right: | ๐ :unlock: | ๐ :lock: |
๐ :lock_with_ink_pen: | ๐ :closed_lock_with_key: | ๐ :key: |
๐ก :bulb: | ๐ฆ :flashlight: | ๐ :high_brightness: |
๐
:low_brightness: | ๐ :electric_plug: | ๐ :battery: |
๐ฒ :calling: | โ๏ธ :email: | ๐ซ :mailbox: |
๐ฎ :postbox: | ๐ :bath: | ๐ :bathtub: |
๐ฟ :shower: | ๐ฝ :toilet: | ๐ง :wrench: |
๐ฉ :nut_and_bolt: | ๐จ :hammer: | ๐บ :seat: |
๐ฐ :moneybag: | ๐ด :yen: | ๐ต :dollar: |
๐ท :pound: | ๐ถ :euro: | ๐ณ :credit_card: |
๐ธ :money_with_wings: | ๐ง :e-mail: | ๐ฅ :inbox_tray: |
๐ค :outbox_tray: | :envelope: :envelope: | ๐จ :incoming_envelope: |
๐ฏ :postal_horn: | ๐ช :mailbox_closed: | ๐ฌ :mailbox_with_mail: |
๐ญ :mailbox_with_no_mail: | ๐ช :door: | ๐ฌ :smoking: |
๐ฃ :bomb: | ๐ซ :gun: | ๐ช :hocho: |
๐ :pill: | ๐ :syringe: | ๐ :page_facing_up: |
๐ :page_with_curl: | ๐ :bookmark_tabs: | ๐ :bar_chart: |
๐ :chart_with_upwards_trend: | ๐ :chart_with_downwards_trend: | ๐ :scroll: |
๐ :clipboard: | ๐ :calendar: | ๐
:date: |
๐ :card_index: | ๐ :file_folder: | ๐ :open_file_folder: |
โ๏ธ :scissors: | ๐ :pushpin: | ๐ :paperclip: |
โ๏ธ :black_nib: | โ๏ธ :pencil2: | ๐ :straight_ruler: |
๐ :triangular_ruler: | ๐ :closed_book: | ๐ :green_book: |
๐ :blue_book: | ๐ :orange_book: | ๐ :notebook: |
๐ :notebook_with_decorative_cover: | ๐ :ledger: | ๐ :books: |
๐ :bookmark: | ๐ :name_badge: | ๐ฌ :microscope: |
๐ญ :telescope: | ๐ฐ :newspaper: | ๐ :football: |
๐ :basketball: | โฝ :soccer: | โพ :baseball: |
๐พ :tennis: | ๐ฑ :8ball: | ๐ :rugby_football: |
๐ณ :bowling: | โณ :golf: | :mountain_bicyclist: :mountain_bicyclist: |
:bicyclist: :bicyclist: | ๐ :horse_racing: | ๐ :snowboarder: |
:swimmer: :swimmer: | :surfer: :surfer: | ๐ฟ :ski: |
โ ๏ธ :spades: | โฅ๏ธ :hearts: | โฃ๏ธ :clubs: |
โฆ๏ธ :diamonds: | ๐ :gem: | ๐ :ring: |
๐ :trophy: | ๐ผ :musical_score: | ๐น :musical_keyboard: |
๐ป :violin: | ๐พ :space_invader: | ๐ฎ :video_game: |
๐ :black_joker: | ๐ด :flower_playing_cards: | ๐ฒ :game_die: |
๐ฏ :dart: | ๐ :mahjong: | ๐ฌ :clapper: |
๐ :memo: | :pencil: :pencil: | :book: :book: |
๐จ :art: | ๐ค :microphone: | ๐ง :headphones: |
๐บ :trumpet: | ๐ท :saxophone: | ๐ธ :guitar: |
:shoe: :shoe: | ๐ก :sandal: | ๐ :high_heel: |
๐ :lipstick: | ๐ข :boot: | :shirt: :shirt: |
๐ :tshirt: | ๐ :necktie: | ๐ :womans_clothes: |
๐ :dress: | ๐ฝ :running_shirt_with_sash: | ๐ :jeans: |
๐ :kimono: | ๐ :bikini: | ๐ :ribbon: |
๐ฉ :tophat: | ๐ :crown: | ๐ :womans_hat: |
๐ :mans_shoe: | ๐ :closed_umbrella: | ๐ผ :briefcase: |
๐ :handbag: | ๐ :pouch: | ๐ :purse: |
๐ :eyeglasses: | ๐ฃ :fishing_pole_and_fish: | โ :coffee: |
๐ต :tea: | ๐ถ :sake: | ๐ผ :baby_bottle: |
๐บ :beer: | ๐ป :beers: | ๐ธ :cocktail: |
๐น :tropical_drink: | ๐ท :wine_glass: | ๐ด :fork_and_knife: |
๐ :pizza: | ๐ :hamburger: | ๐ :fries: |
๐ :poultry_leg: | ๐ :meat_on_bone: | ๐ :spaghetti: |
๐ :curry: | ๐ค :fried_shrimp: | ๐ฑ :bento: |
๐ฃ :sushi: | ๐ฅ :fish_cake: | ๐ :rice_ball: |
๐ :rice_cracker: | ๐ :rice: | ๐ :ramen: |
๐ฒ :stew: | ๐ข :oden: | ๐ก :dango: |
๐ฅ :egg: | ๐ :bread: | ๐ฉ :doughnut: |
๐ฎ :custard: | ๐ฆ :icecream: | ๐จ :ice_cream: |
๐ง :shaved_ice: | ๐ :birthday: | ๐ฐ :cake: |
๐ช :cookie: | ๐ซ :chocolate_bar: | ๐ฌ :candy: |
๐ญ :lollipop: | ๐ฏ :honey_pot: | ๐ :apple: |
๐ :green_apple: | ๐ :tangerine: | ๐ :lemon: |
๐ :cherries: | ๐ :grapes: | ๐ :watermelon: |
๐ :strawberry: | ๐ :peach: | ๐ :melon: |
๐ :banana: | ๐ :pear: | ๐ :pineapple: |
๐ :sweet_potato: | ๐ :eggplant: | ๐
:tomato: |
๐ฝ :corn: |
Places
๐ :house: | ๐ก :house_with_garden: | ๐ซ :school: |
---|---|---|
๐ข :office: | ๐ฃ :post_office: | ๐ฅ :hospital: |
๐ฆ :bank: | ๐ช :convenience_store: | ๐ฉ :love_hotel: |
๐จ :hotel: | ๐ :wedding: | โช :church: |
๐ฌ :department_store: | ๐ค :european_post_office: | ๐ :city_sunrise: |
๐ :city_sunset: | ๐ฏ :japanese_castle: | ๐ฐ :european_castle: |
โบ :tent: | ๐ญ :factory: | ๐ผ :tokyo_tower: |
๐พ :japan: | ๐ป :mount_fuji: | ๐ :sunrise_over_mountains: |
๐
:sunrise: | ๐ :stars: | ๐ฝ :statue_of_liberty: |
๐ :bridge_at_night: | ๐ :carousel_horse: | ๐ :rainbow: |
๐ก :ferris_wheel: | โฒ :fountain: | ๐ข :roller_coaster: |
๐ข :ship: | ๐ค :speedboat: | :boat: :boat: |
โต :sailboat: | :rowboat: :rowboat: | โ :anchor: |
๐ :rocket: | โ๏ธ :airplane: | ๐ :helicopter: |
๐ :steam_locomotive: | ๐ :tram: | ๐ :mountain_railway: |
๐ฒ :bike: | ๐ก :aerial_tramway: | ๐ :suspension_railway: |
๐ :mountain_cableway: | ๐ :tractor: | ๐ :blue_car: |
๐ :oncoming_automobile: | :car: :car: | ๐ :red_car: |
๐ :taxi: | ๐ :oncoming_taxi: | ๐ :articulated_lorry: |
๐ :bus: |