User Athena - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T08:41:00Zhttp://stackoverflow.com/feeds/user/17846http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/242258#2422583Answer by Athena for Worst "muscle memory" keyboard shortcut?Athena2008-10-28T04:28:05Z2009-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#4062661Answer by Athena for How can I change Firefox's proxy settings from an external program?Athena2009-01-02T08:05:33Z2009-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#4062431Answer by Athena for Regular expression to match string not containing a word?Athena2009-01-02T07:41:22Z2009-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#4062312Answer by Athena for Documentation for NSString sizeWithFont:forWidth:lineBreakMode: method (in the iPhone SDK)?Athena2009-01-02T07:32:28Z2009-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#3985484Answer by Athena for How to modify page URL in Google AnalyticsAthena2008-12-29T20:17:12Z2008-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#3886741Answer by Athena for Debugging javascript in Safari for WindowsAthena2008-12-23T11:35:56Z2008-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#3884504Answer by Athena for JQuery Ajax Return valueAthena2008-12-23T09:04:14Z2008-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#3883734Answer by Athena for How do I POST LF with curl command line tool?Athena2008-12-23T07:44:15Z2008-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#3868461Answer by Athena for Why isn't my favicon working?Athena2008-12-22T17:40:36Z2008-12-22T17:41:08Z<p>I see it on Firefox :-) </p>
http://stackoverflow.com/questions/386612/greasemonkey-namespace-what-is-it-for/386675#3866751Answer by Athena for Greasemonkey namespace..what is it for?Athena2008-12-22T16:28:56Z2008-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#3661503Answer by Athena for File exists php code.Athena2008-12-14T03:49:27Z2008-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#3661172Answer by Athena for Are there any Open-source iPhone games around?Athena2008-12-14T03:08:58Z2008-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#3653270Answer by Athena for Where can I find a deliberately insecure open source web application?Athena2008-12-13T15:34:27Z2008-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#3651861Answer by Athena for A little help with DOM manip and GreaseMonkeyAthena2008-12-13T13:00:09Z2008-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> <ul id="tabMenu">
<li>
<a href="/ev" id="updates_tab">Updates</a> </li>
<li>
<a href="/ev/favourites" id="favorites_tab">Favorites</a> </li>
<li>
<a href="http://search.twitter.com/search?q=to:ev" id="replies_search_tab">@Replies Search</a></li>
</ul>
</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#3587512Answer by Athena for JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure PageAthena2008-12-11T09:16:04Z2008-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#2284390Answer by Athena for Importing the content of another web resource using JSTLAthena2008-10-23T03:31:08Z2008-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#2284302Answer by Athena for declare JSP taglib directives in web.xmlAthena2008-10-23T03:21:52Z2008-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><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
</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> <%@ taglib prefix="ex" uri="/taglib.tld" %>
</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><taglib>
<taglib-uri>
http://www.example.com/taglib
</taglib-uri>
<taglib-location>
/taglib.tld
</taglib-location>
</taglib>
</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><%@ taglib prefix="ex" uri="http://www.example.com/taglib" %>
</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#1908040Answer by Athena for How should I configure Jetty 7 pre3 to use oracle JDBC source?Athena2008-10-10T10:50:18Z2008-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><Array id="plusConfig" type="java.lang.String">
<Item>org.mortbay.jetty.webapp.WebInfConfiguration</Item>
<Item>org.mortbay.jetty.plus.webapp.EnvConfiguration</Item>
<Item>org.mortbay.jetty.plus.webapp.Configuration</Item>
<Item>org.mortbay.jetty.webapp.JettyWebXmlConfiguration</Item>
<Item>org.mortbay.jetty.webapp.TagLibConfiguration</Item>
</Array>
<Call name="addLifeCycle">
<Arg>
<New class="org.mortbay.jetty.deployer.WebAppDeployer">
....
<Set name="ConfigurationClasses"><Ref id="plusConfig"/></Set>
....
</New>
</Arg>
</Call>
<New id="dev" class="org.mortbay.jetty.plus.naming.Resource">
<Arg>jdbc/dev</Arg>
<Arg>
<New class="oracle.jdbc.pool.OracleConnectionPoolDataSource">
<Set name="User">username</Set>
<Set name="URL">jdbc:oracle:thin:@10.201.201.64:1521:DEV</Set>
<Set name="Password">password</Set>
</New>
</Arg>
</New>
</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#1856755Answer by Athena for How to make Jetty dynamically load "static" pages.Athena2008-10-09T02:13:56Z2008-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#1251611Answer by Athena for accessing constants in JSP (without scriptlet)Athena2008-09-24T02:58:00Z2008-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><%-- Set up the current user --%>
<%
session.setAttribute("current.user", "Me");
%>
<%-- scriptlets --%>
<%@ page import="com.example.Constants" %>
<h1>Using scriptlets</h1>
<h3>Constants.ATTR_CURRENT_USER</h3>
<%=Constants.ATTR_CURRENT_USER%> <br />
<h3>Session[Constants.ATTR_CURRENT_USER]</h3>
<%=session.getAttribute(Constants.ATTR_CURRENT_USER)%>
<%-- JSTL --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:useBean id="cons" class="com.example.Constants" scope="session"/>
<h1>Using JSTL</h1>
<h3>Constants.getATTR_CURRENT_USER_FUNC()</h3>
<c:out value="${cons.ATTR_CURRENT_USER_FUNC}"/>
<h3>Session[Constants.getATTR_CURRENT_USER_FUNC()]</h3>
<c:out value="${sessionScope[cons.ATTR_CURRENT_USER_FUNC]}"/>
<h3>Constants.ATTR_CURRENT_USER</h3>
<c:out value="${sessionScope[Constants.ATTR_CURRENT_USER]}"/>
<%--
Commented out, because otherwise will error:
The class 'com.example.Constants' does not have the property 'ATTR_CURRENT_USER'.
<h3>cons.ATTR_CURRENT_USER</h3>
<c:out value="${sessionScope[cons.ATTR_CURRENT_USER]}"/>
--%>
<hr />
</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#1291990Answer by Athena for Accessing created DOM elementsAthena2008-09-24T19:08:57Z2008-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#11366716Answer by Athena for Which CSS tag creates a box like this with title?Athena2008-09-22T07:42:46Z2008-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><fieldset style="border: 1px black solid">
<legend style="border: 1px black solid;
margin-left: 1em; padding: 0.2em 0.8em ">title</legend>
Text within the box <br />
Etc
</fieldset>
</code></pre>
http://stackoverflow.com/questions/113427/how-to-clear-the-scrollback-in-the-screen-command/113447#1134471Answer by Athena for How to clear the scrollback in the screen command?Athena2008-09-22T06:24:39Z2008-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#1077602Answer by Athena for global variables in php not working as expectedAthena2008-09-20T09:48:58Z2008-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#1048146Answer by Athena for Accessing Greasemonkey metadata from within your script?Athena2008-09-19T19:28:40Z2008-09-19T19:28:40Z<p>Yes. A very simple example is:</p>
<pre><code>var metadata=<>
// ==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==
</>.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#1007363Answer by Athena for Flash should open window in new tab, but instead it opens a new pop up on macAthena2008-09-19T09:30:27Z2008-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#1001322Answer by Athena for What is a good GUI text editor for the Mac?Athena2008-09-19T06:57:36Z2008-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-commandComment by Athena on PHP IRC Robot, Send Command, but now I need the bot to read the command.Athena2009-01-06T02:49:17Z2009-01-06T02:49:17Zchange 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-programmersComment by Athena on Why does the IT world revolve around programmers?Athena2009-01-02T12:39:22Z2009-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-stateComment by Athena on Manually setting a UIButton stateAthena2009-01-01T19:36:17Z2009-01-01T19:36:17ZTo 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/…</a>http://stackoverflow.com/questions/392397/arrays-whats-the-point/392426#392426Comment by Athena on Arrays, What's the point?Athena2008-12-25T03:08:46Z2008-12-25T03:08:46Z+1 Unknwntech's commenthttp://stackoverflow.com/questions/388561/a-question-about-eval-in-javascript/388575#388575Comment by Athena on a question about eval in javascriptAthena2008-12-23T10:52:31Z2008-12-23T10:52:31ZVery 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#385231Comment by Athena on What was the most stupid bug you could not find for a long time?Athena2008-12-22T01:38:59Z2008-12-22T01:38:59ZMaybe the default should have been "October"! http://stackoverflow.com/questions/366137/file-exists-php-code/366157#366157Comment by Athena on File exists php code.Athena2008-12-14T04:34:46Z2008-12-14T04:34:46ZI 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#365043Comment by Athena on What are those little Xcode tips & tricks you wish you knew about 2 years ago?Athena2008-12-13T16:26:45Z2008-12-13T16:26:45ZWow, that's a great article.http://stackoverflow.com/questions/365309/where-can-i-find-a-deliberately-insecure-open-source-web-application/365323#365323Comment by Athena on Where can I find a deliberately insecure open source web application?Athena2008-12-13T15:38:15Z2008-12-13T15:38:15ZThank 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-javaComment by Athena on convert hexadecimal character string to integer in javaAthena2008-12-12T09:43:17Z2008-12-12T09:43:17ZThe 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-formComment by Athena on JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure PageAthena2008-12-11T09:18:15Z2008-12-11T09:18:15Z@Unniloct I agree!http://stackoverflow.com/questions/238173/worst-java-practice-found-in-your-experience/238383#238383Comment by Athena on Worst Java practice found in your experience?Athena2008-10-27T01:05:22Z2008-10-27T01:05:22ZI 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#185675Comment by Athena on How to make Jetty dynamically load "static" pages.Athena2008-10-10T02:24:33Z2008-10-10T02:24:33ZCool, glad to hear you got i tworking!http://stackoverflow.com/questions/128954/accessing-created-dom-elements/129199#129199Comment by Athena on Accessing created DOM elementsAthena2008-09-24T19:20:35Z2008-09-24T19:20:35ZOh 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#128248Comment by Athena on What's the first thing you 'trip up on' when learning a new language.Athena2008-09-24T16:43:06Z2008-09-24T16:43:06ZI remember the first time I tried to concatenate a string in Perl...My only prior experience was with Java and beginner-level C -- "Why won't the plus sign work? *tears out hair*"