Can refer to many different things depending on the use of other tags with it.
2
votes
1answer
28 views
is it retain cycle in objective of the block function?
[UIView animateWithDuration:0.2
delay:0.0f
options:UIViewAnimationOptionCurveEaseIn
animations:^{
...
-2
votes
0answers
21 views
C# - Webkit .NET Block web request [closed]
there is any way to block a web request in webkit .NET using C#?
I have searched everywhere and I can't seem to find it, I'm trying to block some ads like "adblock plus" does in chrome.
I appreciate ...
-2
votes
0answers
8 views
message harassment. how to block someone who has me blocked [closed]
Someone is sending me harassing messages on Facebook. I have tried to block said person, but they have me blocked. So whenever they want to send a nasty message, they simply unblock me and send it. I ...
2
votes
2answers
43 views
How can I pass a block/proc and variable directly to a function?
I'm trying to learn about blocks and procs and I feel like this should be doable, but so far I haven't been successful.
What I'd like:
def main_action(generic_variable, block)
generic_variable += 1 ...
1
vote
2answers
26 views
How can I prevent duplicate file uploads?
I am working on a music uploading site and I want to make a function that will prevent a user from uploading the same song multiple times in a single album. Is there a way that I could place each song ...
0
votes
2answers
21 views
Referring to weak self inside a nested block
Suppose I already create a weak self using
__weak typeof(self) weakSelf = self;
[self doABlockOperation:^{
...
}];
Inside that block, if I nest another block:
[weakSelf ...
1
vote
2answers
28 views
Labels in fields within an SSRS report
I am attempting to reproduce a form within SSRS and fill it with data. The original form has blocks with small labels inside of each box that identifies the entry requested.
I "thought" I could ...
0
votes
0answers
21 views
Error: Could not read Block / PostgreSQL [migrated]
we have some serious issues with our PostgreSQL-Server (Version 8.4). Our webapplication uses jdbc to connect to the PostgreSQL Server. Suddenly our webapplication cant connect to the PostgreSQL ...
0
votes
0answers
20 views
Strange Issue : Magento Block not rendering/Instantiating only in IE10 but works in all other browsers and IE versions
Strange Issue : Magento Block not rendering/Instantiating only in IE10 but works in all other browsers and IE versions
Magento Block not rendering/Instantiating only in IE10 but works in all other ...
0
votes
0answers
10 views
CCCallBlock + a list of waypoints? (maybe with a recursion)
I write a game of Tower Defense genre. As I understand each enemy should move from one waypoint to another. So I need to perform something like this:
CCCallBlock *actionBetweenMoves = [CCCallBlock ...
0
votes
1answer
34 views
Why do we need blocks, function literals, closures in programming languages?
I program in Objective-C, I know a bit of Scala, Python and Javascript.
While I'm comfortable with blocks in Obj-C, I would like to know what specific problem do they solve that I couldn't with the ...
0
votes
0answers
16 views
using Magento static blocks instead of custom product Options
I am new to magento and building my first website. I tried using Custom Options for to user to select the weight of the product as per which the price changes. There are a number of options for him to ...
0
votes
1answer
10 views
Overflow-x and block elements
I'd like to have a div with other divs inside; this div,reached the maximum width of the page, should show a scrollbar. I've already realized something like that with inline elements (like <img> ...
0
votes
3answers
27 views
Yield n times in a method not working?
An example of what I'm trying to do is probably best:
def repeater(n = 1)
n.times { yield }
end
By default, repeater will go through the block given once. However, I want it to go through the ...
-1
votes
1answer
31 views
how to release my objects in a specific queue?
I created some something in my operation queue(_opQueue), and i want to release them in this queue too. Here is my code, _opQueue was created form "dispatch_queue_create("Data_Serial_Operation_Queue", ...
-1
votes
0answers
16 views
Blocking Notifications [closed]
I've poked around and seen suggestions that it's not possible to do so, but is there any, I mean any way to do this for iOS? I'm looking to develop an app that runs in the background and simply blocks ...
1
vote
1answer
28 views
C/ObjC: How to unit-test blocks?
According to this Stackoverflow post: Selectors or Blocks for callbacks in an Objective-C library ,
blocks seem to be the future of ObjC. However, much like anonymous functions, blocks feel more ...
1
vote
0answers
68 views
Why can some blocks be replaced by semicolons while others can't?
As the title says, I am wondering why some blocks in C# can be replaced by semicolons while others can't.
Example:
// These are valid
while(anything);
using(var x = new Stuff());
for(var i = 0; a ...
1
vote
1answer
31 views
Ruby: retrieve local_variables from a block or append code within a block
I want access to local variables declared by the user of my DSL in a block.
E.g.
class Scraper
def scrape!(&block)
a = block.binding
instance_eval &block
b = block.binding
...
0
votes
1answer
28 views
with adder default blocks exercise. How Do I vary output depending if I get a block to my method or not?
Here is the rspec I need to pass:
describe "adder" do
it "adds one to the value returned by the default block" do
adder do
5
end.should == 6
end
it "adds 3 to the value returned by the ...
3
votes
3answers
58 views
Some questions about objective-c block and copy
I write some code use objective-c block, but the result confused me.
@interface MyTest : NSObject
@end
@implementation MyTest
- (void)test {
NSArray *array = [self array1]; // ok
// ...
-2
votes
1answer
40 views
List of popular web proxy/anonymous IPs to block [closed]
I am building a Minecraft server list, voting, ranking system. I need to make sure that users cannot vote more than every 12 hours (as best as I can). I'm stumbling on blocking users who just vote, go ...
1
vote
1answer
74 views
Transfer from Fortran 77 code(combination of common block and equivalence) to Fortran 90
In the Fortran 77 code ,there is a combination use of common block and equivalence statement.
For example,
common /X/ a,b,c,d
dimension arr(4)
equivalent(arr(1),a)
Can anybody provide ...
0
votes
2answers
17 views
How can I sort an Enumerable from a class model obtained using method all in Ruby on Rails?
My problem:
The model class:
class Question < ActiveRecord::Base
attr_accessible :create_date, :last_update_date, :text, :title
end
And from a method within a controller I want to achieve ...
0
votes
0answers
17 views
Does Cython support Apple Block Type?
Here is the header file of C++
struct Tag;
typedef bool (^ FUNC1 )( unsigned A, const struct Tag * B );
typedef struct Tag
{
unsigned TagA;
FUNC1 handler;
}
myParam;
...
0
votes
1answer
16 views
drupal 7 changing the action of a webform block in template.php
I have this my template.php
function mythemename_form_alter($form, $form_state, $form_id) {
print($form_id);
if ($form_id == 'webform_client_form_61') {
print ('called');
...
0
votes
1answer
56 views
HTML CSS: How to copy and paste div block elements into Notepad while retaining the white space?
I'm trying to make a chord website where you can take lyrics and put chords above them.
While I was able to position the chords successfully above the lyrics by spanning them separately, displaying ...
1
vote
1answer
62 views
Magento query language in a cms page
I want to display a text only for a specific language in a cms page which contains a placeholder. So I cannot use the way with the translate.csv. (see ...
0
votes
0answers
6 views
Block particular link from google plus profile page?
Want to block particular link from google plus profile page. please help me its urgent. trying to block using htaccess but unable to get unique url block. google converts link to format like ...
0
votes
2answers
54 views
Template code blocks in C++?
Recently I was working on a project, which required a lot of constructs like "repeat" and "foreach". I know that there are no such constructs in C++, but I tried to imagine what they might look like.
...
0
votes
1answer
34 views
Create block 'customer/form_register' on account login page
I need to show registration fields on account/login page in Magento.
I try this method
<reference name="content">
<block type="customer/form_login" name="customer_form_login" ...
0
votes
1answer
23 views
VB 2012 IP block
I am using VB 2012 and am wondering if there is a way to monitor the IP addresses all programs on the system access, and then compare them to a database of disallowed IPs. If they match, the program ...
0
votes
2answers
41 views
how to reuse my <div> when i don't want to create another
I'm a somewhat beginning programmer, so i'm just making a practice website. On this website it shoud show blocks going down vertically in rainbow color order. I got the first column just fine, but i ...
0
votes
0answers
21 views
Decelerate effect on Image animation with pan gesture
I am using block to animate an image transition with pan gesture recognizer. I need to do a deceleration simulation on the end of the pan gesture, so I use velocity from the gesture recognizer to ...
0
votes
0answers
4 views
How to reinitialize Aloha blocks
I am using the Aloha editor and a custom block plugin for the standard Block Manager. The editable content for the website is loaded asynchronous. After the content is successfully loaded, ...
2
votes
1answer
8 views
block a specific date in datapicker
I have a datapicker on my site where I have Monday and Tuesday blocked.
How can I block a very specific date eg 05/06/2013
The code I have now is as follows
noMondaysandtuesdays: function(date) {
...
0
votes
0answers
41 views
Block domain and subdomain in etc/hosts
I have a domain www.domainname.com and I would like to block it with /etc/hosts.
I would also like to block all of it's subdomains.
I tried this:
127.0.0.1 domainname.com
but it only blocks ...
0
votes
1answer
32 views
Rewrite Mage/Checkout/Block/Total/Default.php in Magento 1.7.0.2
I want to override Mage/Checkout/Block/Total/Default.php in order to make my own changes in checkout/total/default.phtml in Magento 1.7.0.2 but it's not working.
It's not my first time that I ...
0
votes
1answer
49 views
Windows Azure Website - Block IP Range
I need to block everything besides an IP range at my Windows Azure website, but unfortunately I can't really figure it out.
My Web.config looks like this:
<configuration>
...
1
vote
1answer
41 views
Java - Application hangs at random spot after rt.exec calls to c++ program for WinXP 32bit
Hello I have a visual studio 2008 c++ project that communicates through COM1 to a custom device. Testing shows it works as expected (when used from cmd.exe), it sends some data (sent to it through ...
0
votes
0answers
6 views
block tor code not working
I am trying to block Tor with a script but it's not working. Is there any mistake in it?
if (IsTorExitPoint()) {header('Location: test.php');}function IsTorExitPoint(){if ...
0
votes
1answer
17 views
Accessing the blocks of storage using c program
I need to access data of a storage directly. I want to read/write a chunk of data from the storage providing the offset and length of the data.
Please suggest a way or provide some c code to access ...
0
votes
1answer
16 views
Generating Blocks at Runtime to Search Multiple Parameters
I have a database that consists of an array of hash entries.
I'd like to sort this database based on parameters taken from the command line. If there is only one option this is easy:
...
-1
votes
0answers
44 views
IE 10 blocks my localhost [closed]
I have a problem when trying to login to my website in the development environment (local host) using IE 10 or 9
I have checked safety -> webpage privacy policy and i found that my local host is ...
0
votes
1answer
25 views
Process control block vs process table?
Struggling to work out the difference between a process control block and a process table.
A process table as far as I can see is a table that stores what was the last 'processed' instruction, and ...
0
votes
1answer
27 views
Obj-C: Accept a block body as a method argument [duplicate]
New at Obj-C and I'm trying to understand how I can accept a block from a method argument and pass to another method.
So, lets say I've got a basic object (inheriting from NSObject) that can load ...
0
votes
2answers
30 views
How do you indent subsequent lines of text using <span>
I'm working on applying CSS to a friend's web chatroom application.
Below represents the current situation, and what I'd ideally like to happen.
The HTML I have to work with is pretty simple, and ...
0
votes
0answers
23 views
how block dynamically created url in robots.txt
I have created my website (www.mobilescorner.com) in ASP.NET.
Crawel Error in google webmaster tool shows the error with response code 404 in following pages:
...
0
votes
2answers
68 views
Prevent call from going to voicemail after after blocking it on Android Phone
We are programmaticaly blocking the incoming calls on an Android phone. We are successfully able to block the calls. However, the call goes to voicemail as soon as it is blocked.How to I prevent the ...
1
vote
2answers
155 views
What are the rules that affect __weak variables in a block with regard to GCC_OPTIMIZATION_LEVEL?
In the code below, when I run it with the GCC_OPTIMIZATION_LEVEL set to None, execution works as I expect and it prints the following to the console:
My Obj - SomeObj
However, when I set the ...




