User Chris Marasti-Georg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T22:50:04Z http://stackoverflow.com/feeds/user/96 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program/2113#2113 6 Answer by Chris Marasti-Georg for Writing A "Conway's Game of Life" Program Chris Marasti-Georg 2008-08-05T11:35:58Z 2009-12-02T17:03:32Z <p>Chapters <a href="http://downloads.gamedev.net/pdf/gpbb/gpbb17.pdf" rel="nofollow">17</a> and <a href="http://downloads.gamedev.net/pdf/gpbb/gpbb18.pdf" rel="nofollow">18</a> of Michael Abrash's <a href="http://www.gamedev.net/reference/articles/article1698.asp" rel="nofollow">Graphics Programmer's Black Book</a> are one of the most interesting reads I have ever had. It is a lesson in thinking outside the box. The whole book is great really, but the final optimized solutions to the Game of Life are incredible bits of programming.</p> http://stackoverflow.com/questions/1999/could-you-recommend-a-good-free-project-hosting-website/2100#2100 10 Answer by Chris Marasti-Georg for Could you recommend a good free project hosting website? Chris Marasti-Georg 2008-08-05T11:27:17Z 2009-11-25T16:41:35Z <p><strong>Edit: Assembla no longer provides free, private accounts.</strong></p> <p><hr></p> <p>As was mentioned earlier, <a href="http://www.assembla.com" rel="nofollow">Assembla</a> provides SVN hosting, as well as project management tools (bug tracking/feature requests, etc). The project I am hosting it for was a good fit for 3 reasons:</p> <ul> <li>Project can be marked private - my site is closed source</li> <li>Bug Tracking integration with SVN - I can actually track which commit fixed which issue</li> <li>Free - this is a hobby project! I don't want to pay! (If you are a bowler, <a href="http://www.bowlsk.com" rel="nofollow">check it out</a>)</li> </ul> http://stackoverflow.com/questions/1758492/is-readonlycollection-threadsafe-if-the-underlying-collection-is-not-touched 5 Is ReadOnlyCollection threadsafe if the underlying collection is not touched? Chris Marasti-Georg 2009-11-18T19:35:37Z 2009-11-18T22:41:31Z <p><a href="http://msdn.microsoft.com/en-us/library/ms132474%28VS.80%29.aspx" rel="nofollow">MSDN</a> vaguely mentions:</p> <blockquote> <p>A ReadOnlyCollection&lt;(Of &lt;(T>)>) can support multiple readers concurrently, as long as the collection is not modified. <i>Even so, enumerating through a collection is intrinsically not a thread-safe procedure</i>. To guarantee thread safety during enumeration, you can lock the collection during the entire enumeration. To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.</p> </blockquote> <p>Would the following public static collection be safe for multiple threads to iterate over? If not, is there something built into .NET that is safe? Should I just drop the <code>ReadOnlyCollection</code> and create a new copy of a private collection for each access of a SomeStrings property getter? I understand that there could be a deadlock issue if multiple threads tried to lock on the public collection, but this is an internal library, and I can't see why we would ever want to.</p> <pre><code>public static class WellKnownStrings { public static readonly ICollection&lt;string&gt; SomeStrings; static WellKnownStrings() { Collection&lt;string&gt; someStrings = new Collection&lt;string&gt;(); someStrings.Add("string1"); someStrings.Add("string2"); SomeStrings = new ReadOnlyCollection&lt;string&gt;(someStrings); } } </code></pre> http://stackoverflow.com/questions/1758492/is-readonlycollection-threadsafe-if-the-underlying-collection-is-not-touched/1759248#1759248 1 Answer by Chris Marasti-Georg for Is ReadOnlyCollection threadsafe if the underlying collection is not touched? Chris Marasti-Georg 2009-11-18T21:37:35Z 2009-11-18T21:37:35Z <p>If anyone is interesting in knowing what I ended up doing here, after seeing <a href="http://stackoverflow.com/questions/491375/readonlycollection-or-ienumerable-for-exposing-member-collections/491591#491591">this answer</a> by Jon Skeet (of course), I went with this:</p> <pre><code>public static class WellKnownStrings { public const string String1= "SOME_STRING_1"; public const string String2= "SOME_STRING_2_SPECIAL"; public const string String3= "SOME_STRING_3_SPECIAL"; public static IEnumerable&lt;string&gt; SpecialStrings { get { yield return String2; yield return String3; } } } </code></pre> <p>It doesn't give callers the rest of the <code>ICollection&lt;T&gt;</code> functionality, but that's not needed in my case.</p> http://stackoverflow.com/questions/209316/why-is-clover-net-ignoring-a-referenced-project 0 Why is Clover.NET ignoring a referenced project? Chris Marasti-Georg 2008-10-16T16:26:34Z 2009-11-11T23:54:45Z <p>I am using the Clover.NET plugin for Visual Studio. When I attempt to "Clover Solution" it always fails trying to build one project. I inspected the command line it is using to build that project, and it is leaving one of the referenced projects out of the arguments. The only thing I can find that is different about this other project is that one section of the namespace is in all caps. Note that the project in question, and the entire solution, builds fine in Visual Studio.</p> <p>How can I get Clover.NET to include this project in the build?</p> http://stackoverflow.com/questions/8749/printing-a-pdf-in-net 7 Printing a PDF in .NET Chris Marasti-Georg 2008-08-12T12:26:50Z 2009-11-05T15:28:59Z <p>It's the "printing question guy" again. Looking for a third-party solution to print PDFs, preferable from a service. I have seen some arguments against it, but due to our use case, this really is the preferred solution - the service will be receiving messages from a messaging bus, and there shouldn't be any sort of delay between the receipt of that message and the printing of the report. So far, I've found 1 solution from <a href="http://www.pdf-tools.com/asp/products.asp?name=PRNA" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings">PDF Tools</a> that seems very nice, and very flexible. The problem is that it's licensed per server. If anyone knows of any third-party solutions that have a seat license (per developer, unlimited runtime distribution), that would be <strong><em>much</em></strong> preferred.</p> <p>EDIT: Clarification, by printing, I mean sending the PDF to a printer.</p> http://stackoverflow.com/questions/7990/printing-from-a-net-service 7 Printing from a .NET Service Chris Marasti-Georg 2008-08-11T17:37:27Z 2009-10-30T06:16:59Z <p>I am working on a project right now that involves receiving a message from another application, formatting the contents of that message, and sending it to a printer. Technology of choice is C# windows service. The output could be called a report, I suppose, but a reporting engine is not necessary. A simple templating engine, like StringTemplate, or even XSLT outputting HTML would be fine. The problem I'm having is finding a free way to print this kind of output from a service. Since it <em>seems</em> that it will work, I'm working on a prototype using Microsoft's RDLC, populating a local report and then rendering it as an image to a memory stream, which I will then print. Issues with that are:</p> <ul> <li>Multi-page printing will be a big headache.</li> <li>Still have to use PrintDocument to print the memory stream, which is unsupported in a Windows Service (though it may work - haven't gotten that far with the prototype yet)</li> <li>If the data coming across changes, I have to change the dataset, and the class that the data is being deserialized into. bad bad bad.</li> </ul> <p>Has anyone had to do anything remotely like this? Any advice? I already posed a question about printing HTML without user input, and after wasting about 3 days on that, I have come to the conclusion that it cannot be done, at least not with any freely available tool.</p> <p>All help is appreciated.</p> <p>EDIT: We are on version 2.0 of the .NET framework.</p> http://stackoverflow.com/questions/8749/printing-a-pdf-in-net/8831#8831 1 Answer by Chris Marasti-Georg for Printing a PDF in .NET Chris Marasti-Georg 2008-08-12T13:43:31Z 2009-10-12T12:33:17Z <p>@John Nolan - PDFSharp seems to just call acrobat reader, which does not support silent command line printer invocation. From Reflector:</p> <pre><code>public void Print(int milliseconds) { if ((this.printerName == null) || (this.printerName.Length == 0)) { this.printerName = defaultPrinterName; } if ((adobeReaderPath == null) || (adobeReaderPath.Length == 0)) { throw new InvalidOperationException("No full qualified path to AcroRd32.exe or Acrobat.exe is set."); } if ((this.printerName == null) || (this.printerName.Length == 0)) { throw new InvalidOperationException("No printer name set."); } string path = string.Empty; if ((this.workingDirectory != null) &amp;&amp; (this.workingDirectory.Length != 0)) { path = Path.Combine(this.workingDirectory, this.pdfFileName); } else { path = Path.Combine(Directory.GetCurrentDirectory(), this.pdfFileName); } if (!File.Exists(path)) { throw new InvalidOperationException(string.Format("The file {0} does not exists.", path)); } try { this.DoSomeVeryDirtyHacksToMakeItWork(); ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = adobeReaderPath; string str2 = string.Format("/t \"{0}\" \"{1}\"", this.pdfFileName, this.printerName); startInfo.Arguments = str2; startInfo.CreateNoWindow = true; startInfo.ErrorDialog = false; startInfo.UseShellExecute = false; if ((this.workingDirectory != null) &amp;&amp; (this.workingDirectory.Length != 0)) { startInfo.WorkingDirectory = this.workingDirectory; } Process process = Process.Start(startInfo); if (!process.WaitForExit(milliseconds)) { process.Kill(); } } catch (Exception exception) { throw exception; } } </code></pre> http://stackoverflow.com/questions/1522375/is-there-a-library-that-provides-static-analysis-of-regular-expressions 2 Is there a library that provides static analysis of regular expressions? Chris Marasti-Georg 2009-10-05T21:03:16Z 2009-10-07T11:21:17Z <p>Specifically, is there a library that, when given 2 (or more) regular expressions, can tell if exists an input that both would match? Bonus points if it's easily accessible via Java or .NET, but command-line would be fine as well.</p> <h2>Asker's log, supplemental:</h2> <p>The regular expressions that would be fed to this algorithm are fairly simple. While I believe there are a couple with lookaheads, they are all fairly simple combinations of literals or character classes with fixed minimum and maximum lengths.</p> http://stackoverflow.com/questions/1522375/is-there-a-library-that-provides-static-analysis-of-regular-expressions/1527908#1527908 1 Answer by Chris Marasti-Georg for Is there a library that provides static analysis of regular expressions? Chris Marasti-Georg 2009-10-06T20:23:12Z 2009-10-07T11:21:17Z <p>I found a python library that lets me do what I need to do.</p> <pre><code>&gt;&gt;&gt; import reCompiler &gt;&gt;&gt; fsa1 = reCompiler.compileRE('\d\d\d?\d?a') &gt;&gt;&gt; fsa2 = reCompiler.compileRE('123a') &gt;&gt;&gt; fsa3 = reCompiler.compileRE('a23a') &gt;&gt;&gt; print len(FSA.intersection(fsa1, fsa2).finalStates) 1 &gt;&gt;&gt; print len(FSA.intersection(fsa1, fsa3).finalStates) 0 </code></pre> <p>The library is called <a href="http://osteele.com/software/python/fsa" rel="nofollow">pyFSA</a>. I will need to implement some preparsing to turn statements like \d{2,4} into \d\d\d?\d?, but other than that it should suit my needs nicely. Thanks for the input, and if people find libraries that implement this in other languages, by all means include them.</p> http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1525902#1525902 0 Answer by Chris Marasti-Georg for Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T14:23:49Z 2009-10-06T14:23:49Z <p>You are looking for characters that are outside of the range of glyphs that your font can display. You can find the maximum unicode value that your font can display, and then create a regex that will replace anything above that value with an empty string. An example would be</p> <pre><code>s/[\u00FF-\uFFFF]// </code></pre> <p>This would strip anything above character 255.</p> http://stackoverflow.com/questions/174633/regular-expression-match-to-aabb-cc/174660#174660 3 Answer by Chris Marasti-Georg for Regular Expression: Match to (aa|bb) (cc)? Chris Marasti-Georg 2008-10-06T15:03:08Z 2009-09-12T03:11:56Z <p>In the case without an Express, you are looking for 2 spaces before the year. That is no good. Try this:</p> <pre><code>"Visual (Basic|C\+\+|Studio) (Express )?2008" </code></pre> <p>Depending on the input, it might be enough to use:</p> <pre><code>"Visual [^ ]+ (Express )?2008" </code></pre> http://stackoverflow.com/questions/141973/how-do-i-get-the-key-value-of-a-db-referenceproperty-without-a-database-hit 0 How do I get the key value of a db.ReferenceProperty without a database hit? Chris Marasti-Georg 2008-09-26T21:05:25Z 2009-08-27T16:18:33Z <p>Is there a way to get the key (or id) value of a db.ReferenceProperty, without dereferencing the actual entity it points to? I have been digging around - it looks like the key is stored as the property name preceeded with an _, but I have been unable to get any code working. Examples would be much appreciated. Thanks.</p> <p>EDIT: Here is what I have unsuccessfully tried:</p> <pre><code>class Comment(db.Model): series = db.ReferenceProperty(reference_class=Series); def series_id(self): return self._series </code></pre> <p>And in my template:</p> <pre><code>&lt;a href="games/view-series.html?series={{comment.series_id}}#comm{{comment.key.id}}"&gt;more&lt;/a&gt; </code></pre> <p>The result:</p> <pre><code>&lt;a href="games/view-series.html?series=#comm59"&gt;more&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1173594/how-do-margins-work-with-div-positioning/1173693#1173693 1 Answer by Chris Marasti-Georg for How do margins work with div positioning? Chris Marasti-Georg 2009-07-23T18:38:28Z 2009-07-23T18:38:28Z <p>Just remove the top margin from your content div, and add the placeholder above it with the height specified.</p> <p>HTML snip:</p> <pre><code>&lt;body&gt; &lt;div id="header"&gt;Stuff&lt;/div&gt; &lt;div id="content"&gt;Body stuff.../div&gt; &lt;/body&gt; </code></pre> <p>And CSS:</p> <pre><code>#content { margin-top:0; } #header { height:280px; } </code></pre> <p>If it makes more sense for the extra header information to be within the content div (semantically), you can use a negative margin.</p> <p>HTML snip:</p> <pre><code>&lt;body&gt; &lt;div id="content"&gt; &lt;div id="header"&gt;Stuff&lt;/div&gt; Body stuff... &lt;/div&gt; &lt;/body&gt; </code></pre> <p>And CSS:</p> <pre><code>#content { margin-top:280px; } #header { margin-top:-280px; } </code></pre> http://stackoverflow.com/questions/760691/how-can-i-keep-my-sql-server-express-connection-from-timing-out-the-first-time-th 0 How can I keep my SQL Server Express connection from timing out the first time through testing? Chris Marasti-Georg 2009-04-17T14:48:09Z 2009-07-17T11:35:24Z <p>We have some automated tests for the interaction between our data access layer (C#) and the database (MS SQL). We are using SQL Express to mount an mdf, which we revert after the testing is done. It seems that the first time the tests are run on a freshly booted machine, we see timeouts, even though SQLExpress is running. The second time, they run just fine.</p> <p>Query string example:</p> <pre><code>Data Source=.\SQLEXPRESS; AttachDbFilename=|DataDirectory|\TEST_DATA.mdf; Integrated Security=True; User Instance=True </code></pre> <p>Example error:</p> <pre><code> [nunit2] 1) Test : System.Data.SqlClient.SqlException : Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. [nunit2] at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) [nunit2] at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) [nunit2] at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error) [nunit2] at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj) [nunit2] at System.Data.SqlClient.TdsParserStateObject.ReadPacket(Int32 bytesExpected) [nunit2] at System.Data.SqlClient.TdsParserStateObject.ReadBuffer() [nunit2] at System.Data.SqlClient.TdsParserStateObject.ReadByte() [nunit2] at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) [nunit2] at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK) [nunit2] at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject) [nunit2] at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart) [nunit2] at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance) [nunit2] at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance) [nunit2] at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection) [nunit2] at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options) [nunit2] at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject) [nunit2] at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject) [nunit2] at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject) [nunit2] at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) [nunit2] at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) [nunit2] at System.Data.SqlClient.SqlConnection.Open() [nunit2] at Test() </code></pre> <p>Has anyone experienced this? Have you found a way around it?</p> http://stackoverflow.com/questions/153721/what-alternatives-are-there-to-google-app-engine 8 What alternatives are there to Google App Engine? Chris Marasti-Georg 2008-09-30T16:00:54Z 2009-07-16T13:42:55Z <p>What alternatives are there to GAE, given that I already have a good bit of code working that I would like to keep. In other words, I'm digging python. However, my use case is more of a low number of requests, higher CPU usage type use case, and I'm worried that I may not be able to stay with App Engine forever. I have heard a lot of people talking about Amazon Web Services and other sorts of cloud providers, but I am having a hard time seeing where most of these other offerings provide the range of services (data querying, user authentication, automatic scaling) that App Engine provides. What are my options here?</p> http://stackoverflow.com/questions/1125958/how-do-i-discover-how-my-process-was-started/1126039#1126039 0 Answer by Chris Marasti-Georg for How do I discover how my process was started Chris Marasti-Georg 2009-07-14T15:10:22Z 2009-07-14T15:20:09Z <p>You can use PInvoke with a Kernel32 method to find the parent process and check to see if it matches your updater. <a href="http://www.pinvoke.net/default.aspx/kernel32/CreateToolhelp32Snapshot.html" rel="nofollow">Source.</a> Code, in case it goes away:</p> <pre><code>using System; using System.Runtime.InteropServices; using System.Diagnostics; static class myProcessEx { //inner enum used only internally [Flags] private enum SnapshotFlags : uint { HeapList = 0x00000001, Process = 0x00000002, Thread = 0x00000004, Module = 0x00000008, Module32 = 0x00000010, Inherit = 0x80000000, All = 0x0000001F } //inner struct used only internally [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] private struct PROCESSENTRY32 { const int MAX_PATH = 260; internal UInt32 dwSize; internal UInt32 cntUsage; internal UInt32 th32ProcessID; internal IntPtr th32DefaultHeapID; internal UInt32 th32ModuleID; internal UInt32 cntThreads; internal UInt32 th32ParentProcessID; internal Int32 pcPriClassBase; internal UInt32 dwFlags; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH)] internal string szExeFile; } [DllImport("kernel32", SetLastError = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] static extern IntPtr CreateToolhelp32Snapshot([In]UInt32 dwFlags, [In]UInt32 th32ProcessID); [DllImport("kernel32", SetLastError = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] static extern bool Process32First([In]IntPtr hSnapshot, ref PROCESSENTRY32 lppe); [DllImport("kernel32", SetLastError = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] static extern bool Process32Next([In]IntPtr hSnapshot, ref PROCESSENTRY32 lppe); // get the parent process given a pid public static Process GetParentProcess(int pid) { Process parentProc = null; try { PROCESSENTRY32 procEntry = new PROCESSENTRY32(); procEntry.dwSize = (UInt32)Marshal.SizeOf(typeof(PROCESSENTRY32)); IntPtr handleToSnapshot = CreateToolhelp32Snapshot((uint)SnapshotFlags.Process, 0); if (Process32First(handleToSnapshot, ref procEntry)) { do { if (pid == procEntry.th32ProcessID) { parentProc = Process.GetProcessById((int)procEntry.th32ParentProcessID); break; } } while (Process32Next(handleToSnapshot, ref procEntry)); } else { throw new ApplicationException(string.Format("Failed with win32 error code {0}", Marshal.GetLastWin32Error())); } } catch (Exception ex) { throw new ApplicationException("Can't get the process.", ex); } return parentProc; } // get the specific parent process public static Process CurrentParentProcess { get { return GetParentProcess(Process.GetCurrentProcess().Id); } } static void Main() { Process pr = CurrentParentProcess; Console.WriteLine("Parent Proc. ID: {0}, Parent Proc. name: {1}", pr.Id, pr.ProcessName); } } </code></pre> http://stackoverflow.com/questions/1120681/xslt-test-parameter-to-know-if-it-has-been-set/1120846#1120846 0 Answer by Chris Marasti-Georg for XSLT: Test Parameter to know if it has been set Chris Marasti-Georg 2009-07-13T17:14:13Z 2009-07-13T21:04:38Z <p>Note: replaced old answer, check history if you want it.</p> <p>The following input:</p> <pre><code>&lt;test xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; &lt;xs:complexType name="something"/&gt; &lt;xs:complexType name="somethingElse"/&gt; &lt;/test&gt; </code></pre> <p>Fed to the following XSLT:</p> <pre><code>&lt;xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.0"&gt; &lt;xsl:template match="/"&gt; &lt;xsl:for-each select="node()"&gt; &lt;xsl:apply-templates/&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; &lt;xsl:template match="xs:complexType"&gt; &lt;xsl:param name="prefix" /&gt; &lt;xsl:variable name="prefix-no-core"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="not($prefix)"&gt;AcRec&lt;/xsl:when&gt; &lt;xsl:when test="$prefix = 'core'"/&gt; &lt;xsl:when test="$prefix = 'AcRec'"&gt;AcRec&lt;/xsl:when&gt; &lt;/xsl:choose&gt; &lt;/xsl:variable&gt; &lt;xs:complexType name="{concat($prefix-no-core, @name)}"/&gt; &lt;/xsl:template&gt; &lt;/xsl:transform&gt; </code></pre> <p>Gives the following result:</p> <pre><code>&lt;xs:complexType name="AcRecsomething" xmlns:xs="http://www.w3.org/2001/XMLSchema"/&gt; &lt;xs:complexType name="AcRecsomethingElse" xmlns:xs="http://www.w3.org/2001/XMLSchema"/&gt; </code></pre> <p>I'm not sure what more you're looking for...</p> http://stackoverflow.com/questions/243388/what-exactly-does-rest-mean-what-is-it-and-why-is-it-getting-big-now 14 What exactly does REST mean? What is it, and why is it getting big now? Chris Marasti-Georg 2008-10-28T13:50:40Z 2009-07-04T06:24:17Z <p>I <del>understand (I think) the basic idea behind RESTful-ness. Use HTTP methods semantically - GET gets, PUT puts, DELETE deletes, etc... Right?</del> thought I understood the idea behind REST, but I think I'm confusing that with the details of an HTTP implementation. What is the driving idea behind rest, why is this becoming an important thing? Have people actually been using it for a long time, in a corner of the internets that my flashlight never shined upon? <hr/> The Google talk mentions Atom Publishing Protocols having a lot of synergy with RESTful implementations. Any thoughts on that?</p> http://stackoverflow.com/questions/1050329/how-can-i-speed-up-the-performance-of-the-first-execution-of-my-net-app 2 How can I speed up the performance of the first execution of my .NET app? Chris Marasti-Georg 2009-06-26T17:41:14Z 2009-06-27T08:13:29Z <p>Our C# client applications always take a much longer time to load on their first run. I haven't gone so far as to test if it is the first run of <em>any</em> .NET app that is slower, or if the first run of <em>each</em> .NET app is slower, but it remains a problem in any case. How can we eliminate this one-time startup hit?</p> <p>My initial thoughts are that some sort of service could "warm up" the libraries. Would we need to do this for each of our apps, or just any .NET app? Would the user the service runs as make a difference? Perhaps rather than a Windows service, an application that runs on Windows login could do the dirty work? Again, would the fact that it's a .NET service be enough, or would we have to run each of our programs to eliminate the penalty? We could pass in a command-line parameter that would tell the program to exit immediately, but would that be sufficient, or would we need .NET to load each assembly we'll be using during the normal execution of the application?</p> <p><hr /></p> <p>Re: Some answers, we are deploying release-mode DLLs, and the slowdown is only on the first startup. We are delaying initialization of classes as much as possible.</p> http://stackoverflow.com/questions/254256/best-net-graphics-library-for-3d-sphere-drawing 3 Best .NET graphics library for 3D sphere drawing? Chris Marasti-Georg 2008-10-31T17:15:15Z 2009-06-26T23:42:09Z <p>I am going to be making an application that lets users input several parameters for a bowling ball layout, and then show what that layout would look like on the ball. I have found some good resources for sphere math, so if I have a sphere whose center is (0,0,0), I will be able to get the values of the points I need on the surface of the ball. What I will need to do is have the library create:</p> <ul> <li>A sphere</li> <li>Mark points on the surface of the sphere</li> <li>Draw lines connecting the points on the sphere (arcs along a great circle - in other words, the shortest distance across the surface of the sphere)</li> <li><strong><em>Super duper bonus</em></strong> Actually be 3D, so the user could pan, zoom, rotate.</li> </ul> <p>Basically, I want to calculate the points, tell the library which ones to draw and which ones to connect with which colors, and then sit back and watch the kudos roll in. <hr/> I'd like to use .NET 2.0 and WinForms if possible...</p> http://stackoverflow.com/questions/1050179/fade-out-div-over-the-whole-site-to-simulate-do-a-preloader-with-mootools-jqu/1050254#1050254 1 Answer by Chris Marasti-Georg for Fade out div over the whole site to (simulate) do a preloader with (Mootools) Jquery. Chris Marasti-Georg 2009-06-26T17:23:50Z 2009-06-26T17:30:23Z <p>Try using <a href="http://mootools.net/docs/core/Fx/Fx.Tween" rel="nofollow">Fx.Tween</a>, starting with an <code>opacity</code> of 1, and tweening to 0, for the preloading <code>div</code>. Then, once it has finished, set <code>display:none;</code>.</p> <p>It might look something like (untested):</p> <pre><code> window.addEvent('load', function() { $$('div#container').setStyle('display','block'); var myFx = new Fx.Tween($$('div#preloader'), {duration:2000}); myFx.start('opacity', '0'); $$('div#preloader').setStyle('display','none'); }); </code></pre> <p>It looks like you could also use (untested):</p> <pre><code> window.addEvent('load', function() { $$('div#container').setStyle('display','block'); $$('div#preloader').get('tween', {property: 'opacity', duration: 2000}).start(0); $$('div#preloader').setStyle('display','none'); }); </code></pre> <p>Each of those should last 2 seconds.</p> http://stackoverflow.com/questions/174/printing-html 3 Printing HTML Chris Marasti-Georg 2008-08-01T18:33:48Z 2009-06-17T17:36:22Z <p>I want to print HTML from a C# web service. The Web Browser control is overkill, and does not function well in a service-environment, nor does it function well on a system with very tight security constraints. Is there any sort of free .NET library that will support the printing of a basic HTML page? Here is the code I have so far, that is not running properly.</p> <pre><code>public void PrintThing(string document)<br> {<br> if (Thread.CurrentThread.GetApartmentState() != ApartmentState.STA)<br> {<br> Thread thread = new Thread((ThreadStart) delegate { PrintDocument(document); });<br> thread.SetApartmentState(ApartmentState.STA);<br> thread.Start();<br> }<br> else<br> {<br> PrintDocument(document);<br> }<br> }<br><br> protected void PrintDocument(string document)<br> {<br> WebBrowser browser = new WebBrowser();<br> browser.DocumentText = document;<br> while (browser.ReadyState != WebBrowserReadyState.Complete)<br> {<br> Application.DoEvents();<br> }<br> browser.Print();<br> }<br></code></pre> <p>This works fine when called from UI-type threads, but nothing happens when called from a service-type thread. Changing Print() to ShowPrintPreviewDialog() yields the following IE script error:</p> <p>Error: 'dialogArguments.___IE_PrintType' is null or not an object URL: res://ieframe.dll/preview.dlg</p> <p>And a small empty print preview dialog appears.</p> http://stackoverflow.com/questions/30171/why-wont-net-deserialize-my-primitive-array-from-a-web-service 3 Why won't .NET deserialize my primitive array from a web service?! Chris Marasti-Georg 2008-08-27T13:53:58Z 2009-06-10T20:27:10Z <p>Help! I have an Axis web service that is being consumed by a C# application. Everything works great, except that arrays of long values always come across as [0,0,0,0] - the right length, but the values aren't deserialized. I have tried with other primitives (ints, doubles) and the same thing happens. What do I do? I don't want to change the semantics of my service.</p> http://stackoverflow.com/questions/172095/slow-soaphttpclientprotocol-constructor/965857#965857 4 Answer by Chris Marasti-Georg for Slow SoapHttpClientProtocol constructor Chris Marasti-Georg 2009-06-08T16:48:37Z 2009-06-08T16:48:37Z <p>The following is ripped from <a href="http://communities.vmware.com/thread/47063" rel="nofollow">this</a> thread on the VMWare forums:</p> <p>Hi folks,</p> <p>We've found that sgen.exe does work. It'just that there is a couple of additional steps beyond pre-generating the serializer dll's that we missed in this thread. Here is the detailed instruction</p> <h2>PROBLEM</h2> <p>When using the VIM 2.0 SDK from .NET requires long time to instantiate the VimService class. (The VimService class is the proxy class generated by running 'wsdl.exe vim.wsdl vimService.wsdl')</p> <p>In other words, the following line of code:</p> <pre><code>_service = new VimService(); </code></pre> <p>Could take about 50 seconds to execute.</p> <h2>CAUSE</h2> <p>Apparently, the .NET <code>XmlSerializer</code> uses the <code>System.Xml.Serialization.*</code> attributes annotating the proxy classes to generate serialization code in run time. When the proxy classes are many and large, as is the code in VimService.cs, the generation of the serialization code can take a long time.</p> <h2>SOLUTION</h2> <p>This is a known problem with how the Microsoft .NET serializer works.</p> <p>Here are some references that MSDN provides about solving this problem:</p> <p><a href="http://msdn2.microsoft.com/en-us/library/bk3w6240.aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/bk3w6240.aspx</a> <a href="http://msdn2.microsoft.com/en-us/library/system.xml.serialization.xmlserializerassemblyattribute.aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/system.xml.serialization.xmlserializerassemblyattribute.aspx</a></p> <p>Unfortunately, none of the above references describe the complete solution to the problem. Instead they focus on how to pre-generate the XML serialization code.</p> <p>The complete fix involves the following steps:</p> <ol> <li><p>Create an assembly (a DLL) with the pre-generated XML serializer code</p></li> <li><p>Remove all references to System.Xml.Serialization.* attributes from the proxy code (i.e. from the VimService.cs file)</p></li> <li><p>Annotate the main proxy class with the XmlSerializerAssemblyAttribute to point it to where the XML serializer assembly is.</p></li> </ol> <p>Skipping step 2 leads to only 20% improvement in the instantiation time for the <code>VimService</code> class. Skipping either step 1 or 3 leads to incorrect code. With all three steps 98% improvement is achieved.</p> <p>Here are step-by-step instructions:</p> <p>Before you begin, makes sure you are using .NET verison 2.0 tools. This solution will not work with version 1.1 of .NET because the sgen tool and the <code>XmlSerializationAssemblyAttribute</code> are only available in version 2.0 of .NET</p> <ol> <li><p>Generate the VimService.cs file from the WSDL, using wsdl.exe:</p> <p><code>wsdl.exe vim.wsdl vimService.wsdl</code></p> <p>This will output the VimService.cs file in the current directory</p></li> <li><p>Compile VimService.cs into a library</p> <p><code>csc /t:library /out:VimService.dll VimService.cs</code></p></li> <li><p>Use the sgen tool to pre-generate and compile the XML serializers:</p> <p><code>sgen /p VimService.dll</code></p> <p>This will output the VimService.XmlSerializers.dll in the current directory</p></li> <li><p>Go back to the VimService.cs file and remove all <code>System.Xml.Serialization.*</code> attributes. Because the code code is large, the best way to achieve that is by using some regular expression substitution tool. Be careful as you do this because not all attributes appear on a line by themselves. Some are in-lined as part of a method declaration.</p> <p>If you find this step difficult, here is a simplified way of doing it:</p> <p>Assuming you are writing C#, do a global replace on the following string:</p> <p><code>[System.Xml.Serialization.XmlIncludeAttribute</code></p> <p>and replace it with:</p> <p><code>// [System.Xml.Serialization.XmlIncludeAttribute</code></p> <p>This will get rid of the <code>Xml.Serialization</code> attributes that are the biggest culprits for the slowdown by commenting them out. If you are using some other .NET language, just modify the replaced string to be prefix-commented according to the syntax of that language. This simplified approach will get you most of the speedup that you can get. Removing the rest of the Xml.Serialization attributes only achieves an extra 0.2 sec speedup.</p></li> <li><p>Add the following attribute to the VimService class in VimService.cs:</p> <p><code>[System.Xml.Serialization.XmlSerializerAssemblyAttribute(AssemblyName = "VimService.XmlSerializers")]</code></p> <p>You should end up with something like this:</p> <p><code>// ... Some code here ... [System.Xml.Serialization.XmlSerializerAssemblyAttribute(AssemblyName = "VimService.XmlSerializers")] public partial class VimService : System.Web.Services.Protocols.SoapHttpClientProtocol { // ... More code here</code></p></li> <li><p>Regenerate VimSerice.dll library by</p> <p><code>csc /t:library /out:VimService.dll VimService.cs</code></p></li> <li><p>Now, from your application, you can add a reference to VimSerice.dll library.</p></li> <li><p>Run your application and verify that VimService object instanciation time is reduced.</p></li> </ol> <h2>ADDITIONAL NOTES</h2> <p>The sgen tool is a bit of a black box and its behavior varies depending on what you have in your Machine.config file. For example, by default it is supposed to ouptut optimized non-debug code, but that is not always the case. To get some visibility into the tool, use the /k flag in step 3, which will cause it to keep all its temporary generated files, including the source files and command line option files it generated.</p> <p>Even after the above fix the time it takes to instantiate the VimService class for the first time is not instantaneous (1.5 sec). Based on empirical observation, it appears that the majority of the remaining time is due to processing the <code>SoapDocumentMethodAttribute</code> attributes. At this point it is unclear how this time can be reduced. The pre-generated XmlSerializer assembly does not account for the SOAP-related attributes, so these attributes need to remain in the code. The good news is that only the first instantiation of the VimService class for that app takes long. So if the extra 1.5 seconds are a problem, one could try to do a dummy instantiation of this class at the beginning of the application as a means to improve user experience of login time. </p> http://stackoverflow.com/questions/198520/how-to-best-prevent-csrf-attacks-in-a-gae-app 2 How to best prevent CSRF attacks in a GAE app? Chris Marasti-Georg 2008-10-13T18:25:46Z 2009-05-25T23:16:50Z <p>So, what is the best way to prevent an XSRF attack for a GAE application? Imagine the following:</p> <ol> <li>Anyone can see a user's public object, and the db.Model id is used in the request to figure out which object to show. Malicious user now has the id.</li> <li>Malicious user creates their own object and checks out the delete form. They now know how to delete an object with a certain id.</li> <li>Malicious user gets innocent user to submit a delete request for that user's object.</li> </ol> <p>What steps can I add to prevent #3? Note that when I say ID, I am using the actual ID part of the key. One idea I had was to use the full key value in delete requests, but would that prevent a malicious user from being able to figure this out? As far as I know, the key is some combination of the model class type, the app id, and the object instance id, so they could probably derive the key from the id if they wanted to.</p> <p>Any other ideas? Jeff wrote <a href="http://www.codinghorror.com/blog/archives/001171.html" rel="nofollow">a post about this</a>, and suggested a couple methods - a hidden form value that would change on each request, and a cookie value written via js to the form. I won't want to exclude non-javascript users, so the cookie solution is no good - for the hidden form value, I would have to do a datastore write on every request that displayed a deletable object - not an ideal situation for a scalable app!</p> <p>Any other ideas out there?</p> http://stackoverflow.com/questions/262443/can-i-make-iemobile-not-strip-the-from-the-url-of-a-redirect 0 Can I make IEMobile not strip the # from the URL of a redirect? Chris Marasti-Georg 2008-11-04T16:50:47Z 2009-05-04T11:13:40Z <p>I am having an issue with IEMobile accessing my site. A certain redirect I use has a 302 response code, and the headers (yep, that's app-engine):</p> <pre>Server Development/1.0 Python/2.5.2 Date Tue, 04 Nov 2008 16:47:02 GMT Content-Type text/html; charset=utf-8 Cache-Control no-cache Location http://localhost/games/edit-game.html?game=110&frame_to_edit=3#input-top Content-Length 0</pre> <p>This works fine for most browsers. Enter IEMobile (via Windows Mobile 6.1). Upon receiving this response, IEMobile heads to</p> <pre>http://localhost/games/edit-game.html?game=110&frame_to_edit=3</pre> <p>Note the missing <code>#input-top</code>. What can I do?</p> http://stackoverflow.com/questions/804316/how-do-i-implement-rand7-in-terms-of-rand5 1 How do I implement rand(7) in terms of rand(5)? [closed] Chris Marasti-Georg 2009-04-29T21:15:34Z 2009-04-29T21:40:52Z <h3>Duplicate</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun">http://stackoverflow.com/questions/137783/</a></p> </blockquote> <h3>Or is it?</h3> <p>Does the answer to the linked duplicate still apply if <code>rand(...)</code> returns a floating point value?</p> <p><hr /></p> <p>Joel posed this as an interview question in a <a href="http://www.youtube.com/watch?v=NWHfY%5FlvKIQ" rel="nofollow">Google Tech Talk</a>.</p> <p>My first instinct, to add the result of 7 rand(5)s and divide by 5 is clearly wrong - the head and tail would have lower probabilities than the middle numbers. So... how do you do it?</p> <p>In writing this question, a second (and much simpler) answer came to mind.</p> <pre><code>rand(5) * 7/5 </code></pre> <p>Is this correct? Does it remove the problems caused by the first? If not, why?</p> http://stackoverflow.com/questions/760691/how-can-i-keep-my-sql-server-express-connection-from-timing-out-the-first-time-th/786854#786854 0 Answer by Chris Marasti-Georg for How can I keep my SQL Server Express connection from timing out the first time through testing? Chris Marasti-Georg 2009-04-24T17:31:27Z 2009-04-24T17:31:27Z <p>It looks like this problem doesn't have much of a solution other than increasing the connection timeout or simply retrying. It's simply the cost of the server spinning up the DB on a fresh system. In my testing, it occurs after a reboot, but stopping and starting the SQL service does not cause the problem. <a href="http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/SQL-Server-2005/Q%5F24087313.html" rel="nofollow">This thread on EE</a> poses a similar question.</p> http://stackoverflow.com/questions/757976/how-can-i-make-this-javascript-easier-to-read-maintain-and-understand-from-an-o 3 How can I make this javascript easier to read, maintain, and understand from an OO background? Chris Marasti-Georg 2009-04-16T20:44:14Z 2009-04-16T22:40:00Z <p>I come from the land of Java, C#, etc. I am working on a javascript report engine for a web application I have. I am using jQuery, AJAX, etc. I am having difficulty making things work the way I feel they should - for instance, I have gone to what seems like too much trouble to make sure that when I make an AJAX call, my callback has access to the object's members. Those callback functions don't need to be that complicated, do they? I know I must be doing something wrong. Please point out what I could be doing better - let me know if the provided snippet is too much/too little/too terrible to look at.</p> <p>What I'm trying to do:</p> <ul> <li>On page load, I have a select full of users.</li> <li>I create the reports (1 for now) and add them to a select box.</li> <li>When both a user and report are selected, I run the report.</li> <li>The report involves making a series of calls - getting practice serieses, leagues, and tournaments - for each league and tournament, it gets all of those serieses, and then for each series it grabs all games.</li> <li>It maintains a counter of the calls that are active, and when they have all completed the report is run and displayed to the user.</li> </ul> <p>Code:</p> <pre><code>//Initializes the handlers and reports function loadUI() { loadReports(); $("#userSelect").change(updateRunButton); $("#runReport").click(runReport); updateRunButton(); return; $("#userSelect").change(loadUserGames); var user = $("#userSelect").val(); if(user) { getUserGames(user); } } //Creates reports and adds them to the select function loadReports() { var reportSelect = $("#reportSelect"); var report = new SpareReport(); engine.reports[report.name] = report; reportSelect.append($("&lt;option/&gt;").text(report.name)); reportSelect.change(updateRunButton); } //The class that represents the 1 report we can run right now. function SpareReport() { this.name = "Spare Percentages"; this.activate = function() { }; this.canRun = function() { return true; }; //Collects the data for the report. Initializes/resets the class variables, //and initiates calls to retrieve all user practices, leagues, and tournaments. this.run = function() { var rC = $("#rC"); var user = engine.currentUser(); rC.html("&lt;img src='/img/loading.gif' alt='Loading...'/&gt; &lt;span id='reportProgress'&gt;Loading games...&lt;/span&gt;"); this.pendingOperations = 3; this.games = []; $("#runReport").enabled = false; $.ajaxSetup({"error":(function(report) { return function(event, XMLHttpRequest, ajaxOptions, thrownError) { report.ajaxError(event, XMLHttpRequest, ajaxOptions, thrownError); }; })(this)}); $.getJSON("/api/leagues", {"user":user}, (function(report) { return function(leagues) { report.addSeriesGroup(leagues); }; })(this)); $.getJSON("/api/tournaments", {"user":user}, (function(report) { return function(tournaments) { report.addSeriesGroup(tournaments); }; })(this)); $.getJSON("/api/practices", {"user":user}, (function(report) { return function(practices) { report.addSerieses(practices); }; })(this)); }; // Retrieves the serieses (group of IDs) for a series group, such as a league or // tournament. this.addSeriesGroup = function(seriesGroups) { var report = this; if(seriesGroups) { $.each(seriesGroups, function(index, seriesGroup) { report.pendingOperations += 1; $.getJSON("/api/seriesgroup", {"group":seriesGroup.key}, (function(report) { return function(serieses) { report.addSerieses(serieses); }; })(report)); }); } this.pendingOperations -= 1; this.tryFinishReport(); }; // Retrieves the actual serieses for a series group. Takes a set of // series IDs and retrieves each series. this.addSerieses = function(serieses) { var report = this; if(serieses) { $.each(serieses, function(index, series) { report.pendingOperations += 1; $.getJSON("/api/series", {"series":series.key}, (function(report) { return function(series) { report.addSeries(series); }; })(report)); }); } this.pendingOperations -= 1; this.tryFinishReport(); }; // Adds the games for the series to the list of games this.addSeries = function(series) { var report = this; if(series &amp;&amp; series.games) { $.each(series.games, function(index, game) { report.games.push(game); }); } this.pendingOperations -= 1; this.tryFinishReport(); }; // Checks to see if all pending requests have completed - if so, runs the // report. this.tryFinishReport = function() { if(this.pendingOperations &gt; 0) { return; } var progress = $("#reportProgress"); progress.text("Performing calculations..."); setTimeout((function(report) { return function() { report.finishReport(); }; })(this), 1); } // Performs report calculations and displays them to the user. this.finishReport = function() { var rC = $("#rC"); //snip a page of calculations/table generation rC.html(html); $("#rC table").addClass("tablesorter").attr("cellspacing", "1").tablesorter({"sortList":[[3,1]]}); }; // Handles errors (by ignoring them) this.ajaxError = function(event, XMLHttpRequest, ajaxOptions, thrownError) { this.pendingOperations -= 1; }; return true; } // A class to track the state of the various controls. The "series set" stuff // is for future functionality. function ReportingEngine() { this.seriesSet = []; this.reports = {}; this.getSeriesSet = function() { return this.seriesSet; }; this.clearSeriesSet = function() { this.seriesSet = []; }; this.addGame = function(series) { this.seriesSet.push(series); }; this.currentUser = function() { return $("#userSelect").val(); }; this.currentReport = function() { reportName = $("#reportSelect").val(); if(reportName) { return this.reports[reportName]; } return null; }; } // Sets the enablement of the run button based on the selections to the inputs function updateRunButton() { var report = engine.currentReport(); var user = engine.currentUser(); setRunButtonEnablement(report != null &amp;&amp; user != null); } function setRunButtonEnablement(enabled) { if(enabled) { $("#runReport").removeAttr("disabled"); } else { $("#runReport").attr("disabled", "disabled"); } } var engine = new ReportingEngine(); $(document).ready( function() { loadUI(); }); function runReport() { var report = engine.currentReport(); if(report == null) { updateRunButton(); return; } report.run(); } </code></pre> <p>I am about to start adding new reports, some of which will operate on only a subset of user's games. I am going to be trying to use subclasses (prototype?), but if I can't figure out how to simplify some of this... I don't know how to finish that sentence. Help!</p> http://stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program/2113#2113 Comment by Chris Marasti-Georg on Writing A "Conway's Game of Life" Program Chris Marasti-Georg 2009-12-02T17:03:53Z 2009-12-02T17:03:53Z Thanks mmyers, the links have been updated to a mirror that works. http://stackoverflow.com/questions/491375/readonlycollection-or-ienumerable-for-exposing-member-collections/491591#491591 Comment by Chris Marasti-Georg on ReadOnlyCollection or IEnumerable for exposing member collections? Chris Marasti-Georg 2009-11-18T21:33:32Z 2009-11-18T21:33:32Z This answer just let me perform one of the best simplifications of code I've ever written. Thank you. http://stackoverflow.com/questions/209316/why-is-clover-net-ignoring-a-referenced-project/1718922#1718922 Comment by Chris Marasti-Georg on Why is Clover.NET ignoring a referenced project? Chris Marasti-Georg 2009-11-16T11:49:42Z 2009-11-16T11:49:42Z 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. http://stackoverflow.com/questions/358016/convert-python-to-c Comment by Chris Marasti-Georg on Convert Python to C# Chris Marasti-Georg 2009-10-12T15:42:20Z 2009-10-12T15:42:20Z 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. http://stackoverflow.com/questions/8749/printing-a-pdf-in-net/8817#8817 Comment by Chris Marasti-Georg on Printing a PDF in .NET Chris Marasti-Georg 2009-10-12T12:34:12Z 2009-10-12T12:34:12Z PDFSharp seems to just call acrobat reader, which does not support silent command line printer invocation. http://stackoverflow.com/questions/8749/printing-a-pdf-in-net/8781#8781 Comment by Chris Marasti-Georg on Printing a PDF in .NET Chris Marasti-Georg 2009-10-12T12:33:32Z 2009-10-12T12:33:32Z This looks like it could be workable - they also have an SDK available with custom licensing http://stackoverflow.com/questions/8749/printing-a-pdf-in-net/8768#8768 Comment by Chris Marasti-Georg on Printing a PDF in .NET Chris Marasti-Georg 2009-10-12T12:32:52Z 2009-10-12T12:32:52Z ITextSharp does not seem to have any Printer functionality that I can find http://stackoverflow.com/questions/8749/printing-a-pdf-in-net/8791#8791 Comment by Chris Marasti-Georg on Printing a PDF in .NET Chris Marasti-Georg 2009-10-12T12:32:12Z 2009-10-12T12:32:12Z ITextSharp does not seem to have any Printer functionality that I can find http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1526530#1526530 Comment by Chris Marasti-Georg on Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T16:08:09Z 2009-10-06T16:08:09Z The 3rd line of your solution could probably be changed to [^ -&#255;], 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 [^ -&#255;\t\r\n], or [^ -&#255;\s] http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1525902#1525902 Comment by Chris Marasti-Georg on Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T15:29:37Z 2009-10-06T15:29:37Z You could try something like s/[^\u0000-\u00FF]//, which rejects any characters not in the range of 0-255. http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1525902#1525902 Comment by Chris Marasti-Georg on Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T15:06:05Z 2009-10-06T15:06:05Z 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. http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1525948#1525948 Comment by Chris Marasti-Georg on Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T14:55:11Z 2009-10-06T14:55:11Z The problem is probably not encoding, it's probably the font used to display the characters. http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1525887#1525887 Comment by Chris Marasti-Georg on Removing characters from a PHP String Chris Marasti-Georg 2009-10-06T14:24:16Z 2009-10-06T14:24:16Z He wants to allow non-alphanum symbols. http://stackoverflow.com/questions/1522375/is-there-a-library-that-provides-static-analysis-of-regular-expressions/1522949#1522949 Comment by Chris Marasti-Georg on Is there a library that provides static analysis of regular expressions? Chris Marasti-Georg 2009-10-06T12:31:47Z 2009-10-06T12:31:47Z 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. http://stackoverflow.com/questions/1522375/is-there-a-library-that-provides-static-analysis-of-regular-expressions/1522949#1522949 Comment by Chris Marasti-Georg on Is there a library that provides static analysis of regular expressions? Chris Marasti-Georg 2009-10-06T00:10:58Z 2009-10-06T00:10:58Z Thanks, I'm checking out the prolog library now.