User crackity_jones - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T21:00:56Zhttp://stackoverflow.com/feeds/user/1474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/64790/why-arent-my-breakpoints-working-in-xcode/67986#679860Answer by crackity_jones for Why aren't my breakpoints working in Xcode?crackity_jones2008-09-15T23:39:04Z2009-12-15T20:06:11Z<p>There appears to be 3 states for the breakpoints in Xcode. If you click on them they'll go through the different settings. Dark blue is enabled, grayed out is disabled and I've seen a pale blue sometimes that required me to click on the breakpoint again to get it to go to the dark blue color.</p>
<p>Other than this make sure that you're launching it with the debug command not the run command. You can do that by either hitting option + command + return, or the Go (debug) option from the run menu.</p>
http://stackoverflow.com/questions/67666/backup-restore-database-for-oracle-10g-testing-using-sqlplus-or-rman1Backup/Restore database for oracle 10g testing using sqlplus or rmancrackity_jones2008-09-15T22:36:02Z2009-10-07T00:47:40Z
<p>Using Oracle 10g with our testing server what is the most efficient/easy way to backup and restore a database to a static point, assuming that you always want to go back to the given point once a backup has been created.</p>
<p>A sample use case would be the following</p>
<ol>
<li>install and configure all software</li>
<li>Modify data to the base testing point</li>
<li>take a backup somehow (this is part of the question, how to do this)</li>
<li>do testing</li>
<li>return to step 3 state (restore back to backup point, this is the other half of the question)</li>
</ol>
<p><strong>Optimally this would be completed through sqlplus or rman or some other scriptable method.</strong></p>
http://stackoverflow.com/questions/1304401/how-to-customize-the-content-of-each-page-using-page-control-and-uiscrollview/1304457#13044570Answer by crackity_jones for How to customize the content of each page using Page Control and UIScrollView?crackity_jones2009-08-20T07:09:24Z2009-08-20T07:09:24Z<p>I downloaded the sample, added the following lines to the MyViewController.h</p>
<pre><code>IBOutlet UILabel *pageText;
@property (nonatomic, retain) UILabel *pageText;
</code></pre>
<p>In the MyViewController.m I added the @synthesize pageText; line and your viewDidLoad contents.</p>
<p>I opened the MyView.xib/en file in interface builder and connected the new label. Compiled and ran and it worked for the most part. Only thing that didn't seem right was that it was a page behind. so I rewrote it to just handle odd or even pages appropriately.</p>
<pre><code>- (void)viewDidLoad {
pageNumberLabel.text = [NSString stringWithFormat:@"Page %d", pageNumber + 1];
self.view.backgroundColor = [MyViewController pageControlColorWithIndex:pageNumber];
if (pageNumber % 2) {
pageText.text = [NSString stringWithFormat:@"Image in page %d", pageNumber + 1];
} else {
pageText.text = [NSString stringWithFormat:@"Text in page %d", pageNumber +1];
}
}
</code></pre>
http://stackoverflow.com/questions/1304321/iphone-restrict-user-from-entering-space-in-textfield/1304405#13044052Answer by crackity_jones for iPhone restrict user from entering space in textfieldcrackity_jones2009-08-20T06:56:23Z2009-08-20T06:56:23Z<p>This will search to see if your replacement string contains a space, if it does then it throws the error message up, if it doesn't it returns YES.</p>
<pre><code>- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSRange spaceRange = [string rangeOfString:@" "];
if (spaceRange.location != NSNotFound)
{
UIAlertView *error = [[UIAlertView alloc] initWithTitle:@"Error" message:@"You have entered wrong input" delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[error show];
return NO;
} else {
return YES;
}
}
</code></pre>
http://stackoverflow.com/questions/1009831/using-string-as-variable-name/1009894#1009894-4Answer by crackity_jones for Using string as variable namecrackity_jones2009-06-17T22:45:19Z2009-06-17T22:45:19Z<p>What you're looking for is <a href="http://www.python.org/doc/2.5.2/ref/exec.html" rel="nofollow">exec</a></p>
<pre><code>class helloworld():
def world(self):
print "Hello World!"
str = "world"
hello = helloworld()
completeString = "hello.%s()" % str
exec(completString)
</code></pre>
http://stackoverflow.com/questions/843379/how-do-you-toggle-the-status-item-in-the-menubar-on-and-off-using-a-checkbox/843400#8434001Answer by crackity_jones for How do you toggle the status item in the menubar on and off using a checkbox?crackity_jones2009-05-09T14:17:23Z2009-05-09T14:17:23Z<p>Get an outlet to your button you want to toggle and then create an action method that your checkbox points to that toggles the hidden property of the original button based on the check box status.</p>
http://stackoverflow.com/questions/842928/reloading-a-view-when-back-button-is-clicked-from-uinavigationbar/842951#8429510Answer by crackity_jones for Reloading a view when back button is clicked from uinavigationbarcrackity_jones2009-05-09T08:27:35Z2009-05-09T08:27:35Z<p>Take the code that sets the button up in the viewDidLoad method and move it into viewWillAppear. It should update the button properly when you re-enter the view.</p>
http://stackoverflow.com/questions/149021/nscoder-vs-nsdictionary-when-do-you-use-what5NSCoder vs NSDictionary, when do you use what?crackity_jones2008-09-29T14:48:06Z2009-01-17T23:18:50Z
<p>I'm trying to figure out how to decide when to use NSDictionary or NSCoder/NSCoding?</p>
<p>It seems that for general property lists and such that NSDictionary is the easy way to go that generates XML files that are easily editable outside of the application.</p>
<p>When dealing with custom classes that holds data or possibly other custom classes nested inside, it seems like NSCoder/NSCoding would be the better route since it will step through all the contained object classes and encode them as well when an archive command is used. </p>
<p>NSDictionary seems like it would take more work to get all the properties or data characteristics to a single level to be able to save it, where as NSCoder/NSCoding would automatically encode nested custom classes that implement the NSCoding interface.</p>
<p>Outside of it being binary data and not editable outside of your application is there a real reason to use one over the other? And along those lines is there an indicator of which way you should lean between the two? Am I missing something obvious?</p>
http://stackoverflow.com/questions/302729/how-does-python-handle-classes-being-in-separate-files-or-are-they-all-supposed-t2How does Python handle classes being in separate files or are they all supposed to be in one file [closed]crackity_jones2008-11-19T17:37:25Z2008-11-19T17:55:34Z
<p>I'm working on framework for testing some command line utilities. I want to create some classes to hold the different types of information more easily. </p>
<p>Python is fairly new to me so I'm not sure how you would handle this. Do you keep all your classes in one file with your main script or can you separate them into their own files and use them in your main script. </p>
<p>What is the paradigm for how you create multiple classes and use them in a single script?</p>
<p><strong>Duplicate of <a href="http://stackoverflow.com/questions/106896/how-many-python-classes-should-i-put-in-one-file">How many python classes should I put in one file</a></strong></p>
http://stackoverflow.com/questions/302729/how-does-python-handle-classes-being-in-separate-files-or-are-they-all-supposed-t/302772#3027720Answer by crackity_jones for How does Python handle classes being in separate files or are they all supposed to be in one filecrackity_jones2008-11-19T17:53:16Z2008-11-19T17:53:16Z<p>An <a href="http://stackoverflow.com/questions/106896/how-many-python-classes-should-i-put-in-one-file#107836">answer</a> from the duplicate question in the comments seems to answer my question. My understanding now is that you can add multiple classes to a separate file which would then be referred to as a module. Then you can import that module to use your classes.</p>
http://stackoverflow.com/questions/216470/how-can-replace-the-string-foo-alloccursor-with-foo-alloccursor-in-xcod/235106#2351060Answer by crackity_jones for How can replace the string [Foo alloc]<cursor> with [[Foo alloc]<cursor>] in XCode?crackity_jones2008-10-24T20:13:56Z2008-10-24T20:13:56Z<p><a href="http://macromates.com/" rel="nofollow">Textmate</a> will auto-back fill ['s for you. You can also build your xcode project from inside it as well as do thousands of other interesting things with the objective-c and other built in bundles that add functionality. It has a 30 day demo, give it a shot and see if it does what you want.</p>
http://stackoverflow.com/questions/130500/oracle-load-spikes-couple-hours-after-startup/163330#1633300Answer by crackity_jones for Oracle load spikes couple hours after startup.crackity_jones2008-10-02T16:31:32Z2008-10-02T16:50:20Z<p>Add to the list of information needed the following:</p>
<p>Are you using archive logs?
How many redo log groups do you have? How many redo logs are in each group?
How big are the redo logs?</p>
<p>How are you restarting Oracle? Are you just doing a shutdown immediate followed by a startup? Are you rebooting the server?</p>
<p>If your log files are too small you might be getting into a state where you're waiting for the redo logs to be written to the archive logs before being able to continue, you can help remedy this by increasing the size of the redo logs.</p>
<p>Shutting down and restarting oracle would result in the redo logs all being written to the archive logs and being fresh and ready to go after you start back up. Then as they fill with redo information you hit a bottleneck when it comes time to archive them.</p>
<p>An AWR report would really be the most useful thing if you're running Oracle 10g. If you're running 9i then statspack equvalent.</p>
<p><strong>Running a AWR Report</strong></p>
<p>Login to sqlplus </p>
<pre><code>sqlplus <sys or system user>/<password>@<SID>
</code></pre>
<p>Create a 'before' statistics snapshot </p>
<pre><code>SQL> execute dbms_workload_repository.create_snapshot
</code></pre>
<p>Run your specific performance/load tests</p>
<p>Create an 'after' statistics snapshot </p>
<pre><code>SQL> execute dbms_workload_repository.create_snapshot
</code></pre>
<p>Create a workload repository report</p>
<pre><code>SQL> start awrrpt
</code></pre>
<p>Using the AWR report you should be able to determine where your bottleneck is.</p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/149714#1497145Answer by crackity_jones for What are those little Xcode tips & tricks you wish you knew about 2 years ago?crackity_jones2008-09-29T17:15:34Z2008-09-29T17:15:34Z<p>When you use code completion on a method and it has multiple arguments, using CTRL + / to move to the next argument you need to fill in.</p>
http://stackoverflow.com/questions/124118/iis-6-0-on-enterprise-server-memory-limit/124348#1243480Answer by crackity_jones for IIS 6.0 on Enterprise Server - Memory Limitcrackity_jones2008-09-23T22:37:22Z2008-09-23T22:37:22Z<p>The memory limit is 2GB unless you use the /3GB switch on the process which will use 1GB of the kernel space for the process itself. The only way to go beyond 3GB with IIS is to run the 64-bit version.</p>
http://stackoverflow.com/questions/124314/to-update-blindly-or-to-update-where/124329#1243291Answer by crackity_jones for To Update blindly or to Update Where?crackity_jones2008-09-23T22:31:33Z2008-09-23T22:31:33Z<p>It seems like there would be a lower number of transactions to make the "UPDATE cities SET usedBuilding = 0;" execute than the more specific query. The main reason I can think of against this would be if you had more than one state to your column. If its merely a boolean then it would be fine, but you may want to spend some time thinking if that will always be the case.</p>
<p>Indexing could also cause the execution plan to be more efficient using the WHERE clause.</p>
http://stackoverflow.com/questions/77603/performance-testing/77643#776430Answer by crackity_jones for Performance Testingcrackity_jones2008-09-16T21:58:26Z2008-09-16T21:58:26Z<p>With respect to performance testing I've been very skeptical of using vmware or other virtualization processes. The way we have handled this in the past is to have part of the build install the latest version on a static machine and run the tests. You should see more consistent results outside of the virtualization. </p>
http://stackoverflow.com/questions/64881/why-is-my-cocoa-program-getting-excbadaccess-during-startup/68025#680253Answer by crackity_jones for Why is my cocoa program getting EXC_BAD_ACCESS during startup?crackity_jones2008-09-15T23:48:37Z2008-09-15T23:48:37Z<p>I've seen times where this can happen when you are trying to access a object that you didn't retain properly so its either not pointing to a valid copy of your object or its pointing to an object of another type. Placing breakpoints early and analyzing the objects as you step through startup using po and print in gdb is your best bet.</p>
http://stackoverflow.com/questions/15681/developer-setup-for-starting-out-with-cocoa-mac-programming/21407#214071Answer by crackity_jones for Developer Setup for Starting Out with Cocoa/Mac Programmingcrackity_jones2008-08-21T23:14:43Z2008-08-21T23:14:43Z<p>You might try the demo of <a href="http://macromates.com/" rel="nofollow">textmate</a> and see how you like it for working with objective-c or any other type of text really. It will import xcode project settings so you can still compile and run from textmate rather than having to go back to xcode. </p>
http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources/12600#126001Answer by crackity_jones for Cocoa and Objective-C resources?crackity_jones2008-08-15T18:56:53Z2008-08-15T18:56:53Z<p>As others have mentioned Cocoa Programming for Mac OSX is a very good choice for a book. Make sure that you get the third edition if you're using Leopard and Xcode 3.0 or later. There were some changes to interface builder that can be a bit confusing if it is your first time through and you're using the older book.</p>
<p>The third edition also accounts for some useful features from Objective-C 2.0</p>
http://stackoverflow.com/questions/1616172/iphone-sdk-not-sure-why-i-am-not-receiving-uitextfield-eventsComment by crackity_jones on iphone SDK: Not sure why I am not receiving UITextField events?crackity_jones2009-10-23T22:18:39Z2009-10-23T22:18:39ZIs the File's Owner in Interface Builder set to the salesViewController class?
Slight nitpick, typically for class names you want to begin them with a capital letter.http://stackoverflow.com/questions/1304321/iphone-restrict-user-from-entering-space-in-textfield/1304342#1304342Comment by crackity_jones on iPhone restrict user from entering space in textfieldcrackity_jones2009-08-20T07:16:46Z2009-08-20T07:16:46ZWhile this is true, its not going to tell you whether your replacement string contains a space, it will just tell you if the replacement string is a single space.http://stackoverflow.com/questions/1009881/how-can-i-refresh-uiimagesviews-differentlyComment by crackity_jones on How can I refresh UIImagesViews differently?crackity_jones2009-06-17T22:54:53Z2009-06-17T22:54:53ZYou might want to reformat that with the <pre> tags, also can you include the @interface from testappViewController.hhttp://stackoverflow.com/questions/302729/how-does-python-handle-classes-being-in-separate-files-or-are-they-all-supposed-t/302739#302739Comment by crackity_jones on How does Python handle classes being in separate files or are they all supposed to be in one filecrackity_jones2008-11-19T18:00:40Z2008-11-19T18:00:40ZI think this would be a good answer if it was clearer that you can put 1 or more classes in a module (read file) and then import the module to access the class.http://stackoverflow.com/questions/130500/oracle-load-spikes-couple-hours-after-startupComment by crackity_jones on Oracle load spikes couple hours after startup.crackity_jones2008-10-02T21:40:27Z2008-10-02T21:40:27ZCan you update your question with more information about the versions of oracle and red hat you're using?http://stackoverflow.com/questions/130500/oracle-load-spikes-couple-hours-after-startup/142752#142752Comment by crackity_jones on Oracle load spikes couple hours after startup.crackity_jones2008-10-02T21:39:25Z2008-10-02T21:39:25ZHe said it always happens a certain amount of time after a restart of Oracle, its doubtful that he is happening to hit the scheduled tasks at the same point each time.http://stackoverflow.com/questions/67666/backup-restore-database-for-oracle-10g-testing-using-sqlplus-or-rman/67709#67709Comment by crackity_jones on Backup/Restore database for oracle 10g testing using sqlplus or rmancrackity_jones2008-09-15T22:53:04Z2008-09-15T22:53:04ZSorry I should have been more specific that I'm looking for a scriptable way. I've updated the question.http://stackoverflow.com/questions/67666/backup-restore-database-for-oracle-10g-testing-using-sqlplus-or-rman/67694#67694Comment by crackity_jones on Backup/Restore database for oracle 10g testing using sqlplus or rmancrackity_jones2008-09-15T22:52:11Z2008-09-15T22:52:11ZSorry I should have been more specific that I'm looking for a scriptable way. I've updated the question.