BenAlabaster

10,699
reputation
847 views

Registered User

name BenAlabaster
member for 1 year
seen 20 mins ago
website
location Toronto
age 33

Tinkerer, problem solver, artist, photographer and professional code monkey. Full time software engineer, husband, father and student desperately seeking more hours in the day so I can keep up with life.

I can be found in the following places:

Dec
10
answered How to alter a DateTime field when it is updated?
Dec
10
revised Verify E-mails as they are typed
added 876 characters in body
Dec
10
accepted How to hide an inherited property in a class without modifying the inherited class (base class)?
Dec
10
revised Verify E-mails as they are typed
deleted 10 characters in body; added 167 characters in body
Dec
10
revised Verify E-mails as they are typed
added 23 characters in body; added 787 characters in body
Dec
10
answered Verify E-mails as they are typed
Dec
9
comment How to hide an inherited property in a class without modifying the inherited class (base class)?
@Grizzly - We did point out that it was a bad idea before we told the OP how to achieve it. That's one of the side effects.
Dec
9
revised How to hide an inherited property in a class without modifying the inherited class (base class)?
added 6 characters in body
Dec
9
revised How to hide an inherited property in a class without modifying the inherited class (base class)?
Aligned my code samples properly
Dec
9
comment How to hide an inherited property in a class without modifying the inherited class (base class)?
No worries ;) [15 chars]
Dec
9
comment How to hide an inherited property in a class without modifying the inherited class (base class)?
@Brian - I had already mentioned that
Dec
9
revised How to hide an inherited property in a class without modifying the inherited class (base class)?
added 773 characters in body
Dec
9
comment How to hide an inherited property in a class without modifying the inherited class (base class)?
Thanks Brian, I should've thought to mention that, good catch.
Dec
9
revised How to hide an inherited property in a class without modifying the inherited class (base class)?
added 765 characters in body
Dec
9
revised How to hide an inherited property in a class without modifying the inherited class (base class)?
added 359 characters in body; added 9 characters in body; added 35 characters in body
Dec
9
answered How to hide an inherited property in a class without modifying the inherited class (base class)?
Dec
9
comment Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
To clarify by "extract" I don't mean remove it from the original track, I mean make a copy track containing just that "voice" - except where signatures overlap to the point that they can't be electronically identified from each other. Although, I'd imagine that just like colour, a machine could identify sounds that we absolutely can't distinguish the difference between with our human ears.
Dec
9
comment Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
Shane: Let us know how you get on, this is a fascinating topic and I hope it yields some useful information for you.
Dec
9
comment Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
You only need an area of the track where instruments are clearly distinguishable from each other, you don't need to know what they are. Something like comparisonics will tell you from their sound signature what they are. Even without knowing the instrument, you could use the identified sound signature to extract the rest.
Dec
9
comment Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
Shane: Hope you don't mind, I added a little more clarity based on our conversation and added an extra tag that might get you more interest and thus a more useful answer
Dec
9
revised Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
added 126 characters in body; edited tags; deleted 2 characters in body
Dec
9
answered Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file?
Dec
9
revised Difference between casting in C# and VB.Net
deleted 16 characters in body
Dec
9
revised Difference between casting in C# and VB.Net
added 7 characters in body
Dec
9
revised Difference between casting in C# and VB.Net
added 53 characters in body
Dec
9
comment Difference between casting in C# and VB.Net
@Roman Thank you, that makes sense now I think about it.
Dec
9
revised Difference between casting in C# and VB.Net
added 484 characters in body; deleted 85 characters in body
Dec
9
revised Difference between casting in C# and VB.Net
added 478 characters in body; deleted 2 characters in body
Dec
9
awarded  Disciplined
Dec
9
answered Difference between casting in C# and VB.Net
Dec
9
revised Strip trailing characters from path string
added 1 characters in body
Dec
8
comment Parsing amount strings into numbers
You're welcome, hope it provided inspiration
Dec
8
accepted Parsing amount strings into numbers
Dec
8
revised Strip trailing characters from path string
added 3 characters in body
Dec
8
comment Strip trailing characters from path string
@dtb - I shared the love also
Dec
8
revised Strip trailing characters from path string
added 35 characters in body
Dec
8
comment Strip trailing characters from path string
Good answer, and I agree that this is the right approach, however, it doesn't answer the question and that is 'using regex how do I do this'
Dec
8
revised Strip trailing characters from path string
added 77 characters in body; added 2 characters in body
Dec
8
revised Strip trailing characters from path string
added 5 characters in body; added 182 characters in body
Dec
8
answered Strip trailing characters from path string
Dec
8
revised Parsing amount strings into numbers
added 14 characters in body
Dec
8
comment TDD: Does it get in the way of good API design?
dsimcha - I think you're missing the point of dependency injection. All the boilerplate code is supposed to be in the API. However, key implementation details which may be subject to change later down the road - for instance, let's say someone figures out a way of reverse engineering MD5 hashes, if a user API hardcodes the MD5 dependency then your API will need patching, however, if the API uses dependency injection to set the hashing algorithm, then it's just a case of pushing in a different hashing mechanism. The rest of the boilerplate code remains unchanged.
Dec
8
revised Parsing amount strings into numbers
added 407 characters in body
Dec
8
comment Parsing amount strings into numbers
@Daniel - What this old thing? You're too generous ;)
Dec
8
revised Parsing amount strings into numbers
Add clarity to code comment
Dec
8
revised Parsing amount strings into numbers
added 66 characters in body
Dec
8
revised Parsing amount strings into numbers
deleted 76 characters in body
Dec
8
answered Parsing amount strings into numbers
Dec
8
comment Parsing amount strings into numbers
Will the number of decimal places always be 0, 1 or 2?
Dec
8
comment Parsing amount strings into numbers
I assume you are able to read these values to the string format from the paper document?