Tagged Questions

Can refer to many different things depending on the use of other tags with it.

learn more… | top users | synonyms

18
votes
10answers
5k views

How to repeat a “block” in a django template

I want to use the same {% block %} twice in the same django template. I want this block to appear more than once in my base template: # base.html <html> <head> <title>{% ...
17
votes
3answers
3k views

Difference between block and &block in Ruby

What do they mean? Why sometimes I should use block and other times &block inside functions that accept blocks?
13
votes
2answers
360 views

Why do “single statement” blocks require not using semi-colons?

I'm usually a C# programmer and going to Delphi has been full of "interesting" discoveries. The one that baffles me the most is single statements in Delphi. Example C# block if(x) Foo(); else ...
13
votes
2answers
937 views

Using do block vs brackets {}

New to ruby, put on your newbie gloves. Is there any difference (obscure or practical) between the following two snippets? my_array = [:uno, :dos, :tres] my_array.each { |item| puts item } ...
12
votes
5answers
4k views

“img” elements: Block level element or inline element?

I've read somewhere that IMG elements behave like both. If correct, could someone please explain with examples?
11
votes
2answers
208 views

Is there a block undo in VIM?

In Vim, is there a way to select a block of text and use undo to only undo changes to that block of text? Let's say I rewrite a function, then go and make some changes elsewhere in my file. ...
11
votes
1answer
568 views

Encoding an Objective-c Block?

Is it possible to encode an Objective-C block with an NSKeyedArchiver? I don't think a Block object is NSCoding-compliant, therefore [coder encodeObject:block forKey:@"block"] does not work? Any ...
11
votes
4answers
2k views

display:block inside display:inline

I want to understand what happens when an element whose CSS is display:block is a DOM child of an element whose CSS is display:inline (so that the block element is a child of an inline element). This ...
10
votes
2answers
1k views

How does Ruby on Rails use yield for layouts?

yield is used to call a block. How does this work in Rails where yield is used for layouts? -# application.html.haml %body= yield Does it use blocks somewhere or is the method simply overridden?
9
votes
2answers
271 views

I'm confused with block in ruby, compared to smalltalk

What does block in ruby mean? It looks similar with smalltalk, but you can't send messages to it. For example, in smalltalk: [:x | x + 3] value: 3 returns 6. But in ruby: {|x| x + 3}.call 3 ...
8
votes
1answer
2k views

Streaming multiprocessors, Blocks and Threads (CUDA)

What is the relationship between a CUDA core, a streaming multiprocessor and the CUDA model of blocks and threads? What gets mapped to what and what is parallelized and how? and what is more ...
8
votes
4answers
423 views

.htaccess or PHP protection code against multiple speedy requests

I am looking for ideas for how I can stop external scripts connecting with my site. I'm looking for the same kind of idea behind Google. As in if a certain amount of requests are made per a certain ...
8
votes
3answers
697 views

Fast block placement algorithm, advice needed?

I need to emulate the window placement strategy of the Fluxbox window manager. As a rough guide, visualize randomly sized windows filling up the screen one at a time, where the rough size of each ...
8
votes
3answers
490 views

Is it possible to compare two Objective-C blocks by content?

float pi = 3.14; float (^piSquare)(void) = ^(void){ return pi * pi; }; float (^piSquare2)(void) = ^(void){ return pi * pi; }; [piSquare isEqualTo: piSquare2]; // -> want it to behave like ...
8
votes
13answers
2k views

Block Control+Alt+Delete

I'm doing an Online Quiz project in C#. The test client is a Windows Desktop Application running on Windows XP. I need to block the control+alt+delete key combination to prevent students from ...
8
votes
9answers
363 views

What is the value of an anonymous unattached block in C#?

In stumbled on this about a month ago. In C# you can make a block inside of a method that is not attached to any other statement. public void TestMethod() { { string x = ...
7
votes
8answers
205 views

Callers block until getFoo() has a value ready?

I have a Java Thread which exposes a property which other threads want to access: class MyThread extends Thread { private Foo foo; ... Foo getFoo() { return foo; } ... public ...
7
votes
4answers
3k views

Ruby: Proc#call vs yield

What are the behavioural differences between the following two implementations in Ruby of the thrice method? module WithYield def self.thrice 3.times { yield } # yield to the implicit ...
7
votes
3answers
5k views

How to block downloads in .NET WebBrowser control?

I need to prevent the .NET WebBrowser control from showing any "Do you want to open or save this file?" and "Save As" dialogs. Instead, I want to display a message box telling users that file ...
6
votes
1answer
78 views

Block images, CSS or JS if the user did not visit my site

I suddenly get a lot of requests to my site (wget, curl etc...). I do not want any of these request to be executed unless a user has visited my site at least once using a valid browser (like Firefox ...
6
votes
3answers
228 views

why i cant instantiate objects inside a switch-case block

my code has 3 classes n_hexa,n_octa,n_bin. The code is here switch(choice) { case 1: cin>>n; n_hexa nx(n); break; case 2: cin>>n; n_octa no(n); break; case 3: ...
6
votes
5answers
247 views

using yield in C# like I would in Ruby

Besides just using yield for iterators in Ruby, I also use it to pass control briefly back to the caller before resuming control in the called method. What I want to do in C# is similar. In a test ...
6
votes
4answers
3k views

Using 'return' in a Ruby block

I'm trying to use Ruby 1.9.1 for an embedded scripting language, so that "end-user" code gets written in a Ruby block. One issue with this is that I'd like the users to be able to use the 'return' ...
6
votes
2answers
276 views

Only decompress a specific bzip2 block

Say I have a humongous bzip2 file (over 5GB), and say I want to decompress only block #x, because there is where my data is (block is different every time). How would I do this. I have thought about ...
6
votes
2answers
998 views

How can you write multiple statements in elisp 'if' statement?

In elisp, there is an 'if' case where I would like to perform many different things: (if condition (do-something) (do-something-else) ...) However, (do-something-else) is executed in ...
6
votes
3answers
597 views

Does begin . . . end while denote a 'block'?

temp = 98.3 begin print "Your temperature is " + temp.to_s + " Fahrenheit. " puts "I think you're okay." temp += 0.1 end while temp < 98.6 In the above example, is everything between begin ...
5
votes
2answers
126 views

Block Statements in Java

I have a class MyMap which extends java.util.HashMap, the following code works as a block of statements but I don't understand the use of the extra curly braces MyMap m = new MyMap() { { ...
5
votes
3answers
300 views

Can someone explain Ruby's use of pipe characters in a block?

Can someone explain to me Ruby's use of pipe characters in a block? I understand that it contains a variable name that will be assigned the data as it iterates. But what is this called? Can there be ...
5
votes
1answer
124 views

What Constitutes a Code Block in Visual Studio 2010?

As per MSDN: A code block is a code path with a single entry point, a single exit point, and a set of instructions that are all run in sequence. A code block ends when it reaches a decision point ...
5
votes
2answers
118 views

Is it possible to pass more than one block to a method in Ruby?

Something like: def foo(&b1, &b2) b1.call b2.call end foo() { puts "one" } { puts "two" }
5
votes
2answers
577 views

scala foreach und map initializers

Just seen an interesting possibility to initialize code blocks in Scala for high order functions such as foreach or map: (1 to 3) map { val t = 5 i => i * 5 } (1 to 3) foreach { val line ...
5
votes
2answers
262 views

How do you code up a pattern matching code block in scala?

How do you code a function that takes in a block of code as a parameter that contains case statements? For instance, in my block of code, I don't want to do a match or a default case explicitly. I am ...
5
votes
2answers
855 views

Is it possible to define a block with default arguments in Ruby?

This question deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would be. At first ...
5
votes
2answers
411 views

Why does the return keyword cause problems in my 'if block'?

The following code works fine: person = {:a=>:A, :b=>:B, :c=>:C} berson = {:a=>:A1, :b=>:B1, :c=>:C1} kerson = person.merge(berson) do | key, oldv, newv | if key == :a oldv elsif ...
5
votes
1answer
817 views

Ruby block and unparenthesized arguments

I extracted simple example: require 'pp' x = 1..3 pp x.map do |i| {:value => i, :double => (i*2)} end pp x.map { |i| {:value => i, :double => (i*2)} } pp(x.map do |i| {:value => i, ...
4
votes
1answer
86 views

Difference between Apache rules to block libwww-perl

I want to know the difference between these rules and which is most effective to block libwww-perl with the file .htaccess SetEnvIfNoCase User-Agent "libwww-perl" bad_bot Order Deny,Allow Deny from ...
4
votes
1answer
51 views

Are there better ways to prevent 'yield' when no block is passed in?

I have a method that yields, which looks like: def a_method(*params) # do something yield # do something else end I want this method to yield the block if a block is passed in; and if no ...
4
votes
4answers
153 views

Why do instance variables seemingly disappear when inside a block?

Forgive me, guys. I am at best a novice when it comes to Ruby. I'm just curious to know the explanation for what seems like pretty odd behavior to me. I'm using the Savon library to interact with a ...
4
votes
3answers
405 views

Ruby do/end vs braces

Why does this map expression produce different results depending on whether I use braces or do/end? a = [1,2,3,4,5] p a.map { |n| n*2 } #=> [2,4,6,8,10] p a.map do |n| n*2 end #=> ...
4
votes
2answers
351 views

How do you enable block folding for Python comments in TextMate?

In TextMate 1.5.10 r1623, you get little arrows that allow you to fold method blocks: Unfortunately, if you have a multi-lined Python comment, it doesn't recognize it, so you can't fold it: def ...
4
votes
1answer
206 views

What is (double (^)(int))foofoo

There is an example on cdecl that goes (double (^)(int))foofoo means cast foofoo into block (int) returning double. What does it mean to cast foofoo into a "block" of int? What does the symbol ^ ...
4
votes
2answers
171 views

Perl's BEGIN{} block in Python

I have Python code that uses the "with" keyword (new in 2.6) and I want to check if the interpreter version is at least 2.6, so I use this code: import sys if sys.version < '2.6': raise ...
4
votes
15answers
778 views

My mental block - struggling to learn Objective C

this would be my first question after signing up! Anyway heres my question, I did Java at university and I was always told I am a good programmer. However I never pursued it as a career - I went into ...
4
votes
2answers
1k views

In Perl, how can I wait for threads to end in parallel?

I have a Perl script that launches 2 threads,one for each processor. I need it to wait for a thread to end, if one thread ends a new one is spawned. It seems that the join method blocks the rest of ...
4
votes
4answers
4k views

JQuery Show/Hide - Values for Css Display Affecting Layout

JQuery uses the Css Display value under the hood of the simple show() and hide() functions. The following Html includes three buttons each wrapped in a span tag, and all three span tags placed in a ...
4
votes
2answers
503 views

Python Markdown: Markdown Inside HTML Blocks

Is there an extra for Python Markdown that supports Markdown inside HTML block elements, e.g. div, p i.e. is there a way to convert this: <div id="content"> [Google](http://www.google.com) ...
4
votes
2answers
553 views

Convert Single Line Comments To Block Comments

I need to convert single line comments (//...) to block comments (/*...*/). I have nearly accomplished this in the following code; however, I need the function to skip any single line comment is ...
4
votes
2answers
5k views

java socket / output stream writes : do they block?

If I'm only WRITING to a socket on an output stream, will it ever block? Only reads can block, right? I am asking because someone told me writes can block but I only see a timeout feature for the ...
4
votes
2answers
236 views

Block procedure PL/SQL with Oracle

I have a procedure and i would like that only one user could execute this procedure at same time. How i can do it? A lot of thanks! Regards Marc
4
votes
2answers
350 views

How do I create a helper with block?

I want to make a helper like the following. def my_div some_options, &block # How do I print the result of the block? end Sam

1 2 3 4 5 13