0
votes
5answers
95 views
how to write a block that returns a string in ruby
A function takes a string as argument, example fn("string"). i want to pass in different values depending on three of more condiitons, and one approach which is slightly unreadable …
6
votes
10answers
378 views
Why enclose blocks of C code in curly braces?
I am looking at some C code, and have noticed it is full of these curly braces surrounding blocks of code without any sort of control structure. Take a look-see:
//do some stuff …
2
votes
2answers
61 views
printing a ruby block
I have a method that takes a block.
Obviously I don't know what is going to be passed in and for bizarre reasons that I won't go into here I want to print the contents of the bloc …
1
vote
2answers
59 views
Ruby 1.8 vs 1.9 - destructive reject! operator
Why does this work the way it does? I thought it had something to do with pass-by-reference/value, but that's not the case. Does it have something to do with the new block scopes?
…
2
votes
3answers
87 views
Am I understanding Drupal regions and views correctly?
We're building a very content rich site in Drupal. It's my first time working with it. There are a variety of sections to this site, each with a different layout. I plan on determi …
0
votes
0answers
16 views
Blocks to Fixed document/Fixed Page
Can any one help me to add Blocks(System.Windows.Documents.Block/ Section / BlockUIContainer) to the Fixed Document.
Thanking for your attention,
regards,
kuman
0
votes
3answers
40 views
Sending a code block to a find_all dynamic method
I'm working with some complex queries using the dynamic find_all method and reached to a point where sending a block to that find_all method would really simplify my code.
Is the …
3
votes
2answers
110 views
Ruby: yield block from a block?
Is it possible for a lambda, proc, method or other type of block in ruby, to yield to another block?
something like...
a = lambda {
puts 'in a'
yield if block_given?
}
a.cal …
0
votes
1answer
29 views
Is this the right way for a block inside a struct to access a member variable in the same struct?
I'm experimenting with Obj-C blocks and trying to have a struct with two blocks in it where one block is to change what the other block does.
this is a really roundabout way to do …
0
votes
1answer
98 views
Magento core function working in remote system displaying error in another system.
In catalog.xml file of frontend template folder I had blocks defined for tabs to display product tags,additional information etc.in this way:
additional
Additional Information
cat …
1
vote
1answer
69 views
Block question: what exactly does “long long (^blockFun)() = (long long (^)())moreBlockFun” mean and do?
I'm trying to learn and use Blocks effectively. On the web, I've come across this tasty morsel of code:
long long (^blockFun)() = (long long (^)())moreBlockFun;
it confuses the …
1
vote
2answers
80 views
What’s another way of writing this block without using do-end?
How would you write this on the same line or on consecutive lines without do-end?
map.resources :magazines do |magazine| magazine.resources :ads end
3
votes
3answers
199 views
Using Objective-C Blocks
Today I was experimenting with Objective-C's blocks so I thought I'd be clever and add to NSArray a few functional-style collection methods that I've seen in other languages:
@int …
0
votes
1answer
207 views
Magento defining custom CMS page in cms.xml
Hi all!
I've added several pages (cms) in my magento admin panel. I know i can attach blocks to a specific page by using {{block..}} within the content field.
However, i dont wan …
3
votes
5answers
332 views
Suggested resources for learning about blocks in Snow Leopard
Now that there is no NDA, what are some good suggested resources for learning about blocks under Snow Leopard?
