User Kevin Conner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T08:43:35Zhttp://stackoverflow.com/feeds/user/10906http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database45What's your #1 way to be careful with a live database?Kevin Conner2008-10-03T19:27:51Z2009-10-18T05:04:10Z
<p>For my customer I occasionally do work in their live database in order to fix a problem they have created for themselves, or in order to fix bad data that my product's bugs created. Much like Unix root access, it's just dangerous. What lessons should I learn ahead of time?</p>
<p>What is the #1 thing you do to be careful about operating on live data?</p>
http://stackoverflow.com/questions/1567659/is-there-a-more-efficient-way-than-doing-several-joins-mysql/1567763#15677630Answer by Kevin Conner for Is there a more efficient way than doing several JOINS (MySQL)?Kevin Conner2009-10-14T17:23:12Z2009-10-15T00:59:03Z<p>(As a commenter pointed out, this is not valid in MySQL, so, sorry. But in case you're interested:)</p>
<p>Do one JOIN to the metadata table as suggested above, and then use PIVOT to change your many rows per user into one row with many columns, one per field. I think this is valid in SQL Server 2005 and later.</p>
http://stackoverflow.com/questions/69030/in-applescript-how-can-i-find-out-if-a-menu-item-is-selected-focused1In Applescript, how can I find out if a menu item is selected/focused?Kevin Conner2008-09-16T02:53:34Z2009-10-09T20:30:02Z
<p>I have a script for OS X 10.5 that focuses the Search box in the Help menu of any application. I have it on a key combination and, much like Spotlight, I want it to toggle when I run the script. So, I want to detect if the search box is already focused for typing, and if so, type Esc instead of clicking the Help menu.</p>
<p>Here is the script as it stands now:</p>
<pre><code>tell application "System Events"
tell (first process whose frontmost is true)
set helpMenuItem to menu bar item "Help" of menu bar 1
click helpMenuItem
end tell
end tell
</code></pre>
<p>And I'm thinking of something like this:</p>
<pre><code>tell application "System Events"
tell (first process whose frontmost is true)
set helpMenuItem to menu bar item "Help" of menu bar 1
set searchBox to menu item 1 of menu of helpMenuItem
if (searchBox's focused) = true then
key code 53 -- type esc
else
click helpMenuItem
end if
end tell
end tell
</code></pre>
<p>... but I get this error:</p>
<blockquote>
<p>Can’t get focused of {menu item 1 of menu "Help" of menu bar item "Help" of menu bar 1 of application process "Script Editor" of application "System Events"}.</p>
</blockquote>
<p>So is there a way I can get my script to detect whether the search box is already focused?</p>
<p><hr /></p>
<p>I solved my problem by <a href="http://stackoverflow.com/questions/69391/">working around it</a>. I still don't know how to check if a menu item is selected though, so I will leave this topic open.</p>
http://stackoverflow.com/questions/1461444/what-does-it-mean-to-say-that-the-where-clause-of-select-statements-can-perform/1461472#14614721Answer by Kevin Conner for What does it mean to say that "the where clause of select statements can perform >, >=, <, <= operations on one column only"?Kevin Conner2009-09-22T17:32:38Z2009-09-22T17:32:38Z<p>Google explains it in their <a href="http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Introducing%5FQueries" rel="nofollow">article</a> on querying the App Engine datastore. Look for the bulleted list titled, "The filter operator can be any of the following:"</p>
http://stackoverflow.com/questions/1441570/database-query-slower-with-view/1447037#14470370Answer by Kevin Conner for Database Query Slower with ViewKevin Conner2009-09-18T22:10:33Z2009-09-18T22:10:33Z<p>Table-valued functions tend to be quicker than views, assuming your WHERE conditions are known and can be supplied in parameters.</p>
<p>One advantage of table-valued functions is that you can have multiple statements, so you can convert OUTER JOINs to quicker INNER JOINS in subsequent statements. So instead of this:</p>
<pre><code>INSERT INTO @resultTable
table1_id,
table1_column,
table2_column,
table3_column
SELECT
table1.id,
table1.column,
table2.column,
table3.column
FROM
table1
INNER JOIN table2 ON table2.table1_id = table1.id
LEFT OUTER JOIN table3 ON table3.table1_id = table1.id
return @resultTable
</code></pre>
<p>... you can do this, which I find is always faster:</p>
<pre><code>INSERT INTO @resultTable
table1_id,
table1_column,
table2_column,
SELECT
table1.id,
table1.column,
table2.column,
FROM
table1
INNER JOIN table2 ON table2.table1_id = table1.id
UPDATE @resultTable SET
table3_column = table3.column
FROM @resultTable AS result
INNER JOIN table3 ON table3.table1_id = result.table1_id
return @resultTable
</code></pre>
http://stackoverflow.com/questions/1328795/cursor-color-in-eclipse-3-5-zend-studio-7-on-mac-os-x/1429309#14293090Answer by Kevin Conner for Cursor color in Eclipse 3.5/Zend Studio 7 on Mac OS XKevin Conner2009-09-15T19:56:19Z2009-09-15T19:56:19Z<p>I love TextMate and its twilight theme, so this issue is dear to me. I think Eclipse for Mac just can't set the caret color due to an <a href="http://forums.aptana.com/viewtopic.php?p=9211&sid=7a051ccaf85bf32c95f58c75c292c378#p9211" rel="nofollow">SWT bug</a>.</p>
<p>In the meantime, you can enable line highlighting to make just the current line have a slightly lighter background. This worked for me:</p>
<ol>
<li>Open Preferences and go to General -> Editors -> Text Editors</li>
<li>Check "Highlight current line"</li>
<li>In the scrolling list at the bottom, set "Current line highlight" to a medium-dark gray.</li>
</ol>
http://stackoverflow.com/questions/564420/after-moving-a-uitableview-row-then-selecting-it-it-only-turns-blue-at-the-edge2After moving a UITableView row, then selecting it, it only turns blue at the edgesKevin Conner2009-02-19T08:42:32Z2009-06-16T22:44:52Z
<p>I have a UITableView with reorderable rows and I'm using the standard UITableViewCell.text property to display text. When I tap Edit, move a row, tap Done, then tap the row, the built-in UILabel turns completely white (text and background) and opaque, and the blue shade to the cell doesn't show behind it. What gives? Is there something I should be doing that I'm not? I have a hacky fix, but I want the real McCoy.</p>
<p>Here is how to reproduce it:</p>
<p>Starting with the standard "Navigation-Based Application" template in the iPhone OS 2.2.1 SDK:</p>
<ol>
<li><p>Open RootViewController.m</p></li>
<li><p>Uncomment viewDidLoad, and enable the Edit button:</p>
<pre><code>- (void)viewDidLoad {
[super viewDidLoad];
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
</code></pre></li>
<li><p>Specify that the table has a few cells:</p>
<pre><code>- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 4;
}
</code></pre></li>
<li><p>In tableView:cellForRowAtIndexPath:, add a line to set the text property of a cell, and therefore to use the built-in UILabel subview:</p>
<pre><code>// Set up the cell...
cell.text = @"Test";
</code></pre></li>
<li><p>To enable reordering, uncomment tableView:moveRowAtIndexPath:toIndexPath:. The default implementation is blank, which is fine in this case since the template doesn't include a data model.</p></li>
<li><p>Configure the project for the Simulator, OS 2.2.1, Build and Go. When the app comes up, tap Edit, then slide any row to a new position, tap Done, and then tap each row one at a time. Usually a tap will select a row, turn it blue, and turn its text white. But a tap on the row that you just moved does that <em>and</em> leaves the UILabel's background color as white. The result is a confusing white open space with blue strips on the edges. Oddly enough, after the first bogus tap, another tap appears to correct the problem.</p></li>
</ol>
<p>So far I have found a hack that fixes it, but I'm not happy with it. It works by ensuring that the built-in UILabel is non-opaque and that it has no background color immediately upon selection.</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// hacky bugfix: when a row is reordered and then selected, the UILabel displays all crappy
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
for (UIView *view in cell.contentView.subviews) {
if ([[view class] isSubclassOfClass:[UILabel class]]) {
((UILabel *) view).backgroundColor = nil;
view.opaque = NO;
}
}
// regular stuff: only flash the selection, don't leave it blue forever
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
</code></pre>
<p>This appears to work, but I don't expect it to be a good idea forever. What is the Right Way to fix this?</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/635023#6350231Answer by Kevin Conner for What's the best API you've ever used?Kevin Conner2009-03-11T15:23:34Z2009-04-19T11:54:05Z<p><a href="http://www.shoooes.net" rel="nofollow">Shoes</a> for Ruby. In my experience it's the very quickest, simplest API for throwing together a simple application, nifty game, handy tool, etc. with a quick and dirty GUI. If you're writing code for yourself, look no further.</p>
<p>See some <a href="http://www.the-shoebox.org/" rel="nofollow">examples</a>.</p>
http://stackoverflow.com/questions/646334/is-it-possible-to-use-a-case-statement-in-a-sql-from-clause/646375#6463750Answer by Kevin Conner for Is it possible to use a Case statement in a sql From clauseKevin Conner2009-03-14T17:54:51Z2009-03-14T17:54:51Z<p>No, you can't pick a table to query using a CASE statement. CASE statements only go within expressions, such as for a column's value or as part of your WHERE expression.</p>
<p>This should do it, if you are looking for just one value:</p>
<pre><code>IF @ClientType = 'Employee' BEGIN
SET @Source = (SELECT Md5 FROM HR WHERE Current = 2)
END
ELSE IF @ClientType = 'Member' BEGIN
SET @Source = (SELECT Md5 FROM Other WHERE Current = 2)
END
</code></pre>
http://stackoverflow.com/questions/604031/what-is-the-first-last-week-of-a-month/646363#6463630Answer by Kevin Conner for What is the first/last week of a month?Kevin Conner2009-03-14T17:48:12Z2009-03-14T17:48:12Z<p><em>Talk to your users</em> and ask them what they think it means when the program says to them "First week of the month" and "Last week of the month".</p>
http://stackoverflow.com/questions/635022/calculating-contrasting-colours-in-javascript/635073#6350733Answer by Kevin Conner for Calculating contrasting colours in javascriptKevin Conner2009-03-11T15:31:29Z2009-03-11T15:45:41Z<p>In terms of sheer readability, you want to use black and white text on whatever background it is. So convert RGB to HSV, and just check whether V is < 0.5. If so, white, if not, black.</p>
<p>Try that first and see if you find it attractive.</p>
<p>If you don't, then you probably want the white and black not to be so stark when your background is too bright or too dark. To tone this down, keep the same hue and saturation, and use these values for brightness:</p>
<pre><code>background V foreground V
0.0-0.25 0.75
0.25-0.5 1.0
0.5-0.75 0.0
0.75-1.0 0.25
</code></pre>
<p>On a medium color, you'll still see black or white text which will be nicely readable. On a dark color or light color, you'll see the same color text but at least 3/4 away in terms of brightness and therefore still readable. I hope it looks nice :)</p>
http://stackoverflow.com/questions/632968/nsmutablearray-add-new-methods/633033#6330332Answer by Kevin Conner for NSMutableArray add new methodsKevin Conner2009-03-11T01:50:21Z2009-03-11T01:50:21Z<p>It's a category, not a subclass. A subclass you would declare as you had, but by compiling with this category, you have altered NSMutableArray itself. So declare it as:</p>
<pre><code>NSMutableArray *tiles;
</code></pre>
http://stackoverflow.com/questions/633002/no-experience-since-jdk-1-4-am-i-still-viable-in-the-marketplace/633027#6330270Answer by Kevin Conner for No experience since JDK 1.4. Am I still viable in the marketplace?Kevin Conner2009-03-11T01:47:35Z2009-03-11T01:47:35Z<p>Find a tutorial. Convert some old code of yours to compile with no warnings in Java 6. Get used to generics, the new for syntax, and other stuff. You'll be familiar in no time.</p>
<p>But besides that: If a job interviewer thinks you're going to be seriously debilitated by not being exposed to the last two versions of Java, you don't want to work there. It's not that big a leap. You could very easily show your OO programming skills without any Java 5 or 6 knowledge, and then pick it up in the first week of your new job.</p>
http://stackoverflow.com/questions/632983/css-height-if-textarea-as-a-percentage-of-the-viewport-height/632999#6329991Answer by Kevin Conner for CSS: Height if textarea as a percentage of the viewport heightKevin Conner2009-03-11T01:38:00Z2009-03-11T01:38:00Z<p>HTML and CSS aren't so good at doing this kind of thing with heights. They are definitely more about scrolling vertically through a free-flowing page. I think JavaScript is likely to be your most complete solution, as FryGuy says.</p>
http://stackoverflow.com/questions/632971/ruby-on-rails-calculating-rank-based-upon-database-values/632984#6329842Answer by Kevin Conner for Ruby on Rails calculating "rank" based upon database values?Kevin Conner2009-03-11T01:28:01Z2009-03-11T01:35:53Z<p>I don't particularly know Rails, but I'm assuming there is some equivalent for the following SQL example.</p>
<p>SELECT COUNT(*) + 1 of all the rows that would come before the row in question.</p>
<p>For instance, to get the rank of an item whose score you know is 75.0:</p>
<pre><code>SELECT COUNT(*) + 1 as [rank] from my_table
WHERE score > 75.0
</code></pre>
<p>If you don't know the score of the item, but you know other identifying information:</p>
<pre><code>SELECT COUNT(*) + 1 as [rank] from my_table
WHERE score > (SELECT score FROM my_table WHERE test_id = 123)
</code></pre>
<p>This has the side effect of assigning the same rank to tests that have the same score, but still distributing it right. So you might have one score at rank 1, then two scores tied for rank 2, then the next would have rank 4, etc. If you don't like this side effect, you can get fancy with your WHERE clause to split them by test_id or first and last name.</p>
<p>This is only an appropriate solution for one test at a time. If you want to rank them all, you may as well fetch them all, ORDER BY score, and rank them yourself.</p>
http://stackoverflow.com/questions/632896/what-is-the-best-way-for-distributed-processes-to-communicate-asynchronously/632955#6329550Answer by Kevin Conner for What is the best way for distributed processes to communicate asynchronously? Kevin Conner2009-03-11T01:05:16Z2009-03-11T01:05:16Z<p>Especially if you have done it before, and it still meets your needs, stick with it.</p>
http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632941#6329413Answer by Kevin Conner for Why is it hard for a program to generate random numbers?Kevin Conner2009-03-11T01:00:59Z2009-03-11T01:00:59Z<p>Generating random numbers on a computer is like playing "Eenie meenie miney moe" when choosing who's It first in a game of tag. On the surface it does look random, but when you get into the details, it's completely deterministic. It's hard to make eenie meenie miney moe into a scheme that a person really can't predict the outcome of.</p>
<p>Also there's some difficulties with getting the distribution nice and even.</p>
http://stackoverflow.com/questions/632730/what-is-the-feasibility-of-porting-a-legacy-c-program-to-python/632935#6329351Answer by Kevin Conner for What is the feasibility of porting a legacy C program to Python?Kevin Conner2009-03-11T00:57:10Z2009-03-11T00:57:10Z<p>Yes, I think Python is a good choice, if all your platforms support it. Since this is a network program, I'm assuming the network is your runtime bottleneck? That's likely to still be the case in Python. If you really do need to speed it up, you can include your long-since-debugged, speedy C as Python modules.</p>
http://stackoverflow.com/questions/630825/iphone-how-do-you-draw-from-a-texturepage-using-coregraphics/630912#6309120Answer by Kevin Conner for iPhone, how do you draw from a texturepage using coregraphics?Kevin Conner2009-03-10T15:55:51Z2009-03-10T15:55:51Z<p>Edit: Wait a minute. Use CGImageCreateWithImageInRect. That is what it's for.</p>
<p>Here are the ideas I wrote up initially; I will leave them in case they're useful.</p>
<ul>
<li>See if you can create a sub-image of some kind from another image, such that it borrows the original image's buffer (much like some substring implementations). Then you could draw using the sub-image.</li>
<li>It might be that Core Graphics is intended more for compositing than for image manipulation, so you may have to use separate image files in your application bundle. If the SDK docs don't particularly recommend what you're doing, then I suggest you go that route since it seems the most simple and natural way to do it.</li>
<li>You could use OpenGLES instead, in which case you can specify the texture coordinates of polygon vertices to select just that section of your big texture.</li>
</ul>
http://stackoverflow.com/questions/630803/enum-with-strings/630822#6308220Answer by Kevin Conner for Enum with stringsKevin Conner2009-03-10T15:38:31Z2009-03-10T15:44:23Z<p>If you're trying to make your <strong>code</strong> readable:</p>
<pre><code>class GroupTypes {
public static final String (whatever oem stands for) = "OEM";
public static final String (whatever cmb stands for) = "CMB";
...
}
</code></pre>
<p>and if you need a list of them, include these finals in a static final List<String>. This example is in Java.</p>
<p>If you're trying to make your <strong>application</strong> readable, add:</p>
<pre><code>public static final Map<String, String> groupsByDbValue;
static {
groupsByDbValue = new HashMap<String, String>();
groupsByDbValue.put("OEM", "(whatever OEM stands for)");
groupsByDbValue.put("CMB", "(whatever CMB stands for)");
}
</code></pre>
http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630715#6307159Answer by Kevin Conner for What made programming easier in the last couple of years?Kevin Conner2009-03-10T15:10:19Z2009-03-10T15:10:19Z<p>Higher-level languages like Ruby and Python.</p>
<p>To take advantage of them we had to give up our perfectionist control on memory, performance, etc. and accept that higher-level languages cut down on the time it takes to make the damn thing work.</p>
http://stackoverflow.com/questions/628837/how-to-divide-a-set-of-overlapping-ranges-into-non-overlapping-ranges/628899#6288990Answer by Kevin Conner for How to divide a set of overlapping ranges into non-overlapping ranges?Kevin Conner2009-03-10T04:01:29Z2009-03-10T04:01:29Z<p>Pseudocode:</p>
<pre><code>unusedRanges = [ (each of your ranges) ]
rangesInUse = []
usedRanges = []
beginningBoundary = nil
boundaries = [ list of all your ranges' start and end values, sorted ]
resultRanges = []
for (boundary in boundaries) {
rangesStarting = []
rangesEnding = []
// determine which ranges begin at this boundary
for (range in unusedRanges) {
if (range.begin == boundary) {
rangesStarting.add(range)
}
}
// if there are any new ones, start a new range
if (rangesStarting isn't empty) {
if (beginningBoundary isn't nil) {
// add the range we just passed
resultRanges.add(beginningBoundary, boundary - 1, [collected values from rangesInUse])
}
// note that we are starting a new range
beginningBoundary = boundary
for (range in rangesStarting) {
rangesInUse.add(range)
unusedRanges.remove(range)
}
}
// determine which ranges end at this boundary
for (range in rangesInUse) {
if (range.end == boundary) {
rangesEnding.add(range)
}
}
// if any boundaries are ending, stop the range
if (rangesEnding isn't empty) {
// add the range up to this boundary
resultRanges.add(beginningBoundary, boundary, [collected values from rangesInUse]
for (range in rangesEnding) {
usedRanges.add(range)
rangesInUse.remove(range)
}
if (rangesInUse isn't empty) {
// some ranges didn't end; note that we are starting a new range
beginningBoundary = boundary + 1
}
else {
beginningBoundary = nil
}
}
}
</code></pre>
<p>Unit test:</p>
<p>At the end, resultRanges should have the results you're looking for, unusedRanges and rangesInUse should be empty, beginningBoundary should be nil, and usedRanges should contain what unusedRanges used to contain (but sorted by range.end).</p>
http://stackoverflow.com/questions/628855/stack-operation-in-javascript/628877#6288770Answer by Kevin Conner for Stack Operation in JavascriptKevin Conner2009-03-10T03:41:58Z2009-03-10T03:41:58Z<p>If you really must use stacks, you could pop multiple times, store the popped data in another stack temporarily by pushing, then when you're done, do the reverse to put the end of the stack back in place.</p>
<p>Something like this is commonly done by Undo/Redo operations in GUI applications -- they have a stack of Undo operations, and an opposing stack of Redo operations. Undo moves an action from stack A to B, and Redo moves an action from stack B to A. A new action pushes onto the Undo stack and wipes out the Redo stack entirely.</p>
<p>Another place this is used is in the Back/Forward lists in your browser.</p>
http://stackoverflow.com/questions/628825/what-is-it-called-when-a-program-talks-with-other-programs-or-other-computers/628862#6288622Answer by Kevin Conner for what is it called when a program talks with other programs or other computersKevin Conner2009-03-10T03:34:45Z2009-03-10T03:34:45Z<ul>
<li><em>sockets</em> are logical slots in the OS for running programs (processes) to use for communication.</li>
<li><em>protocols</em> are languages, encodings, etc. that are agreed upon by both sides of such a communication, and are used to make sense of the data.</li>
<li><em>remote procedure calling</em> or RPC is when a process in one place causes another process in another place to run some code, as if one had just called a function on the other. This can be done over the network.</li>
<li><em>XML-RPC</em> and <em>SOAP</em> are two protocols for doing RPC over the web, for instance.</li>
</ul>
http://stackoverflow.com/questions/628803/delegate-usage-business-applications/628835#6288351Answer by Kevin Conner for Delegate Usage : Business ApplicationsKevin Conner2009-03-10T03:20:27Z2009-03-10T03:20:27Z<p>To my knowledge, a .NET delegate is essentially an implementation of a single-method interface, without all the class declaration hoopla. I wish we had them in Java, personally. Think of a comparator class:</p>
<pre><code>class MyComparator<Circle> extends Comparator<Circle> {
public int compare(Circle a, Circle b) {
return a.radius - b.radius;
}
}
</code></pre>
<p>Anyplace this pattern is useful, a delegate could be useful instead.</p>
<p>I hope I'm right, but go ahead and vote me down if I'm wrong; it's been too long since I saw any C# :)</p>
http://stackoverflow.com/questions/628782/when-not-to-use-garbage-collection/628807#6288071Answer by Kevin Conner for When NOT to use garbage collection?Kevin Conner2009-03-10T03:09:17Z2009-03-10T03:09:17Z<p>When programming for embedded devices with limited resources. iPhone, for instance, uses reference-counting.</p>
<p>Or when programming something that is extremely intensive on your computer. SETI@Home and video games come to mind.</p>
<p>I would advise that you don't manage your own memory unless the situation dictates it's really necessary. Somebody famous once said that code is twice as hard to debug as it is to write. Well, memory management is hard enough in the first place. :)</p>
http://stackoverflow.com/questions/620990/introducing-a-teenager-to-programming/628806#6288064Answer by Kevin Conner for Introducing a teenager to programmingKevin Conner2009-03-10T03:08:25Z2009-03-10T03:08:25Z<p>Ruby via <a href="http://shoooes.net/" rel="nofollow">Shoes</a>. Shoes is a fun programming API for doing nifty little simple things like drawing, page layout, buttons and such. It's probably about right for that age, or for crazy-smart kids who are a little younger. It was my for-fun platform of choice for awhile last year.</p>
http://stackoverflow.com/questions/601265/iphone-dev-xcode-debugger-does-not-stop-on-breakpoints/628781#6287811Answer by Kevin Conner for iPhone Dev: XCode debugger does not stop on breakpointsKevin Conner2009-03-10T02:59:49Z2009-03-10T02:59:49Z<p>This is sort of a "is it plugged in" answer, but hey, sometimes that is the problem: Are breakpoints enabled? Sometimes when I debug, I forget to click the button in the debugging toolbar that enables and disables breakpoints.</p>
http://stackoverflow.com/questions/628761/character-to-integer-in-c/628768#6287681Answer by Kevin Conner for Character to Integer in CKevin Conner2009-03-10T02:55:30Z2009-03-10T02:55:30Z<pre><code>char numeralChar = '4';
int numeral = (int) (numeralChar - '0');
</code></pre>
http://stackoverflow.com/questions/612454/is-it-ok-to-give-users-no-way-to-change-their-password1Is it OK to give users no way to change their password?Kevin Conner2009-03-04T21:15:43Z2009-03-04T22:42:05Z
<p>I think it's a Bad Thing to do, but I was hoping for an authoritative perspective, or at least a broad sampling.</p>
<p>I personally feel that a user owns his or her password and that a website or software system merely stores it as a service to them. The user trusts my site with their password, and though I own the site, I do not own the password. I must therefore allow a user to be able to change their password whenever they like.</p>
<p>I think it's a matter of ethics, but early responders to this question appear to think not. What do you think, <em>and</em> how strongly do you feel about it?</p>
<p>(I'm aware this is not especially about coding, but I think it is about system design.)</p>
http://stackoverflow.com/questions/1731905/function-collisions-in-go/1731965#1731965Comment by Kevin Conner on Function collisions in GoKevin Conner2009-11-13T22:31:28Z2009-11-13T22:31:28ZRight. Other languages solve this same problem by overriding a method on a subclass. But in Go, you have the advantage that the object itself doesn't have to be of the new type. You can get a ByteSize from anywhere, save it into a MyByteSize-typed variable, and use your own method instead.http://stackoverflow.com/questions/61320/svn-plugins-for-eclipse-subclipse-vs-subversiveComment by Kevin Conner on SVN plugins for Eclipse - Subclipse vs. SubversiveKevin Conner2009-07-07T14:50:51Z2009-07-07T14:50:51ZWould anyone like to revisit this now that Eclipse Galileo (3.5) is out?http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds/107220#107220Comment by Kevin Conner on Big-O for Eight Year Olds?Kevin Conner2009-03-27T02:45:45Z2009-03-27T02:45:45ZIn mathematical notation, "log" means log base 10. In computer science I've often seen it assumed to mean log base 2.http://stackoverflow.com/questions/635022/calculating-contrasting-colours-in-javascript/635073#635073Comment by Kevin Conner on Calculating contrasting colours in javascriptKevin Conner2009-03-12T13:28:46Z2009-03-12T13:28:46ZOK, maybe HSL is what I really meant :) I'm not totally sure.http://stackoverflow.com/questions/635019/my-32-bit-headache-is-now-a-64bit-migraine-or-64bit-net-clr-runtime-issuesComment by Kevin Conner on My 32 bit headache is now a 64bit migraine?!? (or 64bit .NET CLR Runtime issues)Kevin Conner2009-03-11T15:51:51Z2009-03-11T15:51:51ZThis thread would be a lot more useful (easy to find with Google or Stacko-search, etc) if the title referred to the .NET 32- and 64-bit runtimes.http://stackoverflow.com/questions/632873/why-is-it-hard-for-a-program-to-generate-random-numbers/632941#632941Comment by Kevin Conner on Why is it hard for a program to generate random numbers?Kevin Conner2009-03-11T02:24:35Z2009-03-11T02:24:35ZThanks :) You're the first one who I'm sure has zoomed in to see it!http://stackoverflow.com/questions/632988/vb-net-average-of-3-numbers-two-different-ways-beginners-questionComment by Kevin Conner on VB.net Average of 3 numbers two different ways. Beginners question.Kevin Conner2009-03-11T01:41:14Z2009-03-11T01:41:14Z1. Get the data from each field into integers (or reals as appropriate).
2. Add them up.
3. Divide the sum by 3.0.
4. Display the result.
What parts of this are a problem?http://stackoverflow.com/questions/630803/enum-with-strings/630822#630822Comment by Kevin Conner on Enum with stringsKevin Conner2009-03-11T00:54:22Z2009-03-11T00:54:22ZRight you are :) I haven't written C# in quite some time and I do Java at work.http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630715#630715Comment by Kevin Conner on What made programming easier in the last couple of years?Kevin Conner2009-03-11T00:50:50Z2009-03-11T00:50:50ZAs for Ruby and Python, yes, but now they are flourishing. As for Lisp, I meant more like increasingly higher and higher-level languages. Not that Lispers need anything higher-level than Lisp.http://stackoverflow.com/questions/628803/delegate-usage-business-applications/628835#628835Comment by Kevin Conner on Delegate Usage : Business ApplicationsKevin Conner2009-03-10T03:29:05Z2009-03-10T03:29:05ZYou're too kind :)http://stackoverflow.com/questions/258954/java-out-with-the-old-in-with-the-new/259215#259215Comment by Kevin Conner on Java: Out with the Old, In with the New ...Kevin Conner2009-03-10T03:05:12Z2009-03-10T03:05:12ZI think he means that the "before" example should say "new Integer(6)", and the "after" example is already fine.http://stackoverflow.com/questions/258954/java-out-with-the-old-in-with-the-new/258956#258956Comment by Kevin Conner on Java: Out with the Old, In with the New ...Kevin Conner2009-03-10T03:02:22Z2009-03-10T03:02:22ZPost a bit of before-and-after example code please.http://stackoverflow.com/questions/612454/is-it-ok-to-give-users-no-way-to-change-their-password/612674#612674Comment by Kevin Conner on Is it OK to give users no way to change their password?Kevin Conner2009-03-04T22:34:55Z2009-03-04T22:34:55ZThis is tangential, but do you think resetting your password to a random one is just as good as retrieving it? I ask in reference to storing hashed, undecryptable passwords rather than encrypted passwords.http://stackoverflow.com/questions/612454/is-it-ok-to-give-users-no-way-to-change-their-password/612491#612491Comment by Kevin Conner on Is it OK to give users no way to change their password?Kevin Conner2009-03-04T21:30:17Z2009-03-04T21:30:17ZIn my case, the reason not to allow it is corporate inflexibility, politics, etc. I would like to present a strong argument why we <i>must</i> allow users to change their passwords. You make good points to that effect.http://stackoverflow.com/questions/612454/is-it-ok-to-give-users-no-way-to-change-their-password/612483#612483Comment by Kevin Conner on Is it OK to give users no way to change their password?Kevin Conner2009-03-04T21:25:03Z2009-03-04T21:25:03ZBut assuming I still roll it myself, what is OK and what is not OK?