User Isak Savo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:49:19Zhttp://stackoverflow.com/feeds/user/8521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887539/exact-string-check-wpf-multitouch/1901843#19018431Answer by Isak Savo for exact String check (WPF Multitouch) Isak Savo2009-12-14T16:15:17Z2009-12-14T16:15:17Z<p>First off, go back to using numbers. Putting numbers into strings for later comparison is wrong on so many levels :-)</p>
<p>My guess is that your problem is a resolution problem - It's <strong>practically impossible</strong> to hit the <strong>exact same spot</strong> as before, since there are a <em>lot</em> of pixels on the screen. Basically, one pixel off will render your algorithm useless. You should instead map your touch area into a few larger clusters and check if the touch has been in this cluster before (as opposed to the exact same pixel).</p>
<p>A simple approach is to just integer division on the coordinates you receive.</p>
<p>In the example below, I divide the pixel coordinate system with clusters of 3 by 3 pixels but you could go with larger if that makes sense for you. It all depends on how big the resolution of the touch area is.</p>
<p>What this means in practice is that any pixel within this 3 by 3 area is considered equal. So a hit on <code>(1,1)</code> is matching a previous hit on <code>(2,3)</code> and so on.</p>
<pre><code>// Divide into 3x3 pixel clusters
var currentCluster = new Point((int)touchPos.X / 3, (int)touchPos.Y / 3)
// previousClusters is a List<Point>() which is cleared on TouchUp
foreach (var cluster in previousClusters)
{
if (cluster == currentCluster)
{
// We've been here before, do your magic here!
g1.Background = Brushes.AliceBlue;
// Return here, since we don't want to add the point again
return;
}
}
previousClusters.Add(currentCluster);
</code></pre>
http://stackoverflow.com/questions/759528/with-wpf-how-to-collapse-a-textblock-depending-on-the-content-of-its-child-textb/1901638#19016380Answer by Isak Savo for With WPF, how to collapse a TextBlock depending on the content of its child TextBlock?Isak Savo2009-12-14T15:41:18Z2009-12-14T15:41:18Z<p>If you are inside a template or style, you can use triggers to set the visibility of the outer textblock.</p>
<p>For example, in case of <a href="http://msdn.microsoft.com/en-us/library/ms742521.aspx" rel="nofollow">DataTemplate</a>:</p>
<pre><code><DataTemplate.Triggers>
<DataTrigger Binding="{Binding Path=Info1}" Value="">
<Setter Property="Visibility" TargetName="pnlInfo1" Value="Hidden" />
</DataTrigger>
<!-- and so on ... -->
</DataTemplate.Triggers>
</code></pre>
<p>Adjust the trigger according to your needs. For example you can hide it when it is <code>null</code> or use a converter as gcores suggested to do more fancy checking.</p>
http://stackoverflow.com/questions/1872655/identifying-threads-in-vs-net-2003/1890950#18909500Answer by Isak Savo for Identifying threads in VS .NET 2003Isak Savo2009-12-11T21:21:58Z2009-12-11T21:21:58Z<p>I found it useful to also name threads to make it easier to distinguish them in the debugger:
When you create new threads (using the <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.aspx" rel="nofollow">Thread</a> class) you can set the <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.name%28VS.71%29.aspx" rel="nofollow">Name</a> property. This name will show up when you debug in Visual Studio.</p>
http://stackoverflow.com/questions/1887554/reading-binary-data-using-marshalas-and-structlayout/1887628#18876280Answer by Isak Savo for Reading binary data using MarshalAs and StructLayoutIsak Savo2009-12-11T12:03:01Z2009-12-11T12:03:01Z<p>20 is probably the correct offset for this architecture. The compiler will pad with zeroes to put struct members on even locations. Exact "how even" is architecture and compiler depending, but it has to be a multiple of 4 in 32bit architectures if I'm not mistaken. </p>
<p>For example, the following struct:</p>
<pre><code>struct MyStruct
{
char ch; // Offset 0
// 3 "invisible" bytes padding inserted by the compiler
int i; // Offset 4
}
</code></pre>
http://stackoverflow.com/questions/1874728/avoid-calling-invoke-when-the-control-is-disposed/1874785#18747853Answer by Isak Savo for Avoid calling Invoke when the control is disposedIsak Savo2009-12-09T15:47:56Z2009-12-09T15:47:56Z<p>What you have here is a <a href="http://en.wikipedia.org/wiki/Race%5Fcondition" rel="nofollow">race condition</a>. You're better off just catching the ObjectDisposed exception and be done with it. In fact, I think in this case it is the <em>only</em> working solution. </p>
<pre><code>try
{
if (mImageListView.InvokeRequired)
mImageListView.Invoke(new YourDelegate(thisMethod));
else
mImageListView.RefreshInternal();
}
catch (ObjectDisposedException ex)
{
// Do something clever
}
</code></pre>
http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-python/1867442#18674421Answer by Isak Savo for How do I determine an open file's size in Python?Isak Savo2009-12-08T14:47:45Z2009-12-08T14:47:45Z<p>I'm not familiar with python, but doesn't the stream object (or whatever you get when opening a file) have a property that contains the current position of the stream? </p>
<p>Similar to what you get with the <a href="http://www.cplusplus.com/reference/clibrary/cstdio/ftell/" rel="nofollow">ftell()</a> C function, or <a href="http://msdn.microsoft.com/en-us/library/system.io.stream.position.aspx" rel="nofollow">Stream.Position</a> in .NET.</p>
<p>Obviously, this only works if you are positioned at the end of the stream, which you are if you are currently writing to it.</p>
<p>The benefit of this approach is that you don't have to close the file or worry about unflushed data.</p>
http://stackoverflow.com/questions/1867314/sqlite-api-boolean-access/1867351#18673511Answer by Isak Savo for Sqlite API boolean accessIsak Savo2009-12-08T14:32:55Z2009-12-08T14:32:55Z<p>One obvious way would be to "declare" it as integer column and then when you do INSERT or UPDATE you pass it 1 (True) or 0 (False). This way, you maintain compatibility with the C language. You don't even need to declare it as int, just make sure you always insert integers to it and you'll be fine.</p>
<p>You mentioned this is an inherited database, how did they do before? If they stored as text then you may need to call <code>sqlite_column_text()</code> and then string match for the "true" or "false" literal strings.</p>
http://stackoverflow.com/questions/1831746/regex-if-contains-can-only-contain-20/1831839#18318390Answer by Isak Savo for Regex - If contains '%', can only contain '%20'Isak Savo2009-12-02T09:50:40Z2009-12-02T14:37:51Z<p>I agree with dominic's comment on the question. Don't use Regex.</p>
<p>If you want to avoid scanning the string twice, you can just iteratively search for <code>%</code> and then check that it is being followed by <code>20</code> and nothing else. (<strong>Update:</strong> allow a <code>%</code> after to be interpreted as a literal <code>%nnn</code> sequence)</p>
<pre><code>// pseudo code
pos = 0
while (pos = mystring.find(pos, '%'))
{
if mystring[pos+1] = "%" then
pos = pos + 2 // ok, this is a literal, skip ahead
else if mystring.substring(pos,2) != "20"
return false; // string is invalid
end if
}
return true;
</code></pre>
http://stackoverflow.com/questions/1534341/ms-surface-animating-an-svi-along-a-straight-line/1831795#18317950Answer by Isak Savo for MS Surface animating an SVI along a straight lineIsak Savo2009-12-02T09:41:10Z2009-12-02T09:41:10Z<p>Although you already have an accepted answer I'd like to add a point here.</p>
<p>Even with FillBehavior set to Stop, there are certain occasions where it just doesn't work. I believe it is in conjunction with <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.animation.beginstoryboard.handoffbehavior.aspx" rel="nofollow">HandoffBehavior</a> set to SnapshotAndReplace. What I've done in those cases is to programmatically start a new animation (using <a href="http://msdn.microsoft.com/en-us/library/ms598906.aspx" rel="nofollow">BeginAnimation</a>) on that dependency property with a <code>null</code> as second argument. </p>
<pre><code>// Remove all animations for the Opacity property on the myElement element
myElement.BeginAnimation(UIElement.OpacityProperty, null)
</code></pre>
<p>This effectively clears all animations for that dependency property and you can freely assign new values to it.</p>
http://stackoverflow.com/questions/1750849/how-to-open-an-app-main-interface-from-the-executable-instead-on-the-tray-icon-in/1750897#17508970Answer by Isak Savo for How to open an app main interface from the executable instead on the tray icon in c#Isak Savo2009-11-17T18:39:40Z2009-11-17T18:39:40Z<p>I don't think you can raise events on another application's windows (even if they are the same executable file).</p>
<p>The way I would solve it though is to use some <a href="http://en.wikipedia.org/wiki/Inter-process%5Fcommunication" rel="nofollow">IPC mechanism</a> to tell the running instance to open up the main window. The same IPC mechanism can also be used to determine whether another instance is running or not.</p>
http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/1631635#16316350Answer by Isak Savo for WPF Blurry fonts problem - SolutionsIsak Savo2009-10-27T15:31:42Z2009-10-27T15:31:42Z<p>I encountered a problem the other day when I used a border which had a <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.effects.dropshadoweffect.aspx" rel="nofollow">DropShadowEffect</a> applied. The result was that all text inside that border was extremely blurry. It doesn't matter if text was inside other panels or directly under the border - any text block that is child of parent that has an <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.effect.aspx" rel="nofollow">Effect</a> applied seems to be affected.</p>
<p>The solution to this particular case was to not put stuff inside the border that has effects, but instead use a grid (or anything else that supports putting content on top of each other) and place a rectangle in the same cell as the text (i.e. as a sibling in the visual tree) and put the effects on that. </p>
<p>Like so:</p>
<pre><code><!-- don't do this --->
<Border>
<Border.Effect>
<DropShadowEffect BlurRadius="25" ShadowDepth="0" Opacity="1"/>
</Border.Effect>
<TextBlock Text="This Text Will Be Blurry" />
</Border>
<!-- Do this instead -->
<Grid>
<Rectangle>
<Rectangle.Effect>
<DropShadowEffect BlurRadius="25" ShadowDepth="0" Opacity="1"/>
</Rectangle.Effect>
</Rectangle>
<TextBlock Text="This Text Will Be Crisp and Clear" />
</Grid>
</code></pre>
http://stackoverflow.com/questions/1630803/find-edges-in-32-bits-word-bitpattern/1630838#16308385Answer by Isak Savo for Find "edges" in 32 bits word bitpatternIsak Savo2009-10-27T13:35:11Z2009-10-27T13:35:11Z<p>You should be able to bitwise XOR them together to get a bit pattern representing the flipped bits. Then use one of the bit counting tricks on this page: <a href="http://graphics.stanford.edu/~seander/bithacks.html" rel="nofollow">http://graphics.stanford.edu/~seander/bithacks.html</a> to count how many 1's there are in the result.</p>
http://stackoverflow.com/questions/1571727/have-itunes-inform-me-when-i-programmatically-sync-iphone-using-com1Have iTunes inform me when I programmatically sync iphone using COMIsak Savo2009-10-15T11:17:18Z2009-10-24T18:11:18Z
<p>I've <a href="http://code.google.com/p/tiecal/" rel="nofollow">written an application</a> that synchronizes calendar from Lotus Notes to the iphone (using MS Outlook as conduit) and I want to tell iTunes to push the changes onto the iphone.</p>
<p>I can do this just fine using the COM interface (<a href="http://cuzic.net/iTunesLib/classes/IITIPodSource.html" rel="nofollow">IITIpodSource.UpdateIpod</a>) but the problem is that this method return immediately when it starts the synchronization. Then iTunes will handle the rest. I want my application to be informed when iTunes has completed the sync so that I can update my GUI accordingly.</p>
<p>So, while iTunes is synchronizing the iphone correctly, my application is never told <strong>when</strong> it is done. A status flag that I can poll is just as OK as an event by the way...</p>
<p>I can't find anything of help in the documentation. Has anyone ever tried anything like this?</p>
<p><strong>Edit:</strong> I tried polling the <a href="http://cuzic.net/iTunesLib/classes/IITSource.html" rel="nofollow">FreeSpace</a> property but it seems that is updated before the syncing is done (may even be updated several times as far as I can tell)</p>
http://stackoverflow.com/questions/1585137/what-happens-in-assembly-language-when-you-call-a-method-function/1585164#158516419Answer by Isak Savo for What happens in assembly language when you call a method/function?Isak Savo2009-10-18T15:28:27Z2009-10-20T14:25:09Z<p>In general, this is what happens:</p>
<ol>
<li>Arguments to the function are stored on the stack. In platform specific order.</li>
<li>Location for return value is "allocated" on the stack</li>
<li>The return value for the function is also stored in the stack or in a special purpose CPU register.</li>
<li>The function (or actually, the address of the function) is called, either through a CPU specific <code>call</code> instruction or through a normal <code>jmp</code> or <code>br</code> instruction (jump/branch)</li>
<li>The function reads the arguments (if any) from the stack and the runs the function code</li>
<li>Return value from function is stored in the specified location (stack or special purpose CPU register)</li>
<li>Execution jumps back to the caller and the stack is cleared (by restoring the stack pointer to its initial value).</li>
</ol>
<p>The details of the above vary from platform to platform and even from compiler to compiler (see e.g. STDCALL vs CDECL calling conventions). For instance, in some cases, CPU registers are used instead of storing stuff on the stack. The general idea is the same though</p>
http://stackoverflow.com/questions/1538420/c-difference-between-malloc-and-calloc/1585987#15859875Answer by Isak Savo for c difference between malloc and callocIsak Savo2009-10-18T20:44:56Z2009-10-18T20:44:56Z<p>A less known difference is that in operating systems with optimistic memory allocation, like Linux, the pointer returned by <code>malloc</code> isn't backed by real memory until the program actually touches it.</p>
<p><code>calloc</code> does indeed touch the memory (it writes zeroes on it) and thus you'll be sure the OS is backing the allocation with actual RAM (or swap). This is also why it is slower than malloc (not only does it have to zero it, the OS must also find a suitable memory area by possibly swapping out other processes)</p>
<p>See for instance <a href="http://stackoverflow.com/questions/911860/does-malloc-lazily-create-the-backing-pages-for-an-allocation-on-linux-and-other">this SO question</a> for further discussion about the behavior of malloc</p>
http://stackoverflow.com/questions/1584956/how-to-handle-execvp-errors-after-fork/1584983#15849836Answer by Isak Savo for How to handle execvp(...) errors after fork()?Isak Savo2009-10-18T14:07:47Z2009-10-18T15:35:31Z<p>You terminate the child (by calling <a href="http://linux.die.net/man/2/%5Fexit" rel="nofollow">_exit()</a>) and then the parent can notice this (through e.g. <a href="http://linux.die.net/man/2/waitpid" rel="nofollow">waitpid()</a>). For instance, your child could exit with an exit status of -1 to indicate failure to exec. One caveat with this is that it is impossible to tell from your parent whether the child in its original state (i.e. before exec) returned -1 or if it was the newly executed process. </p>
<p>As suggested in the comments below, using an "unusual" return code would be appropiate to make it easier to distinguish between your specific error and one from the exec()'ed program. Common ones are 1, 2, 3 etc. while higher numbers 99, 100, etc. are more unusual. You should keep your numbers below 255 (unsigned) or 127 (signed) to increase portability.</p>
<p>Since waitpid blocks your application (or rather, the thread calling it) you will either need to put it on a background thread or use the signalling mechanism in POSIX to get information about child process termination. See the SIGCHLD signal and the <a href="http://linux.die.net/man/2/sigaction" rel="nofollow">sigaction</a> function to hook up a listener.</p>
<p>You could also do some error checking before forking, such as making sure the executable exists. </p>
<p>If you use something like <a href="http://library.gnome.org/devel/glib/" rel="nofollow">Glib</a>, there are utility functions to do this, and they come with pretty good error reporting. Take a look at the "<a href="http://library.gnome.org/devel/glib/2.22/glib-Spawning-Processes.html" rel="nofollow">spawning processes</a>" section of the manual. </p>
http://stackoverflow.com/questions/1579002/net-movement-of-threads-between-cores/1579045#15790452Answer by Isak Savo for .NET movement of threads between coresIsak Savo2009-10-16T16:24:42Z2009-10-16T16:24:42Z<p>It's not like the thread is living on a particular core and that it is a process of <em>moving</em> it to another.</p>
<p>The operating system simply has a list of threads (and/or processes) that are ready to execute and will dispatch them on whatever core/cpu that happens to be available.</p>
<p>That said, any smart scheduler will try to schedule the thread on the same core as much as possible - simply to increase performance (data is more likely to be in that core's cache etc.)</p>
http://stackoverflow.com/questions/1576313/oop-in-c-inheritance-and-bugs/1576733#15767330Answer by Isak Savo for OOP in C, inheritance, and bugsIsak Savo2009-10-16T08:06:23Z2009-10-16T08:06:23Z<p>I suggest you take a look at existing object oriented APIs for C. <a href="http://library.gnome.org/devel/gobject/stable/" rel="nofollow">GObject</a>, part of the <a href="http://library.gnome.org/devel/glib/" rel="nofollow">GLib</a> package which in turn forms the foundation of the GTK toolkit and <a href="http://www.gnome.org/" rel="nofollow">GNOME desktop environment</a> is a mature implementation you may be able to use.</p>
<p>You'll get stuff like inheritance, interfaces and events using only portable C. And it won't cost you a dime...</p>
http://stackoverflow.com/questions/1506192/visualizing-gcc-error-messages/1506272#15062722Answer by Isak Savo for Visualizing gcc error messagesIsak Savo2009-10-01T20:28:36Z2009-10-01T20:28:36Z<p>I've used <a href="http://phil.freehackers.org/pretty-make/index.html" rel="nofollow">pretty make</a> in the past. Not sure how it works with c++ template error messages, but it does help visualize compiler output in general.</p>
<p>Then there's also <a href="http://schlueters.de/colorgcc.html" rel="nofollow">Color GCC</a>, which does color error and warning messages from gcc. Probably not as advanced as you'd like it to be, but it may be something at least :)</p>
http://stackoverflow.com/questions/1455190/how-to-access-mysql-from-multiple-threads-concurrently0How to access MySQL from multiple threads concurrentlyIsak Savo2009-09-21T15:41:05Z2009-09-21T21:09:19Z
<p>We're doing a small benchmark of MySQL where we want to see how it performs for our data.</p>
<p>Part of that test is to see how it works when multiple concurrent threads hammers the server with various queries.</p>
<p>The <a href="http://dev.mysql.com/doc/refman/5.0/en/c.html" rel="nofollow">MySQL documentation</a> (5.0) isn't really clear about multi threaded clients. I should point out that I do link against the thread safe library (<code>libmysqlclient_r.so</code>)</p>
<p>I'm using prepared statements and do both read (SELECT) and write (UPDATE, INSERT, DELETE). </p>
<ul>
<li>Should I open one connection per thread? And if so: how do I even do this.. it seems <code>mysql_real_connect()</code> returns the original DB handle which I got when I called <code>mysql_init()</code>)</li>
<li>If not: how do I make sure results and methods such as <code>mysql_affected_rows</code> returns the correct value instead of colliding with other thread's calls (mutex/locks could work, but it feels wrong)</li>
</ul>
http://stackoverflow.com/questions/1418612/whats-wrong-with-my-bash-array/1418642#14186425Answer by Isak Savo for What's wrong with my bash array?Isak Savo2009-09-13T19:31:08Z2009-09-13T19:58:36Z<p>Are you on ubuntu?</p>
<p>Then you should change the <code>#!-</code>line at the top to read <code>#!/bin/bash</code> because /bin/sh is a very limited shell.</p>
<p>This would explain why works in the terminal (where the shell is bash) but not as a shell script (which is run by /bin/sh).</p>
<p>They changed this a couple of releases ago for performance reasons - most people don't need full bash functionality for shell script, and this limited shell is much faster at startup.</p>
<p><strong>Edit:</strong> I just noticed that you don't even have to use an array since you convert it to a space separated string in the for loop anyway. Just remove the parenthesis in the assignment and put quotes around it instead (and also remove the spaces around the equal sign, as <em>hacker</em> suggested)</p>
http://stackoverflow.com/questions/1418645/getting-started-in-c/1418659#14186592Answer by Isak Savo for Getting Started in CIsak Savo2009-09-13T19:40:37Z2009-09-13T19:40:37Z<p>C code needs to be compiled before the program can be run. The exact process is different depending on which platform and compiler you are working on. </p>
<p>For the most part, using an IDE (such as <a href="http://www.microsoft.com/express/" rel="nofollow">Visual studio</a>, <a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse</a>, <a href="http://monodevelop.com/" rel="nofollow">MonoDevelop</a>, and a bunch of others) will do the nasty work for you so that you just have to press a button or click an icon. Download one of these</p>
http://stackoverflow.com/questions/1406256/getting-and-printing-chars-in-c/1406353#14063532Answer by Isak Savo for Getting and printing chars in C?Isak Savo2009-09-10T16:33:18Z2009-09-10T16:33:18Z<p>As commented, you're question contains the answer already. But anyway:</p>
<p>If you want do the same thing in c++, you could use streams:</p>
<pre><code>int mynumber;
char mychar;
cout << "Number?" << endl;
cin >> mynumber;
cout << "Character?" << endl;
cin >> mychar;
cout << "you typed number " << mynumber << " and char " << mychar << endl;
</code></pre>
<p>Of course, your C implementation would work just as well in C++.</p>
<p>(If you are developing a more serious application, I would recommend using something more sophisticated than just cin or scanf)</p>
http://stackoverflow.com/questions/100104/how-to-have-silverlight-get-its-data-from-mysql0How to have silverlight get its data from MySQLIsak Savo2008-09-19T06:48:44Z2009-09-10T00:24:00Z
<p>I've written a small hello world test app in Silverlight which i want to host on a Linux/Apache2 server. I want the data to come from MySQL (or some other linux compatible db) so that I can databind to things in the db.</p>
<p>I've managed to get it working by using the <a href="http://www.mysql.com/products/connector/net/" rel="nofollow">MySQL Connector/.NET</a>:</p>
<pre><code>MySqlConnection conn = new MySqlConnection("Server=the.server.com;Database=theDb;User=myUser;Password=myPassword;");
conn.Open();
MySqlCommand command = new MySqlCommand("SELECT * FROM test;", conn);
using (MySqlDataReader reader = command.ExecuteReader())
{
StringBuilder sb = new StringBuilder();
while (reader.Read())
{
sb.AppendLine(reader.GetString("myColumn"));
}
this.txtResults.Text = sb.ToString();
}
</code></pre>
<p>This works fine if I give the published ClickOnce app full trust (or at least SocketPermission) and <strong>run it locally</strong>. </p>
<p>I want this to run on the server and I can't get it to work, always ending up with permission exception (SocketPermission is not allowed).</p>
<p>The database is hosted on the same server as the silverlight app if that makes any difference.</p>
<p><strong>EDIT</strong>
Ok, I now understand why it's a bad idea to have db credentials in the client app (obviously). How do people do this then? How do you secure the proxy web service so that it relays data to and from the client/db in a secure way? Are there any examples out there on the web?</p>
<p>Surely, I cannot be the first person who'd like to use a database to power a silverlight application?</p>
http://stackoverflow.com/questions/1397924/get-original-sql-query-from-prepared-statement-in-sqlite1Get original SQL query from prepared statement in SQLiteIsak Savo2009-09-09T06:50:44Z2009-09-09T08:59:37Z
<p>I'm using SQLite (3.6.4) from a C++ application (using the standard C api). My question is: once a query has been prepared, using <code>sqlite3_prepare_v2()</code>, and bound with parameters using <code>sqlite3_bind_xyz()</code> - is there any way to get a string containing the original SQL query?</p>
<p>The reason is when something goes wrong, I'd like to print the query (for debugging - this is an in-house developer only test app).</p>
<p>Example: </p>
<pre><code>sqlite3_prepare_v2(db, "SELECT * FROM xyz WHERE something = ? AND somethingelse = ?", -1, &myQuery, NULL);
sqlite3_bind_text(myQuery, 1, mySomething);
sqlite3_bind_text(myQuery, 2, mySomethingElse);
// ....
// somewhere else, in another function perhaps
if (sqlite3_step(myQuery) != SQLITE_OK)
{
// Here i'd like to print the actual query that failed - but I
// only have the myQuery variable
exit(-1);
}
</code></pre>
<p>Bonus points if it could also print out the actual parameters that was bound. :)</p>
http://stackoverflow.com/questions/1386548/automatic-decimal-number-formatting-in-sql-or-php/1386740#13867402Answer by Isak Savo for Automatic decimal number formatting in SQL or PHP?Isak Savo2009-09-06T21:17:21Z2009-09-06T21:17:21Z<p>If all you want is to modify the displayed digits, then you can use <a href="http://www.php.net/printf" rel="nofollow">printf</a> with the <code>%g</code> formatter and specify maximum number of precision digits:</p>
<pre><code>printf ("%.10g", 123.456); // outputs "123.456"
printf ("%.10g", 123.456000000); // outputs "123.456"
printf ("%.10g", 123.000000000); // outputs "123"
printf ("%.10g", 1.234567891); // outputs "1.234567891"
</code></pre>
http://stackoverflow.com/questions/1386593/why-use-sprintf-function-in-php/1386607#138660723Answer by Isak Savo for Why use sprintf function in PHP?Isak Savo2009-09-06T20:13:37Z2009-09-06T20:13:37Z<p><code>sprintf</code> has all the formatting capabilities of the original printf which means you can do much more than just inserting variable values in strings.</p>
<p>For instance, specify number format (hex, decimal, octal), number of decimals, padding and more. Google for printf and you'll find plenty of examples. The <a href="http://en.wikipedia.org/wiki/Printf#printf%5Fformat%5Fplaceholders" rel="nofollow">wikipedia article on printf</a> should get you started.</p>
http://stackoverflow.com/questions/1354731/gdb-evaluation-of-a-function/1354802#13548022Answer by Isak Savo for gdb evaluation of a functionIsak Savo2009-08-30T20:17:03Z2009-08-30T20:17:03Z<p>My guess is that the compiler and linker does some magic with those particular functions. Most likely to increase performance. </p>
<p>If you absolutely need <code>pow()</code> to be available in gdb then you can create your own wrapper function:</p>
<pre><code>double mypow(double a, double b)
{
return pow(a,b);
}
</code></pre>
<p>Maybe also wrap it into a <code>#ifdef DEBUG</code> or something to not clutter the final binary.</p>
<p>BTW, you will notice that other library functions can be called (and their return value printed), for instance:</p>
<pre><code>(gdb) print printf("hello world")
$4 = 11
</code></pre>
http://stackoverflow.com/questions/288294/bash-shell-scripting-what-simple-logic-am-i-missing/288323#2883235Answer by Isak Savo for Bash Shell Scripting: what simple logic am I missingIsak Savo2008-11-13T21:11:09Z2008-11-13T21:11:09Z<p>You can create a function that is called goto (or whatever) and make sure it is defined in your .bashrc (or you can "source" it from your current shell):</p>
<pre><code>function goto {
# the "$USER" part will expand to the current username
# the "$1" will expand to the first argument to the function ("goto xyz" => $1 is "xyz")
cd /some-path/lit/$USER/$1
}
</code></pre>
<p>Put this in ~/.bashrc or in a separate file and call "source the-file" from your prompt then you can call the function just like any other program:</p>
<pre><code>prompt> goto folder
cd /some-path/lit/your-user/folder
</code></pre>
http://stackoverflow.com/questions/233113/net-how-to-check-the-type-within-a-generic-typed-class/233155#233155-1Answer by Isak Savo for .NET: How to check the type within a generic typed class?Isak Savo2008-10-24T11:27:28Z2008-10-24T11:30:04Z<p>If you want to use the <code>is</code> operator in a generic class/method you have to limit <code>T</code> to a reference type:</p>
<pre><code>public void MyMethod<T>(T theItem) where T : class
{
if (theItem is IEnumerable) { DoStuff(); }
}
</code></pre>
http://stackoverflow.com/questions/1875084/suggested-controls-for-an-open-source-wpf-appComment by Isak Savo on Suggested controls for an open source WPF app?Isak Savo2009-12-14T16:26:43Z2009-12-14T16:26:43ZAlso, their license model probably make them incompatible for (some) open source licenses.http://stackoverflow.com/questions/1899054/how-to-decompress-the-tgz-file-without-changing-the-orginal-file/1899066#1899066Comment by Isak Savo on How to decompress the *.TGZ file without changing the orginal file?Isak Savo2009-12-14T11:55:17Z2009-12-14T11:55:17Z@Thillakan: That's because you cannot call "exec" with a redirect (the > symbol). You could either capture the output of the gunzip call (using <code>popen</code> or setting up pipes yourself) or use one of the tar commands instead. If you don't care about when/if the program exists, you can use system("gunzip -c test.tgz > test.tar") since the system function accepts the redirect symbol.http://stackoverflow.com/questions/1887111/merged-linked-list-in-c/1887150#1887150Comment by Isak Savo on merged linked list in CIsak Savo2009-12-11T11:27:17Z2009-12-11T11:27:17Z+1: Nice an clean.. Solves the problem!http://stackoverflow.com/questions/1874728/avoid-calling-invoke-when-the-control-is-disposed/1874785#1874785Comment by Isak Savo on Avoid calling Invoke when the control is disposedIsak Savo2009-12-09T15:59:57Z2009-12-09T15:59:57ZWell you <i>can</i> solve it by using mutex or locks, but it is much more error prone and can lead to weird bugs as the code is evolving. You'll need to protect all calls to Dispose() with the same mutex and that'll get harder as the code evolves...http://stackoverflow.com/questions/1874728/avoid-calling-invoke-when-the-control-is-disposed/1874761#1874761Comment by Isak Savo on Avoid calling Invoke when the control is disposedIsak Savo2009-12-09T15:57:05Z2009-12-09T15:57:05Z@Jrud: That's not true. Lock just means that you block other threads from trying to acquire the <i>same lock</i>. It is still possible to call any methods on a "locked" object.http://stackoverflow.com/questions/1874728/avoid-calling-invoke-when-the-control-is-disposed/1874761#1874761Comment by Isak Savo on Avoid calling Invoke when the control is disposedIsak Savo2009-12-09T15:48:34Z2009-12-09T15:48:34ZThis won't work. There's no guarantee that Disposed isn't called while you are inside the lock. http://stackoverflow.com/questions/1872156/how-can-i-know-where-the-segment-of-memory-is-all-zero/1872192#1872192Comment by Isak Savo on How can I know where the segment of memory is all ZeroIsak Savo2009-12-09T07:46:23Z2009-12-09T07:46:23Z+1.. very cleverhttp://stackoverflow.com/questions/1867314/sqlite-api-boolean-access/1867351#1867351Comment by Isak Savo on Sqlite API boolean accessIsak Savo2009-12-08T14:57:39Z2009-12-08T14:57:39ZYou don't have to worry about performance problems though.. remember that everything is already text inside SQLite so you are just doing some of the work that (admittedly) sqlite should do itself. I don't know what your code structure is, but in an OOP design, i'd create a method or property to get the value and inside that method do the conversion. This would also shield you from future changes to the DB schema (if you decide to use ints later for example)http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-pythonComment by Isak Savo on How do I determine an open file's size in Python?Isak Savo2009-12-08T14:54:10Z2009-12-08T14:54:10Zincrementing an integer is about the fastest thing a CPU can do, so probably no - this won't be inefficient :)http://stackoverflow.com/questions/1866537/wpf-how-to-know-whether-window-was-closed-by-x-buttonComment by Isak Savo on WPF - how to know whether window was closed by "x" button?Isak Savo2009-12-08T14:50:26Z2009-12-08T14:50:26ZI think it would be helpful if you explain why you want to do this. To the user, it shouldn't matter whether its closed by the X or a menu item. Maybe then we can help you achieve what you really want to do insteadhttp://stackoverflow.com/questions/1867314/sqlite-api-boolean-access/1867351#1867351Comment by Isak Savo on Sqlite API boolean accessIsak Savo2009-12-08T14:38:08Z2009-12-08T14:38:08ZBut surely somewhere the value is used? Are the triggers using the column value? How about the <code>#defined</code> statements? If it's never used, then why is it there? ;-)http://stackoverflow.com/questions/1831746/regex-if-contains-can-only-contain-20/1831839#1831839Comment by Isak Savo on Regex - If contains '%', can only contain '%20'Isak Savo2009-12-02T11:36:25Z2009-12-02T11:36:25ZAbout %200: I was under the impression that multi-octed characters (e.g. UTF-8 encoded characters) would be URL-encoded with a single '%' sign, but I may be wrong here. If so, then no need to check for subsequent digitshttp://stackoverflow.com/questions/1831746/regex-if-contains-can-only-contain-20/1831839#1831839Comment by Isak Savo on Regex - If contains '%', can only contain '%20'Isak Savo2009-12-02T11:18:47Z2009-12-02T11:18:47ZJohannes: good pointhttp://stackoverflow.com/questions/1831746/regex-if-contains-can-only-contain-20/1831790#1831790Comment by Isak Savo on Regex - If contains '%', can only contain '%20'Isak Savo2009-12-02T09:52:56Z2009-12-02T09:52:56ZWhat would this return for the string <code>http://www.test.com/?&Name=My%200Name%205Is%200000Vader</code>?http://stackoverflow.com/questions/1803542/how-to-close-account-on-stackoverflow-comComment by Isak Savo on how to close account on stackoverflow.comIsak Savo2009-11-26T13:02:59Z2009-11-26T13:02:59Zthis probably belong on meta