Brent.Longborough

2,235
Reputation
438 views

Registered User

Name Brent.Longborough
Member for 1 year
Seen 15 hours ago
Website
Location Abersychan, Wales
Age 65
Old-ish IT Geezer, young at heart
Nov
24
comment Improve “resolution” of random data
"Very" unlikely, no. If you've got, say, 300 albums, the chances of playing the same thing twice in a row are about 1 in 300...
Nov
21
comment Array#split behaviour when accessing beyond the array boundry.
Mentioned but not justified. "Returns nil if the index (or starting index) are out of range": in ar[4,1], this is so, yet it doesn't return nil, as it should. Very, very unusual for Ruby to suck in this manner. Maybe it's an "off-by-one" error ion the Ruby specs?
Nov
13
revised How to generate and validate a software license key?
Added note about possible cryptographic weakness; added 1 characters in body
Nov
7
answered List of Top Repositories by Programming Language
Oct
28
comment bzr: Restoring a deleted file after some commits with bazaar
Or you may have misspelt the filename? (Sorry...)
Oct
28
comment bzr: Restoring a deleted file after some commits with bazaar
That may have been because you recreated the same file name before doing the merge, thereby causing a conflict?
Oct
28
revised bzr: Restoring a deleted file after some commits with bazaar
Answer withdrawn but not deleted.
Oct
28
comment bzr: Restoring a deleted file after some commits with bazaar
Yes, you're absolutely right. +1. I withdraw my comment and my answer. The only thing I would still maintain is that, depending on the complexity of your work, it might be sensible to revert in another branch.
Oct
27
comment bzr: Restoring a deleted file after some commits with bazaar
Careful! This will undo the whole of rev 287. I don't think you can merge just one specific file from a changeset.
Oct
26
answered bzr: Restoring a deleted file after some commits with bazaar
Oct
23
comment Sort and store values from multidimensional array in new array in Ruby
Impressive feature. +1
Oct
18
awarded  Tumbleweed
Oct
17
accepted Manipulating a byte array
Oct
17
answered Manipulating a byte array
Oct
14
accepted Ruby: building a plot of function
Oct
13
comment Ruby: building a plot of function
Sorry if this wasn't obvious, but have you got gnuplot itself installed? The Ruby bit is only the bindings, AFAIK
Oct
13
answered Ruby: building a plot of function
Oct
13
accepted Normalizing dataset with ruby
Oct
13
comment Ruby on Apache with mod_ruby
Passenger appears to be for Rails - is that what @folone wants?
Oct
11
asked How do I get Cabal to bypass my Windows proxy settings?
Oct
3
comment possible to convert ruby script to exe so that source code not visible ?
What on Earth would you want to do that for?
Oct
2
revised Normalizing dataset with ruby
Added a second example as a more general function
Oct
2
answered Normalizing dataset with ruby
Sep
21
awarded  
Sep
16
awarded  Yearling
Sep
11
accepted Is there a way to get LaTeX to place figures in the same page as a reference to that figure?
Aug
29
comment How does Type Deduction work in Haskell?
Thank you. Yes, I appreciate the concept of orthogonality; I was just applying it to much-too-small a concept space.
Aug
29
revised How does Type Deduction work in Haskell?
Tidy up
Aug
29
comment How does Type Deduction work in Haskell?
Yes, of course. It hadn't occurred to me that Floating might include complex floats; and thank you for the RealFloat pointer. I did understand the behaviour in GHCi; I was just using that to contrast with the apparently more liberal behaviour of my function. Thank you very much for a clear answer.
Aug
29
revised How does Type Deduction work in Haskell?
Revise tagging - remove homework tag
Aug
29
comment How does Type Deduction work in Haskell?
@Chuck, @cletus: OK, thank you. I've removed the hw tag.
Aug
29
comment How does Type Deduction work in Haskell?
@cletus: Thanks for the observation. I thought it better to flag this as an exercise, rather than a real-world problem, up front.
Aug
29
asked How does Type Deduction work in Haskell?
Aug
26
answered Browse bazaar (or CVS/SVN/Git) repository with GUI?
Aug
5
comment How to learn Haskell
This is a really remarkable answer. +1 seems almost mean. Thank you.
Jul
30
revised Downloading text files with Python and ftplib.FTP from z/os
Added "final" version
Jul
30
comment Downloading text files with Python and ftplib.FTP from z/os
John, thank you. Please be assured that I have taken your just criticisms on board.
Jul
26
comment Downloading text files with Python and ftplib.FTP from z/os
Done. I'm doing some weekend coding at home outside the corp.firewall, so I'll only be testing the idea later this week.
Jul
26
revised Downloading text files with Python and ftplib.FTP from z/os
Clarified platform etc, and explained, briefly, PDSs
Jul
26
comment Downloading text files with Python and ftplib.FTP from z/os
@Vinay.Update: Oops, yes, I understand. When I get back to the mainframe, later this week, I'll give some ideas a try, and post back.
Jul
26
comment Downloading text files with Python and ftplib.FTP from z/os
The host file system is record-based. It's either fixed-length, in which case all the records have the same length, or variable-length, where the length is stored in a descriptor field at the start of each record. FTP.retrlines() extracts the records correctly, but (correctly, I think) doesn't provide the newlines.
Jul
26
comment Downloading text files with Python and ftplib.FTP from z/os
Thanks, Vinay, that's an interesting idea, but how do I insert the newlines? (These are conventional zos PDSs, not OpenEdition files)
Jul
26
asked Downloading text files with Python and ftplib.FTP from z/os
Jun
27
comment Can a Ruby method yield as an iterator or return an array depending on context?
+1: cleaner, crisper, and easier to follow