User Andrew Grant - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:00:02Zhttp://stackoverflow.com/feeds/user/1043http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28551/tips-for-a-successful-appstore-submission44Tips for a successful AppStore submission?Andrew Grant2008-08-26T16:35:06Z2009-11-15T23:28:04Z
<p>In a day or two I'll be ready to submit my iPhone app to the AppStore and I'm curious whether people who have gone through this process have any tips / suggestions for a smooth submission process.</p>
<p>Here's things I've covered;</p>
<ul>
<li>No memory leaks</li>
<li>Tested performance on an actual device</li>
<li>Doesn't crash :)</li>
<li>Using correct certificates / profile</li>
</ul>
<p>What I'm a little unsure about are how to configure the "Bundle Display Name" /"Bundle Identifier" and "Bundle Name" in info.plist. I understand the first is the text that's shown on the iPhone itself, but what about the last? Does this have to match Bundle Identifier?</p>
<p>Are there any other things I should add to the info.plist? I've noticed that when built for Adhoc distribution my app does not have any author/title information in iTunes.</p>
http://stackoverflow.com/questions/1694684/how-do-you-position-a-larger-nsimage-inside-of-a-smaller-nsimageview-programmatic/1694689#16946891Answer by Andrew Grant for How do you position a larger NSImage inside of a smaller NSImageView programmatically?Andrew Grant2009-11-07T22:40:57Z2009-11-07T22:40:57Z<p>I don't believe so, but it's trivial to roll your own NSImageView equivalent that supports center/stretch options by drawing the image yourself.</p>
http://stackoverflow.com/questions/1694452/how-to-determine-if-scrolling-a-uitableview-was-done-by-tapping-the-index/1694587#16945870Answer by Andrew Grant for How to determine if scrolling a UITableView was done by tapping the index?Andrew Grant2009-11-07T22:01:35Z2009-11-07T22:01:35Z<p>You could override touchesBegan to monitor the location of any touch event that precedes scrollViewDidScroll.</p>
http://stackoverflow.com/questions/1694545/floating-point-again/1694555#16945552Answer by Andrew Grant for Floating point againAndrew Grant2009-11-07T21:54:17Z2009-11-07T21:54:17Z<p>You should not assume that the values returned will be consistent to high degrees of precision between different compiler/stdlib versions.</p>
<p>That's about it.</p>
http://stackoverflow.com/questions/1694491/implementing-a-priority-queue-with-a-conditional-variable-in-c/1694550#16945502Answer by Andrew Grant for Implementing a Priority queue with a Conditional Variable in CAndrew Grant2009-11-07T21:52:54Z2009-11-07T21:52:54Z<p>Since condition variables are basically just a barrier and you have no control over the queue of waiting threads there's no real way to apply priorities. It's invalid to assume waiting threads will act in a FIFO manner.</p>
<p>With a combination of atomics, additional condition variables, and pre-knowledge of the threads/priorities involved you could construct a solution where a signaled thread will re-signal the master CV and then re-block on a priority CV but it certainly wouldn't be a generic solution. That's also off the top of my head so might also have some other flaw.</p>
http://stackoverflow.com/questions/1693515/how-to-edit-video-on-iphone-such-as-add-subtitle/1693606#16936060Answer by Andrew Grant for how to edit video on iPhone ? such as add subtitle ....Andrew Grant2009-11-07T16:37:31Z2009-11-07T16:46:24Z<p>Unfortunately there are no APIs for working with images like that. The only video-related functions relate to playback, using the built in "trim" editing feature, and being able to read/write the raw file data for a movie.</p>
<p>You can access the raw data for a movie (and save it out again) so if you could find third-party libraries that supported this you could in theory add this yourself. You would do something like generating frames of text using the regular iPhone APIs and then overlay them into the existing video.</p>
<p>The problem would be finding libraries that are suitable, the limited memory on the iPhone (it's unlikely you could load the entire movie into memory at once), and the CPU cost of decoding/recoding the movie data.</p>
http://stackoverflow.com/questions/1247558/graphviz-dot-crash-turned-out-to-be-caused-by-faulty-installation2graphviz/dot crash (turned out to be caused by faulty installation)Andrew Grant2009-08-08T00:14:17Z2009-10-02T17:04:07Z
<p>I'm trying to use the GraphViz tools to generate some dependency graphs but I'm having zero luck getting dot to export images. SVG works fine, but anything else (jpeg, gif, png) cause dot to crash.</p>
<p>Here's my graph:</p>
<pre><code>digraph test {
main -> parse -> execute;
main -> init;
main -> cleanup;
execute -> make_string;
execute -> printf
init -> make_string;
main -> printf;
execute -> compare;
}
</code></pre>
<p>Here's the command-line that works (for svg):</p>
<pre><code>dot test.dot -Tsvg -o test.svg
</code></pre>
<p>Here are the command lines that cause a crash:</p>
<pre><code>dot test.dot -Tjpg -o test.jpg
dot test.dot -Tjpeg -o test.jpeg
dot test.dot -Tpng -o test.png
</code></pre>
<p>Am I missing something obvious?</p>
<p>Thanks,</p>
<p>(Note this is on WinXP 32-bit using the 2.24 graphviz package).</p>
http://stackoverflow.com/questions/691663/auto-update-library-for-net12Auto-update library for .NET?Andrew Grant2009-03-27T22:15:39Z2009-09-14T07:03:22Z
<p>On the Mac there's a really nice library called <a href="http://sparkle.andymatuschak.org/" rel="nofollow">Sparkle</a> that programs can use to implement the checking/install functionality for auto-updates. </p>
<p>Is there anything similar out there for .NET? Or just regular Win32?</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1247558/graphviz-dot-crash-turned-out-to-be-caused-by-faulty-installation/1247591#12475911Answer by Andrew Grant for graphviz/dot crash (turned out to be caused by faulty installation)Andrew Grant2009-08-08T00:26:00Z2009-08-08T00:26:00Z<p>Ok false alarm, it looks like the installer missed out some files for some reason. Doing an uninstall/reinstall fixed it.</p>
<p>Thanks for the sanity checks!</p>
http://stackoverflow.com/questions/276382/best-way-to-enter-numeric-values-with-decimal-points3Best way to enter numeric values with decimal points?Andrew Grant2008-11-09T19:51:48Z2009-07-25T05:38:39Z
<p>In my app users need to be able to enter numeric values with decimal places. The iPhone doesn't provides a keyboard that's specific for this purpose - only a number pad and a keyboard with numbers and symbols.</p>
<p>Is there an easy way to use the latter and prevent any non-numeric input from being entered without having to regex the final result?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/13725/in-cocoa-do-you-prefer-nsinteger-or-just-regular-int-and-why12In Cocoa do you prefer NSInteger or just regular int, and why?Andrew Grant2008-08-17T17:01:45Z2009-07-15T22:43:15Z
<p>I think the title says it all :)</p>
<p>I'm new to Cocoa and while the purpose of many objects is obvious, others are not. For example NSInteger/NSUInteger/NSFloat/NSDouble are all replacements for the regular builtin types.</p>
<p>Is there any benefit to using the NS* types over the builtins? Which do you prefer and why? Are NSInteger and int the same width on 32-bit / 64-bit platforms?</p>
http://stackoverflow.com/questions/10475/touch-typing-software-recommendations/10479#1047918Answer by Andrew Grant for Touch Typing Software recommendationsAndrew Grant2008-08-13T23:32:27Z2009-07-05T15:01:49Z<p><a href="http://en.wikipedia.org/wiki/Typing%5Fof%5Fthe%5FDead" rel="nofollow">Typing of the Dead!</a></p>
<p>It's a good few years old so you may have to hunt around, but it's a lot of fun and as well as the main game there are numerous minigames to practice specific areas you may be weak on.</p>
<p><img src="http://i39.tinypic.com/2qd7wo6.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/111866/best-way-to-remove-from-nsmutablearray-while-iterating5Best way to remove from NSMutableArray while iterating?Andrew Grant2008-09-21T19:43:20Z2009-06-19T20:33:29Z
<p>In Cocoa, if I want to loop through an NSMutableArray and remove multiple objects that fit a certain criteria, what's the best way to do this without restarting the loop each time I remove an object?</p>
<p>Thanks,</p>
<p>Edit: Just to clarify - I was looking for the best way, e.g. something more elegant than manually updating the index I'm at. For example in C++ I can do;</p>
<pre><code>iterator it = someList.begin();
while (it != someList.end())
{
if (shouldRemove(it))
it = someList.erase(it);
}
</code></pre>
http://stackoverflow.com/questions/983255/tips-for-developer-relocating-from-sweden-to-california/984668#9846682Answer by Andrew Grant for Tips for developer relocating from Sweden to CaliforniaAndrew Grant2009-06-12T01:45:07Z2009-06-12T01:45:07Z<p>Unfortunately without a degree, 10+ years of experience, or being renowned in your field, you are going to find it nearly impossible to move to the US for work. Without one of these you are unlikely to qualify for either an H1B or EB visa, the two visa's that most tech workers are employed under.</p>
<p>Your options are basically;</p>
<ol>
<li><p>Work for one year in the European office of a
company who have US offices, after which you can then (if
they're willing) transfer on an L1
visa. The downside is that you
cannot work for any other company.</p></li>
<li><p>Find a company willing to go through the hassle of applying and obtaining an H2B visa (unskilled labor).</p></li>
<li><p>Marry a US citizen.</p></li>
<li><p>Try some unusual visa category such as J (students) or E3 (Australian - if you have relatives).</p></li>
</ol>
<p>You can pretty much give up any thought of coming across to search for a job. Apart from being a possible violation of your tourist visa (or visa waiver) many companies will balk when they find you are not authorized to work in the US, and those that don't will likely do so when they discover you're unlikely to be eligible for an EB/H1B.</p>
<p>Sorry to be so down about it, but it's very very tough to get a work visa in the US these days.</p>
http://stackoverflow.com/questions/946546/how-to-load-ansi-escape-codes-or-get-coloured-file-listing-in-winxp-cmd-shell/946607#9466071Answer by Andrew Grant for How to load ANSI escape codes or get coloured file listing in WinXP cmd shell ?Andrew Grant2009-06-03T19:17:37Z2009-06-03T19:17:37Z<p>It's possible to patch cmd.exe....</p>
<p><a href="http://gynvael.coldwind.pl/?id=130&lang=en" rel="nofollow">http://gynvael.coldwind.pl/?id=130&lang=en</a></p>
http://stackoverflow.com/questions/622874/how-to-create-an-instance-variable-in-objective-c/622885#6228858Answer by Andrew Grant for How to create an Instance Variable in Objective-CAndrew Grant2009-03-08T01:46:58Z2009-05-14T00:23:11Z<p>To make it an instance variable you would store the value in your class instead of as a temporary variable. You will also release it when your class is destroyed instead of after adding it as a subview.</p>
<p>E.g.</p>
<pre><code>// header file (.h)
@interface MyController : UIViewController
{
UIImageView* myPicture;
}
@end
// source file (.m)
- (void) viewDidLoad
{
myPicture = [[UIImageView alloc] initWithImage: myImageRef];
[self.view addSubview:myPicture];
[super viewDidLoad];
}
- (void) dealloc
{
[myPicture release];
[super dealloc];
}
</code></pre>
http://stackoverflow.com/questions/620290/what-are-the-differences-between-http-1-0-and-1-12What are the differences between HTTP 1.0 and 1.1? [closed]Andrew Grant2009-03-06T20:31:24Z2009-05-01T05:44:35Z
<p>The latest StackOverflow <a href="http://blog.stackoverflow.com/2009/03/podcast-44/" rel="nofollow">podcast</a> has piqued my interest in the differences between HTTP 1.0 and HTTP 1.1.</p>
<p>Can anyone provide a simple list of the major differences between the HTTP 1.0 and HTTP 1.1 specifications?</p>
http://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set/757205#7572057Answer by Andrew Grant for Position of least significant bit that is setAndrew Grant2009-04-16T17:31:50Z2009-04-16T17:59:37Z<p>The fastest (non-intrinsic/non-assembler) solution to this is to find the lowest-byte and then use that byte in a 256-entry lookup table. This gives you a worst-case performance of four conditional instructions and a best-case of 1. Not only is this the least amount of instructions, but the least amount of branches which is super-important on modern hardware.</p>
<p>Your table (256 8-bit entries) should contain the index of the LSB for each number in the range 0-255. You check each byte of your value and find the lowest non-zero byte, then use this value to lookup the real index.</p>
<p>This does require 256-bytes of memory, but if the speed of this function is so important then that 256-bytes is well worth it,</p>
<p>E.g.</p>
<pre><code>byte lowestBitTable[256] = {
.... // left as an exercise for the reader to generate
};
unsigned GetLowestBitPos(unsigned value)
{
// note that order to check indices will depend whether you are on a big
// or little endian machine. This is for little-endian
byte* bytes = (byte*)value;
if (bytes[0])
return lowestBitTable[bytes[0]];
else if (bytes[1])
return lowestBitTable[bytes[1]] + 8;
else if (bytes[2])
return lowestBitTable[bytes[2]] + 16;
else
return lowestBitTable[bytes[3]] + 24;
}
</code></pre>
http://stackoverflow.com/questions/744458/nsstring-contains-a-number-why-does-it-crash-my-app/744590#7445900Answer by Andrew Grant for NSString contains a number, why does it crash my App?Andrew Grant2009-04-13T17:00:34Z2009-04-13T17:11:50Z<p>You need to post more code. In particular it's not clear whether the two pieces you posted are in the same function or different places.</p>
<p>If they're in different places you must call [o1string retain] (and later [o1string release]). The easiest way to do this would be to make olstring a property with retain semantics.</p>
<p>stringByReplacingOccurrencesOfString returns a temporary instance that will be auto-released sometime after the function exists.</p>
<p>I would guess the reason b1Title works is that it's stored in your dictionary so is persistent. o1string is created from the stringByXXX functions and is temporary.</p>
http://stackoverflow.com/questions/739095/win32-lbgettext-returns-garbage/739115#7391155Answer by Andrew Grant for Win32 LB_GETTEXT returns garbage.Andrew Grant2009-04-10T22:58:11Z2009-04-10T23:19:40Z<p>The LB_GETSEL message does not return the index of a selected item, it returns the selected STATE of the ITEM you pass in WPARAM.</p>
<p>You also have a serious bug where if no items are selected you will attempt to retrieve the string of the item at index -1, which is clearly wrong. Checking the return values of these SendMessage calls would have helped you diagnose the problem.</p>
<p>Here's an example of how to get the text of the first selected item;</p>
<pre><code>// get the number of items in the box.
count = SendMessage(control, LB_GETCOUNT, 0, 0);
int iSelected = -1;
// go through the items and find the first selected one
for (int i = 0; i < count; i++)
{
// check if this item is selected or not..
if (SendMessage(control, LB_GETSEL, i, 0) > 0)
{
// yes, we only want the first selected so break.
iSelected = i;
break;
}
}
// get the text of the selected item
if (iSelected != -1)
SendMessage(control, LB_GETTEXT, (WPARAM)iSelected , (LPARAM)text);
</code></pre>
<p>Alternatively you can use LB_GETSELITEMS to get a list of the items that are selected. </p>
http://stackoverflow.com/questions/739014/finding-shared-vertices-among-polygons/739063#7390632Answer by Andrew Grant for Finding shared vertices among polygonsAndrew Grant2009-04-10T22:28:17Z2009-04-10T22:37:25Z<p>If you have the polygon/face data you don't even need to look at the vertices.</p>
<ul>
<li>Create an array from [0..M] (where M is the number of verts)</li>
<li>iterate over the polygons and increment the array entry of each vertex index.</li>
</ul>
<p>This gives you an array that describes how many times each vertex is used.*</p>
<p>You can then do another pass over the polygons and check the entry for each vertex. If it's > 1 you know that vertex is shared by another polygon.</p>
<p>You can build upon this strategy further if you need to store/find other information. For example instead of a count you could store polygons directly in the array allowing you to get a list of all faces that use a given vertex index. At this point you're effectively creating a map where vertex indices are the key.</p>
<p>(*this example assumes you have no degenerate polygons, but those could easily be handled).</p>
http://stackoverflow.com/questions/738674/iphone-sdk-convert-byte-array-to-nsstring/738805#7388050Answer by Andrew Grant for iPhone SDK: Convert Byte Array to NSString?Andrew Grant2009-04-10T20:43:12Z2009-04-10T20:43:12Z<pre><code>NSString* string = [NSString stringWithUTF8String: data];
</code></pre>
<p>Make sure your data is null-terminated, obviously.</p>
http://stackoverflow.com/questions/738543/how-to-extract-a-substring-from-a-net-regex1How to extract a substring from a .NET RegEx?Andrew Grant2009-04-10T19:03:27Z2009-04-10T19:18:09Z
<p>I have an XML file containing one (or more) key/value pairs. For each of these pairs I want to extract the value which is a two-byte hex value.</p>
<p>So the XML contains this snippet:</p>
<pre><code><key>LibID</key><val>A67A</val>
</code></pre>
<p>Which I can match using the following expression, with the ID in parenthesis.</p>
<pre><code>Match match = Regex.Match(content, @"<key>LibID</key><val>([a-fA-F0-9]{4})</val>");
if (match.Success)
{
Console.WriteLine("Found Match for {0}\n", match.Value);
Console.WriteLine("ID was {0}\n", "Help me SO!");
}
</code></pre>
<p>How can I change the last part so it returns the ID from the match?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/738524/bool-to-nsstring/738562#7385624Answer by Andrew Grant for BOOL to NSStringAndrew Grant2009-04-10T19:08:00Z2009-04-10T19:08:00Z<pre><code>BOOl isKind= [thing isKindOfClass:[NSString class]];
NSLog("Is Kind of NSString: %d", someBool);
NSLog("Is Kind of NSString: %@", someBool ? @"YES" : @"NO");
</code></pre>
http://stackoverflow.com/questions/738331/does-the-scrum-process-ultimately-divest-team-members-from-their-respective-skill/738420#7384201Answer by Andrew Grant for Does the Scrum process ultimately divest team members from their respective skills?Andrew Grant2009-04-10T18:18:52Z2009-04-10T18:18:52Z<p>If you find for any reason ('sudden change of technology' or not) that the amount of work required for a system over a sprint is greater than the amount available then there's a problem with your scheduling.</p>
<p>One fix is that, as you suggest, you take programmers from other areas and throw them onto the mix. How well this works depends on the skills of that person and how different the problem domain is, but treating programmers as generic units that can be farmed out as needed is generally not a successful strategy for developing software.</p>
<p>This is still a scheduling problem though.</p>
http://stackoverflow.com/questions/736433/differences-between-ctp-alpha-beta-gamma-rtm-and-preview-for-software-release/736438#7364382Answer by Andrew Grant for Differences between CTP, Alpha, Beta, Gamma, RTM and Preview for Software Release?Andrew Grant2009-04-10T01:16:53Z2009-04-10T01:16:53Z<p>The answer is "It depends".</p>
<p>All of these badges mean different things for different people, and things like "CTP" and "Preview" even more so.</p>
<p>Where relevant (e.g. frameworks) most preview/beta/ctp releases will come with information about whether they should be used in shipping code or not. Generally if they require an end-used redistributable the answer is no.</p>
http://stackoverflow.com/questions/736287/cocoa-iphone-app-centering-a-label-in-a-uiview/736295#7362953Answer by Andrew Grant for Cocoa/iPhone app, centering a label in a UIViewAndrew Grant2009-04-10T00:03:36Z2009-04-10T00:08:43Z<p>To position any child horizontally centered in a parent you would calculate its position like so;</p>
<pre><code>childX = (parentWidth - childWidth) / 2
</code></pre>
<p>(This also applies to height).</p>
http://stackoverflow.com/questions/735743/looping-through-chars-generating-words-and-checking-if-domain-exists/735801#7358013Answer by Andrew Grant for Looping through chars, generating words and checking if domain existsAndrew Grant2009-04-09T20:21:14Z2009-04-09T20:21:14Z<p>Just because a site fails a ping doesn't mean the domain is available. The domain could be reserved but not pointing anywhere, or the machine may not respond to pings, or it may just be down.</p>
http://stackoverflow.com/questions/735725/how-to-programatically-launch-dispose-of-views-for-the-iphone/735771#7357711Answer by Andrew Grant for How to programatically launch/dispose of views for the iPhone?Andrew Grant2009-04-09T20:12:13Z2009-04-09T20:12:13Z<p>Load the appropriate view and add it as a subview to the parent, then remove the existing view from its parent.</p>
<p>If you only have one level of views then your window is the parent.</p>
http://stackoverflow.com/questions/735605/animation-effect-during-changes-in-a-uiview/735625#7356252Answer by Andrew Grant for Animation effect during changes in a UIViewAndrew Grant2009-04-09T19:35:39Z2009-04-09T19:35:39Z<p>You can animate any view (root view or subview) just by changing supported properties within a UIView beginAnimations/commitAnimations block.</p>
<p>That said I don't know whether a text is a supported property. Instead you may have to "fake" the text change by having overlaid UITextView's with one fading out and the next fading in.</p>
<p>So yes, you can definitely do such an animation for when your text changes but you may have to be creative about it.</p>
http://stackoverflow.com/questions/1694684/how-do-you-position-a-larger-nsimage-inside-of-a-smaller-nsimageview-programmatic/1694689#1694689Comment by Andrew Grant on How do you position a larger NSImage inside of a smaller NSImageView programmatically?Andrew Grant2009-11-08T00:13:51Z2009-11-08T00:13:51ZYeap, or better yet just create an NSView that draws an NSImage at your desired position.http://stackoverflow.com/questions/1694545/floating-point-again/1694555#1694555Comment by Andrew Grant on Floating point againAndrew Grant2009-11-07T22:26:14Z2009-11-07T22:26:14ZIf you want to ensure that different compilers will provide exactly the same values then you should roll your own sin/cos/tan functions instead of using the stdlib ones provided by the vendor. Or use a third-party library that does this. Naturally these functions cannot call other stdlib routines.
Alternatively you could generate a set of trig tables that are stored as a data file and your sin/trig/cos routines would be lookups.
I would ask though whether this is really necessary? It's something I've had to do in the past but it's certainly not common.http://stackoverflow.com/questions/664159/gaming-development-vs-corporate-software-development/664574#664574Comment by Andrew Grant on Gaming Development vs Corporate Software DevelopmentAndrew Grant2009-11-06T18:40:16Z2009-11-06T18:40:16Z@TM I don't think they contradict each other. We'll never make an offer based on who has lower salary expectations, but if someone is overpaid that will be a factor in whether they are actually hired.http://stackoverflow.com/questions/596589/iphone-sdk-internet-connection-detection/596692#596692Comment by Andrew Grant on iPhone SDK internet connection detectionAndrew Grant2009-11-06T18:21:43Z2009-11-06T18:21:43ZI'm not aware of it's current status, but they don't "require" this flag to be set. It's an optional flag for apps that do not have any form of offline mode. The same way there's a flag for apps that only support landscape mode.http://stackoverflow.com/questions/78536/cloning-objects-in-c/78577#78577Comment by Andrew Grant on Cloning objects in C#Andrew Grant2009-09-15T00:50:40Z2009-09-15T00:50:40Z+1 for copy ctor. You have to manually write a clone() function for each type of object too, and good luck with that when your class hierarchy gets a few levels deep.http://stackoverflow.com/questions/983255/tips-for-developer-relocating-from-sweden-to-california/984668#984668Comment by Andrew Grant on Tips for developer relocating from Sweden to CaliforniaAndrew Grant2009-06-29T18:05:34Z2009-06-29T18:05:34ZUnfortunately many companies are excluded from the lottery, but if you're not then definitely give it a go. Since moving here I've actually met three people who came here because of it so the odds are definitely better than a typical lottery!http://stackoverflow.com/questions/983255/tips-for-developer-relocating-from-sweden-to-california/983281#983281Comment by Andrew Grant on Tips for developer relocating from Sweden to CaliforniaAndrew Grant2009-06-29T18:04:11Z2009-06-29T18:04:11ZThis was about four years ago, perhaps things have changed. I was an L1-A which might be a little easier than an L1-B. BTW - if at all possible try VERY hard to get your company to give you an L1-A. From their POV it's virtually the same (cost/effort) and just needs a bit of creative writing with respect to your duties, but if you ever plan to stay in the US it makes a huge difference to the greencard process (8 months instead of 2-3 years).http://stackoverflow.com/questions/983255/tips-for-developer-relocating-from-sweden-to-california/983281#983281Comment by Andrew Grant on Tips for developer relocating from Sweden to CaliforniaAndrew Grant2009-06-12T01:47:40Z2009-06-12T01:47:40ZL1 visa's are pretty trivial if you meet the qualifications (must be employed for one year in the foreign office of a company before relocating to their US offices). That was my original visa (L1-A) and it took about four weeks total, including the trip to the US embassy.
If you don't meet these then you're largely screwed.
http://stackoverflow.com/questions/983255/tips-for-developer-relocating-from-sweden-to-californiaComment by Andrew Grant on Tips for developer relocating from Sweden to CaliforniaAndrew Grant2009-06-11T19:59:54Z2009-06-11T19:59:54ZIt highly depends on where you are moving to. Tips for San Francisco would be very different from tips for Los Angeles (other than general US-centric ones that is).http://stackoverflow.com/questions/982963/is-there-any-overhead-to-declaring-a-variable-within-a-loop-c/983006#983006Comment by Andrew Grant on Is there any overhead to declaring a variable within a loop? (C++)Andrew Grant2009-06-11T19:50:02Z2009-06-11T19:50:02ZThis is the best answer but these comments are confusing. There's a big difference between calling a constructor and an assignment operator.http://stackoverflow.com/questions/963493/is-it-possible-to-change-argv-or-do-i-need-to-create-an-adjusted-copy-of-itComment by Andrew Grant on Is it possible to change argv or do I need to create an adjusted copy of it?Andrew Grant2009-06-08T05:27:45Z2009-06-08T05:27:45ZWorth noting that some OS's have a limit to the number of arguments (on Win32 it's 32k). I don't consider 32kb much of a hit on a desktop app, but obviously YMMVhttp://stackoverflow.com/questions/783782/iphone-application-is-crashing-and-not-leaving-behind-a-crash-log-fileComment by Andrew Grant on iPhone application is crashing and not leaving behind a .crash log fileAndrew Grant2009-04-23T23:17:44Z2009-04-23T23:17:44ZAre you sure your application is crashing and is not being terminated due to low memory conditions? If it's terminated by the OS then AFAIK no crash log will be generated.http://stackoverflow.com/questions/783869/what-is-the-state-of-art-solution-for-sending-lots-of-email-messagesComment by Andrew Grant on What is the state-of-art solution for sending lots of email messages?Andrew Grant2009-04-23T23:16:29Z2009-04-23T23:16:29ZWhile this may or may not be spam, it definitely sounds like you are looking for an off-the shelf solution and is not programming related.http://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set/757205#757205Comment by Andrew Grant on Position of least significant bit that is setAndrew Grant2009-04-16T18:10:54Z2009-04-16T18:10:54ZTrue, in theory, but then you could say the same thing about I-Cache with all of the unrolled loops in other answers. If the speed of this function is so important one can assume it's called frequently so small amounts of either data are likely to be in the cache. Either way profile and see.http://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set/757104#757104Comment by Andrew Grant on Position of least significant bit that is setAndrew Grant2009-04-16T18:02:20Z2009-04-16T18:02:20Z+1 from me. It's not the fastest but it's faster than the original, which was the point...