User Junior-RO - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:16:31Z http://stackoverflow.com/feeds/user/80712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1039646/trying-to-locate-safemm-for-delphi/1041584#1041584 0 Answer by Junior-RO for Trying to locate SafeMM for Delphi Junior-RO 2009-06-25T00:11:18Z 2009-06-25T00:11:18Z <p>Why and when to use SafeMM? When SafeMM is a better option than FastMM?</p> http://stackoverflow.com/questions/1037517/website-talking-to-client-application/1039387#1039387 1 Answer by Junior-RO for Website talking to client application? Junior-RO 2009-06-24T16:16:12Z 2009-06-24T16:16:12Z <p>RTC Real Thin Client and remote functions are perfect for this.</p> http://stackoverflow.com/questions/993671/accidentally-created-a-virus/994086#994086 1 Answer by Junior-RO for Accidentally created a virus? Junior-RO 2009-06-15T00:06:27Z 2009-06-15T00:06:27Z <p>In some apps, if I use RtlVclOptimize.pas, the Avira antivirus tell that I have created a virus.</p> http://stackoverflow.com/questions/574603/what-is-the-fastest-way-of-stripping-non-alphanumeric-characters-from-a-string-in/966885#966885 3 Answer by Junior-RO for What is the fastest way of stripping non alphanumeric characters from a string in Delphi7? Junior-RO 2009-06-08T20:38:06Z 2009-06-08T20:38:06Z <pre><code>uses JclStrings; S := StrKeepChars('mystring', ['A'..'Z', 'a'..'z', '0'..'9']); </code></pre> http://stackoverflow.com/questions/303515/should-gexperts-functionality-be-incorporated-into-delphi/950335#950335 1 Answer by Junior-RO for Should GExperts Functionality be Incorporated into Delphi? Junior-RO 2009-06-04T12:45:35Z 2009-06-04T12:45:35Z <p>Please, don't forget the resources from CnWizards. Can't program in Delphi without the CnPack's source highligth enhancements, uses cleaner and procedure list.</p> http://stackoverflow.com/questions/921456/replace-characters-in-a-file-faster-method/921687#921687 0 Answer by Junior-RO for replace characters in a file (faster method) Junior-RO 2009-05-28T16:00:59Z 2009-05-28T16:00:59Z <p>Don't try to optimize without know where. </p> <p>You shoud use the Sampling Profiler (delphitools.info) to know where is the bottleneck. It's easy to use.</p> <p>Precompute the vgood chr conversion, before the loop.</p> <p>Also, You don't need some conversions: Ord() and Chr(). Use always the 'Ch' variable.</p> <pre><code>if not (ch in [#10, #13, #32..#127]) then </code></pre> http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668111#668111 0 Answer by Junior-RO for Delphi 2010 Beta: What's on your wishlist? Junior-RO 2009-03-20T21:38:40Z 2009-03-20T21:43:51Z <p>a) Multiline strings.</p> <p>b) Better sintax for closures (a anonymous methods evolution).</p> <p>c) Mixins.</p> <p>d) High order functions as methods of arrays and strings:</p> <pre><code>var MyArray: array of Integer; begin MyArray := [1,6,8,10]; NewArray := MyArray.map (|x| x+3); end; </code></pre> <p>e) Garbage collection.</p> <pre><code>var A: collected TMemoryStream; begin A := TMemoryStream.Create; // using A end; // automatic A.Free; </code></pre> <p>f) Contracts, like Delphi Prism.</p> <p>g) Compiler need to be smarter. Every Delphi programmer lives to make this dumb compiler happy.</p> http://stackoverflow.com/questions/921456/replace-characters-in-a-file-faster-method/921687#921687 Comment by Junior-RO on replace characters in a file (faster method) Junior-RO 2009-05-28T17:54:54Z 2009-05-28T17:54:54Z Only if the vgood parameter was a char :o)