3,184 questions
0 votes
1 answer
45 views
How to repeat single SSRS tablix footer on every page
I am new to SSRS and the report builder. I have the following report that has a row group with a header and several footer rows. I need to repeat one of the footer rows on every page but when I do ...
0 votes
0 answers
44 views
CSS expression `background-repeat: round;` looks the same as `background-repeat: repeat;` on an iPhone
Here is an example, <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <style> * { margin: 0; padding: 0; box-sizing: border-box; ...
0 votes
1 answer
104 views
How do the meta variables in the following macro expansion work?
I am learning rust macros. In the part on repetition, the following macro is used to demonstrate how repetitions work: macro_rules! repeat_two { ($($i:ident)*, $($i2:ident)*) => { $( ...
1 vote
3 answers
118 views
Repeat a sequential numbering of duplicated values starting from a given value in R
In a new variable row2, how to repeat a sequential numbering (here a sequence from 3 to 6) by group of duplicated row1 values, which would start from a given value (here from row1 = 3), even if the ...
2 votes
1 answer
64 views
What happens to set kernel arguments after launch? Must I reset them?
In CUDA, launching a kernel means specifying its arguments, marshaled via an array of pointers: CUresult cuLaunchKernel ( CUfunction f, /* launch config stuff */, void** kernelParams, ...
-2 votes
2 answers
306 views
How to repeat a list of names multiple times in EXCEL and repeat that list
I found a solution to take a list: alpha bravo charlie and repeat that list a number of times: alpha alpha alpha bravo bravo bravo charlie charlie charlie I am trying to now duplicate that list a ...
0 votes
1 answer
74 views
How do I prevent my tween from playing double?
I have a simple project where I'm making a card battling game. The battle sequence looks like this: repeat BattleClient.PlayerAttackTween() task.wait(battleSpeed) ...
-3 votes
1 answer
100 views
AUTO REPEAT DATA using formula EXCEL
I have a master data with a number. i would like to repeat the data based on the number inserted, and then automatically detect where to repeat the formula. Example as picture below. for repetitive, i ...
1 vote
1 answer
247 views
How can I run the same command in C# interactive in VS?
How can I run the same command in C# interactive in VS? Usually CLI tools allow just to press the up arrow to get the previously typed command. Is there a way to do something similar in C# interactive ...
0 votes
1 answer
84 views
How to repeat rbinom() with different size inputs with each draw?
I am attempting to write R code that will draw from a binomial distribution but will repeat for every value in a specified column in a data frame. I generated a data frame in r such that the first ...
0 votes
1 answer
59 views
Using SASS, how can I have classes of a parent element also be applied to the direct children elements?
In order to avoid code repetition, ideally I would like to apply a class to a DOM element (for example "children") and have the rest of the classes applied to that element affect the direct ...
1 vote
1 answer
79 views
Counting repetitons in Pyspark
Currently I'm working with a large dataframe and faced with an issue. I want to return a number of time (count) each value is repeated in a table. For example: number 10 is repeated twice, so I want ...
1 vote
1 answer
59 views
A way to use rep() with data.frames or vectors? [closed]
I have a list of data frames that looks likes this: dflist: [[12]] label site <chr> <int> [1] NODE_0000138 12 [2] NODE_0000222 12 [3] NODE_0000205 12 [4] ...
-1 votes
1 answer
46 views
To wait a file to be created, with a timeout, and a error message, in Applescript
in my AppleScript app, I have to wait for a file to be created by an another app, with a timeout (to not waiting for ever), and with an error message if the timeout is over. I've tried that, but ...
0 votes
1 answer
89 views
Creating a Repeating/Looped Table in Cognos
I need to create a table of lat/lon coordinates with repeating values, in order to calculate distances between all locations. In the DB I have the following fields to use: Location Code Latitude ...