Dzintars

Results 50 comments of Dzintars

My assumption is that SVG icons are not "subpixel-optimized". Also by running simple online optimizer, the icon size could be reduced quite well. ![image](https://user-images.githubusercontent.com/547420/124366075-aa27d480-dc55-11eb-8857-75f14d9dee20.png)

There are some examples how SVG could be linted to enforce certain rules. IMHO this is important step to maintain high quality library. For example enforcing icon authors to provide...

Leaving my $0.0002 Consider such syntax: ```css :root { --theme-color-accent-hue: 215; --theme-color-accent-100: hsla(var(--theme-color-accent-hue, 215), 100%, 55%, 1); } html, body { background-color: var(--theme-color-accent-100, hsla(0, 0%, 100%, 1)); } ``` I...

Just will add my two cents. This is how my notes looks like. I use those file names as it gives me an flexibility to move and transform notes around....

Yeah, `molecule --base-config .config/molecule/config.yml converge -s dev -- --limit workstations --tags nushell --list-tasks` is a little bit verbose. I would like to drop `base-config` and `scenario` flags when iterating on...

Similar issue https://github.com/ansible-community/molecule/issues/1664

One way how to do that is `alias moleculeb="molecule --base-config .config/molecule/config.yml"` Basically just by creating custom alias. It can be temporary in current terminal or permanently in your `.profile`, `.zprofile`...

Ok. I got closer to the root cause. I copied source of this library into local `utils/connect/index.ts` and modified import accordingly. When I did that my Prettier added missing semicolons...

What about [this line](https://github.com/CaptainCodeman/redux-connect-element/blob/0d6fa2ffd3cf1d13f836448adc6d211c2ab37240/src/connect.ts#L34): ```js class connected extends superclass { private [unsubscribe]: Unsubscribe; private [dispatchMap]: DispatchMap .... ``` You have that trailing semicolon there.

I just gave up and cloned this repo into local `utils` directory and fixed some typo. Working fine.