Jason Etcovitch

Results 30 issues of Jason Etcovitch

Example: store posts' markdown, then convert it to HTML. Should it just store the HTML too, to save on rendering?

new post

I'd like to write a post about https://smee.io - why we built it, how it works, and the EventSource API.

new post

![image](https://user-images.githubusercontent.com/10660468/52129159-d6624580-2604-11e9-8215-1531a7b687e8.png) * React components * [``](https://github.com/JasonEtco/jasonet.co/blob/master/src/components/ReposList.js) * [``](https://github.com/JasonEtco/jasonet.co/blob/master/src/components/Repo.js) * [Netlify Function](https://github.com/JasonEtco/jasonet.co/blob/master/functions/get-repos.js) * [GraphQL query](https://github.com/JasonEtco/jasonet.co/blob/2d8688628f4673477e9c35d071a5cf2f7b6fbeaf/functions/get-repos.js#L3-L21) * [Including a PAT](https://github.com/JasonEtco/jasonet.co/blob/2d8688628f4673477e9c35d071a5cf2f7b6fbeaf/functions/get-repos.js#L31)

new post

> Repository dispatch provides new messaging that leverages GitHub's webhook delivery mechanism to automate your workflows based on events of your own domain. https://developer.github.com/actions/creating-workflows/triggering-a-repositorydispatch-webhook/

new post

How to test GitHub Actions. That's automated tests (unit, e2e, etc etc) _and_ how to run them locally. * With [actions-toolkit](https://github.com/JasonEtco/actions-toolkit) * With [nektos/act](https://github.com/nektos/act)

new post

A new feature, the ability to add "Tags" to entries. This will be a way of organizing entries within the same section on a more granular level, and will enable...

new feature

An endpoint to search for entries or pages whose title contains a string. Eventually, when tags are added, it will also search for entries with a given tag.

new feature

Currently, the only available URL route for an entry is `/:sectionSlug/:entrySlug`, which is pretty lame. The route for all entries in a section should be configurable in the section. In...

enhancement