Chris Marasti-Georg

7,652
reputation
285 views

Registered User

name Chris Marasti-Georg
member for 1 year
seen 3 mins ago
website
location Pittsburgh, Pa
age 26
Bowler with a programming problem.
Dec
6
awarded  Mortarboard
Dec
2
comment Writing A “Conway’s Game of Life” Program
Thanks mmyers, the links have been updated to a mirror that works.
Dec
2
revised Writing A “Conway’s Game of Life” Program
Updated links to a new mirror that works
Nov
29
awarded  Nice Answer
Nov
18
answered Is ReadOnlyCollection threadsafe if the underlying collection is not touched?
Nov
18
comment ReadOnlyCollection or IEnumerable for exposing member collections?
This answer just let me perform one of the best simplifications of code I've ever written. Thank you.
Nov
18
revised Is ReadOnlyCollection threadsafe if the underlying collection is not touched?
Added MSDN link
Nov
18
asked Is ReadOnlyCollection threadsafe if the underlying collection is not touched?
Nov
16
comment Why is Clover.NET ignoring a referenced project?
When Clover was bought by whatever company bought it (Atlassian?), they discontinued support for .NET. We still had a copy laying around on our network at work. I'm moving away from it towards NCover (if I can find a license) or possibly PartCover.
Oct
30
awarded  Popular Question
Oct
24
awarded  Nice Answer
Oct
19
awarded  Popular Question
Oct
12
comment Convert Python to C#
Good question - sometimes you find a library in python that you need to re-use in another language, and the performance penalty of calling the interpreter many times is killer.
Oct
12
comment Printing a PDF in .NET
PDFSharp seems to just call acrobat reader, which does not support silent command line printer invocation.
Oct
12
comment Printing a PDF in .NET
This looks like it could be workable - they also have an SDK available with custom licensing
Oct
12
revised Printing a PDF in .NET
Moved some @s to comments
Oct
12
comment Printing a PDF in .NET
ITextSharp does not seem to have any Printer functionality that I can find
Oct
12
comment Printing a PDF in .NET
ITextSharp does not seem to have any Printer functionality that I can find
Oct
7
accepted Is there a library that provides static analysis of regular expressions?
Oct
7
revised Is there a library that provides static analysis of regular expressions?
formatting
Oct
6
answered Is there a library that provides static analysis of regular expressions?
Oct
6
comment Removing characters from a PHP String
The 3rd line of your solution could probably be changed to [^ -ÿ], which is the space character through the 255th character. It would strip out line feeds, carriage returns, and tabs, so if you wanted to leave that whitespace in, you could use [^ -ÿ\t\r\n], or [^ -ÿ\s]
Oct
6
comment Removing characters from a PHP String
You could try something like s/[^\u0000-\u00FF]//, which rejects any characters not in the range of 0-255.
Oct
6
comment Removing characters from a PHP String
Looking through the set in charmap, it looks like Arial includes a lot of unicode glyphs, but there are some holes. For instance, it jumps from 04E9 to 05B0, with none of the glyphs between. You would either need a way to get that information from the font, simply strip everything above a certain range and realize you may lose information, or deal with the data issues upstream. If it's coming from Office (which uses special quote/apostrophe characters), you could try using an Office font.
Oct
6
comment Removing characters from a PHP String
The problem is probably not encoding, it's probably the font used to display the characters.
Oct
6
comment Removing characters from a PHP String
He wants to allow non-alphanum symbols.
Oct
6
answered Removing characters from a PHP String
Oct
6
comment Is there a library that provides static analysis of regular expressions?
It looks like those libraries would require me to do some pre-processing on my expressions to convert them to a form the library would understand. At that point, I'd probably be better off trying to find the intersection myself.
Oct
6
comment Is there a library that provides static analysis of regular expressions?
Thanks, I'm checking out the prolog library now.
Oct
6
comment Is there a library that provides static analysis of regular expressions?
If I can allow restrictions, or limit to a subset of regex syntax, is there a library that has implemented this?
Oct
6
revised Is there a library that provides static analysis of regular expressions?
added clarification of the regexes
Oct
5
asked Is there a library that provides static analysis of regular expressions?
Sep
12
accepted Slow SoapHttpClientProtocol constructor
Sep
12
revised Regular Expression: Match to (aa|bb) (cc)?
deleted 4 characters in body
Sep
11
comment Parent Control Mouse Enter/Leave Events With Child Controls
Can you add an example usage of this class? I'm not seeing exactly how you'd hook this up.
Aug
31
awarded  Enlightened
Aug
24
comment How to best prevent CSRF attacks in a GAE app?
I like macbirdie's approach as well, but I like that this provides reasonable security without server-side storage.
Aug
24
comment Printing HTML
Great answer - was going to mark it accepted, and ran my test. Seems that dll still pops up the Print dialog, and as this is to run as an unattended Windows Service, we need to bypass that somehow. I've pretty much exhausted Google, and I'm at my wits end.
Aug
24
comment Printing HTML
2.0, and we can't move to 3.5 for this.
Aug
24
comment Non-breaking non-space in HTML
Marking this as accepted, with the caveat that it doesn't work for IEMobile :(
Aug
22
awarded  Popular Question
Aug
11
awarded  Popular Question
Aug
6
awarded  Popular Question
Aug
2
awarded  Yearling
Jul
26
awarded  Notable Question
Jul
23
answered How do margins work with div positioning?
Jul
23
revised How do I ignore event subscribers when serializing an object?
Made the question a question
Jul
14
revised How do I discover how my process was started
Solution
Jul
14
answered How do I discover how my process was started
Jul
13
revised XSLT: Test Parameter to know if it has been set
Trying to appease...