steamer25

1,329
Reputation
78 views

Registered User

Name steamer25
Member for 7 months
Seen 11 hours ago
Website
Location
Age
Nov
13
comment SciTE Regex, Match expression between x and y times eg \w*{x,y}
Actually the question mark doesn't seem to be supported either: nabble.com/Regex-search-replace:-%22-%22-does-not…
Nov
3
comment What’s the best name for a non-mutating “add” method on an immutable collection?
At the risk of a little verbosity, perhaps something like: RebuildWith(), RecreateWith() or RemakeWith()
Oct
26
answered Which mobile programming environment do you recommend for a startup to target?
Oct
22
comment Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC
loC = "lines of code" or ???
Oct
19
comment What’s your favorite “programmer” cartoon?
I like that even the good code has a couple.
Oct
16
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
added 189 characters in body
Oct
16
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
added 1875 characters in body
Oct
16
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
added 182 characters in body
Oct
16
accepted Can a Flash Application read the host page’s DOM?
Oct
16
answered Can a Flash Application read the host page’s DOM?
Oct
15
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
deleted 18 characters in body
Oct
15
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
deleted 2356 characters in body
Oct
15
answered O(nlogn) Algorithm - Find three evenly spaced ones within binary string
Oct
15
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
What if you update the index in the outer loop with that of the first 1 found in the inner loop i.e., if (ones[m] == ONE) {n = m}? Does that help the big O?
Oct
14
comment Why use getters and setters?
Re: C#. If you add functionality to a get/set wouldn't that require recompilation anyway?
Oct
13
comment Where should I store photos? File system or the database?
A file system IS a database--one that happens to be designed from the outset to store files/documents as opposed to the small, repeated fields relational stores were originally intended for. You CAN make a workable solutions with an RDBMS but you'll find a greater variety of natural and intuitive tools for dealing with files when they're in a file system.
Oct
13
comment Why is the ‘if’ statement considered evil?
Also, could be misheard as one of the words The Knights of Ni cannot hear. Then again, they wouldn't get very far in life not saying the word 'if'.
Oct
9
answered How to become a “faster” programmer?
Oct
9
answered One massive CSS - or lots of little ones?
Oct
5
answered Using XPath to find the value of an attribute in a node based on another attribute in the same node?
Sep
23
comment Multiple Programmers in Software Development. How do we work on the same code and it always be updated??
SVN is probably the most common/well-tooled open source SCM for existing projects. However, there's a growing contingent using the new-fangled and dandified 'Git' which is distributed, allowing operations to be performed locally/quickly/off-line. Git was written by Linus Torvalds to help manage very large open source projects like Linux. There is a free online book to help you get started: progit.org/book
Sep
21
comment How to prevent (junior)developers making the wrong decisions/bad code?
I think reviews can be more cursory for senior staff. However, it's good to keep the reviews up as the code-base matures... E.g., "Did you know that Bill added a function to do this part three weeks ago? You might see if you can re-use it."
Sep
18
accepted Parse XML sitemap to a hierarchical data object?
Sep
11
comment How to become a “faster” programmer?
More pro maneuvers include: --Learn to search and replace using regular expressions --Use spreadsheets and/or languages with array/list and object/dict literals to massage temp data/strings. E.g., 1) copy HTML table from web page 2) paste into Excel 3) move name and value columns together 4) copy that into text editor 5) replace tab (\t) with colon, space :_ 6) replace newlines with comma, space ,_ 7) add open and close curlys to the start and end of the line 8) process NV pairs as a JSON object.
Sep
11
comment How to become a “faster” programmer?
Along same lines: learn general 'hot' keys. E.g., in many Windows programs... Copy: Ctrl + c Cut: Ctrl + x (the 'x' looks like an open pair of scissors) Paste: Ctrl + v (right next to 'c' and 'x' above) Go to start of line: Home Go to End of line: End Move cursor by word (not character): [Shift] + Ctrl + left or right Go to top of doc: Ctrl + Home Go to end of doc: Ctrl + End etc.
Sep
3
accepted xsd wellformedness
Aug
24
accepted Good Javascript A/B (Split) Testing package/library?
Aug
20
comment Thrift/Erlang string
Aha. I should have looked more closely at the docs for the apply function. I assumed since Args was a list that my function would need to receive one. Also, I needed to indicate a binary parameter a la: test(<<X/binary>>) ->
Aug
20
asked Thrift/Erlang string
Jul
28
comment How to get CPU temperature?
It may not work via WMI if the hardware vendors don't provide that info via WMI. On the other hand, if the hardware is homogeneous or otherwise predictable, there should be some method of retrieving the value but it may vary depending on the vendor. Things to check include SNMP and proprietary management tools that may include an API.
Jul
27
comment Splitting a string up into parts
If I understand your question correctly, you want to do a nested split. The outer one specifying ' OR ' as the delimiter. Use '=' for the inner one. I'd also try to refactor the magic numbers out of the design.
Jul
23
comment Microsoft Script Editor for IE6 on XP Home SP3 ?
Visual Web Developer Express is a much smoother JS debugger for IE < 8.
Jul
23
answered How can I update a specific XElement?
Jul
22
answered javascript regex for whitespace or &nbsp;
Jul
22
comment Significant new inventions in computing since 1980
...That's the definition of technology ;) "the practical application of knowledge..."
Jul
19
awarded  Critic
Jul
15
accepted IE7 and XMLfiles on file system
Jul
14
answered Why are some functions extremely long? (ideas needed for an academic research!)
Jul
14
comment What is the smallest programming bug that you’ve had and spent the longest time on?
Case in point. SO does not distinguish my capital 'aye' (I) and my lower-case 'el' (l)
Jul
14
comment What is the smallest programming bug that you’ve had and spent the longest time on?
1, I, l and |; too.
Jul
13
revised XSLT question. How to pair field tags with data when original XML has them in separate sections?
added 222 characters in body
Jul
13
answered XSLT question. How to pair field tags with data when original XML has them in separate sections?
Jul
10
accepted XSLT: Specific Element Always Added to root?
Jul
10
accepted XSLT: Remove duplicate nodes based on name attribute
Jul
10
comment What is a stack overflow?
+1 Kinda leaves you hanging though...
Jul
9
comment XSLT: Remove duplicate nodes based on name attribute
...The same pattern with the key will work if you want to omit duplicates of any complexType with a matching name. If you need to do deep comparisons (i.e., the children of the complexType match as well as the name), that will probably take further consideration.
Jul
9
answered XSLT: Remove duplicate nodes based on name attribute
Jul
9
answered What does this regular expression mean?
Jul
9
answered XSLT: Specific Element Always Added to root?
Jul
9
comment How to Design a Program to Perform Complex financial calculations with .NET
Databases are good at combining, grouping and sorting data. In .NET 3, Microsoft added Language INtegrated Query (LINQ) that allows you to do database-type tasks in the code where the real complex processing should live.