User Athena - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:41:00Z http://stackoverflow.com/feeds/user/17846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/242258#242258 3 Answer by Athena for Worst "muscle memory" keyboard shortcut? Athena 2008-10-28T04:28:05Z 2009-08-12T18:21:24Z <p><kbd>CTRL</kbd>+<kbd>W</kbd></p> <p>Deletes one word on the command line and in Firefox on OSX; closes the tab in Firefox on Windows and Linux.</p> <p>I usually use this shortcut when I'm typing in a textarea, and decide to edit/erase the last few words I just typed. Which means that I go:</p> <p>type type typetypetype type type ^W^W^W-- and AGH promptly lose three tabs of work. </p> http://stackoverflow.com/questions/404729/how-can-i-change-firefoxs-proxy-settings-from-an-external-program/406266#406266 1 Answer by Athena for How can I change Firefox's proxy settings from an external program? Athena 2009-01-02T08:05:33Z 2009-01-02T08:05:33Z <p>From what I could see from the documentation, Charles has a matching Firefox extension which it installs/uses. That may be how it can reload the proxy information on the fly. </p> <p>Proxy information is stored in your profile's prefs.js, but that can't be reloaded on the fly. Firefox reads from it on startup and writes to it when it shuts down, and does not load from it in between. Also, if Firefox is running when you edit prefs.js, your changes will be overwritten.</p> <p>I thought you might be able to do something with a PAC file, but after digging around a bit, I've found that it doesn't seem to be reloaded on the fly either. You'd have to restart to reload any modifications to the settings.</p> http://stackoverflow.com/questions/406230/regular-expression-to-match-string-not-containing-a-word/406243#406243 1 Answer by Athena for Regular expression to match string not containing a word? Athena 2009-01-02T07:41:22Z 2009-01-02T07:41:22Z <p><em>If</em> you're just using it for grep, you can use <code>grep -v hede</code> to get all lines which do not contain hede.</p> <p>ETA Oh, rereading the question, <code>grep -v</code> is probably what you meant by "tools options".</p> http://stackoverflow.com/questions/406226/documentation-for-nsstring-sizewithfontforwidthlinebreakmode-method-in-the-ip/406231#406231 2 Answer by Athena for Documentation for NSString sizeWithFont:forWidth:lineBreakMode: method (in the iPhone SDK)? Athena 2009-01-02T07:32:28Z 2009-01-02T07:32:28Z <p>In XCode, look for <code>sizeWithFont:forWidth:lineBreakMode:</code>. Make sure you have the iPhone docset selected/available. </p> <p>It's also <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/NSString_UIKit_Additions/Reference/Reference.html#//apple_ref/occ/instm/NSString/sizeWithFont:forWidth:lineBreakMode:" rel="nofollow">here</a>, if you're logged into your developer account.</p> http://stackoverflow.com/questions/398110/how-to-modify-page-url-in-google-analytics/398548#398548 4 Answer by Athena for How to modify page URL in Google Analytics Athena 2008-12-29T20:17:12Z 2008-12-29T20:17:12Z <p>Two possibilities come to mind: </p> <ol> <li><p>it can take a while, up to about 24 hours, for visits to be reflected in the Analytics statistics. How long ago did you make your change? </p></li> <li><p>try beginning the pathname with a "/", so </p> <pre><code>pageTracker._trackPageview('/cake/ilikecake'); </code></pre> <p>and then wait a bit, as per the first item.</p></li> </ol> http://stackoverflow.com/questions/388646/debugging-javascript-in-safari-for-windows/388674#388674 1 Answer by Athena for Debugging javascript in Safari for Windows Athena 2008-12-23T11:35:56Z 2008-12-23T11:35:56Z <p>Have you tried Firebug Lite? <a href="http://getfirebug.com/lite.html" rel="nofollow">http://getfirebug.com/lite.html</a></p> http://stackoverflow.com/questions/388436/jquery-ajax-return-value/388450#388450 4 Answer by Athena for JQuery Ajax Return value Athena 2008-12-23T09:04:14Z 2008-12-23T09:04:14Z <p>The <code>success</code> function takes a parameter, which contains the fetched data. So in your example:</p> <pre><code>$(document).ready( function(){ $.ajax({ type:"GET", url:"file.php", data:id, success:function(txt){ $.prompt( txt,{ opacity: 0.2 }); }, // ... more ... } }); </code></pre> <p>More examples in the <a href="http://docs.jquery.com/Ajax/jQuery.ajax#code" rel="nofollow">Jquery docs</a></p> http://stackoverflow.com/questions/388365/how-do-i-post-lf-with-curl-command-line-tool/388373#388373 4 Answer by Athena for How do I POST LF with curl command line tool? Athena 2008-12-23T07:44:15Z 2008-12-23T07:44:15Z <p>Try using <code>--data-binary</code> instead of <code>-d(ata-ascii)</code>.</p> <p>From the manual:</p> <blockquote> <p>--data-binary (HTTP) This posts data in a similar manner as --data-ascii does, although when using this option the entire context of the posted data is kept as-is. </p> <p>If you want to post a binary file without the strip-newlines feature of the --data-ascii option, this is for you. If this option is used several times, the ones following the first will append data.</p> </blockquote> <p>ETA: oops, I should read the question more closely. You're using -F, not -d. But <code>--data-binary</code> may be still be worth a shot.</p> http://stackoverflow.com/questions/386828/why-isnt-my-favicon-working/386846#386846 1 Answer by Athena for Why isn't my favicon working? Athena 2008-12-22T17:40:36Z 2008-12-22T17:41:08Z <p>I see it on Firefox :-) </p> http://stackoverflow.com/questions/386612/greasemonkey-namespace-what-is-it-for/386675#386675 1 Answer by Athena for Greasemonkey namespace..what is it for? Athena 2008-12-22T16:28:56Z 2008-12-22T16:28:56Z <p>One place you can see the practical effect of namespaces is in storing preferences. Nampsaces are used to uniquely identify scripts for any script-specific stored preferences.</p> <p>For example, if you have a script like this:</p> <pre><code>// ==UserScript== // @name Script Name // @namespace http://example.com // @include * // ==/UserScript== GM_setValue("key", "value"); </code></pre> <p>That would be stored in your preferences (accessible in prefs.js, and about:config) like so:</p> <p>greasemonkey.scriptvals.<a href="http://example.com/Script" rel="nofollow">http://example.com/Script</a> Name.key</p> <p>Note the format: <em>greasemonkey.scriptvals</em> . <code>namespace</code> . <code>scriptname</code> . <code>key/variablename</code></p> http://stackoverflow.com/questions/366137/file-exists-php-code/366150#366150 3 Answer by Athena for File exists php code. Athena 2008-12-14T03:49:27Z 2008-12-14T03:49:27Z <p>Hmm, well that works in Linux (though I have to trim the filename <code>$buffer</code> first).</p> http://stackoverflow.com/questions/365947/are-there-any-open-source-iphone-games-around/366117#366117 2 Answer by Athena for Are there any Open-source iPhone games around? Athena 2008-12-14T03:08:58Z 2008-12-14T03:08:58Z <p><a href="http://www.sunsetlakesoftware.com/molecules" rel="nofollow" title="Molecules">Molecules</a> isn't a game, but it <em>is</em> open-source, and uses OpenGL ES. They also have a very nice blog entry which serves as <a href="http://www.sunsetlakesoftware.com/2008/08/05/lessons-molecules-opengl-es" rel="nofollow" title="blog entry">a lesson for OpenGL ES</a>.</p> http://stackoverflow.com/questions/365309/where-can-i-find-a-deliberately-insecure-open-source-web-application/365327#365327 0 Answer by Athena for Where can I find a deliberately insecure open source web application? Athena 2008-12-13T15:34:27Z 2008-12-13T15:34:27Z <p>I'm reminded of <a href="http://en.oreilly.com/oscon2008/public/schedule/detail/2949" rel="nofollow" title="this OSCON talk">this OSCON talk</a>, though it's probably too specific to be what you're looking for. </p> http://stackoverflow.com/questions/365028/a-little-help-with-dom-manip-and-greasemonkey/365186#365186 1 Answer by Athena for A little help with DOM manip and GreaseMonkey Athena 2008-12-13T13:00:09Z 2008-12-13T13:00:09Z <p>Here's a pure-DOM method of the above -- and for kicks, I played with the extraction of the username as well:</p> <pre><code>var menuNode = document.getElementById('tabMenu'); if (menuNode!=null) { // extract username from URL; matches /ev and /ev/favourites var username = document.location.pathname.split("/")[1]; // create the link var link = document.createElement('a'); link.setAttribute('href', 'http://search.twitter.com/search?q=to:'+username); link.setAttribute('id', 'replies_search_tab'); link.appendChild(document.createTextNode('@Replies Search')); // create the list element var li = document.createElement('li'); // add link to the proper location li.appendChild(link); menuNode.appendChild(li); } </code></pre> <p>This is equivalent to (based on the original code snippet):</p> <pre><code> &lt;ul id="tabMenu"&gt; &lt;li&gt; &lt;a href="/ev" id="updates_tab"&gt;Updates&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="/ev/favourites" id="favorites_tab"&gt;Favorites&lt;/a&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="http://search.twitter.com/search?q=to:ev" id="replies_search_tab"&gt;@Replies Search&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>If you want the added link to show up in a different location, you'll need to futz around with <code>insertBefore</code> a bit.</p> <p>PS. Took the liberty of ignoring the "section-links" class, as that's formatting for x following, y followers, z updates links.</p> http://stackoverflow.com/questions/356347/javascript-greasemonkey-avoiding-firefox-security-warning-when-submitting-a-form/358751#358751 2 Answer by Athena for JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure Page Athena 2008-12-11T09:16:04Z 2008-12-11T09:16:04Z <p>This may be possible by doing a GM_xmlhttpRequest. e.g.,</p> <pre><code>GM_xmlhttpRequest({ method: 'POST', url: 'http://your.insecure.site.here', onload: function(details) { // look in the JavaScript console GM_log(details.responseText); /* This function will be called when the page (url) has been loaded. Do whatever you need to do with the remote page here.*/ } }); </code></pre> <p>API/more info here: <a href="http://wiki.greasespot.net/GM_xmlhttpRequest" rel="nofollow">GM_xmlhttpRequest wiki</a></p> http://stackoverflow.com/questions/227984/importing-the-content-of-another-web-resource-using-jstl/228439#228439 0 Answer by Athena for Importing the content of another web resource using JSTL Athena 2008-10-23T03:31:08Z 2008-10-23T03:31:08Z <p>If it works from the same server, different app, makes it possible that there's a variable that's not being initialized somewhere, or some state which makes it throw an exception. Check the error logs for any stack traces that could point to the specific line of code that's causing the problem.</p> http://stackoverflow.com/questions/226514/declare-jsp-taglib-directives-in-web-xml/228430#228430 2 Answer by Athena for declare JSP taglib directives in web.xml Athena 2008-10-23T03:21:52Z 2008-10-23T03:27:21Z <p>The <code>taglib</code> element in web.xml serves a different purpose to the <code>taglib</code> directive which you have above.</p> <p>As David said, the <code>taglib</code> directive is required on each page.</p> <p>If you have many pages which use common taglibs, you can shortcut this by putting the taglib directives into an include file, and including this file each page. But no matter how you do it, the taglib directive has to be on the page somehow.</p> <p>That tag you need to include on each page looks like this:</p> <pre><code>&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; </code></pre> <p>If you have a custom taglib in a custom location, you can also specify a location relative to the webapp root:</p> <pre><code> &lt;%@ taglib prefix="ex" uri="/taglib.tld" %&gt; </code></pre> <p><a href="http://java.sun.com/products/jsp/syntax/1.2/syntaxref1211.html" rel="nofollow">Further reading on the taglib directive</a></p> <p>The <code>taglib</code> directive from web.xml maps tag uris to the physical location of your taglib. It is optional since JSP 2.0, as compliant containers will look in a set of standard locations to try to auto-discover the taglib: /WEB-INF and its subdirectories, /META-INF as well for JAR files.</p> <p>It looks like this, in web.xml:</p> <pre><code>&lt;taglib&gt; &lt;taglib-uri&gt; http://www.example.com/taglib &lt;/taglib-uri&gt; &lt;taglib-location&gt; /taglib.tld &lt;/taglib-location&gt; &lt;/taglib&gt; </code></pre> <p>And the taglib is referenced in the JSP page like this (the taglib directive on each page is unavoidable!):</p> <pre><code>&lt;%@ taglib prefix="ex" uri="http://www.example.com/taglib" %&gt; </code></pre> <p>This is equivalent to the second example I gave for the taglib directive above. The biggest difference is in how you point to the taglib location. </p> <p><a href="http://wiki.metawerx.net/wiki/Web.xml.TagLib" rel="nofollow">This page</a> contains a bit more information.</p> http://stackoverflow.com/questions/190644/how-should-i-configure-jetty-7-pre3-to-use-oracle-jdbc-source/190804#190804 0 Answer by Athena for How should I configure Jetty 7 pre3 to use oracle JDBC source? Athena 2008-10-10T10:50:18Z 2008-10-10T10:50:18Z <p>The problem is that addLifeCycle does not take a <code>Resource</code> object; it takes <code>LifeCycle</code> implementations such as <code>WebAppContext</code>s or <code>WebAppDeployer</code>s.</p> <p>Assuming you have a WebAppDeployer (or equivalent) set up in your jetty.xml, try this:</p> <pre><code>&lt;Array id="plusConfig" type="java.lang.String"&gt; &lt;Item&gt;org.mortbay.jetty.webapp.WebInfConfiguration&lt;/Item&gt; &lt;Item&gt;org.mortbay.jetty.plus.webapp.EnvConfiguration&lt;/Item&gt; &lt;Item&gt;org.mortbay.jetty.plus.webapp.Configuration&lt;/Item&gt; &lt;Item&gt;org.mortbay.jetty.webapp.JettyWebXmlConfiguration&lt;/Item&gt; &lt;Item&gt;org.mortbay.jetty.webapp.TagLibConfiguration&lt;/Item&gt; &lt;/Array&gt; &lt;Call name="addLifeCycle"&gt; &lt;Arg&gt; &lt;New class="org.mortbay.jetty.deployer.WebAppDeployer"&gt; .... &lt;Set name="ConfigurationClasses"&gt;&lt;Ref id="plusConfig"/&gt;&lt;/Set&gt; .... &lt;/New&gt; &lt;/Arg&gt; &lt;/Call&gt; &lt;New id="dev" class="org.mortbay.jetty.plus.naming.Resource"&gt; &lt;Arg&gt;jdbc/dev&lt;/Arg&gt; &lt;Arg&gt; &lt;New class="oracle.jdbc.pool.OracleConnectionPoolDataSource"&gt; &lt;Set name="User"&gt;username&lt;/Set&gt; &lt;Set name="URL"&gt;jdbc:oracle:thin:@10.201.201.64:1521:DEV&lt;/Set&gt; &lt;Set name="Password"&gt;password&lt;/Set&gt; &lt;/New&gt; &lt;/Arg&gt; &lt;/New&gt; </code></pre> <p>If you want the datasource only for a particular webapp, then do a similar configuration within a jetty-env.xml file for that webapp.</p> <p>Also, since you're using Jetty 7, you will need to load the (optional) <code>plus</code> libraries (if the exe isn't doing that for you already). You'll know they aren't being loaded, because you'll get a ClassNotFoundException on startup. </p> <p>Starting up Jetty on Linux, I would do it like so:</p> <pre><code>java -DOPTIONS=plus -jar start.jar </code></pre> <p>However, I am not familiar with Windows. Possibly</p> <pre><code>Jetty-Service.exe -DOPTIONS=plus </code></pre> <p>would work? If not, then look for something which would set the system property "OPTIONS" to "plus" when you run jetty.</p> http://stackoverflow.com/questions/184312/how-to-make-jetty-dynamically-load-static-pages/185675#185675 5 Answer by Athena for How to make Jetty dynamically load "static" pages. Athena 2008-10-09T02:13:56Z 2008-10-09T02:13:56Z <p>Jetty uses memory-mapped files to buffer static content, which causes the file-locking in Windows. Try setting useFileMappedBuffer for DefaultServlet to false.</p> <p><a href="http://docs.codehaus.org/display/JETTY/Files+locked+on+Windows" rel="nofollow">Files locked on Windows (from the Jetty wiki)</a> has instructions.</p> http://stackoverflow.com/questions/122254/accessing-constants-in-jsp-without-scriptlet/125161#125161 1 Answer by Athena for accessing constants in JSP (without scriptlet) Athena 2008-09-24T02:58:00Z 2008-09-29T02:11:57Z <p>It's not working in your example because the <code>ATTR_CURRENT_USER </code> constant is not visible to the JSTL tags, which expect properties to be exposed by getter functions. I haven't tried it, but the cleanest way to expose your constants appears to be the <a href="http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/index.html#useConstants" rel="nofollow" title="Unstandard tag library from Apache">unstandard tag library</a>.</p> <p>ETA: Old link I gave didn't work. New links can be found in this answer: <a href="http://stackoverflow.com/questions/127328/java-constants-in-jsp">http://stackoverflow.com/questions/127328/java-constants-in-jsp</a></p> <p>Code snippets to clarify the behavior you're seeing: Sample class:</p> <pre><code>package com.example; public class Constants { // attribute, visible to the scriptlet public static final String ATTR_CURRENT_USER = "current.user"; // getter function; // name modified to make it clear, later on, // that I am calling this function // and not accessing the constant public String getATTR_CURRENT_USER_FUNC() { return ATTR_CURRENT_USER; } } </code></pre> <p>Snippet of the JSP page, showing sample usage: </p> <pre><code>&lt;%-- Set up the current user --%&gt; &lt;% session.setAttribute("current.user", "Me"); %&gt; &lt;%-- scriptlets --%&gt; &lt;%@ page import="com.example.Constants" %&gt; &lt;h1&gt;Using scriptlets&lt;/h1&gt; &lt;h3&gt;Constants.ATTR_CURRENT_USER&lt;/h3&gt; &lt;%=Constants.ATTR_CURRENT_USER%&gt; &lt;br /&gt; &lt;h3&gt;Session[Constants.ATTR_CURRENT_USER]&lt;/h3&gt; &lt;%=session.getAttribute(Constants.ATTR_CURRENT_USER)%&gt; &lt;%-- JSTL --%&gt; &lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %&gt; &lt;jsp:useBean id="cons" class="com.example.Constants" scope="session"/&gt; &lt;h1&gt;Using JSTL&lt;/h1&gt; &lt;h3&gt;Constants.getATTR_CURRENT_USER_FUNC()&lt;/h3&gt; &lt;c:out value="${cons.ATTR_CURRENT_USER_FUNC}"/&gt; &lt;h3&gt;Session[Constants.getATTR_CURRENT_USER_FUNC()]&lt;/h3&gt; &lt;c:out value="${sessionScope[cons.ATTR_CURRENT_USER_FUNC]}"/&gt; &lt;h3&gt;Constants.ATTR_CURRENT_USER&lt;/h3&gt; &lt;c:out value="${sessionScope[Constants.ATTR_CURRENT_USER]}"/&gt; &lt;%-- Commented out, because otherwise will error: The class 'com.example.Constants' does not have the property 'ATTR_CURRENT_USER'. &lt;h3&gt;cons.ATTR_CURRENT_USER&lt;/h3&gt; &lt;c:out value="${sessionScope[cons.ATTR_CURRENT_USER]}"/&gt; --%&gt; &lt;hr /&gt; </code></pre> <p>This outputs: </p> <h1>Using scriptlets</h1> <h3>Constants.ATTR_CURRENT_USER</h3> <p>current.user <br /></p> <h3>Session[Constants.ATTR_CURRENT_USER]</h3> <p>Me <hr /></p> <h1>Using JSTL</h1> <h3>Constants.getATTR_CURRENT_USER_FUNC()</h3> <p>current.user</p> <h3>Session[Constants.getATTR_CURRENT_USER_FUNC()]</h3> <p>Me</p> <h3>Constants.ATTR_CURRENT_USER</h3> <p><br /><hr /></p> http://stackoverflow.com/questions/128954/accessing-created-dom-elements/129199#129199 0 Answer by Athena for Accessing created DOM elements Athena 2008-09-24T19:08:57Z 2008-09-24T19:22:21Z <pre><code>var input1 = $( 'input[name="lp_name_1"]').clone(true); </code></pre> <p>should be</p> <pre><code>var input1 = $( 'input[@name="lp_name_1"]').clone(true); </code></pre> <p>Try that first, check that input1 actually returns something (maybe a debug statement of a sort), to make sure that's not the problem.</p> <p>Edit: just been told that this is only true for older versions of JQuery, so please disregard my advice.</p> http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113667#113667 16 Answer by Athena for Which CSS tag creates a box like this with title? Athena 2008-09-22T07:42:46Z 2008-09-22T07:42:46Z <p>I believe you are looking for the <code>fieldset</code> HTML tag, which you can then style with CSS. E.g.,</p> <pre><code>&lt;fieldset style="border: 1px black solid"&gt; &lt;legend style="border: 1px black solid; margin-left: 1em; padding: 0.2em 0.8em "&gt;title&lt;/legend&gt; Text within the box &lt;br /&gt; Etc &lt;/fieldset&gt; </code></pre> http://stackoverflow.com/questions/113427/how-to-clear-the-scrollback-in-the-screen-command/113447#113447 1 Answer by Athena for How to clear the scrollback in the screen command? Athena 2008-09-22T06:24:39Z 2008-09-22T06:38:18Z <ul> <li><code>C-a C</code> will clear the screen, including the prompt</li> <li><code>clear</code> (command, not key combination) will clear the screen, leaving a prompt</li> </ul> <p>ETA: misread the original question; these will just clear the visible text, but will not clear the buffer!</p> http://stackoverflow.com/questions/107693/global-variables-in-php-not-working-as-expected/107760#107760 2 Answer by Athena for global variables in php not working as expected Athena 2008-09-20T09:48:58Z 2008-09-20T09:48:58Z <p><code>global $foo</code> doesn't mean "make this variable global, so that everyone can use it". <code>global $foo</code> means "<em>within the scope of this function</em>, use the global variable <code>$foo</code>". </p> <p>I am assuming from your example that each time, you are referring to $screen from within a function. If so you will need to use <code>global $screen</code> in each function.</p> http://stackoverflow.com/questions/104568/accessing-greasemonkey-metadata-from-within-your-script/104814#104814 6 Answer by Athena for Accessing Greasemonkey metadata from within your script? Athena 2008-09-19T19:28:40Z 2008-09-19T19:28:40Z <p>Yes. A very simple example is:</p> <pre><code>var metadata=&lt;&gt; // ==UserScript== // @name Reading metadata // @namespace http://www.afunamatata.com/greasemonkey/ // @description Read in metadata from the header // @version 0.9 // @include http://stackoverflow.com/questions/104568/accessing-greasemonkey-metadata-from-within-your-script // ==/UserScript== &lt;/&gt;.toString(); GM_log(metadata); </code></pre> <p>See <a href="http://groups.google.com/group/greasemonkey-users/browse_thread/thread/2003daba08cc14b6/62a635f278d8f9fc" rel="nofollow">this thread on the greasemonkey-users group</a> for more information. A more robust implementation can be found near the end.</p> http://stackoverflow.com/questions/100622/flash-should-open-window-in-new-tab-but-instead-it-opens-a-new-pop-up-on-mac/100736#100736 3 Answer by Athena for Flash should open window in new tab, but instead it opens a new pop up on mac Athena 2008-09-19T09:30:27Z 2008-09-19T09:30:27Z <p>Check your Firefox preferences >> Tabs >> New windows should be opened in (a new window | a new tab). Do you have different settings for your Firefox on your Windows and on your Mac?</p> http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/100132#100132 2 Answer by Athena for What is a good GUI text editor for the Mac? Athena 2008-09-19T06:57:36Z 2008-09-19T06:57:36Z <p>I love <a href="http://smultron.sourceforge.net/" rel="nofollow">Smultron</a> and <a href="http://www.barebones.com/products/textwrangler/" rel="nofollow">TextWrangler</a>. Both are good free editors, simple and light.</p> <p>I started with Smultron, loved the tabs-handling (IIRC ctrl+1 through 9 would select each tab, and you can save your tabs so they all reopen if you shut down the editor and open it again), but eventually decided to switch to TextWrangler because I was running into trouble with Smultron's syntax highlighting. That was about a year ago, so things may have changed.</p> <p>Lately I've started playing around with <a href="http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml" rel="nofollow">Komodo Edit</a>, free version of Komodo IDE. It has a couple of good features I like (saving over ssh, autocompletion, choice to reopen tabs from a previous session), but I haven't gotten comfortable with the interface.</p> http://stackoverflow.com/questions/415213/php-irc-robot-send-command-but-now-i-need-the-bot-to-read-the-command Comment by Athena on PHP IRC Robot, Send Command, but now I need the bot to read the command. Athena 2009-01-06T02:49:17Z 2009-01-06T02:49:17Z change the password on your bot as well :-) the old password is still available if you view the edit history of the question, I'm afraid. http://stackoverflow.com/questions/406660/why-does-the-it-world-revolve-around-programmers Comment by Athena on Why does the IT world revolve around programmers? Athena 2009-01-02T12:39:22Z 2009-01-02T12:39:22Z @annakata agreed! Though I didn't notice it until you pointed it out. http://stackoverflow.com/questions/405134/manually-setting-a-uibutton-state Comment by Athena on Manually setting a UIButton state Athena 2009-01-01T19:36:17Z 2009-01-01T19:36:17Z To supplement what Ben said, check out the enabled property in UIControl: <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instp/UIControl/enabled" rel="nofollow">developer.apple.com/iphone/library/&hellip;</a> http://stackoverflow.com/questions/392397/arrays-whats-the-point/392426#392426 Comment by Athena on Arrays, What's the point? Athena 2008-12-25T03:08:46Z 2008-12-25T03:08:46Z +1 Unknwntech's comment http://stackoverflow.com/questions/388561/a-question-about-eval-in-javascript/388575#388575 Comment by Athena on a question about eval in javascript Athena 2008-12-23T10:52:31Z 2008-12-23T10:52:31Z Very neat -- having fun playing around with the effects of moonshadow's and James Gregory's comments. Wish they were answers so I could vote them up! http://stackoverflow.com/questions/385082/what-was-the-most-stupid-bug-you-could-not-find-for-a-long-time/385231#385231 Comment by Athena on What was the most stupid bug you could not find for a long time? Athena 2008-12-22T01:38:59Z 2008-12-22T01:38:59Z Maybe the default should have been &quot;October&quot;! http://stackoverflow.com/questions/366137/file-exists-php-code/366157#366157 Comment by Athena on File exists php code. Athena 2008-12-14T04:34:46Z 2008-12-14T04:34:46Z I agree, very strange. Only things I can think of at this point are something windows-specific or a typo introduced in testing. http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/365043#365043 Comment by Athena on What are those little Xcode tips & tricks you wish you knew about 2 years ago? Athena 2008-12-13T16:26:45Z 2008-12-13T16:26:45Z Wow, that's a great article. http://stackoverflow.com/questions/365309/where-can-i-find-a-deliberately-insecure-open-source-web-application/365323#365323 Comment by Athena on Where can I find a deliberately insecure open source web application? Athena 2008-12-13T15:38:15Z 2008-12-13T15:38:15Z Thank you as well for this link! I just realized that I've had that in my bookmarks list, marked as something to explore, but never actually got around to doing so! (I guess I know where my next few weekends are going to go :-)) http://stackoverflow.com/questions/362278/convert-hexadecimal-character-string-to-integer-in-java Comment by Athena on convert hexadecimal character string to integer in java Athena 2008-12-12T09:43:17Z 2008-12-12T09:43:17Z The special characters in this question are breaking the RSS feed for me :-( http://stackoverflow.com/questions/356347/javascript-greasemonkey-avoiding-firefox-security-warning-when-submitting-a-form Comment by Athena on JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure Page Athena 2008-12-11T09:18:15Z 2008-12-11T09:18:15Z @Unniloct I agree! http://stackoverflow.com/questions/238173/worst-java-practice-found-in-your-experience/238383#238383 Comment by Athena on Worst Java practice found in your experience? Athena 2008-10-27T01:05:22Z 2008-10-27T01:05:22Z I have done this! My only saving grace is that I was a student, and while the people grading my work didn't catch my mistake, I did figure it out on my next project. http://stackoverflow.com/questions/184312/how-to-make-jetty-dynamically-load-static-pages/185675#185675 Comment by Athena on How to make Jetty dynamically load "static" pages. Athena 2008-10-10T02:24:33Z 2008-10-10T02:24:33Z Cool, glad to hear you got i tworking! http://stackoverflow.com/questions/128954/accessing-created-dom-elements/129199#129199 Comment by Athena on Accessing created DOM elements Athena 2008-09-24T19:20:35Z 2008-09-24T19:20:35Z Oh cool, didn't realize that. Was playing around with a demo earlier, and the query wouldn't work without the @. Just double-checked and the site was using an older version of jquery, which explains it. Thanks for the info! http://stackoverflow.com/questions/128244/whats-the-first-thing-you-trip-up-on-when-learning-a-new-language/128248#128248 Comment by Athena on What's the first thing you 'trip up on' when learning a new language. Athena 2008-09-24T16:43:06Z 2008-09-24T16:43:06Z I remember the first time I tried to concatenate a string in Perl...My only prior experience was with Java and beginner-level C -- &quot;Why won't the plus sign work? *tears out hair*&quot;