JS Bangs

4,788
Reputation
152 views

Registered User

Name JS Bangs
Member for 1 year
Seen 7 hours ago
Website
Location US
Age 27
A guy who writes programs sometimes. I work for a tiny software company in Redmond, WA that no one has ever heard of.
15h
revised how to pass variables inside one page
fixed grammar and clarified the question
1d
comment Internationalization and Search Engine Optimization
Plus, you should set the lang attribute on the <html> tag. But you knew that :). tlt.its.psu.edu/suggestions/international/…
2d
comment How to extract an email address from multiple text files.
Wrap the regular-expression part in a simple shell that iterates through emails, then. You don't need to keep them all in memory at once.
2d
comment int array to string
+1. I actually like this better than my own answer.
2d
answered int array to string
2d
accepted How do I grab only one capture out of a Perl regular expression?
2d
answered How do I grab only one capture out of a Perl regular expression?
Nov
25
comment What does (int (*)()) mean in a function call
Great website, btw.
Nov
24
comment How can I close a Silverlight window?
That works when running out-of-browser?
Nov
19
accepted awk - how to specify field separator as binary value 0x1
Nov
19
answered awk - how to specify field separator as binary value 0x1
Nov
19
asked C# overloading operator== versus Equals()
Nov
17
answered C# Lazy Regular Expression Matching
Nov
17
revised C# Lazy Regular Expression Matching
fixed code formatting.
Nov
17
answered Segmentation Fault - Adaptive Huffman Tree
Nov
17
awarded  Nice Answer
Nov
17
answered RegEx to match <script> tag?
Nov
15
revised Are Strongly typed ArrayLists the better choice in C#?
added warning about extending collection types
Nov
15
awarded  Nice Answer
Nov
14
answered Manipulate Hyper-V from .NET
Nov
14
answered Are Strongly typed ArrayLists the better choice in C#?
Nov
14
accepted how do i explain that if (xyz == null) checks are not “protective”.
Nov
13
answered Question about the garbage collector in .NET (memory leak)
Nov
12
answered Help me remove a Singleton: looking for an alternative
Nov
12
comment How can I delete all lines that do not begin with certain characters?
For what I just suggested, the command is diff -c 0 -u 0
Nov
12
comment How can I delete all lines that do not begin with certain characters?
Why can't you just regenerate the diff and tell it to reduce the # of context lines?
Nov
12
answered Outputting unicode characters in windows terminal
Nov
12
comment Why doesn’t CTRL-D send EOF in mono?
I'm using the mono that's in Ubuntu main. mono --version says 1.9.1... so well before your fix. Darn.
Nov
12
comment C# solution for analysing files as they are written/modified
This would be true of any solution, most likely. In any case, there's nothing (other than performance implications) keeping you from doing a recursive watch on the entire drive.
Nov
12
answered C# solution for analysing files as they are written/modified
Nov
12
asked Why doesn’t CTRL-D send EOF in mono?
Nov
6
comment Initialize a 2D-array at declarationtime in the C programming language
I shortened the array because I didn't want to type twelve sets of numbers.
Nov
6
answered Initialize a 2D-array at declarationtime in the C programming language
Nov
6
comment In visual studio, as I am stepping through code, is there a way to execute a method call without stepping into it?
Step Over does exactly what you want.
Nov
6
comment C++ compiler question- resolving name of a class member
This is technically inaccurate. The compiler does not (usually) assign the foo.bar to x. The compiler generates machine instructions which assign foo.bar to x at runtime.
Nov
6
revised C++ compiler question- resolving name of a class member
greatly expanded answer
Nov
6
answered C++ compiler question- resolving name of a class member
Nov
5
answered match a word that is not contained in parentheses
Nov
5
comment Explicit Address Manipulation in C++
I've edited the question to represent what I think the OP meant. Hopefully it reads as a proper question now.
Nov
5
revised Explicit Address Manipulation in C++
Reworded this into a proper question
Nov
5
comment Explicit Address Manipulation in C++
Please clarify what your question is. What is the problem you're having with your code?
Nov
5
comment C# - what’s the best way to track & avoid dead events
You can solve that by adding an accessor that is private get; public set; Yes, that's a weird pattern, but it fixes your problem.
Nov
5
answered C# - what’s the best way to track & avoid dead events
Nov
5
revised C# - what’s the best way to track & avoid dead events
fixed punctuation, spelling, capitalization
Nov
4
answered Linked list Recursion
Nov
4
comment Performant File Copy in C#?
Performant is so a word. dictionary.reference.com/browse/performant
Nov
4
comment What number in binary can only be represented as an approximation?
Infinity is totally a number. Several numbers, actually. The transfinites are a whole class of numbers.
Nov
4
comment What number in binary can only be represented as an approximation?
Looks like homework to me, so I added the tag. I think that the question is legit, though, so I vote against closing.
Nov
4
revised What number in binary can only be represented as an approximation?
added "homework" tag
Nov
4
comment Java Socket’s app randomly stopping
I don't have any idea what the problem is, but I would suggest that you add some logging to help you see what the app is doing when it shuts down.