1
vote
3answers
61 views
A question about JavaScript’s slice and splice methods
I came across the following code:
var f = function () {
var args = Array.prototype.slice.call(arguments).splice(1);
// some more code
};
Basically, the result in args …
0
votes
2answers
30 views
Modifying QuerySet result
Is it possible to change some specific items in a QuerySet object? In my case i'm trying to slicing "title" fields with length more than 40 characters and append "..." at the end o …
1
vote
3answers
179 views
“Slice lists” and “the ellipsis” in Python; slicing lists and lists of lists with lists of slices.
Original question: Can someone tell me how to use "slice lists" and the "ellipsis"? When are they useful? Thanks.
Here's what the language definition says about "slice_list" an …
0
votes
3answers
46 views
Separate multi dimensional array
Hello!
I have a multi dimensional array in PHP.
$f = array('one' => array(*doesntmatter*), two => array());
When I want to use it, I only want one of the arrays. (one or …
-3
votes
7answers
355 views
Python/numpy tricky slicing problem
Hi stack overflow, I have a problem with some numpy stuff. I need a numpy array to behave in an unusual manner by returning a slice as a view of the data I have sliced, not a copy. …
1
vote
1answer
82 views
right distance of background-position in CSS
Hello
I worked on a CMS and I want to have diffrent Buttons for special editings.
I created a small examplefile wich looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1 …
1
vote
3answers
68 views
How could I print an array slice in awk?
In a file I am reformatting, I would like to put the last column as the first and have the rest of the columns stay the same. I could do this easily in python, but thought I'd lea …
4
votes
4answers
333 views
What’s the best way to get the last N elements of a Perl array?
What's the best way to get the last N elements of a Perl array?
If the array has less than N, I don't want a bunch of undefs in the return value.
3
votes
4answers
155 views
MATLAB excluding data outside 1 standard deviation
I'm inexperienced with MATLAB, so sorry for the newbie question:
I've got a large vector (905350 elements) storing a whole bunch of data in it.
I have the standard deviation and m …
2
votes
1answer
255 views
How to slice an array in bash
(edited to fit the answer)
Looking the "Array" section in the bash(1) man page, I didn't find a way to slice a bash array.
So I came up with this overly complicated function:
#! …
0
votes
2answers
232 views
What is the equivalent of “ByteBuffer.flip” & “ByteBuffer.slice” in .NET?
Hello :)
I need to port code from Java to C#. In the Java code, the methods "ByteBuffer.flip()" and "ByteBuffer.slice" is used, and I don't know how to translate this.
I've read …
7
votes
4answers
219 views
Intercept slice operations in Python
I want to imitate a normal python list, except whenever elements are added or removed via slicing, I want to 'save' the list. Is this possible? This was my attempt but it will neve …
1
vote
5answers
1k views
Javascript chop/slice/trim off last character in string
I have a string 12345.00 would like it to return 12345.0
I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs?
2
votes
5answers
468 views
What tools are there to slice a PSD?
I regularly slice web designs provided in PSD format. As a site-builder, I don't need to create graphics—I only rearrange the layers, hide ones and show others, pick colors, widths …
4
votes
8answers
495 views
Inverting a string in Python
I was looking for a way to print a string backwards, and after a quick search on google, I found this method:
Suppose 'a' is a string variable. This will return the 'a' string bac …
