Chris Kim

Results 7 issues of Chris Kim

When parsing this valid xml: ```rss ]]>& ``` gofeed fails with the error message: ``` unknown predefined entity &bar=baz">]]>& ```

```go package main import ( "fmt" "github.com/kennygrant/sanitize" ) func main() { input1 := `alert('uh oh');hello` input2 := `alert('uh oh');hello` allowedTags := []string{"p"} output1, _ := sanitize.HTMLAllowing(input1, allowedTags) fmt.Println(output1) // hello...

In the video example, I execute `metaGo.gotoSmart` and quickly input "foobar," which leads to unexpected behavior. When I enter "foobar" slowly, it works as expected. This only seems to occur...

This issue provides most of the context: https://github.com/streamich/unionfs/issues/428 #428 suggests just to replace `fs.statSync(path)` with `fs.statSync(dirname(path))`, but that could cause surprising behavior in the case where multiple filesystems include the...

The `readdir` method fails on an empty directory, if it is not present on the first filesystem. ### Failing test case: ```ts import { Volume } from 'memfs'; it('does not...

On Chrome 40, OSX 10.10, I get this error when viewing the [FBO Simulation example](http://empaempa.github.io/GLOW/examples/complicated/): `[.WebGLRenderingContext]GL ERROR :GL_INVALID_OPERATION : glDrawElements: Source and destination textures of the draw are the same.`...

The change in https://github.com/int3h/SublimeSelectQuoted/pull/8 breaks the functionality where a selection that includes the ending quote should expand to include both quotes. The proper fix is to only turn on 'round'...