User Can Berk Güder - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T22:44:26Zhttp://stackoverflow.com/feeds/user/2119http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/634342/get-the-table-name-from-the-model-in-hibernate2Get the table name from the model in HibernateCan Berk Güder2009-03-11T12:42:34Z2009-10-21T19:31:25Z
<p>How do I get the table name for a model in Hibernate?</p>
<p>Apparently there used to be a <code>getTableName()</code> method in <a href="http://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/metadata/ClassMetadata.html" rel="nofollow"><code>ClassMetadata</code></a>, but it's been removed.</p>
<p>There's a <a href="http://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/cfg/Configuration.html#getClassMapping%28java.lang.String%29" rel="nofollow"><code>getClassMapping(String entityName)</code></a> method in <a href="http://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/cfg/Configuration.html" rel="nofollow"><code>Configuration</code></a>, but I don't know how I can (or if I should) use Configuration from within my DAO implementation.</p>
<p>My DAO implementation is a subclass of <a href="https://source.sakaiproject.org/maven2/org/sakaiproject/generic-dao/site/apidocs/org/sakaiproject/genericdao/hibernate/HibernateGeneralGenericDao.html" rel="nofollow">HibernateGeneralGenericDao</a>.</p>
<p><strong>UPDATE:</strong> It turns out I can do what I'm trying to do without the table name. However, I will keep the question open (and try the answers as they come) for the sake of reference.</p>
http://stackoverflow.com/questions/398299/looping-in-a-spiral7Looping in a spiralCan Berk Güder2008-12-29T18:40:29Z2009-10-13T00:08:17Z
<p>A friend was in need of an algorithm that would let him loop through the elements of an NxM matrix (N and M are odd). I came up with a solution, but I wanted to see if my fellow SO'ers could come up with a better solution.</p>
<p>I'm posting my solution as an answer to this question.</p>
<p><strong>Example Output:</strong></p>
<p>For a 3x3 matrix, the output should be:</p>
<p>(0, 0)
(1, 0)
(1, 1)
(0, 1)
(-1, 1)
(-1, 0)
(-1, -1)
(0, -1)
(1, -1)</p>
<p><img src="http://i41.tinypic.com/24dmseu.png" alt="3x3 matrix" /></p>
<p>Furthermore, the algorithm should support non-square matrices, so for example for a 5x3 matrix, the output should be:</p>
<p>(0, 0)
(1, 0)
(1, 1)
(0, 1)
(-1, 1)
(-1, 0)
(-1, -1)
(0, -1)
(1, -1)
(2, -1)
(2, 0)
(2, 1)
(-2, 1)
(-2, 0)
(-2, -1)</p>
<p><img src="http://i40.tinypic.com/9thdtc.png" alt="5x3 matrix" /></p>
http://stackoverflow.com/questions/216876/what-is-the-best-commit-message-you-have-ever-encountered23What is the best commit message you have ever encountered?Can Berk Güder2008-10-19T19:51:30Z2009-09-08T08:59:27Z
<p>Following <a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered">this topic</a>, what is the best (as in witty and/or funny) commit message you have ever encountered?</p>
<p>For example, here's the message for a commit I made a few minutes ago:</p>
<blockquote>
<p>This change should have never been made. It kills little children.<br />
NOTE TO SELF: Don't do everything [the boss] tells you immediately.</p>
</blockquote>
http://stackoverflow.com/questions/1386635/need-a-list-of-week-days-with-their-number-on-iphone-os/1386656#13866560Answer by Can Berk Güder for Need a list of week days with their number on iphone osCan Berk Güder2009-09-06T20:32:56Z2009-09-06T20:32:56Z<p>If you're looking to get the numerical weekday from an <code>NSDate</code> object, you need to use <code>NSCalendar</code> and <code>NSDateComponents</code> like this:</p>
<pre><code>NSDate *date = [NSDate date];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *weekdayComponents = [gregorian components:NSWeekdayCalendarUnit fromDate:date];
int weekday = [weekdayComponents weekday];
</code></pre>
http://stackoverflow.com/questions/1384622/xcode-3-2-offline-documentation/1384628#13846284Answer by Can Berk Güder for Xcode 3.2 offline documentation?Can Berk Güder2009-09-06T01:03:30Z2009-09-06T01:03:30Z<p>It's in Preferences > Documentation.</p>
http://stackoverflow.com/questions/1334849/how-do-sites-like-tinyurl-generate-urls/1334866#13348662Answer by Can Berk Güder for How do sites like tinyurl generate urls?Can Berk Güder2009-08-26T13:55:52Z2009-08-26T13:55:52Z<p>I don't know about TinyURL, Tinypic, etc. but shorl.com uses something called <a href="http://shorl.com/koremutake" rel="nofollow">koremutake</a>.</p>
<p>If I were to develop such a system, I guess some sort of short hash or plain random strings could be possible choices.</p>
http://stackoverflow.com/questions/1321727/string-between-function/1321738#13217382Answer by Can Berk Güder for String Between Function?Can Berk Güder2009-08-24T11:05:03Z2009-08-24T11:19:46Z<pre><code>string s = '"Hello" "WHY ARE" "WWWWWEEEEEE"'
string[] words = s.Split('"');
// words is now ["Hello", " ", "WHY ARE", " ", "WWWWWEEEEEE"]
</code></pre>
<p>If you don't want the empty strings, you can split by <code>'" "'</code>, in which case you will get <code>['"Hello', "WHY ARE", 'WWWWWEEEEEE"']</code>.</p>
<p>On the other hand, using regular expressions could be the best solution for what you want. I'm not a C# expert, so I can't give the code from the top of my head, but this is the regex you'll want to use: <code>"(.*?)"</code></p>
http://stackoverflow.com/questions/704985/objective-c-asynchronous-web-request-with-cookies/705027#7050278Answer by Can Berk Güder for Objective-C Asynchronous Web Request with CookiesCan Berk Güder2009-04-01T11:07:57Z2009-08-17T15:02:50Z<p>For asynchronous requests, you need to use <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html" rel="nofollow"><code>NSURLConnection</code></a>.</p>
<p>For cookies, see <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSHTTPCookie%5FClass/Reference/Reference.html" rel="nofollow"><code>NSHTTPCookie</code></a> and <a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSHTTPCookieStorage%5FClass/Reference/Reference.html" rel="nofollow"><code>NSHTTPCookieStorage</code></a>.</p>
<p><strong>UPDATE:</strong></p>
<p>The code below is real, working code from one of my applications. <code>responseData</code> is defined as <code>NSMutableData*</code> in the class interface.</p>
<pre><code>- (void)load {
NSURL *myURL = [NSURL URLWithString:@"http://stackoverflow.com/"];
NSURLRequest *request = [NSURLRequest requestWithURL:myURL
cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
timeoutInterval:60];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
responseData = [[NSMutableData alloc] init];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[responseData appendData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
[responseData release];
[connection release];
// Show error message
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
// Use responseData
[responseData release];
[connection release];
}
</code></pre>
http://stackoverflow.com/questions/1147882/statusbar-overlaps-viewcontroller/1148698#11486981Answer by Can Berk Güder for Statusbar overlaps ViewControllerCan Berk Güder2009-07-18T22:00:17Z2009-07-18T22:00:17Z<p>In Interface Builder, make sure "Status Bar" is not set to "None" under "Simulated Interface Elements" in the view's attributes.</p>
http://stackoverflow.com/questions/1146440/intertesting-problem-with-uitableviewcell-and-uitableview-any-solution/1146489#11464890Answer by Can Berk Güder for Intertesting problem with UITableViewCell and UITableView, Any solution?Can Berk Güder2009-07-18T02:09:09Z2009-07-18T02:22:14Z<p>The <code>textField:shouldChangeCharactersInRange:replacementString:</code> method is part of the <code>UITextFieldDelegate</code> protocol, so you have to set a delegate for these <code>UITextField</code>s.</p>
<p>For example, if you were creating the <code>UITextField</code>s in your table view contoller code, and assuming the method was implemented in the same contoller, you could do this:</p>
<pre><code>UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(x,y,w,h)];
[textField setDelegate:self];
</code></pre>
<p>However, you say you're loading the <code>UITableViewCell</code>s from XIB files. You have to somehow access the <code>UITextField</code>s from inside the code and call the <code>setDelegate:</code> method on them. You can do this by using <code>UIView</code>'s <code>subviews</code> property. For example:</p>
<pre><code>UIViewController *controller = [[UIViewController alloc] initWithNibName:@"foo" bundle:nil];
UITextField *textField = (UITextField *)[[controller.view subviews] objectAtIndex:0];
</code></pre>
<p>Though creating the <code>UITextField</code>s in the code is much easier and more elegant, IMHO.</p>
<p>As for overriding the <code>canPerformAction:sender:</code> method, you'll have to subclass <code>UITextField</code> for that.</p>
http://stackoverflow.com/questions/1140737/passing-handles-between-a-viewcontroller-and-a-view/1141053#11410530Answer by Can Berk Güder for passing handles between a ViewController and a ViewCan Berk Güder2009-07-17T01:09:32Z2009-07-17T01:09:32Z<p>I'm not sure I understand who the NSArray belongs to, or who it <em>should</em> belong to, but you can try utilizing the AppDelegate if it's supposed to be a global object (accessed by more than one view and/or controller).</p>
<p>Now, to solve your problem. Your implementation is not wrong, and the warning will go away if you add <code>(MusicGridView *)</code> before <code>self.view</code>. This is related to the error you got when you tried <code>self.soundArray = self.view.soundArray</code>, and the reason is simple: <code>UIView</code> doesn't have a <code>soundArray</code> property, and <code>self.view</code> is a pointer to a <code>UIView</code>. By casting <code>self.view</code> to a <code>MusicGridView *</code>, you get rid of the warning, and your code should work fine.</p>
http://stackoverflow.com/questions/1141013/iphone-flip-right-button-like-itunes/1141033#11410331Answer by Can Berk Güder for iPhone flip right button (like iTunes)Can Berk Güder2009-07-17T00:57:14Z2009-07-17T00:57:14Z<p>There's some discussion <a href="http://discussions.apple.com/thread.jspa?threadID=1657281" rel="nofollow">here</a>, but the solution is not so elegant.</p>
<p>First of all, since <code>UIBarButtonItem</code> is not a descendant of <code>UIView</code>, you probably cannot use UIKit animations directly on the <code>UIBarButtonItem</code>. However, you can try setting a <code>customView</code> and animating that. You can use the same animation block.</p>
http://stackoverflow.com/questions/1140848/iphone-progressbar/1141011#11410111Answer by Can Berk Güder for iPhone ProgressBarCan Berk Güder2009-07-17T00:42:19Z2009-07-17T00:42:19Z<p>Assuming you mean a <code>UIProgressView</code>, you can resize it as you would any other view, by setting the frame:</p>
<pre><code>UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
[progressView setFrame:CGRectMake(0,0,320,10)];
</code></pre>
<p>or if you're using the default style, you can set the frame in the init method:</p>
<pre><code>UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0,0,320,10)];
</code></pre>
<p>As far as I know, the color of a <code>UIProgressView</code> cannot be changed. You'll probably have to roll your own view for that.</p>
http://stackoverflow.com/questions/1115832/insecure-crytographic-system/1115880#11158800Answer by Can Berk Güder for Insecure Crytographic SystemCan Berk Güder2009-07-12T11:45:40Z2009-07-12T11:45:40Z<p>The security of a system depends on many factors, only one of which is the cryptosystem of choice.</p>
<p>Modern symmetric (e.g. AES) and asymmetric (e.g. RSA) cryptosystems are very secure (read: practically impossible to break) in themselves, but the way you use the cryptosystem, and user behavior changes everything.</p>
<p>I've always argued that even the most basic cryptographic tasks should be done, or at least supervised, by cryptography experts, and Jeff has recently <a href="http://www.codinghorror.com/blog/archives/001267.html" rel="nofollow">proved me right</a>.</p>
<p>If you have had no formal education on cryptography, please seek professional advice from an expert.</p>
http://stackoverflow.com/questions/1113908/how-to-draw-an-image/1113953#11139534Answer by Can Berk Güder for How to draw an imageCan Berk Güder2009-07-11T15:26:08Z2009-07-11T15:26:08Z<p>You can use the <code>drawAtPoint</code> or <code>drawInRect</code> methods of <code>UIImage</code>.</p>
<p>For example, you can subclass UIView (I'm actually assuming you already have), and use this code inside <code>drawRect</code>:</p>
<pre><code>- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed:@"foo.png"];
[image drawAtPoint:CGPointMake(0,0)];
/* or */
[image drawInRect:rect];
/* or */
[image drawInRect:CGRectMake(0,0,100,100)];
}
</code></pre>
<p>For more methods (alpha transparency, patterns), please see the <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UIImage%5FClass/Reference/Reference.html" rel="nofollow">UIImage Class Reference</a>.</p>
http://stackoverflow.com/questions/1111318/hold-on-a-uibutton-move-a-object/1112586#11125860Answer by Can Berk Güder for Hold on a UIButton + Move a ObjectCan Berk Güder2009-07-11T00:35:09Z2009-07-11T14:56:50Z<p>I believe you need to utilize the <code>UIControlEventTouchDown</code>, <code>UIControlEventTouchUpInside</code> and <code>UIControlEventTouchUpOutside</code> events.</p>
<p>On a touch-down, start moving the <code>UIImage</code>. On a touch-up, stop moving it.</p>
<p><strong>EDIT:</strong> To continue moving the image, you might want to take a look at <code>UIKit</code> animations (accessible through <code>UIView</code>). There's also the <code>UIControlEventTouchDownRepeat</code> event, but I haven't used it personally, so I don't know if it's what you're looking for.</p>
http://stackoverflow.com/questions/174461/why-is-stack-overflow-so-microsoft-centric11Why is Stack Overflow so Microsoft-centric? [closed]Can Berk Güder2008-10-06T14:20:52Z2009-06-25T22:03:58Z
<p>If my calculations are correct, about 30% of all questions asked on Stack Overflow are related to Microsoft technologies.</p>
<p>Now I have no problem with this (although a tag filter would be great :)), but I wonder why this is so.</p>
<p>Do you think it's because:</p>
<ul>
<li>Jeff and Joel are Microsoft developers?</li>
<li>Microsoft has a huge<sup>1</sup> market share, and therefore most developers use Microsoft technologies?</li>
<li>FOSS and/or Mac developers already have their own platforms<sup>2</sup> (like <a href="http://sourceforge.net/" rel="nofollow">SourceForge</a> and <a href="http://developer.apple.com/" rel="nofollow">ADC</a>)?</li>
</ul>
<p><sup>1</sup> According to the latest <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">TIOBE index</a>, C# is the 8th most popular programming language, with Java, C and C++ being the first three. On Stack Overflow, on the other hand, c# is the most popular tag, with java, c and c++ being the 3rd, 16th and 5th respectively. Interesting.</p>
<p><sup>2</sup> Is there a similar platform for Microsoft developers? I know there's <a href="http://msdn.microsoft.com/" rel="nofollow">MSDN</a> but I believe it's more like documentation and stuff.</p>
http://stackoverflow.com/questions/962187/plain-text-password-over-https/962193#9621937Answer by Can Berk Güder for Plain text password over HTTPSCan Berk Güder2009-06-07T16:11:07Z2009-06-07T16:11:07Z<p>If HTTP is disabled, and you <em>only</em> use HTTPS, then you're not really transmitting the password as plain text anyway.</p>
http://stackoverflow.com/questions/962173/using-javascript-to-add-html/962185#9621851Answer by Can Berk Güder for Using Javascript to add HTML?Can Berk Güder2009-06-07T16:08:03Z2009-06-07T16:08:03Z<p>Of course. For example, you can do this using <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>:</p>
<pre><code>$('topics').update('<div id="mysection"></div>');
</code></pre>
<p>The syntax is quite similar for <a href="http://jquery.com/" rel="nofollow">jQuery</a> or another frameworks, and as Noldorin noted, you can do also this without any framework.</p>
http://stackoverflow.com/questions/957287/c-when-adding-the-same-object-to-two-listobject-variables-is-the-object-clon/957307#95730711Answer by Can Berk Güder for C#: When adding the same object to two List<object> variables, is the object cloned in the process?Can Berk Güder2009-06-05T18:16:32Z2009-06-05T18:16:32Z<p>Yes, but nothing's cloned. Before the assignment, the same object is in both lists. After the assignment, you have two unique objects in two lists.</p>
<p>Do This:</p>
<pre><code>list1[indexOfSomething].name = "SomeOtherName";
</code></pre>
<p>and the object in <code>list2</code> will change, too.</p>
http://stackoverflow.com/questions/948147/how-can-i-show-a-hyperlinked-image-with-two-different-size-color-borders-around-i/948158#9481582Answer by Can Berk Güder for How can I show a hyperlinked image with two different size/color borders around it?Can Berk Güder2009-06-04T01:23:53Z2009-06-04T01:23:53Z<pre><code><div style="border: 9px solid white;">
<img src="foo.png" style="border: 1px solid black;"/>
</div>
</code></pre>
http://stackoverflow.com/questions/948106/how-can-i-change-the-default-color-of-the-button-on-iphone/948120#9481200Answer by Can Berk Güder for How can I change the default color of the button on iPhone?Can Berk Güder2009-06-04T01:13:02Z2009-06-04T01:13:02Z<p>Assuming you mean <code>UIButton</code>, you can only change the title color using <code>setTitleColor:forState:</code>.</p>
<p>You can't change the background color or the shape. You have to create your own control for that.</p>
http://stackoverflow.com/questions/937523/mysql-fake-select/937545#9375450Answer by Can Berk Güder for mysql fake selectCan Berk Güder2009-06-02T01:14:32Z2009-06-02T01:14:32Z<p>MySQL has a dummy table: DUAL. but using DUAL doesn't change anything (it's just for convenience), and certainly doesn't make this query work.</p>
<p>I'm sure there's a better way to achieve what you're trying to do. We might be able to help if you explain your problem.</p>
http://stackoverflow.com/questions/932801/how-to-i-pass-selector-as-a-parameter/932808#932808-1Answer by Can Berk Güder for How to I pass @selector as a parameter?Can Berk Güder2009-05-31T20:38:13Z2009-05-31T20:38:13Z<p>I'm not sure I understand your question, but the storage type for selectors is <code>SEL</code>.</p>
http://stackoverflow.com/questions/932714/uitableview-as-a-uiscrollview/932802#9328021Answer by Can Berk Güder for UITableView as a UIScrollViewCan Berk Güder2009-05-31T20:35:31Z2009-05-31T20:35:31Z<p>Short answer: no.</p>
<p>You can try to control UITableView's scrolling behavior using the delegate methods, or better yet, stick with UIScrollView and load the views one-by-one in the UIScrollViewDelegate methods.</p>
http://stackoverflow.com/questions/932783/expression-up-to-comment-or-end-of-line/932786#9327863Answer by Can Berk Güder for Expression up to comment or end of lineCan Berk Güder2009-05-31T20:27:35Z2009-05-31T20:27:35Z<p>Here's the correct regex to do something like this:</p>
<pre><code>([^#]*)(#.*)?
</code></pre>
<p>Also, why don't you just use</p>
<pre><code>file = open('file.txt')
for line in file:
</code></pre>
http://stackoverflow.com/questions/932750/does-the-iphone-3-0-sdk-support-serial-communication/932774#9327742Answer by Can Berk Güder for Does the iPhone 3.0 SDK support serial communication?Can Berk Güder2009-05-31T20:17:57Z2009-05-31T20:17:57Z<p>The 3.0 SDK is still under NDA, so no registered developer is at liberty to talk about it. Just wait one more week, there's a good chance that the 3.0 SDK will go public at the WWDC keynote on June 8.</p>
http://stackoverflow.com/questions/500119/do-you-use-protective-gear-while-programming10Do you use protective gear while programming?Can Berk Güder2009-02-01T03:30:29Z2009-05-29T17:33:09Z
<p>I've been suffering from a lot of elbow and forearm pain lately, and apparently it's caused by my arms and elbows constantly pressing against the desk.</p>
<p>My doctor says I'm damaging the nerves on my elbow, and if I don't use elbow pads (or spend less time with the computer), it will get worse, and I will be risking permanent damage to the nerves.</p>
<p>Since spending less time with the computer was not really an option, I purchased a pair of these:</p>
<p><img src="http://www.muellersportsmed.com/images/76000-main.gif" alt="Mueller Pro Level Elbow Pad w/Kevlar" /></p>
<p>They didn't arrive yet, and I know they will probably make me look like a total idiot (my girlfriend has already started making jokes) when they do, but health comes first.</p>
<p>Anyway, my question is: do you use any protective gear while programming? If yes, what do you use?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/922449/how-can-i-replace-mutliple-empty-lines-with-a-single-empty-line-in-bash/922499#9224991Answer by Can Berk Güder for How can I replace mutliple empty lines with a single empty line in bash?Can Berk Güder2009-05-28T18:37:27Z2009-05-28T18:37:27Z<p>Actually, if you replace multiple newlines with a single newline, the output would be:</p>
<pre><code>something
something else
something else again
</code></pre>
<p>You can achieve this by:</p>
<pre><code>sed /^$/d FILE
</code></pre>
http://stackoverflow.com/questions/915421/autocomplete-textfield/915453#9154532Answer by Can Berk Güder for Autocomplete textfieldCan Berk Güder2009-05-27T12:28:49Z2009-05-27T12:28:49Z<p>That's probably an outdated snippet, or another auto-complete plugin.</p>
<p>The official auto-complete plugin for Rails resides at <a href="http://github.com/rails/auto_complete/" rel="nofollow">http://github.com/rails/auto_complete/</a></p>
<p>You can install the official plugin like this:</p>
<pre><code>script/plugin install git://github.com/rails/auto_complete.git
</code></pre>
<p><strong>UPDATE:</strong></p>
<p>Apparently</p>
<pre><code>script/plugin install auto_complete
</code></pre>
<p>works just as well.</p>
http://stackoverflow.com/questions/1386635/need-a-list-of-week-days-with-their-number-on-iphone-osComment by Can Berk Güder on Need a list of week days with their number on iphone osCan Berk Güder2009-09-06T20:29:58Z2009-09-06T20:29:58Zcan you clarify a bit? are you looking to get the weekday from an NSDate?http://stackoverflow.com/questions/1386604/handling-big-numbers-in-code/1386613#1386613Comment by Can Berk Güder on Handling big numbers in codeCan Berk Güder2009-09-06T20:24:06Z2009-09-06T20:24:06ZI'm not the downvoter, but AFAIK Python 2.6 supports infinitely long integers, so there's no need to create a new class or functions.http://stackoverflow.com/questions/1334849/how-do-sites-like-tinyurl-generate-urls/1334864#1334864Comment by Can Berk Güder on How do sites like tinyurl generate urls?Can Berk Güder2009-08-26T14:00:38Z2009-08-26T14:00:38Zusing a hash algorithm could also be a viable alternative, as it prevents storing the same thing twice. on the other hand, storage is dirt cheap these days, so I don't really know if that's necessary.http://stackoverflow.com/questions/1321727/string-between-function/1321738#1321738Comment by Can Berk Güder on String Between Function?Can Berk Güder2009-08-24T11:33:16Z2009-08-24T11:33:16Z([^"]+) is more efficient, that's true. But the OP didn't say he doesn't want to catch empty ones.http://stackoverflow.com/questions/1321727/string-between-function/1321761#1321761Comment by Can Berk Güder on String Between Function?Can Berk Güder2009-08-24T11:21:05Z2009-08-24T11:21:05Zthis would give [Hello, WHY, ARE, WWWWWEEEEEE]http://stackoverflow.com/questions/1146440/intertesting-problem-with-uitableviewcell-and-uitableview-any-solution/1146489#1146489Comment by Can Berk Güder on Intertesting problem with UITableViewCell and UITableView, Any solution?Can Berk Güder2009-07-18T21:55:08Z2009-07-18T21:55:08ZIt depends on the order in which you add the subviews, but since you're adding the subviews in the XIB file, I guess you'll have to try 0 through 2. As I said, creating the UITableViewCells in code, rather than in Interface Builder, is a better practice. Try to do that if you can, it will be a good exercise.http://stackoverflow.com/questions/1113908/how-to-draw-an-image/1113953#1113953Comment by Can Berk Güder on How to draw an imageCan Berk Güder2009-07-11T18:56:56Z2009-07-11T18:56:56Zany drawing you do after this will be done on top of the first image.
so for example, you can draw the text on top of this image, and draw the second image wherever you want. similar methods (drawInRect, drawAtPoint, etc.) exist for NSStrings.http://stackoverflow.com/questions/1111318/hold-on-a-uibutton-move-a-object/1112586#1112586Comment by Can Berk Güder on Hold on a UIButton + Move a ObjectCan Berk Güder2009-07-11T14:57:00Z2009-07-11T14:57:00ZI updated my answer.http://stackoverflow.com/questions/273858/software-worth-buying/273935#273935Comment by Can Berk Güder on Software worth buyingCan Berk Güder2009-07-08T22:26:41Z2009-07-08T22:26:41ZHmm, you're right. I must have missed that part.http://stackoverflow.com/questions/961742/mysql-c-api-libraries-for-iphoneComment by Can Berk Güder on MySQL C API libraries for iPhoneCan Berk Güder2009-06-07T16:15:16Z2009-06-07T16:15:16ZAccessing the database directly from an iPhone application doesn't sound like a good solution.
The sanest solution would probably be to create a web service and use consume the data from the web service in the iPhone application.http://stackoverflow.com/questions/958671/what-is-a-private-header-in-cComment by Can Berk Güder on what is a "private header" in cCan Berk Güder2009-06-06T02:06:37Z2009-06-06T02:06:37ZI really hoped "r" would be the first letter of "header" in French, but apparently it's not. =)http://stackoverflow.com/questions/948172/password-strength-meterComment by Can Berk Güder on Password Strength MeterCan Berk Güder2009-06-04T01:29:34Z2009-06-04T01:29:34Zso what's the question?http://stackoverflow.com/questions/948132/where-to-find-a-mac-virtual-machine-which-i-can-run-on-windows-to-test-my-websiteComment by Can Berk Güder on where to find A mac virtual machine which i can run on windows to test my websites?Can Berk Güder2009-06-04T01:28:45Z2009-06-04T01:28:45ZFirst of all, I voted to close your question as "Not Programming Related."
Maybe you can try a web service like browsershots.org?http://stackoverflow.com/questions/920675/how-can-i-delay-a-method-call-for-1-second/920690#920690Comment by Can Berk Güder on How can I delay a method call for 1 second?Can Berk Güder2009-05-28T13:01:23Z2009-05-28T13:01:23ZObjective-C & Cocoa Touch, see the tags.http://stackoverflow.com/questions/915447/willanimatesecondhalfofrotationfrominterfaceorientation-not-called-in-root-view-cComment by Can Berk Güder on willAnimateSecondHalfOfRotationFromInterfaceOrientation not called in root view controllerCan Berk Güder2009-05-27T14:01:00Z2009-05-27T14:01:00Z@jaynaiphone: that's what I said. it <i>is</i> getting called, but it doesn't do anything.