Sam A. Horvath-Hunt
Sam A. Horvath-Hunt
### Self-service - [ ] I'd be willing to implement a fix ### Describe the bug You can find a small repro here: https://git.sr.ht/~samhh/yarn-repro. I'll copy its README here: ---...
Podman
I'm guessing there's currently no Podman support?: ```console $ bob build ls "msg"="" "error"="Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?" "callstack"="\ngithub.com/benchkram/errz.Log\n\tgithub.com/benchkram/[email protected]/error.go:95\ngithub.com/benchkram/bob/pkg/dockermobyutil.NewRegistryClient\n\tgithub.com/benchkram/bob/pkg/dockermobyutil/registry.go:64\ngithub.com/benchkram/bob/bob.newBob\n\tgithub.com/benchkram/bob/bob/bob.go:85\ngithub.com/benchkram/bob/bob.Bob\n\tgithub.com/benchkram/bob/bob/bob.go:142\ngithub.com/benchkram/bob/cli.runBuildList\n\tgithub.com/benchkram/bob/cli/cmd_build.go:118\ngithub.com/benchkram/bob/cli.glob..func11\n\tgithub.com/benchkram/bob/cli/cmd_build.go:71\ngithub.com/spf13/cobra.(*Command).execute\n\tgithub.com/spf13/[email protected]/command.go:860\ngithub.com/spf13/cobra.(*Command).ExecuteC\n\tgithub.com/spf13/[email protected]/command.go:974\ngithub.com/spf13/cobra.(*Command).Execute\n\tgithub.com/spf13/[email protected]/command.go:902\ngithub.com/benchkram/bob/cli.Execute\n\tgithub.com/benchkram/bob/cli/cli.go:27\nmain.main\n\tgithub.com/benchkram/bob/main.go:14\nruntime.main\n\truntime/proc.go:250\nruntime.goexit\n\truntime/asm_amd64.s:1594\n" ```
The same issue as reported [here](http://forum.xda-developers.com/showpost.php?p=58230907&postcount=267) on XDA. For me, this is with Screen On animations disabled and Screen Off animations enabled. I've not tested other configuratins. HTC One M8,...
Hey! Off the back of https://github.com/mizdra/happy-css-modules/issues/200#issuecomment-1539878340 I wondered if you may consider support for [`@value` variables](https://github.com/css-modules/css-modules/blob/master/docs/values-variables.md): ```css @value foo: anything; ``` ```ts import styles from './file.css' styles.foo // string ```...
This is my current gulpfile: http://pastebin.com/9rXcdKR3 I've tried numerous combinations and haven't been able to incorporate CSSComb successfully. Help would be massively appreciated.
Skins?
There are no alternative skins provided in installation, there are no easily findable skins online and I can't find any documentation detailing how to make your own. Any chance for...
Between 0.5 and 0.6 the `Delta` type returned by `diff` changed. It used to be: ```ts export interface Delta { [key: string]: any; [key: number]: any; } ``` Now it's:...
Motivational example: ```ts type Weather = Sum.Member | Sum.Member const Weather = Sum.create() declare const x: Weather declare const someCond: boolean const shouldDoSomething1 = someCond && pipe(x, Weather.match({ Sun: constant(true),...
Following #50 sums should be comparable with `toEqual`, however when an expectation fails the diff is a bit rubbish for nullary sums, stating "serializes to the same string". I believe...
Including: - [x] Usage overview for anyone already familiar with the basic idea of sum types - [ ] Guide for everyone else - [ ] Deep dive on why...