A Counter is a container that keeps track of how many times equivalent values are added. It can be used to implement the same algorithms for which bag or multiset data structures are commonly used in other languages. http://www.doughellmann.com/PyMOTW/collections/counter.html
1
vote
0answers
13 views
MySQL running totals in procedure
I just cant get this to work within a procedure (as a simple query this works fine):
SET @c:=0;
SELECT
(@c := @c + 1) AS Cumulative,
FROM
NumberTable,
Table
...
I think it hast ...
0
votes
1answer
20 views
How to connect components of VHDL code
I have 2 components that have worked separately in simulation, but now I'm confused on how to implement the design onto my board. I have one design that is a binary to 7-segment display, and another ...
0
votes
0answers
8 views
Bitrix: file downloads counter
Can anyone advise me is there a possibility to implement file downloads counter in a standard Bitrix's way?
I mean some info-blocks and custom property (e.g. downloads).
The goal is that I have ...
0
votes
1answer
20 views
Cocos2D Score Counter will not count score
I making a game in Cocos2D. I made a score counter on my screen, and when I hit an enemy it adds a point to the score. When I run it, and when I hit an enemy the project terminates.
It is probably ...
-3
votes
0answers
29 views
13389. Letter Count (SPOJ)(need help ASCII value)(C++)
http://www.spoj.com/problems/MAY99_E1/
this is what the promeblem should do i believe i go a mistake on the
ASCCI part
In this problem , you will be given a string of less than 1000 characters.
The ...
1
vote
5answers
94 views
Counters that flip signs in java
Ok so im trying to make a program and i need to have the counter start at -3 and go down by 2, but every other number has to be a positive: for example:
-3, 5, -7, 9, -11, 13, -15, 17, -19,...
any ...
0
votes
1answer
54 views
Leibnitz Method for Pi Program
I am making a program to prove Leibnitz method for computing PI.
(pi/4) = 1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + ...
I took a very interesting approach to this and I am just wondering if there is a much ...
0
votes
1answer
25 views
xsl increment counter conditional
I am trying to increment a counter when a condition is met, for example if a final_score is over 30, count = 1. so if 3 scores are over 30 the final_score should be 3. To get the scores i need to add ...
0
votes
3answers
37 views
count words more accurately
Is it possible to make this function to count words more accurately and most important, count the word inside a editable div?
$(document).ready(function() {
$('.word_count').each(function() {
...
0
votes
5answers
46 views
Count words on multiple textareas on a html sheet
I have a html sheet that contains several textareas (100) and they all have the same id "edit".
My problem is that I want count all the words on each and everyone individually...
I have tried some ...
0
votes
2answers
38 views
JS countdown timer with cookie issues
We have a 24 hour countdown timer. Problem is, whenever the page is refreshed the timer restarts. How can we create a cookie so it doesn't restart for the same user/when refreshed? And if if goes down ...
0
votes
0answers
6 views
Hello, I would like some help… I am implementing in my site, a counter to check how many times the word was search (WebTotal)… I tryed with
I would like some help... I am implementing in my site, a counter to check how many times the word was search (WebTotal)..... I tried with find some feature to invoke the Google or the Bing, but I ...
0
votes
0answers
19 views
Looking for widget with multi-select and counter JQuery
I am looking for a UI widget which allows me to multi-select items multiple times. That means if I have a list of 5 items, it should be possible to add one or more items multiple times, thus I need a ...
0
votes
1answer
33 views
Run and increment a counter in VHDL
I need to design VHDL to run a counter on a seven segment display. The three inputs are start, stop, and increment based on three pushbuttons. Start will start the counter and it won't stop until the ...
1
vote
2answers
35 views
CSS, UL/OL: Incorrect indent with custom counter
So, I'm using a custom counter in my OLs to get numbering like "1 - 1.1 - 1.1.1"
Works fine.
But when I do this, the indentation of the LI is wrong. The text aligns with the left edge of the number, ...
0
votes
0answers
40 views
how to slow down jquery counter
I'm new to jquery and was using this code to count up a percentage number when the user scrolls to a certain point. I have tried different methods, but I cannot get it to slow down. How do I set a ...
-3
votes
0answers
41 views
verilog 5 bit counter up/down [closed]
I need to make a 5 bit counter which , once it reaches it maximum value, it counts down to zero. Once reached 0 value, the counter counts up to the maximum value and so on.
I thought of the following ...
-3
votes
1answer
43 views
Counter on matlab using for loop [duplicate]
I have provided the function file for a similar question for the input vector of size 3. you can try running it.
function neha(limit)
c = zeros(1,3);
for i = 0:limit(3)-1 % same as running it ...
-4
votes
1answer
36 views
have to create a matlab counter [duplicate]
Q- Create a "counter" from 0:limit-1 (for example if you choose 3 it will display 0,1,2). The length of counter is not determined in the program and it should be determined when it is being run and ...
0
votes
2answers
46 views
Using a counter, 0 if not found
I'm writing a script that first extracts the 50 most common words from a large collection of files. It then goes on to find how many occurences of those 50 words can be found in each file.
This ...
0
votes
1answer
18 views
Create a column that counts the number of times a value shows up on another column, from the same table - MySQL
In MySQL:
Lets say I've this table:
id | name | count |
1 | John | |
2 | John | |
3 | John | |
4 | Mary | |
5 | Lewis| |
6 | Lewis| |
7 | Max | |
8 ...
-1
votes
0answers
54 views
Apple's 50million app countdown [closed]
I am seeing a lot of custom JS in the http://www.apple.com/itunes/50-billion-app-countdown/ counter, and wondering what the best open-source counter that matches this old school ticker functionality ...
0
votes
1answer
13 views
Adding a hit counter to Desktop Intelligence/Xi 3/Business Objects webpage?
for my company I am making a report in Xi3/Desktop Intelligence that pulls data via free hand SQL and makes a html file displaying the data, updating every 20mins. We want to incorporate a hit counter ...
0
votes
2answers
21 views
Adding A Timer with Score
Im Currently developing a game with Processing and Fiducials. Basically this game consists of asking questions related to certain countries. Each ANS of each question is a Country. Example where is ...
0
votes
2answers
39 views
Dynamically accelerating odometer in Javascript
I'm trying to come up with a striking visual way to display a number. The number in question, based on the settings, can vary between 0 and 10,000,000 or so. So initially I had thought I would set up ...
0
votes
5answers
94 views
How to Count Repetition of Words in Array List?
I've these code for searching occurrence in Array-List but my problem is how I can get result
out side of this for loop in integer type cause I need in out side , may be there is another way for ...
0
votes
1answer
48 views
How can I count the number of comparisons? (Hash Table)
OK, so I am working from the book "Data Structures and other objects using C++ 4th Ed". I am making a hash table that accepts the keys and hashes them into the correct spots using open addressing to ...
0
votes
1answer
20 views
Rails - Model with counter_cache don't work
What's up guys?
I created a migration in my project that add "likes_count" column to Post:
def self.up
add_column :posts, :likes_count, :integer, :default => 0
Post.all().each do |post|
...
0
votes
3answers
29 views
How do I use sed or tr to remove a counter with brackets
How do I use sed or tr to remove a counter with brackets and a tab
Input:
[51971] 207.99.88.182 - - [07/Apr....
Output:
207.99.88.182 - - [07/Apr....
The counter part has been driving me nuts ...
-1
votes
0answers
27 views
Content counter [closed]
I have a mobile site situated at www.xclo.mobi. On my home page I have a list of categories.
When you click these links you get a page with a number of campaigns available on them.
If I was to number ...
0
votes
0answers
12 views
Doctrine object autoupdate triggered on calling its getter - what's “legal” to do?
In a table A I have a coulumn A.count that counts entries in table B that are related to a particular A's row. A.updateDate keeps timestamp of last A.count update. The idea of A's entity's getCount ...
0
votes
1answer
44 views
Implementing a counter in a stack program to count how many times an object has moved
all. I have learned about stacks and how they work and am working on an exercise to move cars into a parking lot via 2 stacks (2 lanes of the parking lot). My code needs some work but I am trying to ...
0
votes
3answers
51 views
How can I concatenate two counters (custom)
I have two counters with me, so let's suppose for simplicity:
a = "this" : 2 , "is" : 3
b = "what" : 3 , "is" : 2
Now I want to concatenate the two counters like this:
concatenatedCounter = "this" ...
0
votes
1answer
55 views
Load alternate page every x number of unique visitors? (PHP? MySQL?) [closed]
I'm trying to figure out a way to create a page that loads content based on number of visitors that have visited the page. So, if user 0 through, lets say, 19, comes to a page, they get the first ...
-1
votes
3answers
39 views
php, Cannot modify header information [duplicate]
I'm making a simple download counter but I keep getting a header error as seen on - http://dev.kennyist.com/download.php?file=gvb
<?
error_reporting(-1);
$file= $_GET['file'];
print ...
0
votes
3answers
51 views
Set delay in android
I want to show 1 to 9 numbers in my app as a counter
TextView te=(TextView)findViewById(R.id.text);
for(int i=0;i<10;i++ ){
try {
...
0
votes
3answers
45 views
How to count how many “ZE”s in a given string
I am trying to complete this attempt to count how many times "Z" eats "E" in the string. In other words I need to count how many times "ZE" is in the given string:
letters = "GOLDZEZEDUZZEOZBIX"
...
-7
votes
2answers
68 views
Counting how many times a letter is used in a word [closed]
In a string that a user enters, how can I find how many times every letter is used in that sentence?
for example user entered;
just give me a reason
the output should be;
a has accourd 2 ...
0
votes
1answer
61 views
An access violation (segmentation fault) raised in my program?
This program has been a huge headache for me. For whatever reason it crashes as soon as it reaches "student 3". I can't find any infinite loops that it is getting stuck in or any other reason for it ...
0
votes
1answer
27 views
Implementing a mod 12 counter in SystemC
How do I go about implementing a modulus 12 counter in SystemC? I am new to the library and do not have much experience with it. please help.
-2
votes
1answer
25 views
JavaScript - Timer - Speeding math glitch [duplicate]
var time_gone = 0
function timer() {
time_gone += 0.01
console.clear()
console.log(time_gone)
setTimeout("timer()", 10)
}
timer()
Try using this ...
0
votes
2answers
63 views
clock countdown calculation in python
I want to write a function called boom(h,m,s) that after input from main starts printing in HH:MM:SS format the countdown clock, and then prints "boom".
I'm not allowed to use existing modules except ...
1
vote
1answer
42 views
Updating Array Value in For Loop Bash
I'm interested in updating an array element value within a for loop, but my update definition is wrong, since the output contain [counter].
Here is the code I have:
declare -a mem_set=(0 0 0 0 0 0 ...
0
votes
1answer
45 views
Tracking Page Views on dynamic website
I'm trying to store the number of views on a certain post in my database. For example, I have one page index.php, and depending on which article the user clicks on, it will take them to a certain ...
0
votes
0answers
38 views
is it Improper method calls, or over thinking it?
This is my code
/*Simulate a tally counter that can be used to admit a limited number of people.*/
public class tally
{public static void main(String[] args)
{tallyCounter occupancy = new ...
0
votes
1answer
38 views
High loaded web site traffic counter
I want to create an application for getting a statistic data about sites visits and average time on site with over 1 000 000 visits per day.
What is the most compatible programming language and ...
0
votes
1answer
72 views
Python counter key value
My question is similar to my previous question: Python list help (incrementing count, appending). My accepted answer works well. However, this time I have a different question.
I'm parsing a string ...
0
votes
1answer
51 views
Comparison of two array elements and calculation
I have an issue with a section of code I wish to write. My problem is based around two arrays and the elements they encompass.
I have two arrays filled with numbers (relating to positions in a ...
0
votes
3answers
95 views
Count occurences of strings in a text file
I have the following program and I want to find for example the string 'light pink' in my text file!
I use word==' '.join(['light','pink']) and it doesn't works.
from operator import itemgetter
def ...
0
votes
1answer
42 views
Message counter with jms Hornetq
I want to know the number of messages currently in the jms hornetq, but I only want to turn the counter on for a single JMS queue. I do not want to waste the disk space for all the queue's I have. ...




