Tagged Questions
The repeat tag has no wiki summary.
18
votes
5answers
15k views
Repeating background image in native iPhone app
Short of putting a UIWebView as the back-most layer in my nib file, how can I add a repeating background image to an iPhone app (like the corduroy look in the background of a grouped UITableView)?
Do ...
17
votes
4answers
10k views
How can I repeat a string in Perl?
In Python, if I do this:
print "4" * 4
I get
> "4444"
In Perl, I'd get
> 16
Is there an easy way to do the former in Perl?
13
votes
1answer
958 views
Android Drawable: layer-list repeat bitmap does not load when entirely covered
I have three full screen week views that are loaded at one time (previous, next, current). Each week view has 7 columns (one for each day of the week) with a drawable background.
My drawable resource ...
8
votes
4answers
357 views
repeatedly applying a function until the result is stable
I want to repeatedly apply a function simplify' until the result is "stable" (i.e. simplify'(x) == x):
simplify :: Expr -> Expr
simplify expr =
let iterations = iterate simplify' expr
...
7
votes
1answer
145 views
How to repeat last n change in Vim?
Doing . repeats the last change. Doing 2. repeats the last change 2 times. But imagine I want to repeat the change before the last one, how do I do it in Vim?
Thanks
5
votes
2answers
233 views
How do I repeat any command in vim, like “C-x z” in emacs?
In Vim, is there any way to repeat the last command regardless of whether it was an edit or not, and without having the foresight to first record a macro?
E.g. say I type ":bn", and want to do it ...
5
votes
8answers
2k views
Repeat string to certain length
What is an efficient way to repeat a string to a certain length? Eg: repeat('abc', 7) -> 'abcabca'
Here is my current code:
def repeat(string, length):
cur, old = 1, string
while ...
5
votes
3answers
312 views
How Does One Make Scala Control Abstraction in Repeat Until?
I am Peter Pilgrim. I watched Martin Odersky create a control abstraction in Scala. However I can not yet seem to repeat it inside IntelliJ IDEA 9. Is it the IDE?
package demo
class Control {
def ...
5
votes
4answers
257 views
Connecting repeatable and non-repeatble backgrounds without a seam
I have a 700x300 background repeating seamlessly inside of the main content-div. Now I'd like to attach a div at the bottom of the content-div, containing a different background image that isn't ...
4
votes
1answer
57 views
How can I create repeated fields in Form Builder with Orbeon Forms 3.9?
Alex, I don't think I explained myself well enough (Although the information you provided was useful.) Lets say that I have an employment application that was created to collect information about a ...
4
votes
2answers
96 views
Catch repeat letters in PHP - Regular expressions
I have to check user input to make sure name, last name (etc...) are entered correctly and are valid. I have to build a regexp that check if a user enters repeated letters in the first name , last ...
4
votes
1answer
81 views
Repeatedly match a perl expression for a specific/multiple number of times?
For the given string example: <a><b><c><d><e><f><g>
I'd like to write an expression that will repeatedly match the first 5 <(?)> tokens and put them in ...
4
votes
3answers
65 views
Small vs Large image (when repeating)
I'm making a bar (like an hr) that will be spanning across the webpage. Out of curiosity, would it not be best to create the smallest image possible to repeat on the X axis or would it be best to ...
4
votes
1answer
441 views
How to create a horizontal bar that stretches across screen but is not in the body tag?
Very basic question!
I have a background pattern that repeats itself throughout the body tag. I would also like to have a top bar and bottom bar (head/footer) to repeat on the x axis - creating a ...
4
votes
5answers
364 views
How to repeat some action certain times on Vim?
In Vim, I usually want to repeat some series of commands some times. Say, I want to comment 5 lines, I would use
I//<Esc>j
.j.j.j.j
Is there any way to repeat the last ".j" part several ...
4
votes
4answers
520 views
Generate and repeat number in C#
I want to generate an array that has 144 number from 1->36 in random order (so each number is repeated 4 times). Can we use Enumerable.Repeat and Enumerable.Range to do that. If yes than please ...
4
votes
4answers
1k views
Repeating a section of an image in CSS
I want take a section of a picture, for example the middle of a picure, and repeat only that section in the background of a div. Is this even remotely possible? I suppose I could do this in ...
3
votes
3answers
162 views
Is there any case in python when using a while loop would be best practice?
I'm doing some python benchmarking, and I've discovered that repeat(None) is much faster than while True or while 1:
>>> def bench7():
... foo = 0
... a = time()
... for i in ...
3
votes
1answer
141 views
Print header/footer on all pages (Print Mode)
<div id="header">header</div>
<div id="content">
content spanning several pages...
</div>
<div id="footer">Footer - Fixed at the bottom of each page</div>
I ...
3
votes
2answers
123 views
Detect key up with LIRCd
I'm using LIRCd to capture the keys I press on my remote control, with the proper configuration file.
According to the documentation, I have to wait for the blocking function lirc_nextcode() to return ...
3
votes
4answers
468 views
Django - Tips to avoid repeating code in views
I'm moving from a PHP background into Django development via python, mostly for the sake of tackling a MVC (or MVT) that I feel makes the most sense, although in this pattern I've started to notice a ...
3
votes
2answers
278 views
Does Enumerable.Repeat() do a deep copy?
If I use the following:
var myList = Enumerable.Repeat(myCustomObject, 2);
Will the Second element in the list be a deep copy of the first one?
Note: myCustomObject can be any Object
Edit: ...
3
votes
3answers
4k views
iPhone dev — performSelector:withObject:afterDelay or NSTimer?
To repeat a method call (or message send, I guess the appropriate term is) every x seconds, is it better to use an NSTimer (NSTimer's scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) ...
3
votes
2answers
1k views
OpenGL glColorPointer repeat colors?
Imagine that you've got one of these guys:
Aka GL_TRIANGLE_STRIP. If you wanna color it using different colors, you could use:
glColorPointer(4, GL_UNSIGNED_BYTE, 0, colorArray);
...
2
votes
5answers
134 views
“repeat” structure in Java
I'm teaching programming to beginners (starting at 12-15 years old) and one of the choices we made (because it was natural in Python) was to teach the notion of "repeating an action" before the notion ...
2
votes
1answer
40 views
What is the best way to schedule a task guaranteed to run at near-scheduled time in Android?
I have been using Timer & TimerTask with Pseudocode:-
samplingTask = new TimerTask() {
public void run() {
collectSample();
}
};
timer.schedule(samplingTask, 60*1000, 60*1000); ...
2
votes
5answers
79 views
R repeat elements of data frame
I have searched the internet, but I haven't been able to find a solution to my problem.
I have a data frame of numbers and characters:
mydf <- data.frame(col1=c(1, 2, 3, 4),
...
2
votes
1answer
100 views
iOS - animation not repeating
I've made something like:
[UIView animateWithDuration:2.0
delay:0
options:UIViewAnimationOptionRepeat
animations:^{
...
2
votes
1answer
85 views
Java for loop skips runs twice
My code seems to repeat the for loop twice, before giving me the opportunity to answer. I've been staring at this all day, and I'm pretty sure I'm blind to whatever error I've made. Some help would be ...
2
votes
3answers
78 views
Finding number of repeats inside a list in a file with Python
I need to find the number of times an entry in the list repeats consecutively. For example, consider the following file
"hello hello [A B C]"
"my world [D C F L]"
"tick tock [A L]"
In this file, ...
2
votes
3answers
47 views
Changing a background image repeat file
I was wondering if it's possible to change what file the background image repeats to when the old image runs out.
So, if image01.jpg is set as the first background-image, when it runs out vertically ...
2
votes
3answers
84 views
minimal checks to find repeats in a list
Given a sequence (d1, d2, ..., dn), I want to evaluate the product (1 - Dij) for all i != j where Dij = 1 if di = dj and 0 otherwise.
The code I have only checks Dij when i
prod = 1;
for (int i=1; ...
2
votes
1answer
74 views
how repeat a row in mysql resultset for specified times?
I've a mysql table like this :
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| id (int primary key) | count (int) |
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Assume that this table is filled with these ...
2
votes
2answers
103 views
If a number repeats, only show it once
Hi if I have the following XML input file
<data>
<group id= "1">
<phrase>Doc1</phrase>
<document refid ="3"/>
<document refid ="5"/>
<document refid= "1"/>
...
2
votes
1answer
995 views
CSS: Repeat Table Header after Page Break (Print View)
I have html table for printing with repeat header and footer. Everything works, document to break automatically. But now i would like to break page after any element. I use to css property ...
2
votes
1answer
457 views
using createPattern() with a canvas
I'm trying to get a repeating canvas pattern. Sadly all examples I could find repeat an image. So i tried this:
function init() {
var canvas = document.getElementById("bg");
var ctx = ...
2
votes
4answers
191 views
How do I write a variable a certain amount of times?
var x=5
var char="Hi!
Is there any way to make JS write char x amount of times inside of an html element?
<span>Hyper guy wants to tell you
<script>
var x=5;
var char="Hi!;
...
2
votes
1answer
155 views
Repeating the last command in Eclipse a la Vim
As good as Eclipse is at writing my code for me, I sometimes find myself needing to repeat the same operation, as with hitting the period (.) key in Vi(m). It seems reasonable that if Eclipse's ...
2
votes
4answers
411 views
repeated phrases in the text Python
I have a problem and I have no idea how to solve it. Please, give a piece of advice.
I have a text. Big, big text. The task is to find all the repeated phrases which lenght is 3(contain of three ...
2
votes
5answers
391 views
How can I write a tiny Bash shell script to repeat an action every 5 seconds?
I want to copy a file from one location to another every five seconds. I don’t want to set up a cronjob because this is only temporary and needs to be fully under my control.
Can I write a .sh that ...
2
votes
5answers
185 views
Use regex to find out if a string is just a single repeated character
I'm writing a PHP script and I'm at this point where I need to know if a string consists of one character that's just repeated. The character is even a specific one: it's z.
For example, I want to ...
2
votes
2answers
281 views
How can I return multiple identical rows based on a quantity field in the row itself?
I'm using oracle to output line items in from a shopping app. Each item has a quantity field that may be greater than 1 and if it is, I'd like to return that row N times.
Here's what I'm talking ...
2
votes
1answer
913 views
CABasicAnimation Repeat itself
I have a CABasicAnimation that I perform on multiple layers and all it does is move the UIImageView up 10 pixels and then back down. I want this to continue ad infinitum. When the animation finishes I ...
2
votes
1answer
124 views
Please help me shorten my code
My question is to shorten repeating the process.
Data1=dlmread('BadgCk-20001103-RZhS-1hAccumx10-TextData0-1.txt','\t',[31 1 286 255]);
...
2
votes
3answers
64 views
How would I get this odd table from XSLT?
Using this input XML:
<?xml version="1.0" encoding="utf-8"?>
<Employees>
<Employee ID="1">
<FirstName>Klaus</FirstName>
...
2
votes
3answers
189 views
Pass parameter one time, but use more times
I'm trying to do this:
commands = { 'py': 'python %s', 'md': 'markdown "%s" > "%s.html"; gnome-open "%s.html"', }
commands['md'] % 'file.md'
But like you see, the commmands['md'] uses the ...
2
votes
3answers
382 views
Get all characters from a string with their number
How in Java can I get list of all characters appearing in string, with number of their appearances ? Let's say we have a string "I am really busy right now" so I should get :
i-2, a-2, r-2, m-1 and ...
2
votes
4answers
706 views
How can I get a counter variable in Vim without python or ruby?
I do NOT have python/ruby enabled. My Question: I frequently have to write things like the following:
%macro(200701);x gzip /home/test/200701.txt;run;
%macro(200702);x gzip /home/test/200702.txt;run;
...
2
votes
2answers
3k views
Can't do shell script with a repeat with i from 1 to n loop
This works (prints, for example, “3 arguments”):
to run argv
do shell script "echo " & (count argv) & " arguments"
end run
This doesn't (prints only “Argument 3: three”, and not the ...
1
vote
3answers
31 views
JQuery - Affect multiple elements of same ID?
I am trying to perform an effect targeted at objects with the same ID, but it only works on the first one:
$("#continue").addGlow({ .. etc.. });
How do I carry forth with this?