Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
15answers
10k views

mmap() vs. reading blocks

I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and ...
18
votes
3answers
403 views

When to use blocks

I love Ruby blocks! The idea behind them is just very very neat and convenient. I have just looked back over my code from the past week or so, which is basically every single ruby function I ever ...
15
votes
10answers
2k 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 . . . ...
13
votes
3answers
3k views

Rails render partial with block

I'm trying to re-use an html component that i've written that provides panel styling. Something like: <div class="v-panel"> <div class="v-panel-tr"></div> <h3>Some ...
11
votes
6answers
611 views

What is the difference or value of these block coding styles in Ruby?

Which style is preferred? Is there a good reason for one vs. the other? Thanks in advance! 1) cmds.each do |cmd| end 2) cmds.each { |cmd| } Example code: cmds = [ "create", "update", ...
9
votes
6answers
426 views

Blocks and Yields in Ruby

I am trying to understand blocks and yields and how they work in Ruby. How is a yield used and most of the rails applications use yields in a weird way. Can someone explain to me or show me where to ...
9
votes
6answers
522 views

Fun with Lambdas

Not having them used them all that much I'm not quite sure all that lambdas/blocks can be used for (other than map/collect/do/lightweight local function syntax). If some people could post some ...
9
votes
6answers
1k views

Suggested resources for learning about blocks

What are some good suggested resources for learning about blocks and GCD in Mac OS X and iOS
9
votes
6answers
4k views

Ruby - Passing Blocks To Methods

I'm trying to do Ruby password input with the Highline gem and since I have the user input the password twice, I'd like to eliminate the duplication on the blocks I'm passing in. For example, a simple ...
8
votes
2answers
175 views

What are some of the most 'pure' object-oriented languages? [closed]

A recent introduction to Smalltalk has enlightened me on the application and benefits of a 'pure' object oriented style. I'd previously seen the benefits of this in Ruby, though the presence of non ...
8
votes
3answers
158 views

How do I limit the number of times a block is called?

In How do I limit the number of replacements when using gsub?, someone suggested the following way to do a limited number of substitutions: str = 'aaaaaaaaaa' count = 5 p str.gsub(/a/){if count.zero? ...
8
votes
1answer
225 views

Rewrite simple ruby function to use a block

I dont know the correct terminology for what i am asking I tried to google it and couldnt ind anything for the same reason I am writing a ruby library, and i want to rewite the functions so they work ...
8
votes
3answers
9k 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: @interface NSArray ...
7
votes
1answer
350 views

Operations in separate TThread block GUI thread

I used this tutorial http://delphi.about.com/od/kbthread/a/thread-gui.htm to create a class that asynchronously downloads a file from the internet in another thread with a TDownLoadURL. I did this ...
7
votes
7answers
5k views

How to collapse blocks of code in Eclipse?

Some days ago my Eclipse was working fine and a +/- appeared in every block that could be collapsed (functions, classes, etc.)... but now it does appear, and I don't know how to activate that feature ...
7
votes
2answers
175 views

How to require a block in Ruby?

Is there any built in way to require that a block be passed to a Ruby method? I realize I can just raise an exception if block_given? is false, but is there some nicer way to do it?
7
votes
2answers
1k 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.call { puts "in a's ...
6
votes
2answers
186 views

ruby blocks not first-class

From a language design perspective, why aren't ruby blocks first-class? Similarly, I think blocks should actually be lambdas, thereby getting rid of the need for cumbersome syntax such as proc ...
6
votes
2answers
327 views

Calling super in the implementation of an Objective-C block

Is calling a method on super supported in the implementation of an Objective-C block? When I was calling a method on super an EXC_BAD_ACCESS error would be thrown but as soon as I changed those calls ...
6
votes
2answers
2k views

change order of blocks via local.xml file in magento

Is it possible to change the order of already existing blocks via the local.xml file? I know you can change the order of a block with the after or before attribute, but how can one change those ...
6
votes
3answers
1k views

How do I create a reusable block/proc/lamda in Ruby?

I want to create a filter, and be able to apply it to an array or hash. For example: def isodd(i) i % 2 == 1 end The I want to be able to use it like so: x = [1,2,3,4] puts x.select(isodd) ...
6
votes
4answers
2k views

Detecting if youtube is blocked by company / ISP

We have Youtube videos on a site and want to detect if it is likely that they will not be able to view them due to (mostly likely) company policy or otherwise. We have two sites: 1) Flex / Flash 2) ...
5
votes
1answer
74 views

Return Objective-C block from C function

What is the syntax to declare a C function that returns an Objective-C block? Is it possible? I thought it should be something like (void (^)(void)) myFunctionReturningABlock(); but that won't ...
5
votes
1answer
154 views

Ruby Block Syntax Error [closed]

Possible Duplicate: Ruby block and unparenthesized arguments I'm not sure I understand this syntax error. I'm using Carrierwave to manage some file uploads in a Rails app, and I seem to be ...
5
votes
2answers
271 views

Block definition - difference between braces and do-end?

can anybody explain why the following code aborts with an error irb(main):186:0> print ((1..10).collect do |x| x**2 end) SyntaxError: (irb):186: syntax error, unexpected keyword_do_block, ...
5
votes
2answers
374 views

CUDA - what if I choose too many blocks?

I'm still getting mad on these unknown-size matrices which may vary from 10-20.000 for each dimension. I'm looking at the CUDA sdk and wondering: what if I choose a number of blocks too high? ...
5
votes
7answers
309 views

Best explanation of Ruby blocks?

What is the best explanation for Ruby blocks that you can share? Both usage and writing code that can take a block?
5
votes
1answer
609 views

Change Journal for Blocks in Windows(NTFS)

I have written a backup tool that is able to backup files and images of volumes for Windows. To detect which files have changed I use the Windows Change Journal. I already use the shadow copy ...
5
votes
6answers
143 views

Is it a good idea to define a variable in a local block for a case of a switch statement?

I have a rather long switch-case statement. Some of the cases are really short and trivial. A few are longer and need some variables that are never used anywhere else, like this: switch (action) { ...
5
votes
3answers
7k views
5
votes
4answers
531 views

Erubis block helper throwing error with concat

I have a couple of block helpers, here's a simple example of what I'm doing: def wrap_foo foo, &block data = capture(&block) content = " <div class=\"foo\" id=\"#{foo}\"> ...
5
votes
2answers
471 views

PowerShell: an elegant way to create closures

Keith Hill explained me that blocks in PowerShell are not closures and that to create closures from blocks I have to call method .GetNewClosure(). Is there any elegant way to create closures from ...
4
votes
1answer
118 views

How do I create a block with a given binding in ruby?

I'm trying to write a version of assert_difference that will accept a hash as an argument, so that instead of writing assert_difference 'thing1', 1 do assert_difference ['thing2a', 'thing2b'], 2 do ...
4
votes
2answers
222 views

Limitations of Java Anonymous Classes compared to Objective-C Blocks

I'm just starting to wrap my head around first order functions and closures after discovering blocks in Objective-C. Java is another language where I've heard about closures (or lack thereof) and how ...
4
votes
5answers
220 views

Blocks & Procs in Ruby

I have started learning Ruby, and I have read a couple of tutorials and I even bought a book ("Programming Ruby 1.9 - The Pragmatic Programmers' Guide"), and I came across something new that I haven't ...
4
votes
1answer
890 views

PowerShell: passing blocks as parameters to functions

I will explain my question on an example. Let's have following code in C#: void A(Action block) { B(() => { Console.WriteLine(2); block(); }); } void B(Action block) { ...
4
votes
4answers
371 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 block. Is there a way ...
4
votes
3answers
312 views

Are there any significant differences between blocks in Ruby vs Groovy?

I've gotten used to blocks in Ruby and would like to use them in Java. Groovy seems to offer a similar feature but I don't know enough about Groovy to understand whether there are any significant ...
4
votes
3answers
987 views

Ruby blocks/Java closures in C

I've been trying to understand how Ruby blocks work, and to do that I've been trying to implement them in C (^_^). One easy way to implement closures is to pass a void* to the enclosing stack to the ...
3
votes
2answers
51 views

What does Sinatra::Base.condition actually do?

I've come across the sinatra condition method and am puzzled in how it works. I have a piece of code: def auth user condition do redirect '/login' unless user_logged_in? end end Which ...
3
votes
3answers
109 views

C# Compressing a lot of data blocks fast/efficiently

I have around 270k data block pairs, each pair consists of one 32KiB and one 16KiB block. When I save them to one file I of course get a very large file. But the data is easily compressed. After ...
3
votes
0answers
70 views

ssl:send in erlang blocks

I am making use of a SSL socket which is upgraded from a TCP Socket. When I am trying to send some data through that socket using ssl:send , it blocks. I have send_timeout option for the underlying ...
3
votes
1answer
98 views

Row-major order indices

I'm currently working on project of where 2d terrain maps are saved into a one-dimensional array. Each block in the map is indexed by xy coordinates. So, to save the map into a one-dimensional array, ...
3
votes
3answers
109 views

How do you use Ruby blocks to conditionally execute something?

I recently purchased the book Seven Languages in Seven Weeks and have been reading through the chapter on Ruby. In the section which introduces blocks (page 40), a code sample is given which ...
3
votes
3answers
506 views

How to make text input box to occupy all the remaining width within parent block?

How do achieve the following: ┌────────────────────parent────────────────────┐ │ label [text-box ] [button] │ │ paragraph │ ...
3
votes
5answers
183 views

How does iteration work in Ruby?

I've recently started coding Ruby and I'm having this one misunderstanding that seems to occur a lot for me. Take the following code for example: h = { # A hash that maps number names to digits :one ...
3
votes
1answer
276 views

Create a scoped block in rails helper for additional scoped methods

I would like to define some helper methods within a block helper but keep them within the scope of the block so that I can have sensible method names and it looks cleaner. Say I want to do the ...
3
votes
2answers
942 views

Objective C Blocks: Is there a way to avoid 'self' being retained?

I'm trying to write this down as concisely as possible, but it's not easy to describe -- so thanks for reading =) I'm the main developer of the Open Source iPhone Framework Sparrow. Sparrow is ...
3
votes
1answer
1k views

How can I create multiple different blocks in one module in Drupal 6?

I'm using hook_block to create a block with the name of the custom module I'm creating. I'm not being able to create a block without using myModuleName_block. Do I need to do different modules for ...
3
votes
5answers
148 views

Need a Standard Library Reference for Ruby

I need a good reference for how to use standard Libraries in Ruby. What confuses me about current libraries is that they don't describe or give examples like say Java's. Yet this is where examples are ...

1 2 3 4