User psychotik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:52:17Zhttp://stackoverflow.com/feeds/user/106095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1258416/word-wrap-in-a-html-table2Word-wrap in a html tablepsychotik2009-08-11T04:01:28Z2009-12-10T20:15:33Z
<p>I've been using</p>
<pre><code>word-wrap: break word
</code></pre>
<p>to word wrap text in divs and spans, but it doesn't seem to work in table cells. I have a table set to width=100%, with one row and two columns. Text in columns, although styled with the above word-wrap attribute, doesn't wrap and causes the text to go past the bounds of the cell.</p>
<p>Any suggestions on how to work this? This happens on FF, Chrome and IE.</p>
<p>EDIT:
Here's what the source looks like:</p>
<pre><code><table style="width: 100%;"><tr>
<td align="left"><div style="word-wrap: break-word;">looooooooooo...ng word</div></td>
<td align="right"><span style="display: inline;">Foo</span></td>
</tr></table>
</code></pre>
<p>The text "loooooooooooooo...ng" it larger than the bounds of my page but it doesn't break with the above html. I've tried the suggestions below of adding text-wrap:suppress and text-wrap:normal but neither helped.</p>
http://stackoverflow.com/questions/1864160/javascript-jquery-ajax-issue-post-works-fine-in-firefox-ie-safari-but-not-chro/1864201#18642011Answer by psychotik for JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome. psychotik2009-12-08T02:20:05Z2009-12-08T02:20:05Z<p>You can do a few things to diagnose this yourself:</p>
<ol>
<li>Shift + Ctrl + J in Chrome to launch the Javascript console and enable debugging. Stick breakpoints and step through your function</li>
<li>Watch the Javascript error/warnings console (even in your other browsers)</li>
</ol>
http://stackoverflow.com/questions/1836215/access-to-127-0-0-1-by-default-in-opera-100Access to 127.0.0.1 by default in Opera 10?psychotik2009-12-02T22:11:55Z2009-12-06T19:37:30Z
<p>Unlike other browsers (IE, FF, Chrome) Opera 10 doesn't allow websites to access content from localhost. Only when 127.0.0.1 is explicitly added to the trusted websites list in Opera does this work - all other browsers don't need this.</p>
<p>Any suggestions on how I can either programatically add this to the trusted sites list in Opera (unlikely that this is possible), or make Opera hit localhost using some alternate means like some type of cross-domain policy file on my website?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1824533/what-does-it-mean-by-c-runtime/1824564#18245641Answer by psychotik for What does it mean by C++ runtime?psychotik2009-12-01T07:31:30Z2009-12-01T07:31:30Z<p>From <a href="http://en.wikipedia.org/wiki/C%5Fstandard%5Flibrary" rel="nofollow">Wikipedia</a>:</p>
<p>The term C run-time library is used on some platforms to refer to a set of base libraries, which may be distributed in dynamically linkable form with an operating system (with or without header files), or distributed with a C compiler. Another term sometimes used is libc. Not just any library is called the run-time library; run time in this context means the run-time support package associated with a compiler which is understood to make a language complete. The run-time support provides not only the C standard library functions, but possibly other material needed create an environment for the C program, such as initialization prior to the invocation of the main function, or subroutines to provide arithmetic operations missing from the CPU that are needed by code generated by the C compiler.</p>
http://stackoverflow.com/questions/1371576/markitup-continous-preview-refresh-without-hitting-enter2MarkItUp! continous preview refresh without hitting enterpsychotik2009-09-03T05:38:24Z2009-11-18T15:24:48Z
<p>I'm using MarkItUp (<a href="http://markitup.jaysalvat.com/" rel="nofollow">http://markitup.jaysalvat.com/</a>) and can't really figure out how to get it to continuously update the preview pane as each character is typed (or even when a 'space' is encountered). By default it refreshes the preview pane only when the enter key is hit. </p>
<p>Is there any way to customize this behavior? The documentation mentions a <code>previewAutoRefresh</code> key, but setting it results in the update-on-enter thing, not any faster.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1308755/launch-an-app-on-os-x-with-command-line0Launch an app on OS X with command linepsychotik2009-08-20T20:55:55Z2009-11-09T23:00:46Z
<p>I want to launch an app on OSX from a script. I need pass it command line arguments. Unfortunately, 'open' doesn't accept command line args.</p>
<p>The only option I can think of is to use 'nohup myApp > /dev/null &' to launch my app so it can exist independently of the script that launches it.</p>
<p>Any better suggestions?</p>
http://stackoverflow.com/questions/1675623/menu-of-app-in-status-bar-wont-work-on-snow-leopard2Menu of app in Status Bar wont work on Snow Leopardpsychotik2009-11-04T18:06:24Z2009-11-04T21:30:07Z
<p>I have an application that sits in the status bar on the Mac. It has a menu that lets you look at the app version, change some settings and quit the app.</p>
<p>I built it on Leopard and it works fine on Leopard.
On Snow Leopard, I can see the app in the status bar and clicking on it shows the menu items. But clicking items in the menu doesn't do anything. The app isn't hung - it's doing stuff that it's expected to do. The UI thread isn't hung either - I can see the menu obviously, and and dialogs that the app causes to show on the UI thread (outside of the ones when the menu is clicked) show up fine. Compiling it on Snow Leopard targeted for 10.6 doesn't seem to change this behavior.</p>
<p>So I know that the app is able to create dialogs, isn't hung and is functioning.
I suspect this has something to do with the menu, and handling menu clicks either in my app or in Snow Leopard.</p>
<p>Anyone else have suggestions on what this might be or where I should look? Any suggestions on where I can place a BP to trap whether the menu item click is actually happening?</p>
<p>EDIT: I've uploaded a simple repro 10.6 XCode project. I'll send a virtual beer your way if you can take a look and let me know if you see what's wrong. The app is simple - create a status bar app with 1 menu item "Quit" which calls terminate on the app. The status bar app show, the menu shows but clicking does nothing. <a href="http://cid-663ff372702aa2de.skydrive.live.com/self.aspx/Public/MenuTest.zip" rel="nofollow">Here's the project</a>. It runs fine on Leopard (Clean All before you build/run) but not on Snow Leopard.</p>
http://stackoverflow.com/questions/1655599/mysql-rename-column/1655605#16556052Answer by psychotik for MySQL - Rename Columnpsychotik2009-10-31T20:54:44Z2009-10-31T20:54:44Z<p>From <a href="http://dev.mysql.com/doc/refman/5.1/en/alter-table.html" rel="nofollow">mySql Doc pages</a>:</p>
<p>You can rename a column using a <code>CHANGE old_col_name new_col_name column_definition</code> clause.</p>
http://stackoverflow.com/questions/1648780/localhost-is-slow-sometimes/1648785#16487850Answer by psychotik for localhost is slow sometimespsychotik2009-10-30T09:24:44Z2009-10-30T09:24:44Z<p><a href="http://crazyviraj.blogspot.com/2009/09/fix-for-slow-firefoxchrome-connects-to.html" rel="nofollow">http://crazyviraj.blogspot.com/2009/09/fix-for-slow-firefoxchrome-connects-to.html</a></p>
http://stackoverflow.com/questions/1647298/why-dont-stl-containers-have-virtual-destructors/1647314#16473141Answer by psychotik for Why don't STL containers have virtual destructors?psychotik2009-10-30T00:15:39Z2009-10-30T00:15:39Z<p>No virtual destructor prevents the class from being subclasses correctly.</p>
http://stackoverflow.com/questions/1645038/why-wont-my-program-terminate/1645059#16450590Answer by psychotik for Why won't my program terminate?psychotik2009-10-29T16:47:06Z2009-10-29T16:47:06Z<p>Just a hunch - make sure <code>CoUninitialize()</code> is called before exit?
Also, instead of breaking into a debugger create a crash dump and debug that. Not sure how this works on CE, but that's what'd I'd recommend on Windows.</p>
http://stackoverflow.com/questions/1640943/what-should-i-be-reading-for-intermediate-cocoa-programming-instruction/1640949#16409494Answer by psychotik for What should I be reading for intermediate Cocoa programming instruction?psychotik2009-10-29T00:18:42Z2009-10-29T00:18:42Z<p>Forget reading - write a few apps that do the things you want to learn about. When you're stuck, refer to Apple's documentation or sites like SO and cocoadev. </p>
http://stackoverflow.com/questions/1406537/handling-errors-in-jquery-getscript0Handling errors in jQuery.getScriptpsychotik2009-09-10T17:08:31Z2009-10-28T04:07:45Z
<p>jQuery's <a href="http://docs.jquery.com/Ajax/jQuery.getScript" rel="nofollow">getScript</a> function doesn't seem to support an error callback function. I can't use the global ajax error handling code here, a local error function would be ideal. </p>
<p>Documentation that the callback gets data/textStatus seems incorrect - the callback gets neither.</p>
<p>Any suggestions on how I detect that a call to getScript failed (server not available, for instance)?</p>
<p>EDIT: Just looked at source, and it seems like the callback is only invoked on success, with data always set to null and textStatus not defined (since it's a success-only callback, I presume). The documentation is very incorrect for this function.</p>
http://stackoverflow.com/questions/1629069/what-php-web-technologies-do-i-need-to-get-up-to-speed/1629168#16291682Answer by psychotik for What PHP/Web technologies do I need to get up to speed ? psychotik2009-10-27T07:11:03Z2009-10-27T07:11:03Z<p>Really good IT folks are worth their weight in gold. Any successful web/platform company (not a simple website) will have really smart IT folks to help them manage their datacenters and deployment processes. Bonus if you understand issues around geo-distribution, CDNs, etc.</p>
<p>If that's the kind of IT person you are, don't worry about PHP, etc and focus on growing the skills you currently have. Folks with killer IT/network engineering skills shouldn't have trouble finding a rewarding position.</p>
http://stackoverflow.com/questions/1628722/makekeyandorderfront-only-does-the-latter/1628796#16287961Answer by psychotik for makeKeyAndOrderFront only does the latter.psychotik2009-10-27T04:34:10Z2009-10-27T04:34:10Z<p>Try this:</p>
<pre><code>if (!secondWindowController)
secondWindowController = [[SecondWindowController alloc] init];
NSApplication *thisApp = [NSApplication sharedApplication];
[thisApp activateIgnoringOtherApps:YES];
[[secondWindowController window] makeKeyAndOrderFront:self];
</code></pre>
http://stackoverflow.com/questions/1628768/why-does-an-overridden-function-in-the-derived-class-hide-other-overloads-of-the/1628787#16287870Answer by psychotik for Why does an overridden function in the derived class hide other overloads of the base class?psychotik2009-10-27T04:30:17Z2009-10-27T04:30:17Z<p>Duplicate: <a href="http://stackoverflow.com/questions/411103/function-with-same-name-but-different-signature-in-derived-class">http://stackoverflow.com/questions/411103/function-with-same-name-but-different-signature-in-derived-class</a></p>
http://stackoverflow.com/questions/1614014/jquery-help-dynmic-page-title/1614060#16140600Answer by psychotik for jquery help dynmic page title psychotik2009-10-23T15:02:19Z2009-10-23T15:02:19Z<p>Or just:</p>
<pre><code>document.title = "New Title";
</code></pre>
<p>in Javascript.</p>
http://stackoverflow.com/questions/1610215/represent-numbers-as-shorten-like-so-does-13500-13-5k0Represent numbers as shorten like SO does (13500 => 13.5k)?psychotik2009-10-22T21:57:57Z2009-10-22T22:04:14Z
<p>Ok I write my own JS code for this bug I'm sure there's something more comprehensive out there I can use. My Google mojo isn't working though - any help finding open source code that'll help me represent numbers like how SO does for high numbers (102500 => 102.5K, 18601 => 18.6K, etc)?</p>
<p>JS or PHP would be awesome, otherwise I can translate.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1603784/php-variable-variables/1603804#16038040Answer by psychotik for PHP Variable Variablespsychotik2009-10-21T21:35:18Z2009-10-21T21:35:18Z<p>Use <a href="http://php.net/manual/en/function.var-dump.php" rel="nofollow">var_dump</a>?</p>
http://stackoverflow.com/questions/1597666/modify-url-of-an-xmlhttprequest-object0Modify url of an XMLHttpRequest objectpsychotik2009-10-20T22:22:57Z2009-10-20T23:53:02Z
<p>As a fix for <a href="http://stackoverflow.com/questions/1597396/jquery-ajax-call-to-url-containing-accent-character-sends-bad-uri-from-ie-to-serv">this</a> issue, I was wondering if anyone knows of a way to modify the URL of an XMLHttpRequest object prior to sending it. </p>
<p>Ideally, I want to change the uri (encode it) in the <code>beforeSend</code> event (using jQuery <a href="http://docs.jquery.com/Ajax/jQuery.ajaxSetup" rel="nofollow">$.ajaxSetup</a>) instead of changing it in every location where I'm using $.ajax</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1597396/jquery-ajax-call-to-url-containing-accent-character-sends-bad-uri-from-ie-to-serv0jQuery ajax call to url containing accent character sends bad Uri from IE to serverpsychotik2009-10-20T21:22:43Z2009-10-20T21:45:24Z
<p>I was having trouble sending up a url containing accent characters using IE.
Here's a simple function:</p>
<pre><code>function runjQueryTest(){
var url = "/test/Beyoncé/";
$.get( url, function(){});
}
</code></pre>
<p>On the server (PHP) I record the value of the request uri <code>($_SERVER["REQUEST_URI"])</code> and I see a difference between what FF/Chrome send up versus what IE sends up.</p>
<p>Chrome and FireFox cause the value of <code>($_SERVER["REQUEST_URI"])</code> to be </p>
<blockquote>
<p>/test/Beyonc%C3%A9/</p>
</blockquote>
<p>but requests from IE 8 show the value of <code>($_SERVER["REQUEST_URI"])</code> to be </p>
<blockquote>
<p>/test/Beyonc\xe9</p>
</blockquote>
<p>This is causing my dispatcher's regular expression handler to not match correctly on the server.</p>
<p>Any ideas what the root issue here is, and how I can fix it for IE?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1591361/understanding-typedefs-for-function-pointers-in-c-examples-hints-and-tips-plea/1591443#15914432Answer by psychotik for Understanding typedefs for function pointers in C: Examples, hints and tips, please.psychotik2009-10-19T22:17:30Z2009-10-19T22:34:29Z<p>A function pointer is like any other pointer, but it points to the address of a function instead of the address of data (on heap or stack). Like any pointer, it needs to be typed correctly. Functions are defined by their return value and the types of parameters they accept. So in order to fully describe a function, you must include its return value and the type of each parameter is accepts.
When you typedef such a definition, you give it a 'friendly name' which makes it easier to create and reference pointers using that definition.</p>
<p>So for example assume you have a function:</p>
<pre><code>float doMultiplication (float num1, float num2 ) {
return num1 * num2; }
</code></pre>
<p>then the following typedef:</p>
<pre><code>typedef float(*pt2Func)(float, float);
</code></pre>
<p>can be used to point to this <code>doMulitplication</code> function. It is simply defining a pointer to a function which returns a float and takes two parameters, each of type float. This definition has the friendly name <code>pt2Func</code>. Note that <code>pt2Func</code> can point to ANY function which returns a float and takes in 2 floats.</p>
<p>So you can create a pointer which points to the doMultiplication function as follows:</p>
<pre><code>pt2Func *myFnPtr = &doMultiplication;
</code></pre>
<p>and you can invoke the function using this pointer as follows:</p>
<pre><code>float result = (*myFnPtr)(2.0, 5.1);
</code></pre>
<p>This makes good reading: <a href="http://www.newty.de/fpt/index.html" rel="nofollow">http://www.newty.de/fpt/index.html</a></p>
http://stackoverflow.com/questions/1579795/web-based-method-to-determine-if-an-iphone-is-connected-via-3g-or-wifi/1579842#15798422Answer by psychotik for Web based method to determine if an iPhone is connected via 3G or Wifipsychotik2009-10-16T19:07:03Z2009-10-16T19:07:03Z<p>You probably don't care about 3G vs WiFi as much as you do about bandwidth/roundtrip time. </p>
<p>I wonder if you can achieve this by not detecting 3G vs WiFi but by computing round-trip time using a browser script and using that to determine the fidelity of the user experience.</p>
http://stackoverflow.com/questions/1569976/osx-launching-multiple-instances-of-an-app-and-passing-them-command-line-args/1570005#15700051Answer by psychotik for OSX: Launching multiple instances of an app and passing them command line argspsychotik2009-10-15T02:24:03Z2009-10-15T02:24:03Z<p>Duplicate: <a href="http://stackoverflow.com/questions/1308755/launch-an-app-on-os-x-with-command-line">http://stackoverflow.com/questions/1308755/launch-an-app-on-os-x-with-command-line</a></p>
<p>Also, this doesn't answer the multiple apps part of the question, but might help: <a href="http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac">http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac</a></p>
http://stackoverflow.com/questions/1408641/jquery-scroll-text-side-to-side0jQuery scroll text side-to-sidepsychotik2009-09-11T01:56:14Z2009-10-14T20:22:29Z
<p>I've seen Giva labs' <a href="http://www.givainc.com/labs/marquee%5Fjquery%5Fplugin.htm#example" rel="nofollow">marquee scroller</a> and <a href="http://demos.flesler.com/jquery/serialScroll/" rel="nofollow">SerialScroll</a> but can't figure out how to get it to scroll text in a div from side to side. My guess is I need some other type of extension.</p>
<p>Basically, I have a div of width 100px and text that spans 200px and instead of scrolling it all the way through like a marquee, I want to scroll it left until it reaches the end and then bring it back right. So, side-to-side scrolling.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/1563924/set-position-of-page-footer-using-css-js1Set position of page footer using CSS/JSpsychotik2009-10-14T02:10:01Z2009-10-14T02:14:22Z
<p>I've created a standard header, body, footer web page. I want to position the footer to be at the bottom of the viewable browser window when the body is smaller than the height of the window, but at the bottom of the page when the body exceeds the browser height.</p>
<p>Any suggestions on how I use CSS (preferably) or JS to accomplish this?</p>
http://stackoverflow.com/questions/1563819/how-to-mentor-newly-hired-software-engineers-with-no-industry-experience/1563848#15638484Answer by psychotik for How to mentor newly hired software engineers with no industry experience ?psychotik2009-10-14T01:41:27Z2009-10-14T01:41:27Z<p>There are a few high-level topics new hires need mentoring on.</p>
<p>1) Technical mentoring. Have them sit in on code reviews, explain things to them, when you help them let them stumble and show them why their answer isn't optimal instead of just giving them the right answer, helping them understand why you trade off one thing for another, etc. This is mainly common sense, and requires a lot of patience and understanding.</p>
<p>2) Navigating professional life. Work isn't the same as school - there are several nuances to success besides just technical knowledge. Managing time, managing your peers, managing your superiors... these need experience. Make sure they're exposed to work life beyond just the technical.</p>
<p>3) Interpersonal skills. It's rare (impossible?) to succeed individually. Working in a team professionally is very different from working in a team in school. Give them exposure to team interaction, dealing with difficult personalities, making decisions that are 'liked' by all, etc. Again, this is something they're just going to have to experience. Your job is to give them an opportunity to experience it.</p>
<p>4) Understanding the business. Hopefully, this is another aspect of professional life you can help them get exposure to. Understanding what's good for the business might not always be what's 'right', understanding tradeoffs, etc.</p>
http://stackoverflow.com/questions/1563821/how-to-apply-effects-to-only-newly-appended-nodes-jquery/1563835#15638350Answer by psychotik for How to apply effects to only newly appended nodes (jQuery)psychotik2009-10-14T01:35:24Z2009-10-14T01:35:24Z<p>Instead of appending to <code>#comments</code> create a hidden div inside of it and append it to that div.</p>
<p>Then <code>fadeIn</code> that hidden div.</p>
http://stackoverflow.com/questions/1559716/is-this-a-good-solution-for-localisation-of-pluggable-components/1562732#15627321Answer by psychotik for Is this a good solution for localisation of pluggable components?psychotik2009-10-13T20:29:34Z2009-10-13T20:29:34Z<p>I think you have the right idea, but there's better way to accomplish this.</p>
<p>Presumably, you have an interface that the pluggable component implements. Say, IPluggable:</p>
<pre><code>interface IPluggable {
...
string LocalizedName {get;}
...
}
</code></pre>
<p>From your main binary, load the pluggable assembly and create the IPluggable instance using reflection (I assume that's what the <code>GetExternalObject()</code> method you have does) and then access the localized name using the <code>LocalizedName</code> property. <em>Inside</em> the IPluggable implementation, create a <code>ResourceManager</code> and access the <code>LocalizedName</code> from the resx of that pluggable assembly.</p>
<p>What you get by doing is good encapsulation of behavior in the pluggable assembly - it is responsible for providing you the localized name, however it chooses to do it, without your man program assuming that a <code>ResourceManager</code> can be created to access a localized name.</p>
http://stackoverflow.com/questions/1562672/fastest-way-to-count-total-number-and-then-list-a-set-of-records-in-mysql/1562685#15626851Answer by psychotik for Fastest way to count total number and then list a set of records in MySQLpsychotik2009-10-13T20:19:31Z2009-10-13T20:19:31Z<p>That first query is going to result in data being pulled into the cache, so presumable the second query should be fast. I wouldn't be too worried about this.</p>
http://stackoverflow.com/questions/1836215/access-to-127-0-0-1-by-default-in-opera-10/1856358#1856358Comment by psychotik on Access to 127.0.0.1 by default in Opera 10?psychotik2009-12-07T06:12:36Z2009-12-07T06:12:36ZI have an iFrame that's what to render some data obtained from 127.0.0.1
Every other browser allows it - not sure why Opera wont. http://stackoverflow.com/questions/1675623/menu-of-app-in-status-bar-wont-work-on-snow-leopard/1675713#1675713Comment by psychotik on Menu of app in Status Bar wont work on Snow Leopardpsychotik2009-11-05T01:50:40Z2009-11-05T01:50:40ZSwitching to using dynamic menus and not having a delegate for the menu in the designer seems to have done the trick. I was looking at some documentation around what's new in Menus in 10.6 and I found this new protocol which might have something to do with it - basically, the object you set as delegate needs to implement this interface, I believe - it is 10.6 only. <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/NSMenuDelegate_Protocol/Reference/Reference.html" rel="nofollow">developer.apple.com/mac/library/…</a>http://stackoverflow.com/questions/1675623/menu-of-app-in-status-bar-wont-work-on-snow-leopard/1675713#1675713Comment by psychotik on Menu of app in Status Bar wont work on Snow Leopardpsychotik2009-11-05T00:33:47Z2009-11-05T00:33:47ZPeter, thanks for looking. #1 isn't standard but the menu item <i>is</i> an object so it should be fine, specially since 10.5 doesn't have a problem with it. I'll try using the more standard way and let you know if it helped. #2 is just a case of class name not matching file name. It wouldn't run on 10.5 otherwise. #3 is an interesting approach - certainly looks promising. I'll give these changes a shot. Thanks!http://stackoverflow.com/questions/1675623/menu-of-app-in-status-bar-wont-work-on-snow-leopard/1675713#1675713Comment by psychotik on Menu of app in Status Bar wont work on Snow Leopardpsychotik2009-11-04T19:08:00Z2009-11-04T19:08:00ZI uploaded a simple repro - if you have the time, I'd appreciate you taking a look incase you can figure it out. It's about 20 lines of code + the xib.http://stackoverflow.com/questions/1675623/menu-of-app-in-status-bar-wont-work-on-snow-leopard/1675713#1675713Comment by psychotik on Menu of app in Status Bar wont work on Snow Leopardpsychotik2009-11-04T18:38:06Z2009-11-04T18:38:06ZThanks. I'm not adding these menu items programatically. I created the menu in IB. That these are not hooked up sounds very plausible, except that they are - the same binary functions fine on Leopard. Is there some scenario you know where something changed here from 10.5->10.6?http://stackoverflow.com/questions/1653128/c-object-referenceComment by psychotik on C# object referencepsychotik2009-10-31T01:44:15Z2009-10-31T01:44:15ZCan you re-phrase? It's really hard to understand what you're looking for help with.
http://stackoverflow.com/questions/1628722/makekeyandorderfront-only-does-the-latter/1628796#1628796Comment by psychotik on makeKeyAndOrderFront only does the latter.psychotik2009-10-27T19:12:31Z2009-10-27T19:12:31ZOh, no focus? How about [window makeFirstResponder:nil]?http://stackoverflow.com/questions/1597666/modify-url-of-an-xmlhttprequest-object/1597713#1597713Comment by psychotik on Modify url of an XMLHttpRequest objectpsychotik2009-10-20T22:45:03Z2009-10-20T22:45:03ZThat's what I tried first, but the XMLHttpRequest object has already been constructed by this time and so editing the url in the request options doesn't work. I need to edit the 'xhr' instance passed in.http://stackoverflow.com/questions/1591361/understanding-typedefs-for-function-pointers-in-c-examples-hints-and-tips-plea/1591492#1591492Comment by psychotik on Understanding typedefs for function pointers in C: Examples, hints and tips, please.psychotik2009-10-20T02:09:46Z2009-10-20T02:09:46Z<a href="http://en.wikipedia.org/wiki/Typedef" rel="nofollow">en.wikipedia.org/wiki/Typedef</a>http://stackoverflow.com/questions/1569976/osx-launching-multiple-instances-of-an-app-and-passing-them-command-line-args/1570001#1570001Comment by psychotik on OSX: Launching multiple instances of an app and passing them command line argspsychotik2009-10-15T02:49:35Z2009-10-15T02:49:35ZThis flag might be new in 10.6 - I'm glad to see they added it. It's not going to get too much adoption until a couple years though - I suspect 10.5 is going to remain the most popular version of OSX for a bit. OP - you're probably using 10.5http://stackoverflow.com/questions/1569976/osx-launching-multiple-instances-of-an-app-and-passing-them-command-line-args/1570001#1570001Comment by psychotik on OSX: Launching multiple instances of an app and passing them command line argspsychotik2009-10-15T02:24:46Z2009-10-15T02:24:46Zopen doesn't take command line args. See the link in my reply for options/details.http://stackoverflow.com/questions/1567836/anchor-tag-to-go-to-the-beginning-of-a-div-class-w-using-jqueryComment by psychotik on Anchor tag, to go to the beginning of a div class w/ USING jQuerypsychotik2009-10-14T17:40:34Z2009-10-14T17:40:34ZOk, so what's your question?http://stackoverflow.com/questions/1563821/how-to-apply-effects-to-only-newly-appended-nodes-jquery/1563839#1563839Comment by psychotik on How to apply effects to only newly appended nodes (jQuery)psychotik2009-10-14T02:12:22Z2009-10-14T02:12:22ZI didn't know you could pass html content as a selector to $... really?http://stackoverflow.com/questions/1504363/how-should-i-localise-pluggable-components/1542843#1542843Comment by psychotik on How should I localise pluggable components.psychotik2009-10-13T23:43:34Z2009-10-13T23:43:34Zsee my comments there...http://stackoverflow.com/questions/1562672/fastest-way-to-count-total-number-and-then-list-a-set-of-records-in-mysql/1562685#1562685Comment by psychotik on Fastest way to count total number and then list a set of records in MySQLpsychotik2009-10-13T21:07:13Z2009-10-13T21:07:13ZRight - make your where clause as complete as you can and then don't worry about doing that second query. Since it is immediately after the first, results will come from the cache like I said.