Aidan Feldman

Results 219 comments of Aidan Feldman

I have done this in JS before: https://github.com/afeld/hackerhours.org/blob/gh-pages/scripts/anchor.coffee I know not all Markdown parsers automatically add `id`s for headings, but [Kramdown](http://kramdown.gettalong.org/index.html) does by default.

Worth noting: in the 10x project, we considered data visualizations to be "tables, charts, graphs, maps and diagrams". Seems like the page on this site defines them more narrowly.

Appears that all of these (and more) are covered in the [Accessibility Website Catalogue](https://docs.google.com/spreadsheets/d/1oaoIAYmRK-hAc-bJRE9PHAjadfw-DYKSo-ugt4KA3Vs/edit#gid=0), which are being considered for consolidation.

Unless it's a blog post, I say :-1: I think this is big enough for its own microsite.

> And yet the Dashboard can't be found from the homepage, so what does it matter if it's a microsite or not. ![mic drop](http://media.giphy.com/media/IOCXHPvn3WErm/giphy.gif)

P.S. @meiqimichelle is starting to think about combining the 18f.gsa.gov, Hub, and the Dashboard... there's a Trello card, but not sure if there's a corresponding issue/PR. https://trello.com/c/5B2qQVjN/6-work-with-18f-gsa-gov-team-on-ux-next-steps-for-entire-site-hub-included

> the trello link doesn't resolve - says private. Weird. Just made [the board](https://trello.com/b/cI4LmXOj/wg-documentation) public, so hopefully visible now.

Just learned it's [supported in Brightspace](https://brightspacecommunity.force.com/s/article/Brightspace-Platform-April-2021-20-21-4-Release-Notes) as well.

My solution (simplified example): ```jsx class App extends React.Component { constructor(props) { super(props) this.sectionFocusEl = React.createRef() } componentDidUpdate(prevProps) { // https://stackoverflow.com/a/44410281/358804 if (this.props.location.pathname !== prevProps.location.pathname) { this.sectionFocusEl.focus() } } render()...

There are a few things going on here: - The build times - Knowing when a build completes if you aren't staring at the pull request / logs - Visibility...