User pixel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:50:05Zhttp://stackoverflow.com/feeds/user/21804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784742/how-to-trigger-xml-xslt-transformation-by-using-c-code-how-to-pass-parameter/1784816#17848161Answer by pixel for How to trigger XML (XSLT) transformation by using C# code ? How to pass parameters ("param"s) to XSLT?pixel2009-11-23T17:49:23Z2009-11-23T17:49:23Z<p>Quick and dirty:</p>
<pre><code>XmlDocument x = new XmlDocument();
x.Load("yourxmldoc.xml");
XslTransform t = new XslTransform();
XsltArgumentList xslArg = new XsltArgumentList();
xslArg.AddParam("parameterName", "", parameterValue);
StringWriter swEndDoc = new System.IO.StringWriter();
t.Load("yourdoc.xslt");
t.Transform(x, xslArg, swEndDoc, null);
String output = swEndDoc.ToString();
</code></pre>
http://stackoverflow.com/questions/1682919/removing-url-fragment-from-nsurl0Removing url fragment from NSURLpixel2009-11-05T19:19:38Z2009-11-12T21:22:13Z
<p>I'm writing a Cocoa application, which uses NSURLs -- I need to remove the fragment portion of the URL (the #BLAH part).</p>
<p>example: <a href="http://example.com/#blah" rel="nofollow">http://example.com/#blah</a> should end up as <a href="http://example.com/" rel="nofollow">http://example.com/</a></p>
<p>I found some code in WebCore that seems to do it by using CFURL functionality, but it never finds the fragment portion in the URL. I've encapsulated it in a extension category:</p>
<pre><code>-(NSURL *)urlByRemovingComponent:(CFURLComponentType)component {
CFRange fragRg = CFURLGetByteRangeForComponent((CFURLRef)self, component, NULL);
// Check to see if a fragment exists before decomposing the URL.
if (fragRg.location == kCFNotFound)
return self;
UInt8 *urlBytes, buffer[2048];
CFIndex numBytes = CFURLGetBytes((CFURLRef)self, buffer, 2048);
if (numBytes == -1) {
numBytes = CFURLGetBytes((CFURLRef)self, NULL, 0);
urlBytes = (UInt8 *)(malloc(numBytes));
CFURLGetBytes((CFURLRef)self, urlBytes, numBytes);
} else
urlBytes = buffer;
NSURL *result = (NSURL *)CFMakeCollectable(CFURLCreateWithBytes(NULL, urlBytes, fragRg.location - 1, kCFStringEncodingUTF8, NULL));
if (!result)
result = (NSURL *)CFMakeCollectable(CFURLCreateWithBytes(NULL, urlBytes, fragRg.location - 1, kCFStringEncodingISOLatin1, NULL));
if (urlBytes != buffer) free(urlBytes);
return result ? [result autorelease] : self;
}
-(NSURL *)urlByRemovingFragment {
return [self urlByRemovingComponent:kCFURLComponentFragment];
}
</code></pre>
<p>This is used as such:</p>
<pre><code>NSURL *newUrl = [[NSURL URLWithString:@"http://example.com/#blah"] urlByRemovingFragment];
</code></pre>
<p>unfortunately, newUrl ends up being "http://example.com/#blah" because the first line in urlByRemovingComponent always returns kCFNotFound</p>
<p>I'm stumped. Is there a better way of going about this?</p>
<p><strong>Working Code, thanks to nall</strong></p>
<pre><code>-(NSURL *)urlByRemovingFragment {
NSString *urlString = [self absoluteString];
// Find that last component in the string from the end to make sure to get the last one
NSRange fragmentRange = [urlString rangeOfString:@"#" options:NSBackwardsSearch];
if (fragmentRange.location != NSNotFound) {
// Chop the fragment.
NSString* newURLString = [urlString substringToIndex:fragmentRange.location];
return [NSURL URLWithString:newURLString];
} else {
return self;
}
}
</code></pre>
http://stackoverflow.com/questions/1705381/is-there-a-reason-to-use-two-databases/1705402#17054027Answer by pixel for Is there a reason to use two databases?pixel2009-11-10T03:04:01Z2009-11-10T03:04:01Z<p>There are many reasons to use two databases, some that come to mind:</p>
<ol>
<li><p>Size (the limit of which is controlled by the operating system, filesystem, and database server)</p></li>
<li><p>Separation of types of data. Think of a database like a book -- you wouldn't write a book that spans multiple subjects, and you shouldn't (necessarily) have a database with multiple subjects. Just so all of the data is somehow related, you could keep it together (i.e. all the tables have something to do with one website or application).</p></li>
<li><p>Import / Export - it might be easier to import data into your application if you can drop and restore a whole database, rather than import individual rows into a database table.</p></li>
</ol>
http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary26To ternary or not to ternary?pixel2008-10-01T23:27:46Z2009-11-08T16:43:02Z
<p>I'm personally an advocate of the ternary operator: () ? : ; I do realize that it has its place, but I have come across many programmers that are completely against ever using it, and some that use it too often.</p>
<p>What are your feelings on it? What interesting code have you seen using it?</p>
http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa77What are best practices that you use when writing Objective-C and Cocoa?pixel2008-10-01T02:13:42Z2009-10-18T18:12:12Z
<p>I know about the HIG (which is quite handy!), but what programming practices do you use when writing Objective-C, and more specifically when using Cocoa (or CocoaTouch).</p>
http://stackoverflow.com/questions/1574714/link-to-page-coordinates/1574748#15747480Answer by pixel for Link to page coordinatespixel2009-10-15T20:10:37Z2009-10-15T20:10:37Z<p>If you have control of the other website, you could write a javascript that looks at the query string for a parameter (i.e. ?y=1200) and scrolls the page to that position, but I'm guessing you don't have access to the other site?</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/1534679#15346791Answer by pixel for What was your first home computer?pixel2009-10-07T22:57:30Z2009-10-07T22:57:30Z<p><a href="http://en.wikipedia.org/wiki/ZX81" rel="nofollow">Timex Sinclair ZX81</a></p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/3/31/Sinclair%5FZX81.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/571028/changing-tint-background-color-of-uitabbar5Changing Tint / Background color of UITabBarpixel2009-02-20T20:02:04Z2009-10-05T10:45:43Z
<p>The UINavigationBar and UISearchBar both have a tintColor property that allows you to change the tint color (surprising, I know) of both of those items. I want to do the same thing to the UITabBar in my application, but have found now way to change it from the default black color. Any ideas?</p>
http://stackoverflow.com/questions/1488744/php-compare-exploded-word-with-mysql-varchar-in-php/1488762#14887620Answer by pixel for PHP - Compare exploded word with mysql varchar in PHPpixel2009-09-28T18:58:38Z2009-09-28T18:58:38Z<p>I think</p>
<p><code>$row = $result2->fetch_assoc();</code></p>
<p>should be</p>
<p><code>$row = $result->fetch_assoc();</code></p>
<p>since you don't seem to have a $result anywhere.</p>
http://stackoverflow.com/questions/451428/iphone-sqlite-db-and-web-based-db-synchronization-and-interaction-recommendations1iPhone SQLite DB and Web-based DB synchronization and interaction recommendationspixel2009-01-16T18:18:36Z2009-09-16T23:23:24Z
<p>I'm in the process of developing my second iPhone application, and am looking for architectural recommendations on DB handling.</p>
<p>The idea is:
1. A database of information is stored on a server (LAMP stack), and information is delivered to the device via JSON. This part has been implemented.</p>
<ol>
<li><p>The user is able to "favorite" an item in the database, which stores it in SQLite on their local device.</p></li>
<li><p>The user can also submit new items to the remote server that don't already exist, making them available for other users to favorite.</p></li>
<li><p>The user can search both databases, via a single search interface to find items.</p></li>
</ol>
<p>I'm trying to decide the data structure for this, and how to deal with the resulting objects from the database. I think I have two options for the objects:</p>
<ol>
<li><p>The remote DB and the local DB have the same object type, and the local DB stores the id of the remote item to link the two</p></li>
<li><p>Separate objects for the remote item and the local item</p></li>
</ol>
<p>Any ideas, thoughts, etc are greatly appreciated!</p>
http://stackoverflow.com/questions/1293942/where-is-that-tool-where-i-can-load-ie6-and-ie7-on-the-same-computer/1294127#12941270Answer by pixel for where is that tool where I can load IE6 and IE7 on the same computer?pixel2009-08-18T14:08:37Z2009-08-18T14:08:37Z<p>You can also download IE6eolas_nt.zip from <a href="http://browsers.evolt.org/?ie/win32/standalone" rel="nofollow">http://browsers.evolt.org/?ie/win32/standalone</a></p>
<p>It does have a couple of issues though:</p>
<ol>
<li>Transparency hacks for IE6 do not work.</li>
<li>conditional comments think that the browser is IE7 (or whatever browser you actually have installed).</li>
</ol>
<p>FYI, <a href="http://browsers.evolt.org" rel="nofollow">http://browsers.evolt.org</a> is a repository of (very likely) every browser, ever.</p>
http://stackoverflow.com/questions/1144889/xslt-test-for-a-value-inside-a-string/1144973#11449731Answer by pixel for [XSLT] Test for a value inside a stringpixel2009-07-17T18:35:10Z2009-07-17T18:35:10Z<p>You're needing the contains() XPath function. You can use it like this:</p>
<pre><code><xsl:if test="contains($show,'2005')">
//stuff
</xsl:if>
</code></pre>
http://stackoverflow.com/questions/1136511/does-apple-reject-leaking-iphone-apps/1138077#11380771Answer by pixel for Does Apple reject Leaking iPhone apps?pixel2009-07-16T14:38:39Z2009-07-16T14:38:39Z<p>My first app had a considerable leak in certain situations that I had not noticed, and it was not rejected. However, they do test the apps quite well, but it seems they mainly test for usability issues and contractual compliances. You should still fix any known leaks :)</p>
http://stackoverflow.com/questions/28551/tips-for-a-successful-appstore-submission/150023#1500238Answer by pixel for Tips for a successful AppStore submission?pixel2008-09-29T18:34:42Z2009-06-22T12:28:20Z<p>When submitting an app, make sure you set the version number properly in the info.plist file -- When updating an app, you must increase the version number. You can use x.x notation, or x.x.x notation. (I forgot to update it on my first app update). Not that it's hard to update and recompile, but it is one of those thing to easily forget.</p>
<p>I agree with Hunter as well. You WILL get bad reviews. It's ok. They're morons. Your app is great.</p>
<p>If you ever have problems with certificates, there are a few things I've found helpful:</p>
<ol>
<li>Restart XCode.</li>
<li>In your iPhone/iPod, Go into Settings>General>Profiles Make sure the distribution profile you use is in there, and there are no other conflicting profiles (I had two distribution profiles for the same app). You can remove them right in the iPhone/iPod.</li>
</ol>
<p>At some point you will see the "Application failed codesign verification" error. it will make you insane. Take a deep breath. Restart XCode, restart your development hardware. Go hit a wall, go have a drink, and it will all work again.</p>
<p>Then, you'll want to:</p>
<ol>
<li>Clean the Build Target (or all targets if you're mad at all of them)</li>
<li>Set the Code Signing Identity (in the Target properties) to "Don't Code Sign"</li>
<li>Close Xcode</li>
<li>Remove all directories in build folder</li>
<li>Open Xcode</li>
<li>Reset the Code Signing Identity to your iPhone Distribution: certificate</li>
<li>Sacrifice a small animal.</li>
<li>Build.</li>
<li>Submit Application to iTunes Connect</li>
<li>Profit!</li>
</ol>
http://stackoverflow.com/questions/942188/sqlite-datetime-data-type-with-iphone-nsdate/942556#9425561Answer by pixel for sqlite datetime data type with iphone NSdate?pixel2009-06-03T00:26:12Z2009-06-03T00:26:12Z<p>There is no TIMESTAMP datatype that you can use in SQLite, so you'll have to manually insert the time when you do your INSERT. I use the INTEGER datatype in the database, and convert my NSDate as such:</p>
<p>sqlite3_bind_double(insert_statement, 1, [myDate timeIntervalSince1970]);</p>
<p>And to get it back out of the DB:</p>
<p>myDate = [NSDate dateWithTimeIntervalSince1970:sqlite3_column_double(select_statement, 1)];</p>
http://stackoverflow.com/questions/928940/tips-and-tricks-for-making-beautiful-designed-views-on-the-iphone-objective-c2Tips and Tricks for making beautiful designed views on the iPhone / Objective-Cpixel2009-05-30T03:35:04Z2009-05-30T18:22:02Z
<p>What programming tips / tricks have you learned for styling views on the iPhone?</p>
<p>As an example, you can set the background color of a view to an image:</p>
<p>[myView setBackgroundColor:[UIColor colorWithPatternImage: [UIImage imageNamed:@"view-background.png"]]];</p>
http://stackoverflow.com/questions/892223/how-can-i-decode-data-with-base64-in-iphone/920593#9205930Answer by pixel for How can I decode data with Base64 in IPhonepixel2009-05-28T12:29:36Z2009-05-28T12:29:36Z<p>There is also some quite simple code you can use here:</p>
<p><a href="http://www.cocoadev.com/index.pl?BaseSixtyFour" rel="nofollow">http://www.cocoadev.com/index.pl?BaseSixtyFour</a></p>
<p>Another interesting way to do it, using OpenSSL:</p>
<p><a href="http://www.dribin.org/dave/blog/archives/2006/03/12/base64_cocoa/" rel="nofollow">http://www.dribin.org/dave/blog/archives/2006/03/12/base64_cocoa/</a></p>
http://stackoverflow.com/questions/915825/php-equivalent-to-perls-uriurl1PHP Equivalent to Perl's URI::URLpixel2009-05-27T13:51:34Z2009-05-27T17:35:49Z
<p>I'm in the process of rewriting a Perl-based web crawler I wrote nearly 8 years ago in PHP. I used the quite handy URI::URL module in perl to do things like:</p>
<pre><code>$sourceUrl = '/blah.html';
$baseHost = 'http://www.example.com';
my $url = URI::URL->new($sourceUrl, $baseHost);
return $url->abs;
</code></pre>
<p>returns: '<a href="http://www.example.com/blah.html" rel="nofollow">http://www.example.com/blah.html</a>'</p>
<p>the parse_url function in PHP is quite handy, but is there something more robust? Specifically something that will give the above functionality?</p>
http://stackoverflow.com/questions/455822/implementing-delegate-pattern-in-objective-c1Implementing Delegate Pattern in Objective-Cpixel2009-01-18T20:25:15Z2009-03-20T23:05:57Z
<p>I am building a class that handles NSURLConnection requests. To allow other classes to use this class, I would like to allow the main class to call a delegate when connectionDidFinishLoading is fired.</p>
<p>I've looked through lots of documentation, but I can't find anything that gives any clear examples, and the code that I have doesn't call the delegate for some reason. The code I have so far is (code not relevant removed):</p>
<p>Interface:</p>
<pre><code>@interface PDUrlHandler : NSObject {
id delegate;
}
- (void)searchForItemNamed:(NSString *)searchQuery;
@property (nonatomic, assign) id delegate;
@end
@interface NSObject (PDUrlHandlerDelegate)
- (void)urlHandler:(PDUrlhandler*)urlHandler searchResultsFinishedLoading:(NSDictionary *)resultData;
@end
</code></pre>
<p>Implementation:</p>
<pre><code>- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSLog(@"Fininshed Loading...");
resultData = [self parseJSON:jsonData];
if(delegate && [delegate respondsToSelector:@selector(urlHandler:searchResultsFinishedLoading:)]) {
NSLog(@"Delegating!");
[delegate urlHandler:self searchResultsFinishedLoading:resultData];
} else {
NSLog(@"Not Delegating. I dont know why.");
}
}
</code></pre>
<p>The delegate within the other class:</p>
<pre><code>- (void)urlHandler:(PDUrlhandler*)urlHandler searchResultsFinishedLoading:(NSDictionary *)resultData;
{
NSLog(@"Delegating!!!!");
}
</code></pre>
http://stackoverflow.com/questions/580372/what-image-libraries-have-been-ported-to-the-iphone/580403#5804033Answer by pixel for What image libraries have been ported to the iPhone?pixel2009-02-24T03:47:15Z2009-02-24T03:47:15Z<p>The iPhone SDK comes with a very good image library, Core Graphics. From the SDK Documentation:</p>
<blockquote>
<p>The Core Graphics framework is a
C-based API that provides low-level,
lightweight 2D rendering with superb
output fidelity. Use this framework,
which is based on the Quartz drawing
engine, for path-based drawing,
anti-aliased rendering, gradients,
images, color management,
coordinate-space transformations, and
PDF document handling.</p>
</blockquote>
<p>Check Out: <a href="http://developer.apple.com/iphone/library/navigation/Topics/GraphicsAnimation/index.html" rel="nofollow">http://developer.apple.com/iphone/library/navigation/Topics/GraphicsAnimation/index.html</a></p>
<p>And :<a href="http://developer.apple.com/iphone/library/navigation/Frameworks/Media/CoreGraphics/index.html" rel="nofollow">http://developer.apple.com/iphone/library/navigation/Frameworks/Media/CoreGraphics/index.html</a></p>
<p>(Login required for both).</p>
http://stackoverflow.com/questions/571028/changing-tint-background-color-of-uitabbar/571737#5717370Answer by pixel for Changing Tint / Background color of UITabBarpixel2009-02-21T00:10:01Z2009-02-21T00:10:01Z<p>Thanks. Bug filed in radar!</p>
http://stackoverflow.com/questions/541370/xslt-how-to-select-xml-attribute-by-attribute/541569#5415690Answer by pixel for XSLT - How to select XML Attribute by Attribute?pixel2009-02-12T14:46:54Z2009-02-12T14:46:54Z<p>Note: using // at the beginning of the xpath is a bit CPU intensitve -- it will search every node for a match. Using a more specific path, such as /root/DataSet will create a faster query.</p>
http://stackoverflow.com/questions/507092/what-do-you-use-to-edit-and-develop-classic-asp/509821#5098210Answer by pixel for What do you use to edit and develop Classic ASPpixel2009-02-04T02:02:33Z2009-02-04T02:02:33Z<p><a href="http://www.panic.com/coda" rel="nofollow">Coda</a> is excellent if you're on a Mac. There are syntax highlighters available for ASP as well.</p>
http://stackoverflow.com/questions/469797/does-anyone-know-of-a-to-subject-control-ala-iphones-mail-and-sms-application/492513#4925130Answer by pixel for Does anyone know of a To/Subject control a'la iPhone's Mail and SMS application?pixel2009-01-29T17:06:24Z2009-01-29T17:06:24Z<p>This is a non-answer, but I have looked for this as well, and have not found anything. I ended up doing something different with my idea that didn't require those fields to be directly input. I think you'll have to roll your own.</p>
http://stackoverflow.com/questions/477325/uitableview-background-image-alpha-problems1UITableView background image alpha problemspixel2009-01-25T07:33:52Z2009-01-25T19:18:03Z
<p>I have a UIView with a UITableView for a subview. The UIView has an image applied to its background via setBackGroundColor, and I have applied a background to the UITableView in the same manner. Both images are PNGs, and the the background for the UITableView has levels of transparency in it that don't appear to be working -- the PNG seems to be rendered without regard to the transparency data within it -- I should be seeing the background of the UIView through it. The basic code I am using for applying the background images is:</p>
<pre><code>UIImage *patternImage = [UIImage imageNamed:@"background.png"];
[tableContainer setBackgroundColor:[UIColor colorWithPatternImage: patternImage]];
</code></pre>
<p>I'm stumped. Any ideas?</p>
http://stackoverflow.com/questions/477325/uitableview-background-image-alpha-problems/478086#4780861Answer by pixel for UITableView background image alpha problemspixel2009-01-25T19:18:03Z2009-01-25T19:18:03Z<p>Turns out that I needed to set the backgroundColor of the cell's contentView rather than setting the backgroundColor of the cell itself.</p>
<p>Thanks again for the help!</p>
http://stackoverflow.com/questions/477325/uitableview-background-image-alpha-problems/478011#4780110Answer by pixel for UITableView background image alpha problemspixel2009-01-25T18:15:23Z2009-01-25T19:07:43Z<p>Thank you so much, it's exactly what I was looking for (for the past hour), but only does part of the problem.</p>
<p>No when I send reloadData to the UITableView each cell has the background, but the opacity isn't carried through... when the table first loads, I see the repeating pattern of cells and the transparency is correct, but after reloadData the cell's aren't transparent anymore.</p>
http://stackoverflow.com/questions/455822/implementing-delegate-pattern-in-objective-c/456007#4560070Answer by pixel for Implementing Delegate Pattern in Objective-Cpixel2009-01-18T22:12:02Z2009-01-18T22:12:02Z<p>Turns out I forgot to set the delegate:</p>
<pre><code>[currentHandler setDelegate:self];
</code></pre>
<p>needed to go after the line that makes the initial call to the PDUrlHandler.</p>
http://stackoverflow.com/questions/305446/what-operating-system-do-you-use-for-development/365986#3659864Answer by pixel for What operating system do you use for development?pixel2008-12-14T00:26:01Z2008-12-14T00:26:01Z<p>OSX, and unfortunately XP in VMware.</p>
http://stackoverflow.com/questions/307313/best-way-to-save-data-on-the-iphone/307702#3077021Answer by pixel for Best way to save data on the iPhonepixel2008-11-21T03:08:30Z2008-11-21T03:08:30Z<p>I use sqlite to store all application data, and preferences. To make sure that updates do not wipe the data, make sure the sqlite file is stored in the Documents directory of the application, which is not overwritten by upgrades. Some of the example code ("SQLite Books" I think) Apple provides has code to handle this.</p>
http://stackoverflow.com/questions/1705381/is-there-a-reason-to-use-two-databases/1705402#1705402Comment by pixel on Is there a reason to use two databases?pixel2009-11-10T17:09:55Z2009-11-10T17:09:55Z3. As an example, a project I work on has two databases -- one that manages user data, and one that manages other object data. This second database is supplied by an outside company at regular intervals. We have two separate databases for this object data, one live, and one staging. When we receive new data, the current staging database is dumped, and the new one loaded. We then test this data, and then point the application to the staging data (thus the staging becomes live, and the live becomes staging). This makes the process significantly faster, cleaner, and less prone to error.http://stackoverflow.com/questions/1705381/is-there-a-reason-to-use-two-databases/1705402#1705402Comment by pixel on Is there a reason to use two databases?pixel2009-11-10T17:06:57Z2009-11-10T17:06:57Z1. Bigger hardware is not always an option, and if splitting data into two databases gets around that problem, then it is a good solution. The real world is not always ideal.
2. It was simply an analogy, maybe not a perfect one, however the basic premise is still true. Data is separated in many ways in a relational database. By row and column, by tables, by databases and by servers. It is an exercise for the developer to determine the best separation.http://stackoverflow.com/questions/1682919/removing-url-fragment-from-nsurl/1682983#1682983Comment by pixel on Removing url fragment from NSURLpixel2009-11-05T19:59:45Z2009-11-05T19:59:45Zclose. apparently lastPathComponent does return the fragment, and is a NSString method. I've posted the final code to the question.http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application/809568#809568Comment by pixel on Can I embed a custom font in an iPhone application?pixel2009-07-14T17:31:05Z2009-07-14T17:31:05Znote to those wondering, this does work, but you'll need to call loadFonts right before using the font -- they don't seem to stay loaded throughout the applicationhttp://stackoverflow.com/questions/942296/change-color-of-navigation-bar/942315#942315Comment by pixel on change color of navigation bar pixel2009-06-03T00:16:18Z2009-06-03T00:16:18ZTo set it to an image you could try use a pattern for your UIColor:
UIImage *patternImage = [UIImage imageNamed:@"background.png"];
UIColor *myColor = [UIColor colorWithPatternImage: patternImage];
yourNavigationController.navigationBar.tintColor = myColor;
I've not tried this, so YMMV. If it doesn't work, you'll have to subclass the UINavigationBar (Not the simplest of tasks).http://stackoverflow.com/questions/930103/how-many-and-which-orphan-programming-languages-are-out-there/930173#930173Comment by pixel on How many and which "orphan" programming languages are out there?pixel2009-05-30T17:40:00Z2009-05-30T17:40:00ZHere is a more comprehensive list (more than 2500) <a href="http://people.ku.edu/~nkinners/LangList/Extras/langlist.htm" rel="nofollow">people.ku.edu/~nkinners/LangList/…</a>http://stackoverflow.com/questions/915825/php-equivalent-to-perls-uriurl/915856#915856Comment by pixel on PHP Equivalent to Perl's URI::URLpixel2009-05-27T22:36:18Z2009-05-27T22:36:18Zdefinitely promising, but still doesn't appear to be as smart and flexible.http://stackoverflow.com/questions/915825/php-equivalent-to-perls-uriurl/917055#917055Comment by pixel on PHP Equivalent to Perl's URI::URLpixel2009-05-27T22:33:59Z2009-05-27T22:33:59ZNet_URL2 is nice, although it doesn't seem to handle things properly. i.e., starting with a not fully qualified URL of 'page.html', I check the $url->hostname to see if it's empty (which it is), then do $url->setHost('www.example.com') and for some reason $url->getUrl() returns 'www.example.compage.html'... it's just not smart enough. I'm about to the point of taking URI::URL and converting it to PHP. :)http://stackoverflow.com/questions/666534/calling-remote-php-functions-from-an-iphone-app/666568#666568Comment by pixel on Calling remote php functions from an iPhone apppixel2009-05-27T14:00:47Z2009-05-27T14:00:47ZYou could also setup HTTP authentication via htaccess, and your iPhone app could pass the credentials in when making the request.http://stackoverflow.com/questions/580372/what-image-libraries-have-been-ported-to-the-iphone/580403#580403Comment by pixel on What image libraries have been ported to the iPhone?pixel2009-02-25T02:05:52Z2009-02-25T02:05:52ZSorry about the recommendation. The only way to do it with Core Graphics would be to roll your own processing using a CGBitmapContext and iterate through the pixels. It looks like some people have tried to compile ImageMajick for the iPhone without any success.http://stackoverflow.com/questions/196148/how-do-you-reach-a-flow-state-while-programming/196388#196388Comment by pixel on How do you reach a "flow" state while programming?pixel2008-10-13T01:57:32Z2008-10-13T01:57:32ZDefinitely have the problem planned out prior to actual coding.
Music is important to me, and I agree with Andy Lester -- To Live & Die in LA by Wang Chung is great. I also find that ambient music by Brian Eno is great. Less words, more music.