Eitan Miller

Results 9 issues of Eitan Miller

Modified words var so it uses a table lookup to decrease the cost of running timeago calculations. This should result in a notable speed increase. Instead of relying on a...

![image](https://user-images.githubusercontent.com/4421342/157740065-16926371-c761-4dac-9863-48f661ce1e32.png) The underline and hint popup are missing from all preset icons. relevant vite plugin lines ![image](https://user-images.githubusercontent.com/4421342/157740473-51fcdbda-8b03-4cae-84ca-8ae5073f3654.png)

help wanted
vscode

This addresses issue [231](https://github.com/bufbuild/connect-web/issues/231)

**Describe the bug** Failed to construct 'Headers': No matching constructor signature. On Chrome 56m. This is uniquely an old browser issue where it cannot [construct headers when its one parameter...

bug

The production build of vendor.bundle.js is nearly 2 megs. It should use tree shaking to have a much smaller final build size. 2 megs for an initial page load, when...

When you set "ASPNETCORE_ENVIRONMENT": "Production" and load the application you receive this message in the console. "Angular 2 is running in the development mode. Call enableProdMode() to enable the production...

If you take your example and key the each like this: ```svelte {#each filtered as value (value.name)} ``` Then type something that shows up in two of the names, then...

The webpack template sets [css to false](https://github.com/sveltejs/sapper-template/blob/65e9b3122785acf78e11a08b8336201c5f727f87/webpack.config.js#L58) on the server version. This is different from the [rollup version](https://github.com/sveltejs/sapper-template/blob/65e9b3122785acf78e11a08b8336201c5f727f87/rollup.config.js#L71) which doesn't set emitCss to false. The opposite holds true for the...

Your two examples are not equal, when using join you end up with an empty whereas in the concat example you wouldn't. You'd need to concat the and in the...