Recent Questions - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T00:33:29Zhttp://stackoverflow.com/feedshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2233574/ho-to-kill-a-project1Ho to kill a projectLuftMensch2010-02-10T00:31:50Z2010-02-10T00:33:22Z
<p>Just looking for some collective wisdom -- what's the best way you've found to kill a project. For example:</p>
<ul>
<li><p>Change architectures half-way thru coding.</p></li>
<li><p>Add new programmers to team when project is starting to fall behind schedule.</p></li>
<li><p>In an effort to save money, force all developers to use old equipment and stop providing free caffeine.</p></li>
</ul>
http://stackoverflow.com/questions/2233579/which-directory-do-i-drop-the-sqlexplorer-in-my-eclipse0which directory do I drop the sqlexplorer in my eclipse?Blankman2010-02-10T00:33:16Z2010-02-10T00:33:16Z
<p>I unzipped the downloaded file, and dropped it in the root of my eclipse folder.</p>
<p>I then added the -clean switch to the icon I use to start eclipse.</p>
<p>I don't seem to see sql explorer anywhere, am I suppose to drop the unzipped folder in a specific folder?</p>
http://stackoverflow.com/questions/2233578/fxcop-or-equivalent-for-non-net-c-code0FxCop (or equivalent) for non-.Net C++ codeUser12010-02-10T00:32:53Z2010-02-10T00:32:53Z
<p>Is there a way to get FxCop to analyze unmanaged C++ code? Setting the /clr flag allowed FxCop to open the .exe. It find a LOT of C++ items, but the analysis on the code is very weak. For example, the following code was skipped:</p>
<pre><code>
int i=0;
if (i=2) printf("Don't worry..everything will be okay.");
</code></pre>
<p>I would like a tool that can catch the <code>i=2</code> and warn that it should be <code>i==2</code>. Any advice on either getting FxCop to be more thorough or another tool that others found useful?</p>
http://stackoverflow.com/questions/2214990/latex-page-size-how-do-i-produce-a-page-that-is-just-big-enough6LaTeX Page Size --- how do I produce a page that is "just big enough"?Kenny2010-02-06T22:28:25Z2010-02-10T00:32:45Z
<p>Hi,</p>
<p>I was learning about using the command line version of latex today, and I was experimenting with outputting .tex to .dvi, and then .dvi to .png.</p>
<p>The problem is, I have a simple .tex document which contains some math. The goal is to eventually produce a png form of the equation. But when I run:</p>
<pre><code>$ latex -output-format=dvi test.tex
$ dvipng test.dvi
</code></pre>
<p>I get test1.png that is shaped like a regular letter-sized page. I only want an image that is as big as the equation needs to be. I'm sure I'm missing something obvious, but I can't figure it out!</p>
<p>Is there a command line option for either latex or dvipng to specify that the output file should only be set on a page as large as needed to render the equation? </p>
<p>Here's my example test.tex:</p>
<pre><code>\documentclass{article}
\begin{document}
The solution to $\sqrt{x} = 5$ is $x=25$.
\end{document}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/2233539/java-adding-to-an-array-list0Java: Adding to an array listKevin Duke2010-02-10T00:20:22Z2010-02-10T00:32:19Z
<pre><code>public class Maze
{
public static final int ACTIVE = 0;
public static final int EXPLORER_WIN = 1;
public static final int MONSTER_WIN = 2;
private Square[][] maze;
private ArrayList<RandomOccupant> randOccupants;
private Explorer explorer;
private int rows;
private int cols;
public Maze(Square[][] maze, int rows, int cols, int numTreasures, int numMonsters, String name)
{
int i;
this.maze = maze;
this.cols = cols;
this.rows = rows;
randOccupants = new ArrayList<RandomOccupant>();
for (i = 0; i < numTreasures; i++)
{
randOccupants.add(i) = new Treasure(this); //COMPILE ERROR
}...
</code></pre>
<p>Why can't I add this to the arraylist? I believe the java docs says that I'm doing this correctly.</p>
http://stackoverflow.com/questions/2233576/convert-scala-set-into-java-java-util-set0Convert Scala Set into Java (java.util.Set)?arnab2010-02-10T00:32:09Z2010-02-10T00:32:09Z
<p>I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String].</p>
<p>Is the following the correct way to do this in Scala (using scala.collection.jcl.HashSet#underlying):</p>
<pre><code>import com.javalibrary.Animals
var classes = new scala.collection.jcl.HashSet[String]
classes += "Amphibian"
classes += "Reptile"
Animals.find(classes.underlying)
</code></pre>
<p>It seems to be working, but since I am very new to Scala I want to know if this is the preferred way (any other way I try I am getting a type-mismatch error):</p>
<pre><code>error: type mismatch;
found : scala.collection.jcl.HashSet[String]
required: java.util.Set[_]
</code></pre>
http://stackoverflow.com/questions/2233210/perform-sum-with-nested-controllers0Perform sum with nested controllers vectran2010-02-09T23:08:30Z2010-02-10T00:31:56Z
<p>I have two models of concern, "Order" and "Kit"; each order <code>has_one :kit</code></p>
<p>Each "Kit" has a 'cost' value. Within a controller I want to be able to sum together the costs for each 'order'.</p>
<p>Logically I thought this would make sense (but it doesn't work):</p>
<pre><code>@revenue = Order.Kit.sum(:cost)
</code></pre>
<p>Any help would be appreciated. Thanks.</p>
<hr>
<p>Example:</p>
<p>A user creates a new order for a kit which has cost of 20. I would like the @revenue to be of hence value 20 (reflecting 'sales'). When someone else creates a new order for the same kit, @revenue should change to 40.</p>
http://stackoverflow.com/questions/2233575/what-does-string-mean-in-ruby0What does string * '' mean in Ruby?aharon2010-02-10T00:31:50Z2010-02-10T00:31:50Z
<p>I was looking through some Rails source code and came across</p>
<pre><code># File vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb, line 129
129: def target!
130: @target * ''
131: end
</code></pre>
<p>What does the * '' do? Is that multiplication by an empty string...? And why would you do that.</p>
http://stackoverflow.com/questions/1375683/converting-ansi-escape-sequences-to-html-using-php1Converting ANSI escape sequences to HTML using PHPTravis Beale2009-09-03T20:13:33Z2010-02-10T00:31:40Z
<p>This is a similar question to <a href="http://stackoverflow.com/questions/245121/a-library-to-convert-ansi-escapes-terminal-formatting-color-codes-to-html">this one</a>. I would like to convert ANSI escape sequences, especially for color, into HTML. However, I would like to accomplish this using PHP. Are there any libraries or example code out there that do this? If not, anything that can get me part way to a custom solution?</p>
http://stackoverflow.com/questions/2233475/can-i-put-google-map-functions-into-a-closure1Can I put google map functions into a closure?Joe2010-02-10T00:05:29Z2010-02-10T00:31:23Z
<p>Hi</p>
<p>I am trying to write some google map functionlity and playing around with javascript closures with an aim to try organise and structure my code better. </p>
<p>I have the following code:</p>
<pre><code>var gmapFn ={
init : function(){
if (GBrowserIsCompatible()) {
this.mapObj = new GMap2($("#map_canvas"));
this.mapObj.setCenter(new google.maps.LatLng(51.512880,-0.134334),16);
}
}
}
</code></pre>
<p>Then I call it later in a jquery doc ready:</p>
<pre><code>$(document).ready(function() {
gmapFn.init();
})
</code></pre>
<p>I have set up the google map keys and but I get an error on the main.js :</p>
<p>uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: <a href="http://maps.gstatic.com/intl/en_ALL/mapfiles/193c/maps2.api/main.js" rel="nofollow">http://maps.gstatic.com/intl/en_ALL/mapfiles/193c/maps2.api/main.js</a> :: ig :: line 170" data: no]
QO()</p>
<p>THe error seems to be thrown at the GBrowserIsCompatible() test which I beieve is down to me using this closure, is there a way to keep it in an closure and get init() working?</p>
http://stackoverflow.com/questions/2233435/machine-learning-and-natural-language-processing0Machine Learning and Natural Language ProcessingStephano2010-02-09T23:54:05Z2010-02-10T00:30:28Z
<p>Assume you know a student who wants to study Machine Learning and Natural Language Processing.</p>
<p>What introductory subjects would you recommend?</p>
<p><b>Example</b>: I'm guessing that knowing Prolog and Matlab might help him. He also might want to study Discrete Structures*, Calculus, and Statistics.</p>
<p>*Graphs and trees. Functions: properties, recursive definitions, solving recurrences. Relations: properties, equivalence, partial order. Proof techniques, inductive proof. Counting techniques and discrete probability. Logic: propositional calculus, first-order predicate calculus. Formal reasoning: natural deduction, resolution. Applications to program correctness and automatic reasoning. Introduction to algebraic structures in computing.</p>
http://stackoverflow.com/questions/2226920/how-to-monitor-clipboard-content-changes-in-c2How to monitor clipboard content changes in C#?Weiming2010-02-09T05:20:33Z2010-02-10T00:30:25Z
<p>Hi,</p>
<p>I want to have this feature in my C# program: When the user do Ctrl+C or Copy anywhere (i.e. when the clipboard content changes), my program will get notified, and check whether the content met certain criteria, if so, become the active program, and process the content, etc.</p>
<p>I can get the contents out from <code>System.Windows.Forms.Clipboard</code>, however, I don't know how to monitor the content changes from the Clipboard.</p>
<p>Cheers,</p>
<p>EDIT: If using Vista or later, use <code>AddClipboardFormatListener</code> as in John Knoeller's answer, for XP, have to use the older, more fragile <code>SetClipboardViewer</code> API, as in the accepted answer.</p>
http://stackoverflow.com/questions/2225720/why-does-crypt-blowfish-generate-the-same-hash-with-two-different-salts3Why does crypt/blowfish generate the same hash with two different salts?Dereleased2010-02-08T23:39:56Z2010-02-10T00:30:18Z
<p>This question has to do with PHP's implementation of <a href="http://php.net/manual/en/function.crypt.php" rel="nofollow"><code>crypt()</code></a>. For this question, the first 7 characters of the salt are not counted, so a salt '<code>$2a$07$a</code>' would be said to have a length of 1, as it is only 1 character of salt and seven characters of meta-data.</p>
<p>When using salt strings longer than 22 characters, there is no change in the hash generated (i.e., truncation), and when using strings shorter than 21 characters the salt will automatically be padded (with '<code>$</code>' characters, apparently); this is fairly straightforward. However, if given a salt 20 characters and a salt 21 characters, where the two are identical except for the final character of the 21-length salt, both hashed strings will be identical. A salt 22 characters long, which is identical to the 21 length salt except for the final character, the hash will be different again. </p>
<p>Example In Code:</p>
<pre><code>$foo = 'bar';
$salt_xx = '$2a$07$';
$salt_19 = $salt_xx . 'b1b2ee48991281a439d';
$salt_20 = $salt_19 . 'a';
$salt_21 = $salt_20 . '2';
$salt_22 = $salt_21 . 'b';
var_dump(
crypt($foo, $salt_19),
crypt($foo, $salt_20),
crypt($foo, $salt_21),
crypt($foo, $salt_22)
);
</code></pre>
<p>Will produce:</p>
<pre><code>string(60) "$2a$07$b1b2ee48991281a439d$$.dEUdhUoQXVqUieLTCp0cFVolhFcbuNi"
string(60) "$2a$07$b1b2ee48991281a439da$.UxGYN739wLkV5PGoR1XA4EvNVPjwylG"
string(60) "$2a$07$b1b2ee48991281a439da2.UxGYN739wLkV5PGoR1XA4EvNVPjwylG"
string(60) "$2a$07$b1b2ee48991281a439da2O4AH0.y/AsOuzMpI.f4sBs8E2hQjPUQq"
</code></pre>
<p>Why is this?</p>
<h3>EDIT:</h3>
<p>Some users are noting that there is a difference in the overall string, which is true. In <code>salt_20</code>, offset (28, 4) is <code>da$.</code>, while in <code>salt_21</code>, offset (28, 4) is <code>da2.</code>; however, it is important to note that the string generated includes the hash, the salt, as well as instructions to generate the salt (i.e. <code>$2a$07$</code>); the part in which the difference occurs is, in fact, still the salt. The actual hash is unchanged as <code>UxGYN739wLkV5PGoR1XA4EvNVPjwylG</code>.</p>
<p>Thus, this is in fact not a difference in the hash produced, but a difference in the salt used to store the hash, which is precisely the problem at hand: two salts are generating the same hash.</p>
<p>Rembmer: the output will be in the following format:</p>
<pre><code>"$2a$##$saltsaltsaltsaltsaltsaHASHhashHASHhashHASHhashHASHhash"
// ^ Hash Starts Here, offset 28,32
</code></pre>
<p>where ## is the log-base-2 determining the number of iterations the algorithm runs for</p>
<h3>Edit 2:</h3>
<p>In the comments, it was requested that I post some additional info, as the user could not reproduce my output. Execution of the following code:</p>
<pre><code>var_dump(
PHP_VERSION,
PHP_OS,
CRYPT_SALT_LENGTH,
CRYPT_STD_DES,
CRYPT_EXT_DES,
CRYPT_MD5,
CRYPT_BLOWFISH
);
</code></pre>
<p>Produces the following output:</p>
<pre><code>string(5) "5.3.0"
string(5) "WINNT"
int(60)
int(1)
int(1)
int(1)
int(1)
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/2233572/password-validation-using-jquery-on-asp-net-mvc-page0Password validation using JQuery on ASP.NET MVC pageRupa2010-02-10T00:29:49Z2010-02-10T00:29:49Z
<p>Hi</p>
<p>I have a password field on ASP.NET MVC Page.</p>
<p>1). The min length is 6 charachetrs.
2). It should not allow any spaces.</p>
<p>How can we validate this using JQuery.</p>
<p>Here is my view:</p>
<pre><code> <% using (Html.BeginForm("UpdatePassword", "Home", FormMethod.Post, new { id = "frmPassword" })) {%>
<table><tbody>
<tr><td class="Form_Label"><label for="newPass">Password</label></td>
<td><%= Html.TextBox("newPass", "", new { @class = "required", minlength = "6", size = "30" })%></td></tr>
<tr><td colspan="2"><strong>Password must be at least 6 characters</strong></td></tr>
<tr><td colspan="2" align="center">
<input type="submit" value="Change Password" disabled="disabled" id="btnChangePassword" /></td></tr>
</tbody></table>
<% } %>
</code></pre>
http://stackoverflow.com/questions/1565048/open-default-browser-with-monogtk1Open Default browser with Mono+gtk#Nuno Furtado2009-10-14T08:41:10Z2010-02-10T00:29:44Z
<p>I need to open an url from my application, on both linux and windows and i want to avoid replacing an existing page on an open browser.</p>
<p>How do i call for it to open?</p>
<p>I know i can use</p>
<pre><code>System.Diagnostics.Process.Start("http://mysite.com");
</code></pre>
<p>which should also work under linux, but this will replace any page shown on an already open browser window.</p>
<p>i found this article ( thx to <a href="http://stackoverflow.com/users/135952/nissan-fan">Nissan Fan</a>): </p>
<blockquote>
<p>System.Diagnostics.Process.Start("http://mysite.com");</p>
</blockquote>
<p>but this only works for windows and i need a solution that will work on both systems.</p>
http://stackoverflow.com/questions/2231964/capturing-login-logout-and-login-attempts-with-grails-and-acegi-plugin0Capturing Login/Logout and Login Attempts with Grails and Acegi PluginAaron Saunders2010-02-09T19:38:31Z2010-02-10T00:29:44Z
<p>I have partially implemented a solution using an grails filter and a session listener that required me to modify the web.xml. The session listener tells me when the session has ended, and the grails filter tells me when any controller has been called for the first time with an authenticated user.</p>
<p>It appeared to me that both were required because either grails or the acegi plugin creates a new session automatically so I needed to the grails filter to determine when the session actually has an authenticated user.</p>
<p>I am saying all of this to say, is there an easier approach that does not require a filter and a sessionListener. Just looking to clean up the code so when I need to get back to it later it will still make sense</p>
http://stackoverflow.com/questions/2233570/rails-cache-do-inside-module0Rails cache do inside modulexpepermint2010-02-10T00:29:33Z2010-02-10T00:29:33Z
<p>Hot can I use cache do command inside module?</p>
<p>Example</p>
<pre><code>module MyModule
def self.some_method(str)
cache str do
... some code ...
end
end
end
</code></pre>
<p>Thx!</p>
http://stackoverflow.com/questions/2138647/is-jsf-available-as-an-osgi-equinox-bundle1Is JSF available as an OSGi (Equinox) bundle?markus2010-01-26T10:00:25Z2010-02-10T00:29:29Z
<p>There is a bundle for JSP/JSTL, which can be deployed on Equinox OSGi Framework and can be used by other bundles then: </p>
<p><code>org.eclipse.equinox.jsp.jstl_1.0.0.jar</code></p>
<p>Is there also a bundle for JSF, so i can use JSF components in my bundles?
I really need to solve this issue, because i have to transform an extisting JSF Web Application to an OSGi Framework suited application.</p>
<p>Help please!</p>
http://stackoverflow.com/questions/2233218/im-trying-to-make-a-loop-with-jquery0I'm trying to make a loop with jQuery...Charlie2010-02-09T23:10:10Z2010-02-10T00:29:04Z
<p>All I need it to do is run the function animateAds over and over. Can anyone help? This is my code:</p>
<pre><code>function animateAds(n) {
$('#ad_1').fadeIn('slow', function (){
$('#ad_1').delay(100).fadeOut('fast', function (){
$('#ad_2').fadeIn('slow');
});
});
};
$(document).ready(function() {
for (n = 0; n < 10; n++) {
animateAds(n);
}
});
</code></pre>
http://stackoverflow.com/questions/2233567/rest-way-to-map-urls-to-services-files0REST: Way to map URLs to services/files ?aefxx2010-02-10T00:29:02Z2010-02-10T00:29:02Z
<p>In your humble opinion: what would be a best practice aproach to map REST URLs to services/files within one's architecture (let's assume MVC pattern here)?</p>
http://stackoverflow.com/questions/2233545/in-gtk-how-do-i-get-a-path-from-a-sorted-treeview-by-x-and-y-coordinates0In Gtk, how do I get a path from a sorted TreeView by x and y coordinates?Matthew2010-02-10T00:21:06Z2010-02-10T00:28:54Z
<p>I have a ListStore that is filtered and then sorted. It looks something like this:</p>
<pre><code>// Create a model for the cards
cardListStore = new ListStore (typeof (Card));
// Set up the tree view
cardFilter = new TreeModelFilter (cardListStore, null);
cardFilter.VisibleFunc = new TreeModelFilterVisibleFunc (FilterCards);
cardSort = new TreeModelSort (cardFilter);
cardTreeView.Model = cardSort;
</code></pre>
<p>I want to have a get a context menu specific for each row when I right-click on it. My click handler looks something like this:</p>
<pre><code>[GLib.ConnectBeforeAttribute]
void HandleCardTreeViewButtonPressEvent (object o, ButtonPressEventArgs args)
{
if (args.Event.Button != 3)
return;
TreePath path;
// If right click on empty space
if (!cardTreeView.GetPathAtPos (Convert.ToInt32 (args.Event.X),
Convert.ToInt32 (args.Event.Y),
out path)) {
MakeCardEmptySpaceContextMenu ().Popup ();
return;
}
TreeIter iter;
if (!cardListStore.GetIter (out iter, path))
return;
Card card = (Card) cardListStore.GetValue (iter, 0);
MakeCardContextMenu (card, iter).Popup ();
}
</code></pre>
<p>This works when the ListStore is not filtered or sorted. But when it is, it gives the wrong row.</p>
<p>For example, say the rows look like this before they are sorted:</p>
<p>A<br>
B<br>
C</p>
<p>And after they are sorted, they look like this:</p>
<p>B<br>
A<br>
C</p>
<p>Right-clicking on the second row ("A") will give you "B", because that's where B was before the model was sorted. The same thing happens for filtering. Say the model, after it is filtered, looks like this:</p>
<p>A<br>
C</p>
<p>Right-clicking on the second row ("C") would still give you "B".</p>
<p>Any idea how to work around this?</p>
http://stackoverflow.com/questions/2233488/asp-net-cassini-woes0ASP.NET Cassini WoesNathan Taylor2010-02-10T00:08:32Z2010-02-10T00:28:48Z
<p>I've run into a very unique issue with debugging my ASP.NET MVC application in Cassini. I don't know exactly when it started, nor do I have any idea why, but the Cassini server has arbitrarily decided that two of the routes in my MVC application shouldn't be handled by my application, but rather arbitrarily overridden by the server.</p>
<pre><code>routes.MapRoute(
"Admin_PhotoGalleries_Index",
"admin/galleries",
new { controller = "PhotoGalleries", action = "Index" }
);
routes.MapRoute(
"Admin_Home_Index",
"admin",
new { controller = "Home", action = "Index" }
);
</code></pre>
<p>The routes above, as you can see, aren't anything special and are defined correctly, however I get some very absurd results when I try to access them. A request for /admin/ on Cassini server results in a 404 error 100% of the time- even with the <a href="http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx" rel="nofollow">Routing Debugger</a> enabled, it simply ignores the catch-all route and goes straight to the stock ASP.NET 404 page. Similarly, a request for /admin/galleries produces a download dialog for an unnamed "application/octet-stream" file. The file it sends contains nothing but garbage data- I suspect it's some sort of executable, though I'm not sure.</p>
<p><img src="http://img198.imageshack.us/img198/3807/downloaddialogv.png" alt="Download Dialog"></p>
<p>Now here's the fun part: if I comment out those routes completely I still get the same behavior, but if I change the route to anything but what it is (i.e. /admin_) it works. Interestingly, the download file request at /admin/galleries seems to be completely agnostic of the build state of my application because if I request the route after rebuilding the project the download dialog appears immediately- skipping any application compilation time that would usually occur. This strange behavior <em>only</em> happens when I am debugging in Cassini; if I publish the same code to IIS and request the aforementioned routes they are served exactly as they should be. The issue seems to be localized to a single project- as it is not repeating in any of my other MVC applications, but I am not doing anything special in this one so if it's a code problem I'd be somewhat surprised- especially considering it works outside of Cassini.</p>
<p>Anyone else ever had similarly odd experiences with Cassini? This is the first time I've ever seen anything like this.</p>
<p><strong>Update</strong></p>
<p>I updated my project to use IIS for debugging rather than Cassini and now when I hit /admin and /admin/galleries rather than a 404 or a file download I simply get a blank page. The behavior is the same even if I enable a catch-all route. If I publish to IIS, rather than debugging on it, everything works again.</p>
http://stackoverflow.com/questions/1167518/unix-timestamp-to-boostposix-timeptime0unix timestamp to boost::posix_time::ptimecube2009-07-22T19:12:00Z2010-02-10T00:28:43Z
<p>I need to convert double with number of seconds since the epoch to <code>ptime</code>. I'm prety sure there must be an easy way to do this, but I couldn't find anything. Thanks.</p>
<p>Edit: The original timestamp is floating point. I can't change it and i don't want to lose the sub-second precision.</p>
http://stackoverflow.com/questions/2233462/jquery-binding-event1Jquery binding event.alex2010-02-10T00:03:27Z2010-02-10T00:28:31Z
<pre><code><img id="sun" href="logo.jpg"/>
</code></pre>
<p>How do I use JQuery to bind it so that when "sun" gets clicked, something happens?
I just want bind onclick to sun.</p>
http://stackoverflow.com/questions/2231802/simplifying-switch-statement-objective-c1Simplifying switch statement (Objective-C)Emil2010-02-09T19:19:57Z2010-02-10T00:28:19Z
<p>Y'hello.. Yep, it's me again, sorry.</p>
<p>I am trying to .. um, see the code, you'll understand. If not, I'll explain later.</p>
<pre><code>// When row is selected
- (void)pickerView:(UIPickerView *)pickerTimer didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
switch (row) {
case 0:
NSLog(@"It obviously worked.0");
break;
case 1:
NSLog(@"It obviously worked.1");
break;
case 2:
NSLog(@"It obviously worked.2");
break;
case 3:
NSLog(@"It obviously worked.3");
break;
case 4:
NSLog(@"It obviously worked.4");
break;
case 5:
NSLog(@"It obviously worked.5");
break;
case 6:
NSLog(@"It obviously worked.6");
break;
default:
NSLog(@"It did kindof work.NIL");
break;
}
}
</code></pre>
<p>I guess what I want to know is, is there any way of simplifying this? Just do like,</p>
<pre><code>NSLog(@"It did work! %@", row);
</code></pre>
<p>For the record, I tried that, and it did not work.</p>
<p>Thank you. <em>I am a n00b at iPhone programming :)</em></p>
http://stackoverflow.com/questions/6899/is-there-a-way-to-create-a-sql-server-function-to-join-multiple-rows-from-a-sub11Is there a way to create a SQL Server function to "join" multiple rows from a subquery into a single delimited field?Templar2008-08-09T20:11:18Z2010-02-10T00:28:17Z
<p>To illustrate, assume that I have two tables as follows:</p>
<pre><code>VehicleID Name
1 Chuck
2 Larry
LocationID VehicleID City
1 1 New York
2 1 Seattle
3 1 Vancouver
4 2 Los Angeles
5 2 Houston
</code></pre>
<p>I want to write a query to return the following results:</p>
<pre><code>VehicleID Name Locations
1 Chuck New York, Seattle, Vancouver
2 Larry Los Angeles, Houston
</code></pre>
<p>I know that this can be done using server side cursors, ie:</p>
<pre><code>DECLARE @VehicleID int
DECLARE @VehicleName varchar(100)
DECLARE @LocationCity varchar(100)
DECLARE @Locations varchar(4000)
DECLARE @Results TABLE
(
VehicleID int
Name varchar(100)
Locations varchar(4000)
)
DECLARE VehiclesCursor CURSOR FOR
SELECT
[VehicleID]
, [Name]
FROM [Vehicles]
OPEN VehiclesCursor
FETCH NEXT FROM VehiclesCursor INTO
@VehicleID
, @VehicleName
WHILE @@FETCH_STATUS = 0
BEGIN
SET @Locations = ''
DECLARE LocationsCursor CURSOR FOR
SELECT
[City]
FROM [Locations]
WHERE [VehicleID] = @VehicleID
OPEN LocationsCursor
FETCH NEXT FROM LocationsCursor INTO
@LocationCity
WHILE @@FETCH_STATUS = 0
BEGIN
SET @Locations = @Locations + @LocationCity
FETCH NEXT FROM LocationsCursor INTO
@LocationCity
END
CLOSE LocationsCursor
DEALLOCATE LocationsCursor
INSERT INTO @Results (VehicleID, Name, Locations) SELECT @VehicleID, @Name, @Locations
END
CLOSE VehiclesCursor
DEALLOCATE VehiclesCursor
SELECT * FROM @Results
</code></pre>
<p>However, as you can see, this requires a great deal of code. What I would like is a generic function that would allow me to do something like this:</p>
<pre><code>SELECT VehicleID
, Name
, JOIN(SELECT City FROM Locations WHERE VehicleID = Vehicles.VehicleID, ', ') AS Locations
FROM Vehicles
</code></pre>
<p>Is this possible? Or something similar?</p>
http://stackoverflow.com/questions/2233564/canvas-contents-as-data1<Canvas> contents as data?jefff2010-02-10T00:27:51Z2010-02-10T00:27:51Z
<p>Hello everyone,</p>
<p>Is there a way to save a canvas element's content to data such as binary? I'm looking to be able to redraw this data when needed. </p>
<p>Not really sure on how to go about it..</p>
<p>Thanks so much!!</p>
http://stackoverflow.com/questions/2231475/undefined-method-student-fail-state-id0undefined method student_fail_state_idJohnMerlino2010-02-09T18:30:30Z2010-02-10T00:27:49Z
<p>I'm getting an undefined method error. What I really want is to change the student_fail_state_id of another model. However, the code below is only accepting attribute of the same model:</p>
<pre><code>[ render_form_collection_field(f, :student_fail_state_id, 'reason') { { :collection => StudentFailState.enabled, :value_method => :id, :text_method => :name} } ]
</code></pre>
<p>helper:</p>
<pre><code>def render_form_field(form, name, label=nil)
label ||= name.to_s.gsub(/_id$/, '').gsub('_', ' ')
logger.info "name => #{name}"
logger.info "error_fields.size = #{error_fields.size} => [#{error_fields.join ". "}]"
label_class = "error" if error_fields.include?(name.to_sym)
<<END_HTML
<li>
#{form.label name, label, :class => label_class}
<div>#{yield}</div>
</li>
END_HTML
end
def render_form_collection_field(form, name, label = nil, size = nil)
render_form_field(form, name, label) do
params = yield
form.collection_select name, params[:collection], params[:value_method], params[:text_method], {}, {:size => size}
end
end
</code></pre>
<p>Any idea of how to change the render_form_collection_field method so it will accept attributes of another model? Thanks. </p>
http://stackoverflow.com/questions/2233563/dynamically-populate-an-empty-dropdown-with-a-call-from-a-service0Dynamically populate an empty dropdown with a call from a service. Skittles2010-02-10T00:27:44Z2010-02-10T00:27:44Z
<p>Hi, </p>
<p>I am working on an application where we submit details to an external web page that we have no access to make any changes to. The external page is a .htm page. We want to be able to pre-populate the .htm page with the details from our WCF service and proceed to the next stage without user intervention.</p>
<p>The problem is that there is a dropdown that is only populated when another field on the form is populated first. So, for example when an Country field is selected, only then is the State dropdown populated (based on the Country selected). So, when we first hit the page with the details from or service and try to pass in the ‘State’ it fails because on first load of the page there are not details in the ‘State’ dropdown. </p>
<p>Has anyone got any idea how we could overcome this problem. We need some way of maybe populating the ‘Country’ details first to populate the ‘State’ dropdown and then submit the rest of the details for validating and processing without any user intervention.</p>
<p>As always, thanks for your help.</p>
http://stackoverflow.com/questions/2233499/javascript-variable-scope-cross-site-scripting1Javascript variable scope (cross site scripting)Stick it to THE MAN2010-02-10T00:09:50Z2010-02-10T00:27:25Z
<p>I am writing a javascript widget. I am declaring some variables which will be pasted in the host page. </p>
<p>the script to be pasted into pages looks something like this</p>
<pre><code><script type="text/javascript">
var myvar='foobar';
// more code follows ...
</script>
</code></pre>
<p>In my remote script (which is loaded succesfully into the host page), I get the following error:</p>
<pre><code>An error ocurred: myvar is undefined
</code></pre>
<p>According to the docs, this should work. Am I missing something obvious?</p>