User chews - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:28:18Z http://stackoverflow.com/feeds/user/33966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282183/screen-off-event-or-property-on-iphone 9 Screen Off event or property on iPhone chews 2008-11-11T21:24:25Z 2009-04-02T15:43:58Z <p>Hello,</p> <p>Is there a way to determine if the screen has been shut off via the top Power button?</p> <p>I just need to know if the screen has been somehow set to off to kill a loop that updates location.</p> <p>Thanks</p> http://stackoverflow.com/questions/588692/how-to-mass-import-flvs-into-flash/588735#588735 2 Answer by chews for How to mass import FLVs into Flash chews 2009-02-26T01:27:57Z 2009-02-26T01:27:57Z <p>Ok, given that you want to import them. Something like this is possible using JSFL.</p> <p>JSFL a javascript extension system that works in the flash authoring environment. There are methods for adding items to both the timeline and into the library.</p> <p>Here are <a href="http://help.adobe.com/en%5FUS/Flash/10.0%5FExtendingFlash/WS5b3ccc516d4fbf351e63e3d118a9024f3f-7fe8.html" rel="nofollow">the docs</a>, look at the library.addnewitem and document.additem methods.</p> <p>This should do the trick</p> http://stackoverflow.com/questions/493978/retrieving-current-url-from-firefox-with-python/494063#494063 1 Answer by chews for retrieving current URL from FireFox with python chews 2009-01-30T00:27:25Z 2009-01-30T00:27:25Z <p>If on windows you can use win32com</p> <pre><code>import win32clipboard import win32com.client shell = win32com.client.Dispatch("WScript.Shell") shell.AppActivate('Some Application Title') </code></pre> <p>Then use shell.SendKeys to do a ctrl+l and a ctrl+c</p> <p>Then read the string in the clipboard.</p> <p>It's horkey though it will work, alternatly you can use something like AutoIt an compile the code to an exe that you can work with.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/493236/how-do-you-migrate-an-iis-7-site-to-another-server/493373#493373 3 Answer by chews for How do you migrate an IIS 7 site to another server? chews 2009-01-29T20:55:17Z 2009-01-29T20:55:17Z <p>I'd say export your config</p> <p>In IIS manager, you need to export the config from server 1. In IIS manager, click the Server node, and go to Shared Configuration under Management and Click “Export Configuration”. You can use a password if you are sending them across the internet, if you are just gonna move them via a USB key then don't sweat it.</p> <p>Move these files to your new server</p> <pre><code>administration.config applicationHost.config configEncKey.key </code></pre> <p>On the new server, go back to the “Shared Configuration” section and check “Enable shared configuration.” Enter the location in physical path to these files and apply them.</p> <p>It should prompt for the encryption password(if you set it) and reset IIS.</p> <p>BAM! Go have a beer!</p> http://stackoverflow.com/questions/493245/jquery-not-working-on-my-host/493354#493354 1 Answer by chews for jQuery not working on my host? chews 2009-01-29T20:49:12Z 2009-01-29T20:49:12Z <p>The way the site may be configured on IIS is via their virtual directory setup that may not be including you js folder. The server may also not be allowing the site to deliver the js based on file permissions.</p> <p>I'd say you put a ticket into your webhosting provider and have them look at why the server is not delivering the file. Another option is the IIS server is not set to allow delivery of the js file extension.</p> <p>Hope this helps</p> http://stackoverflow.com/questions/353684/determine-the-centroid-of-multiple-points 3 Determine the centroid of multiple points chews 2008-12-09T18:06:34Z 2008-12-09T20:34:36Z <p>Hello,</p> <p>I'm writing a mapping application that I am writing in python and I need to get the lat/lon centroid of N points. Say I have two locations</p> <pre><code>a.lat = 101 a.lon = 230 b.lat = 146 b.lon = 200 </code></pre> <p>Getting the center of two points is fairly easy using a euclidean formula. I would like to be able to do it for more then two points.</p> <p>Fundamentally I'm looking to do something like <a href="http://a.placebetween.us/" rel="nofollow">http://a.placebetween.us/</a> where one can enter multiple addresses and find a the spot that is equidistant for everyone.</p> http://stackoverflow.com/questions/339344/is-there-a-net-equivalent-to-apache-hadoop/339390#339390 7 Answer by chews for Is there a .Net equivalent to Apache Hadoop? chews 2008-12-04T01:53:33Z 2008-12-04T01:53:33Z <p>Have you looked at using <a href="http://wiki.apache.org/hadoop/HadoopStreaming" rel="nofollow">Hadoop's streaming?</a></p> <p>I use it in python all the time :-).</p> <p>I'm starting to see that the heterogeneous approach is often the best and it looks like other folks are doing the same.</p> <p>If you look at projects like protocol-buffers or facebook's thrift you see that sometimes it's just best to use an app written in another language and build the glue in the language of your preference.</p> http://stackoverflow.com/questions/339370/how-do-i-load-arbitrary-data-from-a-url-php/339383#339383 2 Answer by chews for How do I load arbitrary data from a url PHP? chews 2008-12-04T01:47:38Z 2008-12-04T01:47:38Z <p>I think you are looking for</p> <pre><code>$url_data = file_get_contents("http://example.com/examplefile.txt"); </code></pre> http://stackoverflow.com/questions/315132/how-do-i-use-cookies-across-two-different-domains/315161#315161 0 Answer by chews for How do I use cookies across two different domains? chews 2008-11-24T19:26:16Z 2008-11-24T19:26:16Z <p>You don't, cookies are bound to a domain. There are restrictions on this and it's referred to as cross site scripting.</p> <p>Now, for some help to your problem. What you can do is create a script that helps bridge them.</p> <p>You can globally rewrite all links to your second site are going to need cookie information from the first site.</p> <p>You would save all the cookies from site-a to a database that they both can read, then programatically appending the cookie-id querystring on all of the links to site-b, then you lookup that cookie id and re-set the cookies under the new domain.</p> <p>There is a really good PHP database abstraction library (<a href="http://adodb.sourceforge.net/" rel="nofollow">PHP ADODB</a>) and it has a session sharing plugin that makes all of this a whole lot easier.</p> http://stackoverflow.com/questions/310821/how-to-call-asp-net-dll-file-from-a-php-script/310872#310872 1 Answer by chews for How to call ASP.NET .dll file from a PHP script? chews 2008-11-22T04:41:32Z 2008-11-22T04:41:32Z <p>You use the DOTNET extension.</p> <p>First off, you need to be running this on Windows. If you are on linux, then I would look at using something like Facebooks Thrift.</p> <p>If you are on windows and depending on which build of windows you are using you may need to uncomment the com extension in your php.ini</p> <pre><code>&lt;?php $stack = new DOTNET("mscorlib", "System.Collections.Stack"); $stack-&gt;Push(".Net"); $stack-&gt;Push("Hello "); echo $stack-&gt;Pop() . $stack-&gt;Pop(); ?&gt; </code></pre> <p>Here are a list of <a href="http://us2.php.net/manual/en/book.com.php" rel="nofollow">Windows Specific functions</a></p> http://stackoverflow.com/questions/15266/objective-c-cocoa-how-do-i-accept-a-bad-server-certificate/309821#309821 0 Answer by chews for Objective-C/Cocoa: How do I accept a bad server certificate? chews 2008-11-21T19:06:41Z 2008-11-21T19:06:41Z <p>Another option would be to use an alternate connection library.</p> <p>I am a huge fan of AsyncSocket and it has support for self signed certs</p> <p><a href="http://code.google.com/p/cocoaasyncsocket/" rel="nofollow">http://code.google.com/p/cocoaasyncsocket/</a></p> <p>Take a look, I think it is way more robust then the standard NSURLRequests.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/304316#304316 3 Answer by chews for iPhone Proximity Sensor chews 2008-11-20T04:17:55Z 2008-11-20T04:38:56Z <p>@Dipak Patel &amp; @Coderer</p> <p>You can download working code at <a href="http://spazout.com/google_cheats_independent_iphone_developers_screwed" rel="nofollow">http://spazout.com/google_cheats_independent_iphone_developers_screwed</a></p> <p>It has a working implementation of proximityStateChanged a undocumented method in UIApplication.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/287781/what-software-have-you-purchased-to-use-at-work-that-your-company-wouldnt-purch/287844#287844 1 Answer by chews for What software have you purchased to use at work, that your company wouldn't purchase? chews 2008-11-13T18:48:56Z 2008-11-13T18:48:56Z <p>Komodo IDE &lt;-- its magic for those who do python Pathfinder (a finder replacement that integrates a terminal and ssh client)</p> <p>Both tools have made me a much more efficient engineer.</p> http://stackoverflow.com/questions/286282/how-can-i-make-cookies-in-my-flash-application/286349#286349 0 Answer by chews for How can I make cookies in my Flash application? chews 2008-11-13T05:55:03Z 2008-11-13T18:45:56Z <p>In AS2, I would say just create a javascript function to set the cookie and call it from within flash using a geturl request.</p> <pre><code>// Javascript Function function setCookie(c_name,value,expiredays) { var exdate=new Date(); exdate.setDate(exdate.getDate()+expiredays); document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : ";expires="+exdate.toGMTString()); } // AS2 Function myBtn_btn.onRelease = function(){ getURL("javascript:setCookie('my_cookie','my_value','30')"); }; </code></pre> <p>Hope that helps. chews</p> <p>p.s. that is untested code but it should work :-)</p> http://stackoverflow.com/questions/284741/processing-chunked-encoded-http-post-requests-in-python-or-generic-cgi-under-apa/284752#284752 1 Answer by chews for Processing chunked encoded HTTP POST requests in python (or generic CGI under apache) chews 2008-11-12T17:56:15Z 2008-11-12T17:56:15Z <p>I'd say use the twisted framework for building your http listener. Twisted supports chunked encoding.</p> <p><a href="http://python.net/crew/mwh/apidocs/twisted.web.http._ChunkedTransferEncoding.html" rel="nofollow">http://python.net/crew/mwh/apidocs/twisted.web.http._ChunkedTransferEncoding.html</a></p> <p>Hope this helps.</p> http://stackoverflow.com/questions/283331/nsurlconnection-chunked-encoding-upload-how 1 NSURLConnection chunked encoding upload - How? chews 2008-11-12T08:37:42Z 2008-11-12T14:13:46Z <p>I need to create a way to upload a bytestream using chunked encoding.</p> <p>I have a byte array that contains an audio file, I would like to send that file to a server using a chunked stream.</p> <p>I've been able to do a chunked upload via a native socket but I would really like to do this via one of the NSURL (NSURLConnection?) libs. Is that possible?</p> <p>Thanks!</p> http://stackoverflow.com/questions/261047/where-can-i-get-a-good-free-css-editor/261142#261142 0 Answer by chews for Where can i get a good free css editor? chews 2008-11-04T07:22:20Z 2008-11-04T07:22:20Z <p>I'm really huge fan of <a href="http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml" rel="nofollow">Komodo Edit.</a></p> <p>It's free supports syntax highlighting and supports code intelligence. This is the best editor I've ever found.</p> <p>If you need to ramp up for churning alot of code this will surely save your life.</p> <p>I liked it so much, I bought the full IDE.</p> <p>Plus, it's available on every platform.</p> http://stackoverflow.com/questions/588692/how-to-mass-import-flvs-into-flash/588735#588735 Comment by chews on How to mass import FLVs into Flash chews 2009-03-01T01:35:07Z 2009-03-01T01:35:07Z In that case... I would look at an automation application like AutoIt. http://stackoverflow.com/questions/310821/how-to-call-asp-net-dll-file-from-a-php-script/310872#310872 Comment by chews on How to call ASP.NET .dll file from a PHP script? chews 2008-11-22T22:31:35Z 2008-11-22T22:31:35Z If you have two boxs, one running windows (containing your .net methods) the other a linux one for PHP. Then the easiest is probably exposing the methods you need using a webservice. Dotnet does make it really easy to do that. And php now has awesome SOAP support.