User lsalamon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T16:00:41Zhttp://stackoverflow.com/feeds/user/47733http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794415/experience-using-gcservertrue-to-set-garbage-collector-for-net2Experience using gcServer="true" to set garbage collector for .NETlsalamon2009-04-27T17:08:16Z2009-12-08T04:41:07Z
<p>Someone has used a configuration enabling the garbage collector optimized for multi-processor machines using Aspnet.config with :<br></p>
<p>gcServer enabled="true"<br>
gcConcurrent enabled="true"<br></p>
<p>There was improvement in the performance of your site?<br>
It was noticed a problem?<br></p>
http://stackoverflow.com/questions/1848585/what-is-the-best-way-for-two-programs-on-the-same-machine-to-communicate-with-eac/1849910#18499100Answer by lsalamon for What is the best way for two programs on the same machine to communicate with each otherlsalamon2009-12-04T21:55:50Z2009-12-04T21:55:50Z<p>There are many examples of IPC using many methods in C++ and C#, look at <a href="http://cfx.codeplex.com/wikipage?title=All-In-One%20Code%20Framework%20Sample%20Catalog&referringTitle=Home" rel="nofollow">CodFX</a></p>
http://stackoverflow.com/questions/1848535/service-contingency-for-consumer-data-queue0service contingency for consumer data queuelsalamon2009-12-04T17:41:58Z2009-12-04T17:41:58Z
<p>the operation should be:<br>
- one queue, many consumers are ready, but only one active at time;<br>
- if a consumer fails the other should be elected;<br>
- each consumer in a different host;<br>
- must be sure that only one consumer will act at a time;<br></p>
<p>What is the best strategy to ensure the uniqueness in the operation and also the contingency of operation ?</p>
http://stackoverflow.com/questions/341038/corba-from-net-disrecommended-libraries/1803232#18032320Answer by lsalamon for CORBA from .NET - (dis)recommended libraries?lsalamon2009-11-26T11:46:21Z2009-11-26T11:46:21Z<p><a href="http://omniorb.sourceforge.net/index.html" rel="nofollow">omniORB</a> is active and is constantly being updated</p>
http://stackoverflow.com/questions/1791777/this-form-of-use-of-printf-api-makes-it-safer0This form of use of printf api makes it safer?lsalamon2009-11-24T17:51:58Z2009-11-24T18:21:52Z
<pre>
char str[] = "some text";
printf ( "%.*s", strlen(str), str );
</pre>
<p>** Of course, their buffers, strings yet to be properly targeted</p>
http://stackoverflow.com/questions/1788942/how-to-create-a-2000020000-matrix-in-c/1789160#17891601Answer by lsalamon for how to create a 20000*20000 matrix in C++lsalamon2009-11-24T10:21:39Z2009-11-24T10:21:39Z<p>Math libraries can be useful:<br>
<a href="http://arma.sourceforge.net" rel="nofollow">Armadillo C++ Library</a><br>
<a href="http://freshmeat.net/projects/libmat" rel="nofollow">libmat</a><br></p>
http://stackoverflow.com/questions/1393006/how-to-get-the-cpu-usage-per-thread-on-windows-win32/1763073#17630730Answer by lsalamon for How to get the cpu usage per thread on windows (win32)lsalamon2009-11-19T12:49:10Z2009-11-19T12:49:10Z<p>Is important to know that in certain situations, the execution time of a thread may be worthless.
The execution times of each thread are updated every 15 milliseconds usually for multi-core systems, so if a thread completes its task before this time, the runtime will be reset.
More details can be obtained on the link:
<a href="http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.kernel/2004-10/0689.html" rel="nofollow">GetThreadTimes function and I was surprised by the result!</a></p>
http://stackoverflow.com/questions/1681078/msdn-rpc-marshal-document-wrong/1709519#17095190Answer by lsalamon for MSDN RPC marshal document wrong?lsalamon2009-11-10T17:01:58Z2009-11-10T17:01:58Z<p>You can take a look at the document <a href="http://msdn.microsoft.com/en-us/library/cc243560%28PROT.13%29.aspx" rel="nofollow">Remote Procedure Call Protocol Extensions</a>, at Windows Server Protocols documentation.</p>
http://stackoverflow.com/questions/1705944/how-to-optimize/1708446#17084460Answer by lsalamon for How to optimizelsalamon2009-11-10T14:41:44Z2009-11-10T14:41:44Z<p>Here are a few options and apply the one that best suits you:<br>
<a href="http://www.williablog.net/williablog/post/2008/12/02/Increase-ASPNET-Scalability-Instantly.aspx" rel="nofollow">Instantly Increase ASP.NET Scalability</a><br>
<a href="http://www.codeproject.com/KB/dotnet/DotNetBestPractices4.aspx?display=Print" rel="nofollow">Best Practice No 4:- Improve bandwidth performance of ASP.NET sites using IIS compression</a><br>
<a href="http://dotnetperls.com/compression-aspnet" rel="nofollow">ASP.NET HTTP Compression Overview</a><br>
<a href="http://www.realsoftwaredevelopment.com/20-tips-to-improve-aspnet-application-performance/" rel="nofollow">20 Tips to Improve ASP.net Application Performance</a><br><br></p>
<p>Evaluate the performance changes with tools measurement:<br>
<a href="http://code.google.com/speed/page-speed/docs/using.html" rel="nofollow">Page Speed</a><br></p>
http://stackoverflow.com/questions/1708310/inserting-leading-zeros-into-an-integer/1708386#17083860Answer by lsalamon for Inserting leading zeros into an integerlsalamon2009-11-10T14:31:21Z2009-11-10T14:31:21Z<p>try this :<br></p>
<pre>
char source[5+1] = { '1','2', 0, 0, 0, 0 };
char dest[5+1];
int nd = strlen(source) ;
memset ( dest, '0', 5 - nd );
sprintf ( dest+nd+1, "%s", source );
</pre>
http://stackoverflow.com/questions/1704108/getting-and-terminating-classs-threads-in-c/1704209#17042090Answer by lsalamon for Getting and terminating class's/threads in C#lsalamon2009-11-09T22:03:41Z2009-11-09T22:03:41Z<p>Here you can find good examples as references:<br>
<a href="http://msdn.microsoft.com/en-us/library/ms173179%28VS.80%29.aspx" rel="nofollow">Thread Synchronization - C# Programming Guide</a><br>
<a href="http://www.programmersheaven.com/2/Art%5FCSharp%5F6" rel="nofollow">dotNet Threading, Part I</a><br>
<a href="http://www.c-sharpcorner.com/UploadFile/udeshikah/002202009021606AM/0.aspx" rel="nofollow">Multithreading with C#</a><br>
<a href="http://blogs.msdn.com/jaredpar/archive/2009/02/11/why-are-thread-safe-collections-so-hard.aspx" rel="nofollow">Why are thread safe collections so hard? </a><br>
<a href="http://devplanet.com/blogs/brianr/archive/2008/09/26/thread-safe-dictionary-in-net.aspx" rel="nofollow">Thread Safe Dictionary in .NET with ReaderWriterLockSlim</a><br></p>
http://stackoverflow.com/questions/1691043/learning-windows-services-with-c/1691608#16916080Answer by lsalamon for Learning Windows Services with C++lsalamon2009-11-07T01:37:00Z2009-11-07T01:37:00Z<p>Some new attributes on mode of operation of services:<br>
<a href="http://msdn.microsoft.com/en-us/magazine/cc164252.aspx" rel="nofollow">Windows Services Enhancements</a></p>
http://stackoverflow.com/questions/1688382/resources-on-creating-a-windows-service-using-c/1688467#16884671Answer by lsalamon for resources on creating a windows service using c#lsalamon2009-11-06T15:53:02Z2009-11-06T17:45:30Z<p>good learning:<br>
<a href="http://msdn.microsoft.com/en-us/library/zt39148a.aspx" rel="nofollow">Walkthrough: Creating a Windows Service Application in the Component Designer</a><br>
<a href="http://www.codeproject.com/KB/system/WindowsService.aspx?display=Print" rel="nofollow">Creating a Basic Windows Service in C#</a><br>
<a href="http://www.switchonthecode.com/tutorials/creating-a-simple-windows-service-in-csharp" rel="nofollow">Creating a Simple Windows Service in C#</a><br>
<a href="http://support.microsoft.com/kb/816169" rel="nofollow">How to create a setup project for a Windows Service application in Visual 2005/2008 C#</a></p>
http://stackoverflow.com/questions/1649344/create-a-new-exe-from-within-c/1649387#16493870Answer by lsalamon for Create a new EXE from within Clsalamon2009-10-30T11:59:51Z2009-10-30T11:59:51Z<p>You find many examples on the web, see this: <a href="http://www.codeguru.com/cpp/i-n/ieprogram/article.php/c4379/" rel="nofollow">Display a Web Page in a Plain C Win32 Application</a>
<br>
See if this example can assist you: <a href="http://69.10.233.10/KB/GDI/plain%5Fc%5Fresampling%5Fdll.aspx" rel="nofollow">Plain C Resampling DLL</a><br>
Install the Windows Software Development Kit package, there are many examples too.</p>
http://stackoverflow.com/questions/1630315/change-a-keystroke-passing-a-hookc-c/1647094#16470940Answer by lsalamon for change a keystroke passing a hook(c/c++)lsalamon2009-10-29T23:06:58Z2009-10-29T23:06:58Z<p>See tool <a href="http://www.autohotkey.com/download/" rel="nofollow">AutoHotkey</a>, with source code available.</p>
http://stackoverflow.com/questions/1645326/non-blocking-thread-safe-queue-in-c/1645347#16453471Answer by lsalamon for non-blocking thread-safe queue in C++?lsalamon2009-10-29T17:31:52Z2009-10-29T17:41:45Z<p>STL containers are not thread-safe, you should implement your treatment for concurrent access.<br>
There is this project (C++) that aims to serve concurrent accesses : <a href="http://www.cphstl.dk/WWW/downloads.html" rel="nofollow">CPH STL</a><br>
and <a href="http://www.cphstl.dk/Report/Safe-containers/mini-project.pdf" rel="nofollow">paper about</a>.</p>
http://stackoverflow.com/questions/1638219/millions-of-small-graphics-files-and-how-to-overcome-slow-file-system-access-on-x/1638239#16382390Answer by lsalamon for Millions of small graphics files and how to overcome slow file system access on XPlsalamon2009-10-28T16:04:49Z2009-10-28T16:04:49Z<p>For XP try this tip:<br>
<a href="http://www.mydigitallife.info/2008/03/17/how-to-turn-off-image-preview-thumbnail-and-disable-windows-picture-and-fax-viewer-in-windows-xp/" rel="nofollow">How to Turn Off Image Preview Thumbnail and Disable Windows Picture and Fax Viewer in Windows XP</a><br></p>
<p>On Windows Server 2008 :<br>
<a href="http://www.win2008workstation.com/win2008/preview-thumbnails-in-windows-explorer" rel="nofollow">Preview thumbnails in Windows Explorer</a></p>
http://stackoverflow.com/questions/1632695/how-to-solve-this-problem-with-a-cast-of-iterator0how to solve this problem with a cast of iterator ?lsalamon2009-10-27T18:14:23Z2009-10-27T19:44:15Z
<p>The compiler (VC8) error is:<br>
error C2680: 'std::_Tree<_Traits>::iterator' : invalid target type for dynamic_cast
<br>the source code to simulate the error :<br>
[EDIT]source fixed now<br></p>
<pre><code>#include <map>
#include <string>
struct tag_data
{
int in;
int on;
std::string sn;
};
class myclass
{
private:
typedef std::map<std::string, tag_data> TypeData;
TypeData MapStorage;
typedef std::map<unsigned long, TypeData::iterator > TypeToThreadIterMapStorage;
TypeToThreadIterMapStorage ThreadIterMapStorage;
public:
bool find( std::string& k)
{
TypeData::const_iterator theData ;
theData = MapStorage.find(k);
//ThreadIterMapStorage [ 0 ] = MapStorage.begin();// this is ok
ThreadIterMapStorage [ 1 ] = dynamic_cast<TypeData::iterator>(theData); // the error occurs here
return theData != MapStorage.end();
}
virtual ~myclass(){}
};
int _tmain(int argc, _TCHAR* argv[])
{
myclass mc;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1604200/creating-windows-dll-from-c-source-files/1616500#16165001Answer by lsalamon for Creating Windows DLL from C++ source fileslsalamon2009-10-23T23:48:21Z2009-10-23T23:48:21Z<p>Here the step-by-step for you <a href="http://winunit.codeplex.com/wikipage?title=Create%20your%20first%20test%20project&ProjectName=winunit" rel="nofollow">Create Your First Test Project</a></p>
http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time/1616430#16164300Answer by lsalamon for Why does an empty loop use so much processor time?lsalamon2009-10-23T23:25:43Z2009-10-23T23:25:43Z<p>Take a look at <a href="http://en.wikipedia.org/wiki/Preemption%5F%28computing%29" rel="nofollow">Preemption</a></p>
http://stackoverflow.com/questions/1614702/c-writing-a-com-server-properties-mapped-to-methods/1614790#16147901Answer by lsalamon for C# - writing a COM server - Properties mapped to methodslsalamon2009-10-23T17:13:20Z2009-10-23T17:44:14Z<p>You ever tried to use the information contained in the link:<br>
<a href="http://msdn.microsoft.com/en-us/magazine/bb985086.aspx" rel="nofollow">Visual Basic: Inspect COM Components Using the TypeLib Information Object Library</a><br></p>
<p>[EDIT]<br>
See if <a href="http://msdn.microsoft.com/en-us/library/tt0cf3sx%28VS.80%29.aspx" rel="nofollow">tlbimp.exe</a> tool can help you.</p>
http://stackoverflow.com/questions/1614686/windows-changing-the-dll-search-order-for-an-exe/1614700#16147000Answer by lsalamon for Windows: Changing the DLL search order for an Exelsalamon2009-10-23T16:57:40Z2009-10-23T16:57:40Z<p>The only way I know would use LoadLibrary API including the path, but you say you can not change the exe.</p>
http://stackoverflow.com/questions/1614553/disable-iis7-compression-for-a-single-file-from-web-config/1614594#16145940Answer by lsalamon for Disable IIS7 Compression for a single file from web.configlsalamon2009-10-23T16:37:04Z2009-10-23T16:37:04Z<p>This link help you : <a href="http://blogs.iis.net/ksingla/archive/2006/6/13/1313980.aspx" rel="nofollow">Changes to compression in IIS7</a><br>
See this too : <a href="http://forums.iis.net/t/1071156.aspx" rel="nofollow">httpCompression and .js files</a></p>
http://stackoverflow.com/questions/995340/is-implementing-a-cache-considered-a-difficult-problem/1614573#16145730Answer by lsalamon for Is implementing a cache considered a difficult problem?lsalamon2009-10-23T16:33:16Z2009-10-23T16:33:16Z<p>I think that no matter the task, if there is need for concurrent access to what is difficult is just that: control of concurrent access. Just that can cause serious problems such as dead-lock, serialization in access, limitations on concurrency, among other.</p>
http://stackoverflow.com/questions/1611756/memory-management-and-realloc/1613970#16139700Answer by lsalamon for Memory management and realloclsalamon2009-10-23T14:49:28Z2009-10-23T14:49:28Z<p>Here is a code that can assist you in finding errors:<br>
<a href="http://code.axter.com/debuglogger.cpp" rel="nofollow">debuglogger</a><br>
<a href="http://code.axter.com/debugalloc.h" rel="nofollow">debugalloc</a></p>
http://stackoverflow.com/questions/1605773/how-to-make-win32-exe-invisible-in-taskmanager-or-any-other-process-explorer-or/1607570#1607570-2Answer by lsalamon for How to make win32 exe invisible in TaskManager or any other process explorer, or make unkillable lsalamon2009-10-22T14:20:44Z2009-10-23T02:00:50Z<p>Here is an example <a href="http://www.google.com/#hl=en&q=invisible+exe&start=540&sa=N&fp=b8148470ea1f7ec2" rel="nofollow">invisible</a>, but remember that your risk of misuse.</p>
<p>[EDITED]<br>
well guys, I removed the link.</p>
http://stackoverflow.com/questions/1610551/when-where-was-most-vexing-parse-coined/1610588#1610588-3Answer by lsalamon for When/where was "Most vexing parse" coined?lsalamon2009-10-22T23:29:18Z2009-10-22T23:29:18Z<p>You have taken a look at <a href="http://stackoverflow.com/questions/189172/c-templates-turing-complete/1607179">C++ templates Turing-complete?</a></p>
http://stackoverflow.com/questions/189172/c-templates-turing-complete/1607179#16071790Answer by lsalamon for C++ templates Turing-complete?lsalamon2009-10-22T13:26:20Z2009-10-22T13:26:20Z<p>Just another example of how not to program :</p>
<pre>
template<int Depth, int A, typename B>
struct K17 {
static const int x =
K17 <Depth+1, 0, K17<Depth,A,B> >::x
+ K17 <Depth+1, 1, K17<Depth,A,B> >::x
+ K17 <Depth+1, 2, K17<Depth,A,B> >::x
+ K17 <Depth+1, 3, K17<Depth,A,B> >::x
+ K17 <Depth+1, 4, K17<Depth,A,B> >::x;
};
template <int A, typename B>
struct K17 <16,A,B> { static const int x = 1; };
static const int z = K17 <0,0,int>::x;
void main(void) { }
</pre>
<p>Post at <a href="http://cpptruths.blogspot.com/2005/11/c-templates-are-turing-complete.html" rel="nofollow">C++ templates are turing complete</a></p>
http://stackoverflow.com/questions/1606759/how-to-identify-memory-consuming-requests-in-asp-net/1606916#16069160Answer by lsalamon for How to identify memory consuming requests in ASP.Netlsalamon2009-10-22T12:36:00Z2009-10-22T12:36:00Z<p>These liks will help you:<br>
<a href="http://blogs.msdn.com/alikl/archive/2009/02/17/use-process-explorer-to-quickly-identify-performance-bottlenecks-in-asp-net-web-applications.aspx" rel="nofollow">Use Process Explorer To Quickly Identify Performance Bottlenecks In ASP.NET Web Applications</a><br>
<a href="http://msdn.microsoft.com/en-us/library/aa720392%28VS.71%29.aspx" rel="nofollow">Performance Counters for ASP.NET</a><br>
<a href="http://blogs.msdn.com/vancem/attachment/9023602.ashx" rel="nofollow">Perf ByDesign.Memory</a><br>
<a href="http://www.realsoftwaredevelopment.com/20-tips-to-improve-aspnet-application-performance/" rel="nofollow">20 Tips to Improve ASP.net Application Performance</a><br>
<a href="http://msdn.microsoft.com/en-us/magazine/cc500561.aspx" rel="nofollow">Scaling Strategies for ASP.NET Applications</a><br>
<a href="http://msdn.microsoft.com/en-us/performance/default.aspx" rel="nofollow">Windows Performance Analysis site</a><br></p>
http://stackoverflow.com/questions/1606192/securing-a-server-application/1606376#16063761Answer by lsalamon for Securing a server applicationlsalamon2009-10-22T10:42:12Z2009-10-22T10:42:12Z<p>I hope these articles will help you :<br>
<a href="http://msdn.microsoft.com/en-us/library/bb625960.aspx" rel="nofollow">Designing Applications to Run at a Low Integrity Level</a><br>
<a href="http://msdn.microsoft.com/en-us/magazine/cc188938.aspx" rel="nofollow">Defend Your Code with Top Ten Security Tips Every Developer Must Know</a><br>
<a href="http://www.codeplex.com/clrsecurity" rel="nofollow">CLR security</a><br>
<a href="http://technet.microsoft.com/en-us/security/cc895262.aspx" rel="nofollow">Security Fundamentals</a><br>
<a href="http://msdn.microsoft.com/en-us/magazine/cc135979.aspx" rel="nofollow">Managing Directory Security Principals in the .NET Framework 3.5</a><br>
<a href="http://msdn.microsoft.com/en-us/magazine/dd347547.aspx" rel="nofollow">Building A Custom Security Token Service</a></p>
http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename/1844503#1844503Comment by lsalamon on How can a Windows Service determine its ServiceName?lsalamon2009-12-04T18:17:29Z2009-12-04T18:17:29Zto identify at runtime use command SC QUERYEXhttp://stackoverflow.com/questions/1771130/accessing-contents-of-char-on-a-windows-x64-cause-exceptionComment by lsalamon on Accessing contents of char** on a windows x64 cause exceptionlsalamon2009-11-20T18:43:14Z2009-11-20T18:43:14Zsee if this code can help you: <a href="http://www.experts-exchange.com/Programming/Misc/Q_21066562.html" rel="nofollow">experts-exchange.com/Programming/Misc/…</a>http://stackoverflow.com/questions/248221/com-calling-convention-on-x64/248570#248570Comment by lsalamon on COM calling convention on x64lsalamon2009-11-12T01:32:29Z2009-11-12T01:32:29Zx64 has a unique way call convention : [fastcall](<a href="http://blogs.msdn.com/oldnewthing/archive/2004/01/14/58579.aspx" rel="nofollow">blogs.msdn.com/oldnewthing/archive/…</a>)
http://stackoverflow.com/questions/1709693/when-should-you-use-an-stl-other-than-the-one-that-comes-with-your-compiler/1710097#1710097Comment by lsalamon on When should you use an STL other than the one that comes with your compiler?lsalamon2009-11-11T13:26:30Z2009-11-11T13:26:30Zfor large data also has STxxL(<a href="http://stxxl.sourceforge.net/" rel="nofollow">stxxl.sourceforge.net</a>)http://stackoverflow.com/questions/1638219/millions-of-small-graphics-files-and-how-to-overcome-slow-file-system-access-on-x/1638239#1638239Comment by lsalamon on Millions of small graphics files and how to overcome slow file system access on XPlsalamon2009-10-28T16:50:03Z2009-10-28T16:50:03Zreally, but my suggestion may help just as a configurable option that aids in performance.http://stackoverflow.com/questions/1632695/how-to-solve-this-problem-with-a-cast-of-iterator/1632848#1632848Comment by lsalamon on how to solve this problem with a cast of iterator ?lsalamon2009-10-27T18:46:02Z2009-10-27T18:46:02ZBank shot. Accepted solution.http://stackoverflow.com/questions/1632695/how-to-solve-this-problem-with-a-cast-of-iterator/1632734#1632734Comment by lsalamon on how to solve this problem with a cast of iterator ?lsalamon2009-10-27T18:39:42Z2009-10-27T18:39:42ZSee type TypeToThreadIterMapStorage, want to do the assignment in the container for this type.
http://stackoverflow.com/questions/1632695/how-to-solve-this-problem-with-a-cast-of-iteratorComment by lsalamon on how to solve this problem with a cast of iterator ?lsalamon2009-10-27T18:34:21Z2009-10-27T18:34:21Zsource fixed now.http://stackoverflow.com/questions/217892/what-is-a-safe-equivalent-of-non-void-stl-erase/220495#220495Comment by lsalamon on What is a safe equivalent of non-void STL erase?lsalamon2009-10-26T15:15:08Z2009-10-26T15:15:08ZI agree that this is an item not very safe, but the use of the increment operator is defined in this case. More on this same subject:<a href="http://stackoverflow.com/questions/436013/is-there-any-way-to-check-if-an-iterator-is-valid" rel="nofollow" title="is there any way to check if an iterator is valid">stackoverflow.com/questions/436013/…</a>http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time/1616430#1616430Comment by lsalamon on Why does an empty loop use so much processor time?lsalamon2009-10-23T23:51:43Z2009-10-23T23:51:43ZYou have to see it this way: it's like a slice of CPU to other processes is reduced.http://stackoverflow.com/questions/1610551/when-where-was-most-vexing-parse-coined/1610588#1610588Comment by lsalamon on When/where was "Most vexing parse" coined?lsalamon2009-10-23T22:14:10Z2009-10-23T22:14:10Zyou really read all the answers to the question of the link?http://stackoverflow.com/questions/1605773/how-to-make-win32-exe-invisible-in-taskmanager-or-any-other-process-explorer-or/1607570#1607570Comment by lsalamon on How to make win32 exe invisible in TaskManager or any other process explorer, or make unkillable lsalamon2009-10-23T13:56:11Z2009-10-23T13:56:11Ztried, convicted and executed.http://stackoverflow.com/questions/1605773/how-to-make-win32-exe-invisible-in-taskmanager-or-any-other-process-explorer-or/1607570#1607570Comment by lsalamon on How to make win32 exe invisible in TaskManager or any other process explorer, or make unkillable lsalamon2009-10-22T15:13:40Z2009-10-22T15:13:40ZKnowing your enemy is the best defense.http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-netComment by lsalamon on Is there any reason VB6 couldn't be ported to .Net?lsalamon2009-10-22T10:55:24Z2009-10-22T10:55:24ZYou can build a tool for porting vb6 code to .net but this requires time and money.http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-netComment by lsalamon on Is there any reason VB6 couldn't be ported to .Net?lsalamon2009-10-22T10:47:47Z2009-10-22T10:47:47ZChanges is that they bring progress. Adapt to.