Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
196 views

Is it bad practice to alter dynamic arrays that have references to them?

I looked a bit at dynamic arrays in D2, and I found them very difficult to understand. It also seems I'm interpreting the spec wrongly.. Working on a reference or slice of a dynamic array seems very ...
6
votes
4answers
139 views

How would I use a hash slice to initialize a hash stored in a data structure?

In an earlier question I asked how to initialize a Perl hash using slices. It is done like this: my %hash = (); my @fields = ('currency_symbol', 'currency_name'); my @array = ('BRL','Real'); ...
4
votes
1answer
59 views

Confusion about ruby Array [] method results when starting index greater than (array.size -1)

Given array = [:a,:b,:c,:d] # with 4 elements: array[3] => :d # zero-based indices, I get that array[4] => nil array[5] => nil array[3,0] => [] # OK since I asked for a slice with ...
4
votes
4answers
171 views

How do I initialize values in a hash without a loop?

I am trying to figure out a way to initialize a hash without having to go through a loop. I was hoping to use slices for that, but it doesn't seem to produce the expected results. Consider the ...
2
votes
3answers
116 views

String slicing in python

I want to slice word from the end.Suppose, I have some line with case sensitives(Upper/lower case) Abc Defg Hijk Lmn Xyz Lmn jkf gkjhg I want to slice them as like below : Abc Defg Hijk Abc Defg ...
2
votes
3answers
100 views

How do I declare an array(or equivalent) in Go

I want to do something like(it's valid) var myArray [9][3]int but when I do var myArray [someIntVariable][anotherOne]int It can't be used(I know why, so I'm not asking this.) But is there any ...
2
votes
6answers
3k views

Making A Graphic Pie Chart In C#

I'm trying to write a Windows Application that shows a pie chart with seven unequal slices (25%, 20%, 18%, 17%, 10%, 10%, 10%) all of them will be colored differently. So far I have made Pens and ...
1
vote
1answer
159 views

Is there a foreach in Go?

Is there a foreach construct in the Go language? Can I iterate over a slice or array using a for?
1
vote
5answers
97 views

Problem using Python to slice lists to map data

One of my new duties requires me to translate or map data from one format to another, usually from xcel, csv or ms mdb into xml, sql or per a spec that I am given so usually each mapping is different. ...
1
vote
3answers
167 views

Best way to list a Merb::Slices dependencies?

I'm creating a list of the Slices in my Merb app, like this: Merb::Slices.each_slice do |slice| I'd like to get the list of dependencies for each of this slice, any idea how to access it? I'm ...
0
votes
1answer
138 views

Highcharts: how to make slices readjust when disabling one?

Is this possible? I want the other slices in the pie chart to adjust to a full circle when one is disabled in the legend, rather than just making an empty slice..
0
votes
0answers
114 views

PS slices/html table email getting messed up bad

I have a Photoshop slices based table that I made for a client. Everything looks fine when viewed as a webpage, however when sent as an email, the table gets badly mangled. From what I have seen ...
0
votes
2answers
72 views

Problem with advanced HTML tables

Some months ago, I came here because I needed help to re-create the Photoshop "slices" tool in Javascript. Now, it's almost over, although I have some problems with it: when I create too much slices ...