User Junior-RO - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:16:31Zhttp://stackoverflow.com/feeds/user/80712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1039646/trying-to-locate-safemm-for-delphi/1041584#10415840Answer by Junior-RO for Trying to locate SafeMM for DelphiJunior-RO2009-06-25T00:11:18Z2009-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#10393871Answer by Junior-RO for Website talking to client application?Junior-RO2009-06-24T16:16:12Z2009-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#9940861Answer by Junior-RO for Accidentally created a virus?Junior-RO2009-06-15T00:06:27Z2009-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#9668853Answer by Junior-RO for What is the fastest way of stripping non alphanumeric characters from a string in Delphi7?Junior-RO2009-06-08T20:38:06Z2009-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#9503351Answer by Junior-RO for Should GExperts Functionality be Incorporated into Delphi?Junior-RO2009-06-04T12:45:35Z2009-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#9216870Answer by Junior-RO for replace characters in a file (faster method)Junior-RO2009-05-28T16:00:59Z2009-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#6681110Answer by Junior-RO for Delphi 2010 Beta: What's on your wishlist?Junior-RO2009-03-20T21:38:40Z2009-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#921687Comment by Junior-RO on replace characters in a file (faster method)Junior-RO2009-05-28T17:54:54Z2009-05-28T17:54:54ZOnly if the vgood parameter was a char :o)