Code Monkey home page Code Monkey logo

funder's People

Watchers

 avatar  avatar

funder's Issues

Add generic action that accepts a block

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 19 Aug 2010 at 10:29

Fix problem with @cache.clone

example (with r19):

{{{
require 'formats/png'
p = Png.new
p.idat.data.to_out
}}}

raises an error:

{{{
TypeError: can't clone NilClass
    from ./fields.rb:117:in `clone'
    from ./fields.rb:117:in `to_out'
    from ./actions.rb:105:in `do_it'
    from ./actions.rb:105:in `map'
    from ./actions.rb:105:in `do_it'
    from ./actions.rb:55:in `do_it_once'
    from ./fields.rb:113:in `to_out'
    from (irb):4
}}}

Original issue reported on code.google.com by [email protected] on 21 Aug 2010 at 3:02

Add a length method to Field

This should be used to allow Int fields to return their length without actually 
having to calculate their value.  (This behavior will be needed in certain 
situations.)

Original issue reported on code.google.com by [email protected] on 15 Jul 2010 at 11:36

pull init functionality into an init function

It's rather hack-ish the way some of the code waits for other objects to be 
created.  Create an init function that the root node calls after it has 
recursively instantiated all of the fields.

Find all the hack-ish init code and put it in the init() method

Original issue reported on code.google.com by [email protected] on 21 Aug 2010 at 3:15

Be able to bind fields' values to other values

Example:

{{{
    ...
    field :tag_table, TagTableEntry, nil, :mult=>true
    field :tags, Tag, nil, :mult=>true
    ...
}}}

Should be able to define the one-to-one relationship between each TagTableEntry 
and each Tag, maybe something like:

{{{
    ...
    field :tag_table, TagTableEntry, nil, :mult=>true,
                                          :rel=>[1, 1, lambda{[tags]}]
    field :tags, Tag, nil, :mult=>true, :rel=>[1, 1, lambda{[tag_table]}]
    ...
}}}

Given `:rel=>[A, B, lambda{[C]}]`, A is the current field ratio, B is the 
external field ratio, and C is the name of the field with which the current one 
must remain in sync.

Original issue reported on code.google.com by [email protected] on 15 Jul 2010 at 11:10

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.