John Ruble

Results 39 comments of John Ruble

To toss in another example, the v5 upgrade showed me that the libraries for AWS Cognito use [url](https://nodejs.org/docs/latest-v16.x/api/url.html): ``` > yarn build Creating an optimized production build... Failed to compile....

That source code you reference says that, if there's no description, _and_ the `useSummaryIfNoDescription` option is enabled, then use the summary. So, the behavior you want is hidden behind a...

It would be fun to generalize this to _n_ tables, but for now here's a quick-and-dirty solution for two: ```ts function printTables(table1: Table, table2: Table) { const t1 = table1.render().split("\n");...

To anyone else that hits this, you might be interested in a stylelint rule to prohibit percentage-based opacity: https://stylelint.io/user-guide/rules/alpha-value-notation

For anyone coming across this, we've managed to get docker builds working on the EC2 agent by adjusting the CI config to look like this: ```yml services: # Configuration to...

I'm not working with React Native any more, but for anyone who's interested in contributing: instead of maintaining a separate definitions file, it might be easier to port https://github.com/futurepress/react-native-static-server/blob/master/index.js to...

With .NET Core 3.0's [local tools](https://stu.dev/dotnet-core-3-local-tools/), it seemed like a good time to revisit this. Unfortunately I immediately ran right into [another bug](https://github.com/fsprojects/FSharpLint/issues/367). (when invoking e.g. `dotnet-fsharplint -f Generators.fsproj`) Another...

Well, that was fast. It's merged and [released](https://www.nuget.org/packages/dotnet-fsharplint/0.12.5). What were you thinking for integration? Some ideas: - Add fsharplint to each exercise's project, so that students can use it -...

What does the import line look like? What kind of file is it in? I had the same `url()` issue as @efeichen and fixed it by moving images to `src/`.