Nami W

Results 76 issues of Nami W

After upgrading `sinatra` (which `jekyll-admin` depends on) to 4.0, got the following error when staring server ``` bundler: failed to load command: jekyll (/Users/nami/.asdf/installs/ruby/3.2.2/bin/jekyll) :37:in `require': cannot load such file...

Just like in Rails, if you've already installed the gem for coffee/sass/haml, then `rails g` would generate those kind of files for template. I'd like to make a PR for...

Say I'm developing an app named `my-app` and I want all its components are under the same namespace. `rails g polymer:component my-app/my-button` would generate: ``` app/assets/components/my-app/my-button app/assets/components/my-app/my-button/my-app/my-button.html app/assets/components/my-app/my-button/my-app/my-button.js app/assets/components/my-app/my-button/my-app/my-button.css ```...

it's pretty hard to debug the generated parser, when it contains more than 500 handlers. I crudely added the following line to the template, so I could find the handler's...

`syntax` doesn't recognize the following code ``` some_thing : token1 node1 { |$1:Token, $2:Node| -> (Token, Node); $$ = ($1, $2); } ; ``` have to use sth like ```...

Rules in yacc/bison may contain embedded actions, it's useful when constructing complex grammar. Do you think we could have this feature in Syntax? reference: http://dinosaur.compilertools.net/bison/bison_6.html#SEC48

Rely on https://github.com/flutter/flutter/issues/11016

currently it takes seconds to decode large images - checkout low level ImageProvider, ImageStream, RawImage, dart_ui:Image, etc. - or `use the platform` for high performance - android - android.graphics.Movie -...