User joeysim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T07:10:12Zhttp://stackoverflow.com/feeds/user/30741http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/357825/flash-actionscript-cpu-profiler3Flash / Actionscript CPU profilerjoeysim2008-12-10T22:26:09Z2009-10-27T15:12:27Z
<p>Have you found such a tool and used it successfully?</p>
http://stackoverflow.com/questions/554156/javascript-memory-profiling-ie6/624053#6240531Answer by joeysim for Javascript Memory profiling - IE6joeysim2009-03-08T18:28:12Z2009-03-08T18:28:12Z<p>One of the best tools I've found is IE Sieve, Memory Leak detector for Internet Explorer which is an improved version of drip - <a href="http://home.wanadoo.nl/jsrosman/" rel="nofollow">http://home.wanadoo.nl/jsrosman/</a></p>
http://stackoverflow.com/questions/554156/javascript-memory-profiling-ie61Javascript Memory profiling - IE6joeysim2009-02-16T18:44:31Z2009-03-08T18:28:12Z
<p>We have an application that behaves really badly in IE6, the application relies heavily on javascript and most of the activity happens in one page.</p>
<p>In IE6, it seems that memory keeps piling up and never gets cleared even when you navigate to a different site!</p>
<p>Since there's not so little code running within the browser, I'm looking for an external tool that will shed some light on the memory consumption of the application so that we can focus our optimization efforts.</p>
http://stackoverflow.com/questions/357634/memcached-limitations1memcached limitationsjoeysim2008-12-10T21:15:21Z2009-02-10T17:33:29Z
<p>Has anyone experienced memcached limitations in terms of:</p>
<ul>
<li># of objects in cache store - is there a point where it loses performance?</li>
<li>Amount of allocated memory - what are the basic numbers to work with?</li>
</ul>
http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/414518#4145180Answer by joeysim for What is 'the' definitive book on Unit Testing?joeysim2009-01-05T21:03:28Z2009-01-05T21:03:28Z<p>I'd consider investing the time & money on "<a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit testing</a>" from the Pragmatic series, another book I recommend is "The Pragmatic Programmer"</p>
http://stackoverflow.com/questions/298377/what-are-the-key-factors-that-ensure-successful-asp-net-application-scalability/357782#3577822Answer by joeysim for What are the key factors that ensure successful ASP.NET application scalability?joeysim2008-12-10T22:08:00Z2008-12-10T22:08:00Z<p>These are our internal ASP.Net Do's and Don't Do's for massively visited web applications:</p>
<h2>General Guidelines</h2>
<ul>
<li>Don't use Sessions - SessionState=Off</li>
<li>Disable ViewState completely - EnableViewState=False</li>
<li>Don't use any of the complext ASP.Net UI controls, stick to basic (DataGrid vs. Simple repeater)</li>
<li>Use fastest and shortest data access
mechanisms (stick to sqlreaders on
the front site)</li>
</ul>
<h2>Application Architecture</h2>
<ul>
<li>Create a caching manager with an abstraction layer. This will allow you to replace the simple System.Web.Cache with a more complex distributed caching solution in the future when you start scaling you application.</li>
<li>Create a dedicated I/O manager with an abstraction layer to support future growth (S3 anyone?)</li>
<li>Build timing tracing into your main pipelines which you can switch on and off, this will allow you to detect bottle necks when such occur.</li>
<li>Employ a background processing mechanism and move whatever is not required to render the current page for it to chew on.</li>
<li>Better yet - consider firing events from your application to other applications so they can do that async work.</li>
<li>Prepare for database scalability, place your own layer so that you can later decide if you want to partition you database or alternatively work with several read servers in a master-slave scenario.</li>
</ul>
<p>Above all, learn from others successes and failures and stay positive.</p>
http://stackoverflow.com/questions/335031/is-there-an-easy-way-to-scale-a-views-or-download-counter-in-a-db-row/357745#3577450Answer by joeysim for Is there an easy way to scale a 'views' or 'download' counter in a DB row?joeysim2008-12-10T21:51:58Z2008-12-10T21:51:58Z<p>I'd consider doing one of the following:</p>
<ul>
<li>Use a buffer within the application and batch write a set of views every time buffers gets full</li>
<li>Using a local logging file and aggregate its results in a batch load once in a while</li>
<li>Use an event system (Pub/Sub) to fire events from your application which will later be dealt with by another application (subscriber) asynchronously. Take a look at <a href="http://www.codeplex.com/pubsub/" rel="nofollow">the following project</a> </li>
</ul>
http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/357711#3577110Answer by joeysim for Good Book on Scaling Asp.Net applicationsjoeysim2008-12-10T21:41:31Z2008-12-10T21:41:31Z<p>The best book I've ever read regarding scaling web application is not a Asp.Net one, but is a must for all you web architects out there - <a href="http://scalableinternetarchitectures.com/" rel="nofollow">Scalable Internet Architectures</a></p>
http://stackoverflow.com/questions/54864/how-well-does-net-scale/357699#3576991Answer by joeysim for How well does .NET scale?joeysim2008-12-10T21:38:08Z2008-12-10T21:38:08Z<p>It all boils down to 3 things:</p>
<ul>
<li>How well is the application planned</li>
<li>What was the initial scale goal of the person who built it</li>
<li>Ongoing work in the pits to improve and scale a solution.</li>
</ul>
<p>MySpace was mentioned before, it is a know fact they've rewritten their application a few times when they hit a new scaling step (# of users / pageviews / etc). If they've chosen to build the last version to begin with, it would have been too expensive to maintain and wasn't cost effective - scalability should be based on current position and the next scale goal.</p>
<p>One last thing - although it's often considered evasive, solid stress testing can give you a good picture on how your application deals with load you're aiming at before your users experience it and disaster strikes.</p>
http://stackoverflow.com/questions/330059/community-server-the-new-version-do-you-recommend-it-can-you-integrate-new-modul/357628#3576281Answer by joeysim for Community Server the new version do you recommend it? can you integrate new modules to it? joeysim2008-12-10T21:13:23Z2008-12-10T21:13:23Z<p>Based on the fact we've been working with CS ever since version 1.0 (and even before as ASP.Net Forums) I can tell you this - CS 2007 and 2008 introduces a great out-of-the-box community solution along with a very extensive platform you can develop on top of and extend.</p>
<p>If you're aiming at Microsoft technologies this is the place to be. </p>
<p>IMPORTANT - Don't rush into their SDK and start changing the moving parts, focus on learning their theming engine (Chameleon) and using it's large variety of controls that get you farther than you could imagine. Use the SDK only when you need a better understanding of the inner working of things and when you've reached the point of extending CS.</p>
<p>IMPORTANT #2 - When extending, remember that Telligent releases two major versions every year, usually including features you'd want for your project, remember to review your changes and develop outside of the product core for easier upgrade to future versions.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/299852/enforce-minimum-color-depth-of-24bit-32bit-on-windows-2003-server-console0Enforce minimum color depth of 24bit/32bit on Windows 2003 Server console [closed]joeysim2008-11-18T19:29:33Z2008-12-01T12:38:41Z
<p>We have a web application that runs several background jobs as a windows service which involve screen capturing and image manipulation.</p>
<p>Since these tasks are executed as part of a windows service, the image capture is affected by the color-depth configured on the server and if someone connect through RDP using /console mode with a low color-depth all screen captures come out bad.</p>
<p>Is there a way to enforce the color-depth of a windows 2003 server to remain high depth in the console or a way to monitor if it changes?</p>
http://stackoverflow.com/questions/323325/iis-6-0-wildcard-mapping-benchmarks/325754#3257543Answer by joeysim for IIS 6.0 wildcard mapping benchmarks?joeysim2008-11-28T13:12:57Z2008-11-28T13:12:57Z<p>I think there are several additional things to check:</p>
<ul>
<li>Since we're using the .Net ISAPI filter, we might be using threads used to run application for serving static assets. I would run the same load test while reviewing performance counters of threads - <a href="http://msdn.microsoft.com/en-us/library/zf749bat.aspx" rel="nofollow">Review this link</a></li>
<li>I would run the same load test while running Microsoft Performance Analyzer and compare the reports.</li>
</ul>
http://stackoverflow.com/questions/322277/asp-net-stateserver-nlb-session-lost/325018#3250180Answer by joeysim for asp.net, stateserver, NLB, session lost.joeysim2008-11-28T03:18:07Z2008-11-28T03:18:07Z<p>A few points to take into consideration:</p>
<ul>
<li>What's the load on your website? State Server has the tendency to crash when facing a large number of concurrent hits. We're only using it in scenarios where we have a really small number of users (in the 10's, mostly backend systems). Whenever we tried using it in production for sites serving 1000's of users daily, it would crash leading to loss of session data.</li>
<li>On one of the production environments we manage, we're using MSSQL 2005 Express to manage the sessions, the site has 10K+ users a day and 200K+ pages a day. This is a recommended approach in case session is a must and tightly coupled into your application.</li>
</ul>
<p>If you're about to user MSSQL Express as your state DB, remember that it doesn't come with SQL Server Agent meaning there's no tasks scheduler running in the background and cleaning your expired sessions. I'd recommend finding a scheduler and running the clean expired sessions stored procedure periodically.</p>
<p>Good luck</p>
http://stackoverflow.com/questions/302924/url-coordinate-based-screen-capturing-tool/303504#3035040Answer by joeysim for URL-&coordinate based screen capturing tool joeysim2008-11-19T21:50:56Z2008-11-28T03:03:47Z<p>I'd go for the following approach:</p>
<ul>
<li>Use an application such as <a href="http://iecapt.sourceforge.net/" rel="nofollow">IECapt</a> to capture the URL to a file</li>
<li>Develop a simple application to manipulate the image based on the parameters you need</li>
</ul>
http://stackoverflow.com/questions/297081/registerclientscriptblock-within-ajax-method-call/300005#3000050Answer by joeysim for RegisterClientScriptBlock within AJAX method calljoeysim2008-11-18T20:22:12Z2008-11-18T20:22:12Z<p>In general, when loading external javascript after appending an element innerHTML with a block containing such script, one needs to evaluate (eval) the script in order for it to work properly and render itself into the current loaded document.</p>
<p>I'd suggest doing on of the following:</p>
<p>Use an external tool such as <a href="http://developer.yahoo.com/yui/get/" rel="nofollow">YUI get utility</a> which is supposed to enable such behavior or do some evaluation for scripts yourself <a href="http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_23214126.html" rel="nofollow">like this</a></p>
http://stackoverflow.com/questions/11359/what-is-good-server-performance-monitoring-software-for-windows/255289#2552891Answer by joeysim for What is good server performance monitoring software for Windows?joeysim2008-11-01T00:00:50Z2008-11-18T19:25:26Z<p>You can configure you perfmon to collect specific counters to "Trace Logs" files on your hard drive. We usually keep daily logs for important counters:</p>
<ul>
<li>Vital signs (CPU, Memory, HDD space)</li>
<li>Application specific (ASP.Net counters / SQL Counters)</li>
<li>Custom counters if your applicaiton exposes such</li>
</ul>
<p>You can add "Alerts" for specific counters / counters groups and define actions when these alerts fire.</p>
http://stackoverflow.com/questions/250880/is-there-any-cms-better-than-wordpress-or-should-i-roll-my-own/255280#2552808Answer by joeysim for Is there any CMS better than WordPress or should I roll my own?joeysim2008-10-31T23:55:34Z2008-10-31T23:55:34Z<p>Umbraco was suggested in one of the answers. We've had experience with it and many other CMS systems and I can safley recommend you to go that path, it's both easy to learn and simple to use while remaining a powerful tool to base your sites on.</p>
http://stackoverflow.com/questions/299852/enforce-minimum-color-depth-of-24bit-32bit-on-windows-2003-server-consoleComment by joeysim on Enforce minimum color depth of 24bit/32bit on Windows 2003 Server consolejoeysim2009-03-08T18:26:38Z2009-03-08T18:26:38ZI think I've found a way using command line, <a href="http://www.nirsoft.net/utils/nircmd.html" rel="nofollow">nirsoft.net/utils/nircmd.html</a>http://stackoverflow.com/questions/357634/memcached-limitations/533285#533285Comment by joeysim on memcached limitationsjoeysim2009-02-16T18:46:18Z2009-02-16T18:46:18ZTeun,
What port of memcahed for Win32 are you using?
What are the configuration switches you're using to run the memchaced service?
How did you figure out you were maxing the TCP/IP connections?