User dreftymac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T19:55:32Zhttp://stackoverflow.com/feeds/user/42223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/404997/komodo-edit-running-macros-via-keybinding-versus-toolbar0Komodo Edit: Running macros via keybinding versus toolbardreftymac2009-01-01T14:27:36Z2009-12-19T13:00:01Z
<p><strong>Question:</strong> Is anyone out there familiar enough with Komodo Edit to shed some light on this macro? I need to figure out how to do buffer text selection in a macro when it is invoked via the tool panel.</p>
<p><strong>Problem:</strong> I have a very simple macro in Komodo Edit javascript that works as expected, but only when invoked via a custom keybinding. If the user tries to invoke it from the standard "tool panel" the selectWordLeft invocation does nothing. My guess is the failure is caused by the edit buffer not having focus, but one would have thought that telling the macro to expressly give focus to the buffer would work.</p>
<pre><code>komodo.view.setFocus();
komodo.doCommand('cmd_selectWordLeft'); /// this NO_WORKY
</code></pre>
<p><strong>Background:</strong>
<em>Komodo Edit, version 5.0.2, build 2604, platform win32-x86.
Built on Wed Nov 19 18:33:41 2008.</em></p>
http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-time2What name should I give my function? And who can I ask next time?dreftymac2009-12-17T14:09:10Z2009-12-17T17:20:08Z
<p><strong>Background:</strong></p>
<p>There are a few threads on SO about how to choose names for variables and functions. It dawned up on me that there might be a use for a site where you could go and ask random people what name a particular function should have. You describe the behavior, and they come up with a name. The benefit of this, you get multiple perspectives and potentially code that is more readable to more people.</p>
<p>The other thing that dawned upon me is that SO may not be a good site for that kind of thing. Who wants to create a new SO question every time they scratch their neck trying to think of a function or variable name?</p>
<p><strong>Question:</strong></p>
<p>I have a function that does something very simple. It takes a source string and converts it into a target output. The target output is intended to be usable as a variable name or a database column name.</p>
<p>Example:</p>
<pre><code>'Customer Name' --(becomes)--> 'customer_name'
</code></pre>
<p>What should I name my function? Where can I go to ask this question for the 356 other functions I want to have perfect names for?</p>
<p><strong>See also:</strong></p>
<p><a href="http://stackoverflow.com/questions/1505880/thoughts-on-variable-function-naming-conventions">http://stackoverflow.com/questions/1505880/thoughts-on-variable-function-naming-conventions</a> ;; <a href="http://stackoverflow.com/questions/380458/marking-up-argument-names-in-comments-of-functions">http://stackoverflow.com/questions/380458/marking-up-argument-names-in-comments-of-functions</a></p>
http://stackoverflow.com/questions/1916249/proficient-asp-net-and-csharp-programming-using-only-opensource-tools1proficient asp.net and csharp programming using only opensource toolsdreftymac2009-12-16T17:27:18Z2009-12-16T18:41:58Z
<p>Is it feasible to become proficient with msft dotNet using only opensource (or no-fee tools from msft)</p>
<p>if yes, what is the toolset?</p>
http://stackoverflow.com/questions/1862899/is-there-a-site-that-does-nothing-but-spit-out-whatever-post-form-parameters-were1Is there a site that does nothing but spit out whatever POST form parameters were sent to it?dreftymac2009-12-07T21:09:17Z2009-12-09T22:48:36Z
<p>Is there a site online available to the general public that does nothing but display whatever form variables (name-value pairs) were sent to it via POST?</p>
<p>Yes, it's very simple and I have already made one myself, the question is to see if there is something generally available in case my box is down or I am working with someone else and I just want to send them a link that does this for debugging purposes.</p>
http://stackoverflow.com/questions/1862715/is-there-any-way-to-automatically-run-a-test-suite-from-within-selenium-ide-upon0is there any way to automatically run a test suite from within Selenium IDE upon opening firefox?dreftymac2009-12-07T20:34:56Z2009-12-08T09:31:39Z
<p>I would like to create a script or a batch file on windows that automatically opens Selenium IDE (plugin) and opens and runs a test file.</p>
http://stackoverflow.com/questions/1862888/is-there-any-way-to-change-the-name-of-the-top-level-output-directory-with-bsdtar0is there any way to change the name of the top-level output directory with bsdtar?dreftymac2009-12-07T21:07:38Z2009-12-07T21:07:38Z
<p>When untarring an archive with bsdtar, I would like to not use the top-level directory name that occurs in the archive, and instead use my own. Is there a way to do this automatically?</p>
http://stackoverflow.com/questions/1715811/drupal-development-and-use-by-professional-programmers-are-there-specific-pitf2Drupal development and use by professional programmers .. are there specific pitfalls or advantages?dreftymac2009-11-11T15:12:32Z2009-12-07T16:14:51Z
<p><strong>Background:</strong> Long ago Microsoft Access gained a lot of popularity because you could build pretty powerful desktop database applications with point-and-click ease. It seems like Drupal is now doing the same thing, except for the web.</p>
<p>This is definitely good in some aspects, but it seems to have some drawbacks as well. From the perspective of someone with a few years of Web development experience and programming experience, it seems like Drupal has some quirks that take some getting used to.</p>
<p><strong>Examples:</strong> </p>
<ul>
<li><p><strong>OOP and Namespaces</strong>: Drupal pretty much re-invents Object Oriented programming with its own internal API, and there does not seem to be much impetus to change that, even though PHP has added built-in support for (its own flavor of) OOP. <a href="http://drupal.org/node/19964" rel="nofollow">See Drupal on OOP</a>.</p></li>
<li><p><strong>It works for me ...:</strong> Many contrib modules seem to be plagued by use cases that were not initially anticipated by the original author(s). The common response is "well, at least it works for me". This is understandable when developers write something first to solve their own particular issues, and then only later adapt it for others (if funding, personal preferences, and time allow). The problem is "good enough for me" is an incremental approach that does not work well with large-scale development. The result is a combination of solutions that feel "duct taped" together. </p></li>
<li><p><strong>Duplicated Standards:</strong> Drupal seems to also re-invent existing technologies and standards even in cases where there does not seem to be a stylistic or strategic benefit in doing so. For example: 1) New .info files; 2) Deployment tools; 3) Re-creation of PHP language features; 4) Re-creation of code and functionality from established open-source libraries.</p></li>
</ul>
<p>(The newly-invented <a href="http://drupal.org/node/171205" rel="nofollow">.info files</a> (used in configs), are used instead of already built-in <a href="http://en.wikipedia.org/wiki/INI%5Ffile" rel="nofollow">INI file</a> format of PHP, or the already-used and published <a href="http://en.wikipedia.org/wiki/YAML" rel="nofollow">YAML</a>, for cases where INI is not powerful enough. Another example, in contrib modules at least, you can find lots of hand-made regex hacks used to parse HTML, instead of already-developed full-fledged HTML parsers. Another example, <a href="http://drupal.org/project/drush" rel="nofollow">Drush</a> appears instead of any already-known <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fbuild%5Fautomation%5Fsoftware" rel="nofollow">build language</a> out there (<strong>EDIT</strong>: the build language link is not a good one, I meant to emphasize higher-level tools like Rake, Capistrano, Ant, Maven and others, I am assuming Drush is the closest thing.))</p>
<ul>
<li><strong>Unit testing:</strong> Drupal does not seem to have a strong support for unit testing. Combined with the other factors above, this makes for a challenging environment for those who want to have comprehensive code coverage, especially for cases where Drupal is being used in a work environment with the potential for lots of apps proliferating.</li>
</ul>
<p><strong>Question:</strong> If you have some Drupal experience, and also some programming experience (especially if it is in other languages in addition to PHP, with native support for OOP), what are some specific pitfalls or even advantages that you have encountered?</p>
http://stackoverflow.com/questions/1850297/when-should-i-use-apacheapache-or-nobodynobody-on-my-web-server-files0when should I use "apache:apache" or "nobody:nobody" on my web server files?dreftymac2009-12-04T23:15:33Z2009-12-04T23:34:05Z
<p><strong>Background:</strong> I remember at my old place of employment how the web server admin would always make me change the httpd-accessible file upload directories so that they were owned by apache:apache or nobody:nobody.</p>
<p>He said this was for security reasons.</p>
<p><strong>Question:</strong> Can you tell me what specifically were the security implications of this? Also is there a way to get apache to run as nobody:nobody, and are there security implications for that as well?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1530868/simple-explanation-php-oop-vs-procedural/1848715#18487150Answer by dreftymac for simple explanation PHP OOP vs Procedural?dreftymac2009-12-04T18:14:37Z2009-12-04T18:14:37Z<p><strong>See also:</strong></p>
<p>Here are some additional links to related SO posts:</p>
<p><a href="http://stackoverflow.com/questions/597267/defining-oop-for-a-new-programmer">http://stackoverflow.com/questions/597267/defining-oop-for-a-new-programmer</a></p>
<p><a href="http://stackoverflow.com/questions/1143993/what-are-the-schools-of-oop">http://stackoverflow.com/questions/1143993/what-are-the-schools-of-oop</a></p>
<p><a href="http://stackoverflow.com/questions/510921/oop-concepts-confusion">http://stackoverflow.com/questions/510921/oop-concepts-confusion</a></p>
<p><a href="http://stackoverflow.com/questions/500475/learning-oop-well">http://stackoverflow.com/questions/500475/learning-oop-well</a></p>
<p><a href="http://stackoverflow.com/questions/402984/main-concepts-in-oop">http://stackoverflow.com/questions/402984/main-concepts-in-oop</a></p>
<p><a href="http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on">http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on</a></p>
<p><a href="http://stackoverflow.com/questions/1343619/real-world-oop-example-php">http://stackoverflow.com/questions/1343619/real-world-oop-example-php</a></p>
<p><a href="http://stackoverflow.com/questions/478773/how-is-oop-and-design-patterns-related">http://stackoverflow.com/questions/478773/how-is-oop-and-design-patterns-related</a></p>
<p><a href="http://stackoverflow.com/questions/1557691/good-training-sources-for-oop-php-anyone">http://stackoverflow.com/questions/1557691/good-training-sources-for-oop-php-anyone</a></p>
http://stackoverflow.com/questions/998832/web-based-json-editor-that-works-like-property-explorer-with-ajaxy-input-form1Web-based JSON editor that works like property explorer with AJAXy input formdreftymac2009-06-15T22:47:50Z2009-11-28T23:53:32Z
<p><strong>Background:</strong> This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet. </p>
<p>Suppose you have an arbitrary JSON structure like the following:</p>
<pre><code>{
'str_title':'My Employee List'
,'str_lastmod': '2009-June-15'
,'arr_list':[
{'firstname':'john','lastname':'doe','age':'33',}
,{'firstname':'jane','lastname':'doe','age':'34',}
,{'firstname':'samuel','lastname':'doe','age':'35',}
]
}
</code></pre>
<p><strong>Question:</strong> Is there a web-based JSON editor that could take a structure like this, and automatically allow the user to modify this in a user-friendly GUI?</p>
<p><strong>Example:</strong> Imagine an auto-generated HTML form that displays 2 input-type-text controls for both title and lastmod, and a table of input-type-text controls with three columns and three rows for arr_list ... with the ability to delete or add additional rows by clicking on a [+][X] next to each row in the table.</p>
<p><strong>Big Idea:</strong> The "big idea" behind this is that the user would be able to specify any arbitrary (non-recursive) JSON structure and then also be able to edit the structure with a GUI-based interaction (this would be similar to the "XML Editor Grid View" in XML Spy).</p>
http://stackoverflow.com/questions/998832/web-based-json-editor-that-works-like-property-explorer-with-ajaxy-input-form/999124#9991241Answer by dreftymac for Web-based JSON editor that works like property explorer with AJAXy input formdreftymac2009-06-16T00:31:02Z2009-11-28T23:53:32Z<p><strong>Update:</strong> In an effort to answer my own question, here is what I've been able to uncover so far. If anyone else out there has something, I'd still be interested to find out more.</p>
<ul>
<li><a href="http://www.csscripting.com/wiki/index.php?title=Freja" rel="nofollow">http://www.csscripting.com/wiki/index.php?title=Freja</a> ; based on XML instead of JSON</li>
<li><a href="http://robla.net/2005/jsonwidget/" rel="nofollow">http://robla.net/2005/jsonwidget/</a> ; based on JSON, someone's development project</li>
<li><a href="http://www.thomasfrank.se/json%5Feditor.html" rel="nofollow">http://www.thomasfrank.se/json_editor.html</a></li>
<li><a href="http://www.aspdatabase.net/AjaxEdit/readme.html" rel="nofollow">http://www.aspdatabase.net/AjaxEdit/readme.html</a></li>
<li><a href="http://www.linb.net/JSONEditor/index.html" rel="nofollow">http://www.linb.net/JSONEditor/index.html</a></li>
<li><a href="http://www.midorijs.com/Passing-JavaScript-Objects-to-PHP.html" rel="nofollow">http://www.midorijs.com/Passing-JavaScript-Objects-to-PHP.html</a></li>
<li><a href="http://github.com/iterationlabs/jsoneditor/tree/master" rel="nofollow">http://github.com/iterationlabs/jsoneditor/tree/master</a></li>
</ul>
http://stackoverflow.com/questions/1767384/ls-command-how-can-i-get-a-recursive-full-path-listing-one-line-per-file1ls command: how can I get a recursive full-path listing, one line per file?dreftymac2009-11-19T23:39:07Z2009-11-23T23:52:14Z
<p>How can I get ls to spit out a flat list of recursive one-per-line paths?</p>
<p>For example, I just want a flat listing of files with their full paths:</p>
<pre><code>/home/dreftymac/.
/home/dreftymac/foo.txt
/home/dreftymac/bar.txt
/home/dreftymac/stackoverflow
/home/dreftymac/stackoverflow/alpha.txt
/home/dreftymac/stackoverflow/bravo.txt
/home/dreftymac/stackoverflow/charlie.txt
</code></pre>
<p><code>ls -a1</code> almost does what I need, but I do not want path fragments, I want full paths.</p>
<p>Anyone?</p>
http://stackoverflow.com/questions/1785422/how-do-you-put-html-or-xml-into-a-yaml/1786044#17860441Answer by dreftymac for How do you put html or xml into a yaml?dreftymac2009-11-23T21:19:43Z2009-11-23T21:31:35Z<p><strong>Example</strong></p>
<p>Here is a sample record from a YAML-based snippet management system I created years ago:</p>
<pre><code>- caption: fieldset msie5
mnemonic: fieldset
domain: html
desc: fieldset and legend tag
alias: <@blank@>
href_doc: <@blank@>
keywords: <@blank@>
body: |
<fieldset>
<legend>legend</legend>
</fieldset>
</code></pre>
<p>You can repeat that or something like it for all the snippets you want to manage. This particular system stores the snippets as an array of name-value pairs (Perl people would call this an AoH). If you do not need all this extra information, you can easily get by just using two name-value pairs (e.g., caption + body). </p>
<p>The nice thing about this system is YAML indentation prevents "delimiter collision" problems. You do not have to escape the characters inside your snippet body.</p>
<p><strong>Text Editor or IDE alternative</strong></p>
<p>Note: Increasingly, text editors and IDEs support flexible snippet management options natively, so you may want to consider using the format of a text editor rather than re-inventing your own. If you do re-invent your own, you can write a script to translate your YAML format into the native format of a text editor if you later decide you want to do that.</p>
<p><strong>See also:</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Snippet%5F%28programming%29" rel="nofollow">http://en.wikipedia.org/wiki/Snippet%5F%28programming%29</a></p>
<p><a href="http://en.wikipedia.org/wiki/Delimiter#Delimiter%5Fcollision" rel="nofollow">http://en.wikipedia.org/wiki/Delimiter#Delimiter%5Fcollision</a></p>
<p><a href="http://perldoc.perl.org/perldsc.html#ARRAYS-OF-HASHES" rel="nofollow">http://perldoc.perl.org/perldsc.html#ARRAYS-OF-HASHES</a> (Perl AoH)</p>
http://stackoverflow.com/questions/1638347/does-ruby-have-an-addon-similar-to-perl-6-grammars3Does Ruby have an addon similar to Perl 6 grammars?dreftymac2009-10-28T16:22:11Z2009-11-23T12:22:34Z
<p>Perl has been one of my go-to programming language tools for years and years. Perl 6 grammars looks like a great language feature. I'd like to know if someone has started something like this for Ruby. </p>
http://stackoverflow.com/questions/1745925/is-there-javascript-prefer-jquery-library-that-automatically-maps-form-elements1Is there javascript (prefer jquery) library that automatically maps form elements to JSON?dreftymac2009-11-17T00:51:12Z2009-11-17T01:03:35Z
<p><strong>Background:</strong> This is something I have been looking for since before even JSON was known as JSON. </p>
<p>Suppose you have the following javascript variable inside your code:</p>
<pre><code>jsonroot =
{
'fname':'valued'
,'lname':'customer'
,faves:['berry','chocolate','mint']
,actors:[
{'fname':'brad','lname':'pitt'}
,{'fname':'mike','lname':'hammer'}
]
};
</code></pre>
<p>You can easily see how this maps to JSON, it is a 1:1 correspondence. </p>
<p><strong>Question:</strong> Is there a library that can take this 1:1 correspondence and carry it over to HTML Form elements? For example, I would like to do something like this inside a FORM element:</p>
<pre><code><input type="text" mapping="jsonroot['fname']" id="fname"></input>
<input type="text" mapping="jsonroot['lname']" id="lname"></input>
<legend>
<fieldset>Favorite Flavors</fieldset>
<input type="text" mapping="jsonroot['faves'][0]" id="fave_0"></input>
<input type="text" mapping="jsonroot['faves'][1]" id="fave_1"></input>
<input type="text" mapping="jsonroot['faves'][2]" id="fave_2"></input>
</legend>
<legend>
<fieldset>Favorite Actors</fieldset>
<input type="text" mapping="jsonroot['actors'][0]['fname']" id="fave_0_fname"></input>
<input type="text" mapping="jsonroot['actors'][0]['lname']" id="fave_0_lname"></input>
<input type="text" mapping="jsonroot['actors'][1]['fname']" id="fave_1_fname"></input>
<input type="text" mapping="jsonroot['actors'][1]['lname']" id="fave_1_lname"></input>
</legend>
</code></pre>
<p><strong>Rationale:</strong> Sometimes, instead of submitting form variables via POST or GET, I want to pass them into a javascript variable, then do something with the variable, and then send it somewhere.</p>
<p>Writing the HTML Form <-> JSON translation is tedious. I can't be the only person out there who has wanted to to this, so is there a library that handles this automatically?</p>
http://stackoverflow.com/questions/428364/pure-javascript-yaml-library-that-supports-both-dump-and-load5Pure Javascript YAML library that supports both dump and load?dreftymac2009-01-09T14:57:54Z2009-11-16T22:54:59Z
<p>Does such a thing exist for <a href="http://en.wikipedia.org/wiki/Yaml" rel="nofollow">YAML</a> (aka <a href="http://yaml.org" rel="nofollow">YAML</a>)?</p>
<p>If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of implementations that <strong>dump</strong> from Javascript to YAML output only, but having trouble finding an implementation that supports both dump and load.</p>
<p>Is anyone working on such a thing ... or is the demand simply far too low for this.</p>
http://stackoverflow.com/questions/1744406/what-is-the-name-of-the-convention-used-in-this-syntax-diagram2what is the name of the convention used in this syntax diagramdreftymac2009-11-16T19:44:07Z2009-11-16T19:56:00Z
<p>I found this diagram in the JSON specification:</p>
<p><img src="http://www.json.org/array.gif" alt="alt text"></p>
<p>Where does this diagramming convention come from? Is it just some random convention cooked up by D.C.?</p>
http://stackoverflow.com/questions/509427/how-many-ways-can-i-get-bash-alias-completion-on-a-partial-substring0How many ways can I get Bash alias completion on a partial substring?dreftymac2009-02-03T23:18:30Z2009-11-15T20:58:36Z
<p><strong>Question:</strong> I have a question that is <a href="http://stackoverflow.com/questions/342969">apparently not answered by this already-asked Bash completion question</a> on Stack Overflow. The question is, how to get Bash alias completion (for any alias) on a partial substring.</p>
<p><strong>Example:</strong>
For example, assume I have the following aliases:</p>
<pre><code>open.alicehome="cd /usr/home/alice"
open.bakerhome="cd /usr/home/baker"
open.charliehome="cd /usr/home/charlie"
gohomenow="shutdown -now"
</code></pre>
<p>I would like to lazily just type "baker{{TAB}}" to invoke the second alias.</p>
<p>I would like to lazily just type "home{{TAB}}" to get a list of all of the above aliases that I can then choose from with the keyboard (optimal) or choose by typing an unambiguous substring that distinguishes among the three options (less than optimal).</p>
<p>.. OR ..</p>
<p>I would like to lazily just type "home" and then repeatedly press {{TAB}} until the specific alias I want shows up, then press {{ENTER}} to execute it.</p>
<p><strong>Feel free to be creative:</strong>
If you have a way to do this, even if it requires resorting to extreme guru hackery, please feel free to share it and feel free to explain your guru hackery to the level of a five-year-old who will have to try to implement your idea for himself.</p>
<p>Links to existing web-pages or RTFMs are welcome.</p>
http://stackoverflow.com/questions/1725906/java-libraries-specifically-for-use-with-windows1java libraries specifically for use with windowsdreftymac2009-11-12T22:38:08Z2009-11-14T20:26:44Z
<p><strong>Background:</strong> A long time I remember reading about a Java library that was created specifically to handle routine operations on Windows operating systems. It had, for example, native routines for handling things like "shortcut" creation, and all those cute little quirks of windows filepaths. </p>
<p>It was touted as being the "missing library" for doing all those windows tasks that were harder than they should be using the standard Java APIs.</p>
<p><strong>Question:</strong> That's about all I remember about it, does anyone have a link to help refresh my vague recall?</p>
http://stackoverflow.com/questions/1638384/who-invented-zen-coding-and-is-there-a-published-specification-somewhere3Who invented zen coding and is there a published specification somewhere ? dreftymac2009-10-28T16:26:45Z2009-11-13T11:33:23Z
<p><strong>Background:</strong> </p>
<p>"Zen coding" is apparently the name of a style of text-entry in an IDE or editor whereby the user can type small abbreviations that are expanded into HTML. This is not necessarily a new idea, just an elaboration on an old one that many editors support.</p>
<p>The nice thing about it is that the manual entry takes on an aspect of interactive programming. To understand what I mean, watch this screencast:</p>
<p><a href="http://pepelsbey.net/pro/2008/08/zen-html/" rel="nofollow">http://pepelsbey.net/pro/2008/08/zen-html/</a></p>
<p><strong>Questions:</strong> </p>
<ul>
<li>Who invented this?</li>
<li>Are there multiple "standards" or "specifications" out there for someone who might want to implement this in their own editor/IDE/product?</li>
<li>Is this convention similar to the convention for "Wiki markup" where there are multiple variants all over the place and some undocumented?</li>
</ul>
http://stackoverflow.com/questions/351683/client-side-table-rendering-with-extremely-large-data-tables1Client-side table rendering with extremely large data tablesdreftymac2008-12-09T03:20:58Z2009-11-12T22:00:02Z
<p><em>Problem:</em> Customer X has requested that pages using XML DataBinding and Databound tables in MSIE be re-factored to work cross-browser.</p>
<p><strong>Question:</strong> What is the best-practice way to mimic the <a href="http://www.globalguideline.com/xml/XML_Data_Island.php" rel="nofollow">MSIE DataBinding</a> feature of MSIE cross-browser (i.e., in both MSIE and Firefox).</p>
<p><em>Features:</em> Customer X already gets the following using <a href="http://www.globalguideline.com/xml/XML_Data_Island.php" rel="nofollow">MSIE DataBinding</a> in a single web page ...</p>
<ul>
<li>a <a href="http://simile.mit.edu/timeline/examples/jfk/jfk.xml" rel="nofollow">single-url xml dump</a> in its entirety as the datasource (assume no server-side paging and no cross-domain problems)</li>
<li>web page markup that does nothing more than specify the datasource URL (just like MSIE)</li>
<li>the ability to load very large tables (e.g. 3k records minimum) without triggering javascript "out of memory" or "latency" errors on the client side</li>
<li>the ability to carry this out in a normal HTML table element with the possibility of row-striping (optional but not required since MSIE does not do this already)</li>
</ul>
<p><em>Background:</em> You probably have to be familiar with <a href="http://www.globalguideline.com/xml/XML_Data_Island.php" rel="nofollow">MSIE DataBinding</a> to get in synch with this particular question. This feature of MSIE allows you to point to a single XML data source (of no particular schema, just as long as its in a standard "table") and the browser renders the data visually and asyncrhonously. </p>
<p>The benefit of this is that the page renders quickly, because the page load does not wait for the entirety of the table to be filled in before showing the user some output. The table rows get filled in progressively.</p>
<p><em>False Starts:</em> The following have already been attempted and rejected by Customer X.</p>
<ul>
<li>JQuery: works great for loading the data, and clean-maintainable HTML markup, but large data sources cause latency and memory problems when rendering client-side</li>
<li>XSLT: this scares Customer X because it involves a lot more than just specifying a "datasource" attribute on a <table> tag, and thus appears to be less maintainable in his opinion</li>
<li>Server-side data pagination: this is not an option because Customer X religiously wants to avoid segmenting the XML data or doing any "data munging" on the server side.</li>
</ul>
http://stackoverflow.com/questions/562115/press-alt-numeric-in-bash-and-you-get-arg-numeric-what-is-that2Press alt + numeric in bash and you get (arg [numeric]) what is that?dreftymac2009-02-18T17:44:25Z2009-11-12T12:26:15Z
<p>This is one of those questions where it is easier to ask someone else instead of spending thirty minutes trying to "guess" for the correct place in the documentation or search engine terms:</p>
<pre><code>Press alt + numeric in bash and you get (arg [numeric]) what is that?
</code></pre>
http://stackoverflow.com/questions/432487/windows-xp-vs-vista-ntfs-junction-points11Windows XP vs Vista: NTFS Junction pointsdreftymac2009-01-11T07:04:29Z2009-11-05T15:28:08Z
<p><strong>Problem:</strong> I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NTFS Junction points an official part of Vista, but apparently they also intentionally <em>broke</em> them. Now my WinXP-created junction points on portable USB drive don't work when I plug that drive into a Vista box.</p>
<p><strong>Questions:</strong> Does anyone have a script that will force NTFS junctions created on XP to work correctly within BOTH Vista and XP? Is there documentation or a spec that explains what MSFT did to cause this breakage?</p>
<p><strong>Update:</strong> Thanks, Ulrich and Scott, for your follow-up questions. The tool I used to create the junctions was <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx" rel="nofollow">Systinternals Junction v1.05</a> although I can't say for sure that all of them were created with that specific version of the now-MSFT-hosted app. </p>
<p>As far as how the junctions are used ... assuming an external "Q Drive" device: </p>
<ul>
<li><p>1) Some items on the Q Drive are junctions that point from one place on the Q Drive to another place on the Q Drive (e.g., cases where I needed to have a folder in more than one place, and a traditional .lnk style shortcut would not work)</p></li>
<li><p>2) Some items are junctions that point from the C Drive directly to locations on the Q Drive. These items obviously do not work when the Q Drive is not actually connected box (XP or Vista), but when connected on Vista, the junctions do not work as on XP.</p></li>
</ul>
http://stackoverflow.com/questions/742764/php-syntax-for-dereferencing-function-result1PHP syntax for dereferencing function resultdreftymac2009-04-13T01:12:42Z2009-11-01T02:29:30Z
<p>In every other programming language I use on a regular basis, it is simple to operate on the return value of a function without declaring a new variable to hold the function result.</p>
<p>In PHP, however, this does not appear to be so simple:</p>
<pre><code><?php
function foobar(){
return preg_split('/\s+/', 'zero one two three four five');
}
// can php say "zero"?
/// print( foobar()[0] ); /// <-- nope
/// print( &foobar()[0] ); /// <-- nope
/// print( &foobar()->[0] ); /// <-- nope
/// print( "${foobar()}[0]" ); /// <-- nope
?>
</code></pre>
<p>Can anyone suggest how to do this in PHP?</p>
http://stackoverflow.com/questions/1648003/javascript-quick-script-to-line-up-pipe-delimited-text-or-any-character-delimit0Javascript: quick script to line up pipe-delimited text (or any-character-delimited text)dreftymac2009-10-30T04:28:17Z2009-10-31T08:46:33Z
<p><strong>Background:</strong> I've written this before but I don't like the approach. The reason is because Javascript does not have "sprintf" and that is something I use heavily if the language supports it.</p>
<p><strong>Question:</strong> How would you use javascript to go from BEFORE to AFTER? If anyone has a solution with very small number of lines of code, or something from a javascript string library, that would be informative. TIA. </p>
<p>BEFORE:</p>
<pre><code>red| lightblue| green
cherry| ice| mint
round| cubic| flowery
</code></pre>
<p>AFTER:</p>
<pre><code>red | lightblue | green
cherry | ice | mint
round | cubic | flowery
</code></pre>
<p><strong>Disclaimer:</strong> This is not homework or any such thing, just looking for new ideas. Also, this is not browser-based javascript. This is not a web-development question, but a javascript programming question.</p>
http://stackoverflow.com/questions/1647339/apache-config-mime-types-xlsx-files-are-being-interpreted-as-zip-files-on-downlo0Apache Config Mime Types: xlsx files are being interpreted as zip files on download, why?dreftymac2009-10-30T00:21:28Z2009-10-30T00:23:52Z
<p><strong>Background:</strong> For some reason, whenever a user tries to open an xslx (excel 2007) file from our intranet using MSIE, the file download dialog interprets it as a "zip" file. </p>
<p>Admittedly, xslx files really <em>are</em> zip files, but we don't want that behavior. Just open in Excel, please.</p>
<p><strong>Question:</strong> </p>
<p>Firefox, OTOH, opens the files normally. Is it possible that the fault is my apache configs? or is this a client-browser-only issue?</p>
http://stackoverflow.com/questions/754193/editor-with-textmate-snippets-support/1638453#16384531Answer by dreftymac for Editor with textmate snippets support ?dreftymac2009-10-28T16:36:29Z2009-10-28T16:36:29Z<p>Komodo Edit and Komodo IDE both support this, although TextMate is arguably a bit more refined and polished in this area. Komodo Edit is free, however, and compares very favorably against the likes of InType and E for Windows.</p>
<p><a href="http://www.openkomodo.com/" rel="nofollow">http://www.openkomodo.com/</a></p>
http://stackoverflow.com/questions/1632025/state-of-mind-work/1632046#16320461Answer by dreftymac for State of mind @ workdreftymac2009-10-27T16:29:41Z2009-10-27T16:29:41Z<p>You may want to watch the following "Google Tech Talk" entitled "<strong>No Time to Think</strong>". The presenter of this talk discusses one aspect of this very question you pose.</p>
<p><a href="http://www.youtube.com/watch?v=KHGcvj3JiGA" rel="nofollow">http://www.youtube.com/watch?v=KHGcvj3JiGA</a></p>
<p>If you are in a hurry, the presenter basically discusses how people in "technology circles" (which increasingly describes everyone) have two major modalities of thinking, and the "problem-solving" modality occurs in the space where humans take time to reflect and digest what they already know.</p>
http://stackoverflow.com/questions/1590371/apache-web-server-config-what-is-redirecting-me-and-how-can-i-change-it0Apache web-server config, what is redirecting me and how can I change itdreftymac2009-10-19T18:41:44Z2009-10-19T22:36:03Z
<p><strong>Background:</strong> I inherited a web server that serves up files from /var/www/html. The server used to serve up files from the following locations:</p>
<pre><code>/var/www/html/alpha/index.php
/var/www/html/bravo/index.php
/var/www/html/charlie/index.php
</code></pre>
<p>You could get to these sites from the web using:</p>
<pre><code>http://apples.mysite.edu/alpha
http://apples.mysite.edu/bravo
http://apples.mysite.edu/charlie
http://apples.mysite.edu/drupal <-- this one was added later by someone else
</code></pre>
<p><strong>Problem:</strong> Someone has gone in and added a drupal site directory, now all the other sites are inaccessible (404 not found when I check using HTTPFox) and are being re-directed to the drupal site. That means my alpha,bravo,charlie websites are no longer reachable.</p>
<p><strong>Question:</strong> How many different ways could someone have messed with the server config to cause this result? I need to check all the different ways so I can 1) fix it, and 2) know what to watch for should someone try this again.</p>
http://stackoverflow.com/questions/1562620/is-there-any-such-thing-as-smtp-to-ftp-gateway2is there any such thing as SMTP to FTP gateway?dreftymac2009-10-13T20:04:39Z2009-10-13T20:15:08Z
<p><strong>PROBLEM:</strong> I need a way to automatically convert CSV e-mail attachments into HTML using python, perl, ruby, or something else. I routinely get these and it is too tedious to do these by hand.</p>
<p><strong>QUESTION:</strong> Is there a service or trick one can use to forward e-mail so that the attachments show up on a file-server, ready for scripting and conversion out of CSV and into HTML? Has anyone done this using cron, FTP or any other well-known system?</p>
http://stackoverflow.com/questions/863908/programmatic-automated-way-to-determine-is-my-site-reachableComment by dreftymac on programmatic automated way to determine: is my site reachable?dreftymac2009-12-18T03:30:45Z2009-12-18T03:30:45Zsee also: <a href="http://serverfault.com/questions/95592/connect-to-my-website-from-multiple-external-remote-sites" rel="nofollow" title="connect to my website from multiple external remote sites">serverfault.com/questions/95592/…</a>http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-time/1923263#1923263Comment by dreftymac on What name should I give my function? And who can I ask next time?dreftymac2009-12-17T18:07:22Z2009-12-17T18:07:22ZThis sounds good. The only modification I could think would be to use foo001 foo002 ... foo00N so that the foos are distinguishable placeholders that can be globally searched and replaced.http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-timeComment by dreftymac on What name should I give my function? And who can I ask next time?dreftymac2009-12-17T14:44:20Z2009-12-17T14:44:20ZI think we agree on the "ask for approval" aspect. Part of experience and professionalism derives from the ability to exercise one's discretion independently. Nevertheless, someone may decide 1 time out of every 1000 to seek another opinion. I don't think that reflects poorly on the individual or imperils their productivity. Anyway, SO is a great source of discussion, which was another motivator for this question. http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-time/1922115#1922115Comment by dreftymac on What name should I give my function? And who can I ask next time?dreftymac2009-12-17T14:36:35Z2009-12-17T14:36:35ZYes, but I chose a very simple example to try to get at the core of a bigger issue. The example is not a candidate for "crowdsourcing", but one can easily show examples that <i>are</i> candidates for mutual input.http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-time/1922159#1922159Comment by dreftymac on What name should I give my function? And who can I ask next time?dreftymac2009-12-17T14:32:43Z2009-12-17T14:32:43ZThat is a nice answer from the perspective of daily practicalities. Thanks.http://stackoverflow.com/questions/1922036/what-name-should-i-give-my-function-and-who-can-i-ask-next-timeComment by dreftymac on What name should I give my function? And who can I ask next time?dreftymac2009-12-17T14:27:35Z2009-12-17T14:27:35ZThe internet has also caused people's work to be readily seen by more eyeballs (even the whole world), which means decisions made without feedback have less "social proof" behind them. The question uses a simplistic example to illustrate the point, but this is not a trivial question at all.http://stackoverflow.com/questions/1862899/is-there-a-site-that-does-nothing-but-spit-out-whatever-post-form-parameters-wereComment by dreftymac on Is there a site that does nothing but spit out whatever POST form parameters were sent to it?dreftymac2009-12-07T21:11:47Z2009-12-07T21:11:47Zjust wondering what kind of general-purpose utilities are out there in case I my own development box is down for some reason or another.http://stackoverflow.com/questions/643276/at-what-point-do-you-need-to-be-a-programmer-to-work-with-drupalComment by dreftymac on At what point do you need to be a programmer to work with Drupal?dreftymac2009-12-07T17:02:48Z2009-12-07T17:02:48Z<b>*Please see also:*</b> <a href="http://stackoverflow.com/questions/1715811" rel="nofollow">stackoverflow.com/questions/1715811</a> (not the same question, but you might be interested)http://stackoverflow.com/questions/447878/what-are-some-of-drupals-shortcomingsComment by dreftymac on What are some of Drupal's shortcomings?dreftymac2009-12-07T16:13:55Z2009-12-07T16:13:55Z<b>*See Also:*</b> <a href="http://stackoverflow.com/questions/1715811" rel="nofollow">stackoverflow.com/questions/1715811</a>http://stackoverflow.com/questions/1850297/when-should-i-use-apacheapache-or-nobodynobody-on-my-web-server-files/1850323#1850323Comment by dreftymac on when should I use "apache:apache" or "nobody:nobody" on my web server files?dreftymac2009-12-05T17:19:09Z2009-12-05T17:19:09ZUnless, that is, I do.http://stackoverflow.com/questions/1850297/when-should-i-use-apacheapache-or-nobodynobody-on-my-web-server-files/1850323#1850323Comment by dreftymac on when should I use "apache:apache" or "nobody:nobody" on my web server files?dreftymac2009-12-05T17:15:12Z2009-12-05T17:15:12ZAlright I won't.http://stackoverflow.com/questions/1850297/when-should-i-use-apacheapache-or-nobodynobody-on-my-web-server-files/1850323#1850323Comment by dreftymac on when should I use "apache:apache" or "nobody:nobody" on my web server files?dreftymac2009-12-04T23:25:37Z2009-12-04T23:25:37ZThanks for the reply. About this being the wrong site, I usually post here and over at serverfault, because it seems there are much fewer regular users over there.http://stackoverflow.com/questions/355796/how-do-you-explain-oo-to-new-programmersComment by dreftymac on How do you explain OO to new programmers?dreftymac2009-12-04T18:31:04Z2009-12-04T18:31:04Z<b>Please see also:</b> "Jargon-free comparison OOP vs Procedural":
<a href="http://stackoverflow.com/questions/1530868" rel="nofollow">stackoverflow.com/questions/1530868</a>
http://stackoverflow.com/questions/1557691/good-training-sources-for-oop-php-anyoneComment by dreftymac on Good Training Sources for OOP PHP, Anyone ?dreftymac2009-12-04T18:27:43Z2009-12-04T18:27:43Z<b>Please see also:</b> "Jargon-free comparison OOP vs Procedural":
<a href="http://stackoverflow.com/questions/1530868" rel="nofollow">stackoverflow.com/questions/1530868</a>http://stackoverflow.com/questions/478773/how-is-oop-and-design-patterns-relatedComment by dreftymac on How is OOP and Design Patterns related?dreftymac2009-12-04T18:27:08Z2009-12-04T18:27:08Z<b>Please see also:</b> "Jargon-free comparison OOP vs Procedural":
<a href="http://stackoverflow.com/questions/1530868" rel="nofollow">stackoverflow.com/questions/1530868</a>