Stefan Frank

Results 10 issues of Stefan Frank

The runner works fine, but the commands add an extraneous € (or ≈) into the code: Looks like the key-mapping does not properly suppress the character. Is this an atom-issue,...

I'm using slugged together with friendly_id-globalize on my model: ``` ruby extend FriendlyId friendly_id :title, :use => [:globalize, :slugged] ``` The initial generation of the slug works fine, but when...

Excuse if this is stupid and/or there is an obvious solution, I'm just starting with neo4j/architect4r: I'm trying to make a list of things using neo4j/architect4r. My model is roughly...

We're trying to build the simple node-example `fn init --runtime node mynodefn`, on the build-step: ``` fn --verbose deploy --app nodeapp --local ``` downloading the packages from node chokes on...

I'm not exactly sure what has change, it is probably an issue with one of minor-chef version, but I get a dependency-error for the chef-install with 0.10.8: ``` bash *...

works like a charm when I view it locally, shows only empty boxes when I deploy the app to heroku. Does anyone have any idea why the web-fonts are not...

I have the following situation: class Housing::Kennel < ActiveRecord::Base has_many_polymorphs :guests, :from => [:dogs,:cats,_birds] end class GuestKennel < ActiveRecord::Base belongs_to :kennel belongs_to :guest, :polymorphic => true end class Pets::Dog <...

The tagging-extension definse two additional finders on the model, tagged_with and tagged_with_any - the code for tagged_with any (in tagging_extensions.rb) reads like this: def self.tagged_with_any(*tag_list) Shouldnt't this be def tagged_with_any(*tag_list)...

I just converted an inline-rendering example to using partials: ``` collection @elements attribute :id, :subject, :description, :project_id, :parent_id node ... node ... .... ``` where the code was inlined into...

I want to have a simple helper compent, that evaluates a flag and then either shows or hides its children, something like: `` How can I properly type these props?...