14,556 reputation
21333
bio website
location
age 45
visits member for 1 year, 11 months
seen 4 hours ago
stats profile views 615

Systems architect, software developer, sysadmin. 20 years experience.


1d
answered Parsing a config file in bash
2d
comment Removing all elements of a column in a two-dimensional array
or just arr.transpose[2] to return the column.
2d
revised Removing all elements of a column in a two-dimensional array
added 222 characters in body
2d
answered Removing all elements of a column in a two-dimensional array
2d
comment Variables being changed for no reason
Those need to be assignment statements inside the constructor.
2d
revised Variables being changed for no reason
added 413 characters in body
2d
comment Variables being changed for no reason
@Hsenfow - see edited answer.
2d
answered Variables being changed for no reason
May
20
comment Run executable from php without spawning a shell
Read the pastebin: PCNTL functions not available on this PHP installation.
May
20
comment my $fltyp = system(“file -b $LoadDir/$file”); not fetching any value
That will just run the command, which prints out the file type to standard output. That's a very roundabout way of doing print("ASCII English text\n"); or whatever. If you want to capture the result of the command inside a Perl variable, you need to use `...` or one of the pipe functions.
May
20
comment Splitting string into different line lengths
It's not about performance, it's about using the right tool for the job. Your code shows a marked lack of lists, which would be the more logical choice for not only your lineLengths, but also your lineStrs, lineNumDict, lineOuts...
May
20
comment Splitting string into different line lengths
So you're splitting into words, but then splitting and recombining those words based on a maximum field size? That seems odd. Where does the 40 come from, when the lineLengths add up to 60?
May
20
comment Splitting string into different line lengths
Why are you using a dict for the line lengths? You could just use a list: lineLengths = [ 9, 11, 12, 14, 14 ]
May
19
comment cant get exponent to work in my calculator
This. You aren't closing the parentheses opened by str(. Should be str(x**y) + "'" (all inside the outer parentheses of the print call).
May
19
comment Could any one walk me through this code?
Are you sure that friends is a Hash and not an Array?
May
19
revised Could any one walk me through this code?
deleted 17 characters in body
May
19
answered Split using regex considering only first occurence of the regex pattern
May
18
comment No return in my code
That code won't even compile without the docstring indented, so I assume that's just a formatting error, but if I copy and paste your code and fix nothing but the docstring indentation it works fine.
May
18
comment Is multiple inheritance possible in javascript?
@Antimony - it has prototype-based inheritance rather than class-based inheritance. It's still inheritance...
May
18
comment Sort array by keys numeric first than ascending by string
That's not working the way you think it's working. is_float is false for integers, so it's just comparing as strings. If you replace 10 with 1 in your Array, it will sort before 3.