User moran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T20:09:29Zhttp://stackoverflow.com/feeds/user/10747http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210809/how-can-you-tell-whether-a-file-is-being-cached-in-memory-in-linux4How can you tell whether a file is being cached in memory in linux?moran2008-10-17T01:16:59Z2008-10-17T01:54:02Z
<p>Essentially my question is, does anyone know of a utility for inspecting the <strong>buffer cache</strong> in linux?</p>
http://stackoverflow.com/questions/171171/cost-effective-team-software-development-for-small-business-or-group/172217#1722171Answer by moran for Cost-effective team software development for small business or group?moran2008-10-05T16:26:58Z2008-10-05T23:04:33Z<p>On aspect that hasn't been covered is <strong>documentation</strong>. My team finds that a wiki system is the best "stays out of the way" method for capturing documentation. It's searchable, it's modifiable, it's versioned, it's easily backed up. </p>
<p>One great system for this is <a href="http://trac.edgewall.org/" rel="nofollow">TRAC</a>. It uses one of the simpler wiki syntaxes out there (moin moin), in my opinion. One giant bonus with trac is that it <strong>converges</strong> SVN browsing, ticketing and wiki all in one. That means searching can be applied to both your tickets and wiki pages. That is a big aspect of staying out of the way (i.e. by not focing the developer to use multiple systems to capture and search her team's knoweldge).</p>
http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119841#1198418Answer by moran for What are some things that you do to make sure a project is ready to be released?moran2008-09-23T08:28:56Z2008-09-23T08:28:56Z<p>Have someone other than the developers who wrote the software test it.</p>
http://stackoverflow.com/questions/119818/dynamic-client-script/119833#1198330Answer by moran for Dynamic Client Scriptmoran2008-09-23T08:27:16Z2008-09-23T08:27:16Z<p>If it's your only checkbox you can do a getElementsByTagName() call to get all inputs and then iterate through the returned array looking for the appropriate type value (i.e. checkbox).</p>
http://stackoverflow.com/questions/119360/who-are-the-authorative-thinkers-for-each-problem-domain-in-software/119785#1197852Answer by moran for Who are the authorative thinkers for each 'problem domain' in Software?moran2008-09-23T08:14:34Z2008-09-23T08:23:35Z<p>Browser runnable software - <strong>John Resig</strong> is authoritative and somehow keeps a fresh and <strong>objective</strong> voice in a fast moving browser code world. Though my hat goes off for Douglas Crockford (Mr. JSON), I can't help but rely on John Resig's ability to swiftly analyze and code (in his many projects) clear and decisive paths through the Javascript, Web, web politics, browser compatability, and the overall web (defacto) standards jungle.</p>
http://stackoverflow.com/questions/92257/programmers-food/93221#932215Answer by moran for Programmer's foodmoran2008-09-18T14:46:36Z2008-09-18T14:46:36Z<p>I find that a little bite of <strong>cheese</strong> every now let's me keep my <strong>blood-sugar level steady</strong> which allows me to stay <strong>focused</strong> for long periods of time.</p>
http://stackoverflow.com/questions/80278/using-google-maps-in-coldfusion/80298#802980Answer by moran for Using Google Maps in Coldfusionmoran2008-09-17T05:29:02Z2008-09-17T05:29:02Z<p>Maybe the layout area doesn't have the right <strong>style</strong>. I think you may have to give the map_canvas a</p>
<pre><code>position: absolute
</code></pre>
<p>or </p>
<pre><code>position: relative
</code></pre>
<p>That's just a hunch.</p>
http://stackoverflow.com/questions/79266/how-do-you-interpret-a-querys-explain-plan/79300#793002Answer by moran for How do you interpret a query's explain plan?moran2008-09-17T02:30:22Z2008-09-17T02:30:22Z<p>One "Oh no, that's not right" is often in the form of a <strong>table scan</strong>. Table scans don't utilize any special indexes and can contribute to purging of every useful in memory caches. In postgreSQL, for example, you will find it looks like this.</p>
<pre><code>Seq Scan on my_table (cost=0.00..15558.92 rows=620092 width=78)
</code></pre>
<p>Sometimes table scans are ideal over, say, using an index to query the rows. However, this is one of those red-flag patterns that you seem to be looking for.</p>
http://stackoverflow.com/questions/78592/what-is-a-good-equivalent-to-perl-lists-in-bash3What is a good equivalent to Perl lists in bash?moran2008-09-17T00:15:13Z2008-09-17T02:04:21Z
<p>In perl one would simply do the following to store and iterate over a list of names</p>
<pre><code>my @fruit = (apple, orange, kiwi);
foreach (@fruit) {
print $_;
}
</code></pre>
<p>What would the equivalent be in bash?</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/78853#788531Answer by moran for What development book made the most impact on you as a developer?moran2008-09-17T01:11:22Z2008-09-17T01:11:22Z<p>This might not count as a "development book" but I have to throw it in anyway: Hackers by Stephen Levy. I found that it spoke to the emotional side of programming.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78788#7878811Answer by moran for What do you use to keep notes as a developer?moran2008-09-17T01:00:33Z2008-09-17T01:00:33Z<p>I find that the <strong>less time spent</strong> on the tool the <strong>better</strong>. I often have 2 files going: ideas.rtf and todo.rtf. The former is a collection of random thoughts while the latter thoughts that have a temporal nature (e.g. tasks, etc). The reason I bring up the format and not the editor is because my notes then end up being portable and editable by almost any tool .</p>
<p>However, if I had to name a tool I would say TextEdit on the Mac. You can't beat the cmd-+ keystroke for enlarging text. A quick way to establish structure and layout in a notes document is essential.</p>
http://stackoverflow.com/questions/78592/what-is-a-good-equivalent-to-perl-lists-in-bash/78601#78601Comment by moran on What is a good equivalent to Perl lists in bash?moran2008-09-17T00:20:33Z2008-09-17T00:20:33ZActually this works without the semi-colon.