3
votes
4answers
114 views
+100
Log4J: Strategies for creating Logger instances
I decided to use Log4J logging framework for a new Java project.
I am wondering what strategy should I use for creating/managing Logger instances and why?
one instance of Logger …
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 …
3
votes
4answers
79 views
Why does an assignment for double-sliced numpy arrays not work?
Hello everybody,
why do the following lines not work as I expect?
import numpy as np
a = np.array([0,1,2,1,1])
a[a==1][1:] = 3
print a
>>> [0 1 2 1 1]
# I would expect [ …
1
vote
2answers
101 views
Is it possible for slicing to occur with Smart Pointers?
If I understand slicing correctly I don't think this could happen with pointers or smart pointers. For example, if you had:
class A
{
int something;
};
class B : public A
{
int s …
8
votes
2answers
202 views
Dynamic slicing in C/C++
Hi,
after reading the book of debugging from Andreas Zeller, I became interested in Dynamic Slicing (http://en.wikipedia.org/wiki/Program%5Fslicing).
At the moment I only found r …
3
votes
7answers
233 views
Iteration over list slices
Good day function-wizards,
I want an algorithm to iterate over list slices. Slices size is set outside the function and can differ.
In my mind it is something like:
for list_of_ …
13
votes
8answers
3k views
What is the slicing problem in C++?
Someone mentioned it in the IRC, but google doesn't have a good answer.
2
votes
3answers
288 views
Need some help with python string / slicing operations
This is a very newbie question and i will probably get downvoted for it, but i quite honestly couldn't find the answer after at least an hour googling. I learned how to slice strin …
4
votes
4answers
217 views
Exception slicing - is this due to generated copy constructor?
I've just fixed a very subtle bug in our code, caused by slicing of an exception, and I now want to make sure I understand exactly what was happening.
Here's our base exception cl …
6
votes
1answer
157 views
What is the purpose of the two colons in this Python string-slicing statement?
For example,
str = "hello"
str[1::3]
And where can I find this in Python documentation?
16
votes
3answers
2k views
How do you use the ellipsis slicing syntax in Python?
This came up in Hidden features of Python, but I can't seem good documentation or examples that explain how the feature works.
4
votes
3answers
366 views
Python: How to get last 9 items of a list?
I need the last 9 numbers of a list and I'm sure there is a way to do it with slicing but I can't seem to get it. I can get the first 9:
num_list[0:9]
Any help would be great. …
4
votes
8answers
652 views
difference between a pointer and reference parameter?
Are these the same:
int foo(bar* p) {
return p->someInt();
}
and
int foo(bar& r) {
return r.someInt();
}
Ignore the null pointer potential. Are these two functions …
5
votes
2answers
248 views
Slicing a NURBS surface
I have a NURBS surface which has 4 curved edges. (I have the 4 bezier points for the curves)
I'd like to slice the NURBS surface with a slicing-plane thats on-axis (not as advance …
2
votes
5answers
496 views
C++ slicing in Java / C# [closed]
Can C++ slicing apply to other languages too, like Java/C#?
