Jonas Hübotter

Results 30 issues of Jonas Hübotter

Where does the processing take place? In the rails job or on AWS? Because after adding this gem to my app, I received a bill for AWS EC2 usage.

``` $ rails db:migrate == 20170401172016 CreateSimpleHashtagHashtags: migrating ====================== -- create_table(:simple_hashtag_hashtags) -> 0.0342s == 20170401172016 CreateSimpleHashtagHashtags: migrated (0.0347s) ============= == 20170401172017 CreateSimpleHashtagHashtaggings: migrating ================== -- create_table(:simple_hashtag_hashtaggings) rails aborted! StandardError: An...

Is there a way to parse the method of a model instead of an attribute like so? ```ruby class Post < ActiveRecord::Base include SimpleHashtag::Hashtaggable hashtaggable_attribute :content def content # ......

@sergiodlopes I tried to automatically set the value of inputs by specifying their value attribute before initializing flexdatalist: ```html ``` and I tried to set them manually using JavaScript: ```js...

There are a few weird things happening when I am trying to load the content of a view into the dedicated div. 1 . The first time I click on...

foo

This is my code: ```haml -# Application layout extending base layout = extends :base do = area :content ```

Thank you for providing feedback on Python packaging! To help us help you, please fill out as much of the following as you can. If a question is not relevant,...

I have a grammar that uses this regex to match comments (it's in the `extras` array): ``` comment: $ => /((\/\/[^\r\n]*)|(\/\*(.|\s)*?\*\/))/ ``` This fails on the following test: ``` =====================================...

Is there a command (much like `parse`) that prints a list of tokens? I am asking because I am trying to debug an error that I am not sure of...

The language I am implementing really needs this functionality, as I am using it for file/script endings. `/\s*$/`