Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
6answers
2k views

Using “double” as counter variables in loops

In a book I am currently reading, there is this excerpt: You can also use a floating-point value as a loop counter. Here's an example of a for loop with this kind of counter: double ...
29
votes
4answers
2k views

How to access CSS generated content with JavaScript

I generate the numbering of my headers and figures with CSS's counter and content properties: img.figure:after { counter-increment: figure; content: "Fig. " counter(section) "." counter(figure); ...
13
votes
2answers
953 views

High-concurrency counters without sharding

This question concerns two implementations of counters which are intended to scale without sharding (with a tradeoff that they might under-count in some situations): ...
7
votes
3answers
109 views

How to implement object counter in Java

An interviewer asked me that How can you implement a class Foo, where you will be able to count instances of that class. There are more threads which are creating instance of that class Foo. ...
7
votes
2answers
6k views

JavaScript Flip Counter

I would like to include a flip counter on my site, similar to what Apple was using for their 1 billion app countdown. Can anyone get their JavaScript to work standalone? If anyone can provide ...
6
votes
1answer
2k views

simple hit counter for page views in rails

I've found several solutions for this problem, for example railstat from this post: Page views in Rails I have a bunch of articles and reviews which I would like a hit counter filtered by unique ...
6
votes
4answers
7k views

jQuery counter to count up to a target number

I'm trying to find out if anyone knows about an already existing jQuery plugin that will count up to a target number at a specified speed. For example, take a look at Google's number of MB of free ...
6
votes
5answers
206 views

To find an execution line-counter for Java IDE

Is there any plugin to some IDE that show the number of times a line is run in the code? Eclipse's ECLemma does not seem to have a setting to show execution times at the left-hand-side bar, like in ...
5
votes
1answer
435 views

Android dialog number picker

Is there any tested and usable component we can use to show "Count selector" like this? Our target is to get it working from API v7 . (Taken from DatePickerDialog)
5
votes
4answers
167 views

How to implement a concurrent circular ticker (counter) in Java?

I want to implement a circular counter in Java. The counter on each request should increment (atomically) and on reaching an upper limit should roll over to 0. What would be the best way to ...
5
votes
1answer
138 views

Making an effect of number changing

I have a counter set like this: <ul> <li id="cenMill">0</li> <li id="decMill">0</li> <li id="uniMill">0</li> <li id="cen">3</li> ...
5
votes
2answers
153 views

Preprocessor facility __COUNTER__ in Visual C++

I need to generate a series of sequential numbers throughout my code at compile time. I tried "__COUNTER__" in a way like this: void test1() { printf("test1(): Counter = %d\n", __COUNTER__); } void ...
5
votes
9answers
1k views

Counter in foreach loop in C#

Working of foreach: As I know, foreach is a loop which iterates through a collection or array one by one, starting from 0 index till the last item of the collection. So, if I have n items ...
5
votes
2answers
134 views

How do I build a flexible counter with 1000+ rows but few reads in Google App Engine?

I have a list of users that only administrators can see (= few reads). This list also displays a count of the number of users in the datastore. Because the list could grow larger than 1000 my first ...
4
votes
3answers
89 views

Counter does not increment in PHP/MySQL

I need to create a counter for member section (count the number of times a user logged). I have the following script (counter.php): <?php $conn = mysql_connect("localhost", "myuser", ...
4
votes
4answers
635 views

JS onunload event won't always work

I want to count how much time visitors spend on a certain page and store it in my MySQL DB. I thought of just starting a timer on window.onload like this: window.onload= startCount; window.onunload= ...
4
votes
1answer
157 views

What are the tradeoffs when generating unique sequence numbers in a distributed and concurrent environment?

I am curious about the contraints and tradeoffs for generating unique sequence numbers in a distributed and concurrent environment. Imagine this: I have a system where all it does is give back an ...
4
votes
1answer
32 views

Is there a way to know how many times my jar (in public Maven repository) is downloaded through Maven?

For statistical reasons, we need to know how often our library (jar) is used. When users download the jar from our website, we have a built-in script that counts the downloads. We have recently also ...
4
votes
4answers
147 views

Searching for a good PHP based Web Counter

I am running a php based web application and within that application I am using bbclone to count visitors and site activity. Unfortunately it doesn't work that nice as expected because bbclone counts ...
4
votes
5answers
216 views

Is there an API that allows you to find out how many sites link to yours?

I know google has things like linkto:yourdomain.com and Alexa is around, but there's nothing that I can query and get the number of sites that link to me. Anyone know of such a thing, other than using ...
3
votes
1answer
50 views

how to recursively create a new folder in c#

I'm trying to handle if the folder i want to create is already exist .. to add a number to folder name .. like windows explorer .. e.g(New Folder , New Folder 1 , New Folder 2 ..) how can i do it ...
3
votes
2answers
97 views

How do I maintain a single counter across multiple recursive calls?

I'm trying to keep track of number of comparison between array elements being made in merge sort. The program is written in Lua. I am trying to use multiple result and keep track of the counter but it ...
3
votes
1answer
565 views

VHDL complement counter issues: converting std_logic to integer

Essentially, my question is: "can this not be done any easier?"; and what 'this' is, follows below (code too): I wanted to have a sort of a 'complement' counter function, implemented in VHDL, which ...
3
votes
3answers
382 views

Twitter-like textarea/input counter in jQuery

I am experimenting with a textarea/input counter in jQuery. So far I have written this: $textarea.keyup(function(){ $chars_remaining.html((200 - parseInt($textarea.val().length))); }); ...
3
votes
1answer
65 views

“Warning C0007 : Architecture has unbound instances” issue!

I have the following source code from the CD attached with "Fundamental of Digital Design" book. When I tried run the program, it gave me the following error: Compiling Fig17_13.vhd... ...
3
votes
5answers
384 views

PHP: increment counter function using words (i.e. First, Second, Third, etc.. )

I've been trying to find a function which increments a counter using words. I know its possible using numbers with suffixes (i.e. 1st, 2nd, 3rd and so on). Here is a snippet of the code i've got: ...
3
votes
3answers
394 views

gVim find/replace with counter

Is there a way to insert the value from some sort of counter variable in gVim search/replace? e.g. convert this document: <SomeElement Id="F" ... /> <SomeElement Id="F" ... /> ...
3
votes
1answer
262 views

jQuery countdown pause and repeat

I'm trying to code some feature to page, but I'm not able to put together all pieces :-( All I want is simple counter which counts to 0 and then show message (.confirmation). If You disrupt (move ...
3
votes
2answers
398 views

__COUNTER__ equivalent on Xcode?

I am migrating a project from Linux to Xcode and I encountered a "version" problem.. I need a unique identifier at compile time for my dynamic stuff, on linux I was using the __ COUNTER__ ...
3
votes
1answer
1k views

Latex: page n of m for \frontmatter and page n of m for \mainmatter

I am working on a book in latex, which uses the \frontmatter, \mainmatter, and \backmatter commands from the book class. I am also using lastpage which gives me page n of m for the pages counted in ...
3
votes
4answers
782 views

How to Implement a Reliable Web Page Counter?

What's a good way to implement a Web Page counter? On the surface this is a simple problem, but it gets problematic when dealing with search engine crawlers and robots, multiple clicks by the same ...
3
votes
4answers
2k views

CSS: Start numbering pages with 2 instead of 1

In CSS, with: @page { @top-right { content: "Page " counter(page) " of " counter(pages); } } I can have page numbers displayed at the top of every page when the page is printed. This works great. ...
2
votes
3answers
58 views

Getting unique hit count in php

I want to add a unique hit counter to my website using PHP. This counter will save visitor's IP for each page in a database. I have a database structure like this: Table hits with two columns: ip ...
2
votes
1answer
35 views

RawFraction performance counter persists its state even after deleting the performance category

I am creating and setting up the performance counters correctly but when I delete the category, recreate the category with the same name and add/update the counters to that category, it fails to ...
2
votes
2answers
37 views

Sybase add incrementing counter to a select statement

It seems that a similar question has been asked an solutions exist for other DB products (especially MS-SQL) but they don't work for sybase so I'm asking this question. I have a simple select ...
2
votes
1answer
49 views

how to keep a counter of how many times an article is viewed in rails?

I have a model which is an image gallery. I want to keep track of how many views the image gets. Currently I achieve this in the controller def show @article = Post.find(params[:id]) ...
2
votes
1answer
66 views

Deprecated Facebook Insights counters

From december 2011, more Facebook Insights counters are deprecated like the following counters : page_active_users pages_active_users_gender page_fans_country page_fans_gender_age ...
2
votes
8answers
489 views

How to create an advanced counter in C?

I have an infinite for loop that contains a function to continuously receive readings from a LDR. The code is something like this : . light_1=sample(1); . . for(::){ light_2=sample(2); if((light_2 ...
2
votes
1answer
55 views

Distributed Counter on AWS

I have multiple instances of a service running on multiple EC2 instances and I need a global counter which all instances of the service can access. The counter needs to support set/reset and increment ...
2
votes
2answers
184 views

Implement a counter on prolog towers of hanoi

I have a program due in the morning using Prolog. I am implementing Towers of Hanoi. What I need help with is each time that it prints Move disc number # from _ to _. I need to increment a counter ...
2
votes
4answers
119 views

How to add a count to a button click in a Winform

I would like to know how I can add a counter to a button click event, for example, I would like to make it so that when you press the Save button it adds 1 to the counter. When the user presses Exit ...
2
votes
1answer
32 views

Managing an incrementing field in a model with ATK4 (not a mysql autoincrement column)

OK -this might be simple but i'm having trouble visualising where i need to put what in ATK4. I have a table (team) with columns id, name and reference. The id is an autoincrement colunm and a ...
2
votes
2answers
66 views

Does the program counter always have to change (upon an instruction tick)?

From Does the program counter always have to change (upon a clock tick)?, I already know that the PC does not have to change at each clock; as a particular instruction may take more than one clock ...
2
votes
1answer
50 views

Need synchronization for an increment-only counter?

I use an integer as counter. The integer will only be increased, and surely more than one thread will increase it at the same time. The value of this counter is read at the end of program execution ...
2
votes
1answer
50 views

Counter that doesn't reset when the page is closed

I'm looking for some simple script to display what the title says. Some sort of counter (like a timer) that starts incrementing when the user clicks a button and stops when clicked again or when the ...
2
votes
1answer
135 views

Counter to Close JFrame, bring up Confirm Dialog

This post relates to my last one regarding a timer. I decided the easiest thing to do for immediate results was to just write a Counter thread that counts down from a certain time (in this case 5 ...
2
votes
2answers
57 views

Is there a way to “set” Hadoop Counter instead of incrementing it?

API only provides methods to increase a counter in Mapper or Reducer. Is there a way to just set it? or increment it's value only once irrespective of the number of times mappers and reducers are run. ...
2
votes
4answers
139 views

Setting up a Counter in a Table (Mathematica )

I have two questions, Q1. The code is below: orgtable = Table[{i, node2 = i + 1, node3 = node2 + 6, node4 = node3 - 1, node5 = i + 18, node6 = node5 + 1, node7 = node6 + 6, ...
2
votes
3answers
143 views

php - Foreach - Wrapping <li> </li> with two results inside, then repeating.

Working with php - Im trying to run a "foreach" on an array, but i want to wrap every two results in li tags. Output will look like this. <li> <div>result 1</div> ...
2
votes
3answers
58 views

is it ok to re-use temporary variables?

Like iterrating a array, and using the index variable later instead of count() : foreach($arr as $index => $val){ ... } echo 'number of items: '.$index+1; ?

1 2 3 4 5 9