Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiskevinwang/coffee-code-climb
[DEPRECATED] A blog about coffee, coding, and climbing... with animations that are far too distracting
https://github.com/thiskevinwang/coffee-code-climb
apollo aws blog climb code coffee cognito gatsby graphql hooks markdown netlify react react-redux react-spring redux styled-components typescript
Last synced: about 3 hours ago
JSON representation
[DEPRECATED] A blog about coffee, coding, and climbing... with animations that are far too distracting
- Host: GitHub
- URL: https://github.com/thiskevinwang/coffee-code-climb
- Owner: thiskevinwang
- License: mit
- Created: 2019-03-20T01:46:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T19:42:24.000Z (almost 2 years ago)
- Last Synced: 2024-08-17T00:59:39.727Z (3 months ago)
- Topics: apollo, aws, blog, climb, code, coffee, cognito, gatsby, graphql, hooks, markdown, netlify, react, react-redux, react-spring, redux, styled-components, typescript
- Language: TypeScript
- Homepage: https://coffeecodeclimb.com/
- Size: 54.3 MB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![Netlify Status](https://api.netlify.com/api/v1/badges/cc83e140-a946-4ba8-9e15-7d29f7a7075b/deploy-status)](https://app.netlify.com/sites/musing-pare-709e6b/deploys)
[![Maintainability](https://api.codeclimate.com/v1/badges/6b0371560091a51a5fd6/maintainability)](https://codeclimate.com/github/thiskevinwang/coffee-code-climb/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/6b0371560091a51a5fd6/test_coverage)](https://codeclimate.com/github/thiskevinwang/coffee-code-climb/test_coverage)
Coffee Code ClimbSome blog posts about code, but mostly distrating animations.
### Medium's Claps
![](./content/blog/2020/06/07/new-claps.gif)
### Icon Trail
- [ ] Add gif
### Card Shuffling
- [ ] Add gif
So far I've written random things about...
- 🟦 TypeScript
- 🤦🏻♂️ Coding Questions
- 🦀 Rust
- 🐳 Docker
- ⚛️ React## Testing on a mobile device
### Run `gatsby develop -H 0.0.0.0`
- ```
You can now view coffee-code-climb in the browser.
⠀
Local: http://localhost:8000/
On Your Network: http://192.168.1.102:8000/
```#### [Optional] Run the Apollo API on this host
```diff
- server.listen({ port: 4044 })
+ server.listen({ port: 4044, host: "192.168.1.102" })
or
+ server.listen({ port: 4044, host: process.env.HOST })
```#### [Optional] Make sure any S3 buckets have proper CORS Permissions json
```json
[
{
"AllowedHeaders": ["*"],
"AllowedMethods": ["PUT"],
"AllowedOrigins": [
"http://192.168.1.102:8000",
"http://localhost:8000",
"https://coffeecodeclimb.com"
],
"ExposeHeaders": []
}
]
```#### [Optional] `chrome://inspect` for mobile console logs
Open a tab to `chrome://inspect` — choose when to **start**/**stop** logging
Open another tab to `http://192.168.1.102:8000`