User aryeh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:24:42Z http://stackoverflow.com/feeds/user/3288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38021/how-do-i-find-the-authoritative-name-server-for-a-domain-name/38034#38034 -1 Answer by aryeh for How do I find the authoritative name-server for a domain name? aryeh 2008-09-01T15:07:48Z 2009-11-07T18:13:57Z <p>On *nix:</p> <p>$ dig -t ns &lt;domain name&gt;</p> http://stackoverflow.com/questions/1074539/passing-a-managedobjectcontext-to-a-second-view/1423913#1423913 0 Answer by aryeh for Passing a ManagedObjectContext to a second view aryeh 2009-09-14T21:03:15Z 2009-09-14T21:03:15Z <p>I've been struggling with the same issue and I'm still just a newbie. I think I figured out what is going on. Let me know if this makes sense. </p> <p>In short you are trying to fetch an entity from an objectContext that hadn't been set up yet. Your options therefore are to set it up right then or do elsewhere in the app before this view loads.</p> <p>If your app is setup like the CoreDataBooks app demo from the iphone dev center with a main UIApplicationDelegate also managing the CoreData stack, then you should be able to do the following:</p> <p><code> if (managedObjectContext == nil) { managedObjectContext = [[[UIApplication sharedApplication] delegate] managedObjectContext]; } </code></p> <p>This should do the trick. </p> http://stackoverflow.com/questions/1417952/how-do-i-access-the-managedobjectcontext-from-a-controller-deep-in-the-ui 0 How do I access the managedObjectContext from a controller deep in the UI? aryeh 2009-09-13T15:07:47Z 2009-09-13T19:14:19Z <p>I'm still a little fuzzy on understanding iPhone/Cocoa in general so this is probably a simple question.</p> <p>I have a CoreData Window-Based App for the iPhone. The rootController is a UITabBarController. The first tab view has a UINavigationController attached to it with a table in it's main view.</p> <p>When the App starts the objectContext is set up, which makes sense to have the App do that once. But now I have the managedObjectContext in the main Controller but I want to get that passed down to the Controller of the View inside the navcontroller, inside the first item in the TabBarController's tab list. How do I do this?</p> <p>Would naming the one of the fields in the UI Inspector Tool allow me to do something like:</p> <p><code> tabcontroller.navcontroller.manageObjectContext = self.managedObjectContext; </code></p> <p>Would this only work if the controller was instantiated and 'live'. (Do the controllers not get instantiated until they are needed?) What if this was in a view that was for the most part hidden?</p> <p>Anyway this is probably a simple thing I'm just not understanding things properly yet.</p> <p>What is the general right way to share the manageObjectContext that is created and setup in the rootController to the many sub-controllers in the app?</p> http://stackoverflow.com/questions/1417952/how-do-i-access-the-managedobjectcontext-from-a-controller-deep-in-the-ui/1417988#1417988 0 Answer by aryeh for How do I access the managedObjectContext from a controller deep in the UI? aryeh 2009-09-13T15:25:36Z 2009-09-13T15:25:36Z <p>I'm guessing this is the preferred method assuming the core-data initialization is done in the AppDelegate:</p> <p><code> [[[UIApplication sharedApplication] delegate] managedObjectContext] </code></p> http://stackoverflow.com/questions/36152/how-do-you-unsubscribe-from-a-ubiquity-command 2 How do you unsubscribe from a ubiquity command aryeh 2008-08-30T17:09:16Z 2009-02-19T04:55:29Z <p>I can't seem to find details on how to unsubscribe from ubiquity commands. The command list page only seems to have information about the installed commands and there are no links to deleting them. Am I missing something?</p> http://stackoverflow.com/questions/36958/stackoverflow-ubiquity-command 8 Stackoverflow Ubiquity command aryeh 2008-08-31T16:54:08Z 2008-09-17T14:15:28Z <p>I've written a basic stackoverflow ubiquity command.</p> <p>The initial version refused to execute properly because one of the parameters was not in the correct format. Specifically the postData parameter to browser.loadURI and browser.loadOneTab needs to be a nsIMIMEInputStream object which shog9 pointed out.</p> <p>The working version of code follows which can also be found at: <a href="http://www.appidx.com/ubiq/stackoverflow.js" rel="nofollow">http://www.appidx.com/ubiq/stackoverflow.js</a> and installed (if you already have ubiquity) by visiting: <a href="http://www.appidx.com/ubiq/stackoverflow.html" rel="nofollow">http://www.appidx.com/ubiq/stackoverflow.html</a></p> <p>Enjoy, Cheers!</p> <pre><code>CmdUtils.CreateCommand({ name: "stackoverflow", author: {name: "Aryeh Goldsmith"}, homepage: "http://www.appidx.com/ubiq/stackoverflow.html", icon: "http://stackoverflow.com/favicon.ico", takes: {search: noun_arb_text}, license: "MPL", description: "Searches the highlighted text on stackoverflow.", _version: "55", preview: function ( pblock, inputObject) { var query = inputObject.text; pblock.innerHTML = "Search beta.stackoverflow.com for " + query + "&lt;br/&gt;"; var url = "http://beta.stackoverflow.com/search"; params = {"search-text": query, "hiddenstuff": ''}; jQuery.post( url, params, function( html ) { var $ = jQuery; pblock.innerHTML += "&lt;div style='display:none;'&gt;" + html + "&lt;/div&gt;"; var links = $(pblock).find('.summary h3 a'); links.each(function (i) { if (this.href.match(/^chrome/)) { this.href = this.href.replace(/chrome\:\/\/ubiquity/i, "http://beta.stackoverflow.com"); } else if (this.href.match(/^\//)) { this.href = "http://beta.stackoverflow.com" + this.href; } this.target = "_blank"; }); var ques = $(pblock).find('.summary h3'); var details = $(pblock).find('.summary .excerpt'); var out = "&lt;div style='margin-bottom: 6px;'&gt;&lt;b&gt;Previewing the first 5 results:&lt;/b&gt;&lt;/div&gt;"; for (var j = 0; j&lt; ques.size() &amp;&amp; j &lt; 5; j++) { out += "&lt;div style='padding: 5px;'&gt;&lt;b&gt;" + ques[j].innerHTML + "&lt;/b&gt;&lt;br /&gt;"; out += details[j].innerHTML + "&lt;/div&gt;"; } pblock.innerHTML = out; }); }, execute: function( inputObject ) { var query = inputObject.text; var url = "http://beta.stackoverflow.com/search"; var params = { "search-text": query, hiddenstuff: "" }; var dataString = Utils.paramsToString(params).substring(1); var windowManager = Components.classes["@mozilla.org/appshell/window-mediator;1"]. getService(Components.interfaces.nsIWindowMediator); var browserWindow = windowManager.getMostRecentWindow("navigator:browser"); var browser = browserWindow.getBrowser(); var stringStream = Components.classes["@mozilla.org/io/string-input-stream;1"]. createInstance(Components.interfaces.nsIStringInputStream); if ("data" in stringStream) // Gecko 1.9 or newer stringStream.data = dataString; else // 1.8 or older stringStream.setData(dataString, dataString.length); var postData = Components.classes["@mozilla.org/network/mime-input-stream;1"]. createInstance(Components.interfaces.nsIMIMEInputStream); postData.addHeader("Content-Type", "application/x-www-form-urlencoded"); postData.addContentLength = true; postData.setData(stringStream); if(browser.mCurrentBrowser.currentURI.spec == "about:blank") browserWindow.loadURI(url, null, postData, false); else browser.loadOneTab(url, null, null, postData, false, false); }, }) </code></pre> http://stackoverflow.com/questions/36275/is-there-a-way-to-move-the-current-window-to-another-desktop-without-using-a-mous 6 Is there a way to move the current window to another desktop without using a mouse in OS X? aryeh 2008-08-30T19:20:05Z 2008-09-16T12:11:56Z <p>In OS X as I'm aware to move the current window to the next desktop, I'd click down on the title bar of the window to have it in move mode, and then while keeping the mouse button down, press ctrl-&lt;cursor direction_key&gt;. If you don't have a laptop, this may require three hands. Alternatively you can go into spaces and drag a window from one desktop to another.</p> <p>Is there an easier way to do this, with the keyboard only (and two hands max)? </p> http://stackoverflow.com/questions/38035/selecting-x-words-from-a-text-field-in-mysql/38063#38063 0 Answer by aryeh for Selecting X words from a text field in MySQL aryeh 2008-09-01T15:45:20Z 2008-09-01T15:45:20Z <p>Use the INSTR() function to find the position of the word in the string, and then use SUBSTRING() function to select a portion of characters before and after the position.</p> <p>You'd have to look out that your SUBSTRING instruction don't use negative values or you'll get weird results.</p> <p>Try that, and report back.</p> http://stackoverflow.com/questions/38019/whats-the-best-approach-to-naming-classes/38043#38043 0 Answer by aryeh for What's the best approach to naming classes? aryeh 2008-09-01T15:13:32Z 2008-09-01T15:18:45Z <p>I use my middle name and the street I grew up on. :)</p> <p>If you're looking for a reference on what to do and perhaps best practice, try Code Complete.</p> http://stackoverflow.com/questions/36144/how-do-you-make-a-post-request-into-a-new-browser-tab-using-javascript-xul/36995#36995 2 Answer by aryeh for How do you make a post request into a new browser tab using JavaScript / XUL? aryeh 2008-08-31T17:54:40Z 2008-08-31T17:54:40Z <p>The answer to this was found by <a href="http://beta.stackoverflow.com/questions/36958/stackoverflow-ubiquity-command#36962" rel="nofollow">shog9</a>. The postData parameter needs to be a nsIMIMEInputStream object as detailed in</p> <p><a href="http://developer.mozilla.org/index.php?title=En/Code_snippets/Post_data_to_window" rel="nofollow">http://developer.mozilla.org/index.php?title=En/Code_snippets/Post_data_to_window</a></p> http://stackoverflow.com/questions/36144/how-do-you-make-a-post-request-into-a-new-browser-tab-using-javascript-xul 3 How do you make a post request into a new browser tab using JavaScript / XUL? aryeh 2008-08-30T17:05:14Z 2008-08-31T17:54:40Z <p>I'm trying to open a new browser tab with the results of a POST request. I'm trying to do so using a function containing the following code:</p> <pre><code>var windowManager = Components.classes["@mozilla.org/appshell/window-mediator;1"] .getService(Components.interface s.nsIWindowMediator); var browserWindow = windowManager.getMostRecentWindow("navigator:browser"); var browser = browserWindow.getBrowser(); if(browser.mCurrentBrowser.currentURI.spec == "about:blank") browserWindow.loadURI(url, null, postData, false); else browser.loadOneTab(url, null, null, postData, false, false); </code></pre> <p>I'm using a string as url, and JSON data as postData. Is there something I'm doing wrong?</p> <p>What happens, is a new tab is created, the location shows the URL I want to post to, but the document is blank. The Back, Forward, and Reload buttons are all grayed out on the browser. It seems like it did everything except executed the POST. If I leave the postData parameter off, then it properly runs a GET.</p> <p>Build identifier: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.1) Gecko/2008070206 Firefox/3.0.1</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/36570#36570 23 Answer by aryeh for Why are Vi and Emacs popular ? aryeh 2008-08-31T02:10:24Z 2008-08-31T02:10:24Z <p>I personally believe they're popular because they give you all the features you need for editing, interfacing with the system without leaving the editor and most importantly... </p> <p><strong>YOU DON'T NEED TO USE A MOUSE</strong>!</p> <p>You can escape to a shell, run commands, compile, all without lifting your hands from the keyboard. Once you get used to having everything literally at your fingertips, lifting your hands to use a mouse on some level gets you out of the programming zone.</p> http://stackoverflow.com/questions/36498/how-do-i-send-email-from-the-command-line/36528#36528 0 Answer by aryeh for How do I Send Email from the Command Line? aryeh 2008-08-31T01:00:13Z 2008-08-31T01:00:13Z <p>@<a href="http://beta.stackoverflow.com/questions/36498/how-do-i-send-email-from-the-command-line#36509" rel="nofollow">Joseph Pecoraro</a> I was kidding around, but I figured not everyone has a sense of humor... :) Cheers!</p> http://stackoverflow.com/questions/36415/best-chat-im-tool-for-developers/36510#36510 5 Answer by aryeh for Best chat/IM tool for developers? aryeh 2008-08-31T00:32:47Z 2008-08-31T00:32:47Z <p>If you are working with a team I'd suggest using IRC. IM chat is great 1-to-1, but IRC is a much better communication form for teams.</p> <p>Set up a room on irc.freenode.net and get all the developers in there and use it to communicate with everyone in a group fashion. I've found that it typically unifies the team better as a cohesive social group by providing group communication and inclusion which ultimately results in better team work.</p> http://stackoverflow.com/questions/36498/how-do-i-send-email-from-the-command-line/36499#36499 7 Answer by aryeh for How do I Send Email from the Command Line? aryeh 2008-08-31T00:11:36Z 2008-08-31T00:17:22Z <pre><code>$ echo "This is the email body" | mail -s "This is the subject" me@email.com </code></pre> <p>Alternatively:</p> <pre><code>$ cat | mail -s "A few lines off the top of my head" me@here.com This is where my multiline message would go ^D </code></pre> <p>^D - means press control-D</p> http://stackoverflow.com/questions/36475/designing-a-threaded-commenting-system/36497#36497 1 Answer by aryeh for Designing a threaded commenting system aryeh 2008-08-31T00:05:15Z 2008-08-31T00:05:15Z <p>I'm guessing your question is about arranging the system so you don't have to work as:</p> <ol> <li>Select all the top level comments</li> <li>Select all comments whose parents were found in the step prior</li> <li>Select all comments whose parents were found in the step prior</li> <li>... repeat until no comments found</li> </ol> <p>I would suggest desiging the db table with a thread key which would be string of all the parents of that post. You'd have to limit your discussion to a certain depth, but your sql statements would be straight selects and order by the thread key, giving you back threaded comments. Less taxing on your DB and Webserver.</p> <p>A thread key would be something like it's current post id joined onto it's parent's thread key with a delimiter.</p> <p>How does that sound?</p> http://stackoverflow.com/questions/36353/what-are-the-alternatives-to-using-phpmyadmin/36357#36357 6 Answer by aryeh for What are the alternatives to using phpMyAdmin? aryeh 2008-08-30T21:30:14Z 2008-08-30T21:37:58Z <p>The OS X port of mysql comes with a native mysql administration gui utility suite called the "MySQL Administrator" and "MySQL Query Browser"</p> <p><a href="http://www.mysql.com/products/tools/administrator/" rel="nofollow">http://www.mysql.com/products/tools/administrator/</a></p> <p><a href="http://www.mysql.com/products/tools/query-browser/" rel="nofollow">http://www.mysql.com/products/tools/query-browser/</a></p> <p>Additionally there is a dashboard widget you can install that will monitor the MySQL server performance. It's called MySQLHealth.</p> http://stackoverflow.com/questions/2573/vim-tutorials/36330#36330 15 Answer by aryeh for vim Tutorials aryeh 2008-08-30T20:38:43Z 2008-08-30T20:38:43Z <p>Here is your 5 minute tutorial. The easiest way to learn vi is to know what the letters stand for:</p> <pre> y(ank) - copy d(elete) - delete c(hange) - change p(aste) - put from buffer after cursor o(pen) - start a new line i(nsert) - insert before current character a(fter) - insert after current character w(ord) - moves to beginning of next word b(ack) - moves to beginning of current word or prior word e(end) - moves to end of current word or next word f(ind) - moves to a character on the current line movement keys you just need to learn: h,j,k,l ^ - beginning of text on a line $ - end of text on a line 0 - first position on line most commands can be prefaced with numeric modifiers. 2w - means move 2 words 5h - means move 5 charcters to the left 3k - means move 3 lines up 3fs - means move to the 3rd letter s folling the cursor modification commands (d,c,y) need to know how much to work on. dd - delete a line into memory yy - yank a line into memory cc - change the whole line c$ - change from current position to the end c2w - change the text spanning the next 2 words 3dd - delete 3 lines d2f. - delete to the second period. . - means redo the last modification command. / - searches for text, and then n(ext) will go the next found occurance. N will go prior. ? - searches backwards through the document. </pre> <p>You now should be able to use basic vi effectively. Just remember to hit ESC before each command.</p> <pre> Basic ex commands: :w myfile.txt - save current file as 'myfile.txt' :q - quit the document :q! - REALLY QUIT w/o saving :w! myfile.txt - try to force saving to 'myfile.txt' even if there are warnings :wq - write out the current document and quit :r [filename] - read filename into the current document :w %.old - write the current file as [originalfilename].old :0 - go to the opt of the document :22 - go to line 22 :$ - go to the bottom of the document Next you should learn m(arks) - place holders in the current doc. ma - mark the current line as 'a' mb - mark the current line as 'b' 'a - go to mark a y'a - yank all the lines from the current position to mark-a </pre> <p>y'akpkpkp - yank all lines to position a, go up a line, paste, up a line, up a line, paste. You've just taken a block of text and replicated it 3 times.</p> <p>You no longer need a tutorial, now you just need reference material on other vim commands and options. I would advise reading up on splitting windows, vi regex, and you should be all set.</p> http://stackoverflow.com/questions/36275/is-there-a-way-to-move-the-current-window-to-another-desktop-without-using-a-mous/36302#36302 1 Answer by aryeh for Is there a way to move the current window to another desktop without using a mouse in OS X? aryeh 2008-08-30T19:48:34Z 2008-08-30T19:48:34Z <p>There is a tool called <a href="http://coderage-software.com/zooom/" rel="nofollow">Zooom</a> that will allow you to grab any part of a window to move it using a hotkey, and also similarly resize windows, again with a hotkey. This is very nice when moving from a linux wm to OS X, however I'm still wondering if just basic switching as in the question is available without additional software purchases.</p> http://stackoverflow.com/questions/36152/how-do-you-unsubscribe-from-a-ubiquity-command/36166#36166 2 Answer by aryeh for How do you unsubscribe from a ubiquity command aryeh 2008-08-30T17:16:56Z 2008-08-30T17:16:56Z <p>The way to delete commands is to find them in the Subscribed Feeds section of the main help page:</p> <ol> <li>ubiq help | about:ubiquity</li> <li>Scroll down to "Subscribed Feeds" in the right hand column</li> <li>Click '[unsubscribe]' for the one you want to delete.</li> <li>Profit!</li> </ol> http://stackoverflow.com/questions/31173/ubiquity-hack/36116#36116 3 Answer by aryeh for Ubiquity Hack aryeh 2008-08-30T16:44:20Z 2008-08-30T16:44:20Z <p>I wrote this a few days ago: <a href="http://www.appidx.com/ubiq/stackoverflow.html" rel="nofollow">http://www.appidx.com/ubiq/stackoverflow.html</a></p> <p>The execute portion refuses to run with POST data. The code is the right code, and I've tried with the native code of the function with the XUL component javascript and it likewise refuses to run. Any help would be appreciated. The preview on the other hand works fine.</p> <pre><code>CmdUtils.CreateCommand({ name: "stackoverflow", author: {name: "Aryeh Goldsmith"}, homepage: "http://www.appidx.com/ubiq/", icon: "http://stackoverflow.com/favicon.ico", takes: {search: noun_arb_text}, license: "MPL", description: "Searches the highlighted text on stackoverflow.", _version: "52", preview: function ( pblock, inputObject) { var query = inputObject.text; pblock.innerHTML = "Search beta.stackoverflow.com for " + query + "&lt;br/&gt;"; var url = "http://beta.stackoverflow.com/search"; params = {"search-text": query, "hiddenstuff": ''}; jQuery.post( url, params, function( html ) { var $ = jQuery; pblock.innerHTML += "&lt;div style='display:none;'&gt;" + html + "&lt;/div&gt;"; var ques = $(pblock).find('.summary h3'); var details = $(pblock).find('.summary .excerpt'); var out = "&lt;div style='margin-bottom: 6px;'&gt;&lt;b&gt;Previewing the first 5 results:&lt;/b&gt;&lt;/div&gt;"; for (var j = 0; j&lt; ques.size() &amp;&amp; j &lt; 5; j++) { out += "&lt;div style='padding: 5px;'&gt;&lt;b&gt;" + ques[j].innerHTML + "&lt;/b&gt;&lt;br /&gt;"; out += details[j].innerHTML + "&lt;/div&gt;"; } pblock.innerHTML = out; }); }, execute: function( inputObject ) { var query = inputObject.text; var url = "http://beta.stackoverflow.com/search"; var params = { "search-text": query, hiddenstuff: "" }; // The following refuses to work... why? I just don't know! AFAIK it's correct. openUrl(url, params); }, }) </code></pre> http://stackoverflow.com/questions/1417952/how-do-i-access-the-managedobjectcontext-from-a-controller-deep-in-the-ui/1417986#1417986 Comment by aryeh on How do I access the managedObjectContext from a controller deep in the UI? aryeh 2009-09-13T15:29:16Z 2009-09-13T15:29:16Z I'm not creating the controllers manually. They're being created automatically after putting the UI together through the interface builder for the iphone.