User Ludvig A Norin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:20:05Zhttp://stackoverflow.com/feeds/user/16909http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827644/performance-implications-when-sending-large-files-via-https/1827661#18276613Answer by Ludvig A Norin for Performance Implications when sending large files via HTTPSLudvig A Norin2009-12-01T17:23:48Z2009-12-01T17:23:48Z<p>HTTPS is more CPU intensive than HTTP. A good way to find out if that is OK or not in your usage scenario is to test and measure.</p>
<p>Generally speaking, I'd say that neither is the right tool for the job. One potential problem is that not all server support resume of interrupted transfers. Also, HTTPS normally doesn't do any compression. </p>
<p>You'll find a good answer in <a href="http://stackoverflow.com/questions/149274/http-vs-https-performance">this duplicate question</a>.</p>
http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-french/1827343#18273438Answer by Ludvig A Norin for Is it true that in France log files have to be French?Ludvig A Norin2009-12-01T16:32:31Z2009-12-01T16:38:37Z<p><a href="http://en.wikipedia.org/wiki/Toubon%5FLaw" rel="nofollow">This Wikipedia article</a> on the Toubon Law might be useful to you. As always, when in doubt you need to talk to an authority or a lawyer.</p>
<p>Excerpt:</p>
<blockquote>
<p>One broad provision of the law applying to workplaces is that "any document that contains obligations for the employee or provisions whose knowledge is necessary for the performance of one’s work must be written in French." Among other things, this means that computer software developed outside France must have its user interface and instruction manuals translated into French to be legally used by companies in France. The law includes an exception that "these provisions do not apply to documents coming from abroad", but this exception has been interpreted narrowly by the appellate courts. For example in 2006 a French subsidiary of a US company was given a hefty fine for delivering certain highly technical documents and software interfaces to its employees in the English language only, and this was upheld by the appellate court.</p>
</blockquote>
<p>That said, my experience is that having the product fully translated (including log and diagnostic messages) is incredibly helpful when entering a new market. The company I work for does this regardless of law, and among other things it makes us more trustworthy to the local market (dealers, partners and customers) and reduce the amount of support requests we get. We currently do this in aprox. 70 countries, in 40 languages.</p>
http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools14How do I create a nice-looking DMG for Mac OS X using command-line tools?Ludvig A Norin2008-09-18T20:57:58Z2009-11-20T05:01:39Z
<p>I need to create a nice installer for a Mac application. I want it to be a disk image (DMG), with a predefined size, layout and background image.</p>
<p>I need to do this programmatically in a script, to be integrated in an existing build system (more of a pack system really, since it only create installers. The builds are done separately). </p>
<p>I already have the DMG creation done using "hdiutil", what I haven't found out yet is how to make an icon layout and specify a background bitmap.</p>
http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools/1513578#15135781Answer by Ludvig A Norin for How do I create a nice-looking DMG for Mac OS X using command-line tools?Ludvig A Norin2009-10-03T12:05:26Z2009-11-20T05:01:39Z<p>After lots of research, I've come up with this answer, and I'm hereby putting it here as an answer for my own question, for reference:</p>
<p>1 - Make sure that "Enable access for assistive devices" is checked in System Preferences>>Universal Access. It is required for the AppleScript to work. You may have to reboot after this change (it doesn't work otherwise on Mac OS X Server 10.4).</p>
<p>2 - Create a R/W DMG. It must be larger than the result will be. In this example, the bash variable "size" contains the size in Kb and the contents of the folder in the "source" bash variable will be copied into the DMG:</p>
<p><code>hdiutil create -srcfolder "${source}" -volname "${title}" -fs HFS+ -fsargs "-c c=64,a=16,e=16" -format UDRW -size ${size}k pack.temp.dmg</code></p>
<p>3 - Mount the disk image, and store the device name (you might want to use sleep for a few seconds after this operation):</p>
<p><code>device=$(hdiutil attach -readwrite -noverify -noautoopen "pack.temp.dmg" | egrep '^/dev/' | sed 1q | awk '{print $1}')</code></p>
<p>4 - Store the background picture (in PNG format) in a folder called ".background" in the DMG, and store its name in the "backgroundPictureName" variable. </p>
<p>5 - Use AppleScript to set the visual styles (name of .app must be in bash variable "applicationName", use variables for the other properties as needed):</p>
<pre><code>echo '
tell application "Finder"
tell disk "'${title}'"
open
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {400, 100, 885, 430}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 72
set background picture of theViewOptions to file ".background:'${backgroundPictureName}'"
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}
set position of item "'${applicationName}'" of container window to {100, 100}
set position of item "Applications" of container window to {375, 100}
update without registering applications
delay 5
eject
end tell
end tell
' | osascript
</code></pre>
<p>6 - Finialize the DMG by setting permissions properly, compressing and releasing it:</p>
<pre><code>chmod -Rf go-w /Volumes/"${title}"
sync
sync
hdiutil detach ${device}
hdiutil convert "/pack.temp.dmg" -format UDZO -imagekey zlib-level=9 -o "${finalDMGName}"
rm -f /pack.temp.dmg
</code></pre>
<p>On Snow Leopard, the above applescript will not set the icon position correctly - it seems to be a Snow Leopard bug. One workaround is to simply call close/open after setting the icons, i.e.:</p>
<pre><code>..
set position of item "'${applicationName}'" of container window to {100, 100}
set position of item "Applications" of container window to {375, 100}
close
open
</code></pre>
http://stackoverflow.com/questions/1766084/wpf-webbrowser-control-doesnt-enter-design-mode-when-the-document-property-is-ch0WPF WebBrowser control doesn't enter design mode when the document property is changedLudvig A Norin2009-11-19T19:53:57Z2009-11-19T22:28:39Z
<p>Dear LazyWeb,</p>
<p>I have a frustrating problem. Here's a simplified version of what I'm doing:</p>
<p>A UserControl in c# contains a toolbar and an embedded WebBrowser object. The toolbar contains an "Edit" button, which when clicked sets the webbrowser control in design mode. Another button, "Cancel", turns off design mode.</p>
<p><strong>Pseudocode (very simplified):</strong></p>
<pre><code>public void SetDesignMode(bool dm) {
IHTMLDocument2 doc = webBrowser.Document as IHTMLDocument2;
if (dm) doc.designMode = "On";
else doc.designMode = "Off";
_designMode = dm;
ReloadDocument(); // setting designmode clears the document element, so it must be reloaded
}
public void OnLoadCompleted() {
IHTMLDocument2 doc = webBrowser.Document as IHTMLDocument2;
if (!_documentLoaded) {
if (_designMode) doc.designMode = "On";
else doc.designMode = "Off";
ReloadDocument();
_documentLoaded = true;
}
}
public void ReloadDocument() {
_documentLoaded = false;
// code that navigates to the document
}
</code></pre>
<p><strong>The problem:</strong>
If I click on the displayed web page, and then on the "Edit" button, the WebBrowser control will not become editable. The mouse pointer when hoovering over pictures/links show the web browser navigation mouse pointers, not the editing ones. If I click in the text, the caret won't display. </p>
<p><strong>Debugging reveals that the designMode property on the document is actually set to "On" in this situation, but the control is behaving as if it is set to "Off".</strong></p>
<p>If I <strong>don't</strong> click in the web page before clicking the "Edit" button, <strong>everything works as expected</strong>.</p>
<p><strong>Elaboration:</strong>
If I click the "Cancel" button when the control is in design mode, I get the corresponding (mis)behaviour, if the document have been clicked in. </p>
<p>Simply clicking on "Edit", then "Cancel", then "Edit" etc. without ever clicking in the document works fine (the mouseover test shows the proper mouse pointers, and I get link navigation or editing depending on the design mode if I click a link in the displayed document).</p>
<p>I've tried various techniques to make sure that another control gets focus before I change the designMode property, but it doesn't make any difference. I've searched MSDN and half of the known internet and haven't found any mention of this kind of problem. Flipping the designMode property like this seems to be quite unusal.</p>
<p>One more tidbit of information: I'm setting up document events by advising the document with a sink implemented by the usercontrol. I doubt that this should have any bearing on the problem, but I've included it here for the sake of being complete. <strong>Update:</strong> Disabling this doesn't change anything regarding the problem.</p>
<p>Does anybody recognize this problem?</p>
<p><strong>Update:</strong>
I've worked around the problem by re-creating the web browser control in SetDesignMode(). It's an ugly solution, but it works and does actually look ok. I'm very interested in any feedback on this problem, though. I believe it is a bug in MSHTML.</p>
http://stackoverflow.com/questions/343488/signing-data-with-smartcards-on-mac-in-c1Signing data with smartcards on Mac in C++Ludvig A Norin2008-12-05T10:56:28Z2009-11-03T12:22:49Z
<p>Dear lazyweb,</p>
<p>is there any support in Mac OS X for signing data using smartcards? I have looked through the system headers and found only vauge references to smart card support (in SecKeychain.h), which didn't really take me anywhere.</p>
<p>If there's no built-in support, which are my options (ie. what free/non-free libraries exist that can help me)?</p>
http://stackoverflow.com/questions/1552814/why-arent-a-batch-files-environment-variables-set-when-run-from-perl/1553081#1553081-3Answer by Ludvig A Norin for Why aren't a batch file's environment variables set when run from Perl?Ludvig A Norin2009-10-12T06:53:01Z2009-10-12T20:02:07Z<p>The system command [contested: /function] will start your batch script in the default batch file context (which is the system-wide environment), if your parameter to the system call is a scalar. It is basically the same as starting the command using "cmd /c myfile.bat". If your argument to system() is an array [contested: /list], you will not have this problem. Please read <a href="http://www.perlhowto.com/executing%5Fexternal%5Fcommands" rel="nofollow">this for more information</a>.</p>
http://stackoverflow.com/questions/1546411/url-moniker-examples-for-c-imoniker0URL Moniker Examples for C# (IMoniker)Ludvig A Norin2009-10-09T22:43:01Z2009-10-10T12:01:32Z
<p>Dear lazyweb,</p>
<p>I am trying to implement an URL Moniker for MSHTML that will be used to provide images from a storage (in the application) to the HTML Edit control. I have understood that to do this I must implement the IMoniker interface. </p>
<p>I have not found any decent documentation or sample code anywhere for this. (All MSDN documentation on the subject seem to imply C++/COM programming and <em>very</em> deep understanding of OLE, which I can't say that I have).</p>
<p>How would I implement an URL Moniker and the IMoniker interface in C#? </p>
http://stackoverflow.com/questions/1516907/visual-studio-2008-managed-incremental-build-doesnt-work0Visual Studio 2008 Managed Incremental Build doesn't workLudvig A Norin2009-10-04T17:13:40Z2009-10-07T13:07:41Z
<p>Dear Lazyweb,</p>
<p>I have "Managed Incremental Build" turned on in my managed C++ project. I have a DLL written in C#, and the solution contains both the C++ and C# projects. I have not defined any dependencies between the projects, but the C# DLL is referenced by the C++ project. </p>
<p>The problem is that whenever the C# project is rebuilt, the C++ projects does a full rebuild. I'm getting this error message when this happens:</p>
<blockquote>
<p>Cannot inspect c:\MyProj\MyCScode.dll. Assuming significant changes.</p>
</blockquote>
<p>I'm running Windows 7 in a VM (could this be a timing problem?).</p>
http://stackoverflow.com/questions/1516907/visual-studio-2008-managed-incremental-build-doesnt-work/1531537#15315370Answer by Ludvig A Norin for Visual Studio 2008 Managed Incremental Build doesn't workLudvig A Norin2009-10-07T13:07:41Z2009-10-07T13:07:41Z<p>After some research, a colleauge of mine tells me that this is a confirmed bug in Visual Studio 2008 SP1, that there's no hotfix available, and that removing SP1 solves the problem. I don't have any link to back that information, though.</p>
<p>Our solution was to move the C# implementation files from the C++ project, and have them compile using a custom build step (using the /target:module parameter to csc.exe), and to include the object files in the C++ source files that referenced our managed C# types, like this:</p>
<pre><code>#using "MyCScode.obj"
</code></pre>
<p>Caveats: </p>
<p>The netmodule must use the .obj extension, this seems to be a bug in the way Visual Studio determines what inputs will be used for the linker (normally you'd call it .netmodule instead).</p>
<p>We still get a full rebuild of all C++ source files that have the #using, whenever the C# files are updated. But this is better than a full rebuild of the entire project.</p>
http://stackoverflow.com/questions/883155/drawing-a-2px-hatch-brush-in-wpf/1515352#15153520Answer by Ludvig A Norin for Drawing a 2px Hatch brush in WPFLudvig A Norin2009-10-04T01:34:42Z2009-10-04T01:53:07Z<p>Offset the drawing with 0.5px and you'll get rid of the antialiasing effect. It happens because drawing is done on the edge of the pixel offset, rather than on the actual pixel offset that you have specified. By offset'ing X,Y with half a pixel, you tell the drawing engine to draw on the pixel itself, which eliminates the need of antialiasing. </p>
<p>For some reason this doesn't work with gradientbrushes though.</p>
<p>This behaviour is similar to what you have in Quarts drawing on Mac. </p>
<p>Note: It's <em>not</em> the viewport that you should offset, but the actual shape you're drawing when using the specified brush.</p>
<p>For a more complete answer, please <a href="http://www.wpftutorial.net/DrawOnPhysicalDevicePixels.html" rel="nofollow">read this article</a>.</p>
http://stackoverflow.com/questions/21999/wpf-anti-aliasing-workaround/1515371#15153710Answer by Ludvig A Norin for WPF Anti aliasing workaroundLudvig A Norin2009-10-04T01:46:19Z2009-10-04T01:46:19Z<p>Offset the objects you draw, that you don't want to be antialiased, by 0.5px. This will cause the drawing engine to draw <em>on</em> the actual pixels, rather than drawing <em>on the edge</em> of the pixels (which is the default). When drawing on the edge of a pixel antialiasing normally occurs on the surrounding pixels.</p>
<p>This is similar to Quarts drawing on Mac.</p>
<p>Edit: Sorry, I didn't read the question. This doesn't work for fonts, only for shapes. I will leave the comment here for reference, though.</p>
http://stackoverflow.com/questions/1513490/releasing-software-for-os-x/1513515#15135153Answer by Ludvig A Norin for Releasing software for OS XLudvig A Norin2009-10-03T11:25:22Z2009-10-03T12:09:04Z<p>Yes, you can. Check the answers to <a href="http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools">this question</a>. The short story is that you have to use applescript to fake the manual steps (by sending keycodes to the various property windows involved). After very much research I am quite positive that this is the only way. There are commercial tools available that can do this as well (but they still do it like that). </p>
<p>Note: I just updated the linked question with a complete answer (including sample code) to my own question (I thought that I already had done that...). Ignore the quite silly "don't go there" - type of answers. It is possible automate this.</p>
http://stackoverflow.com/questions/1495102/extension-methods-isnull-and-isnotnull-good-or-bad-use/1495123#14951230Answer by Ludvig A Norin for Extension Methods - IsNull and IsNotNull, good or bad use?Ludvig A Norin2009-09-29T21:44:11Z2009-09-29T21:44:11Z<p>It can make sense if you, for instance, assume that you might want to throw an exception whenever x is null (just do it in the extension method). However, I my personal preference in this particular case is to check explicitly (a null object should be null :-) ).</p>
http://stackoverflow.com/questions/1494950/improve-algorithmic-thinking/1494974#149497414Answer by Ludvig A Norin for Improve algorithmic thinking.Ludvig A Norin2009-09-29T21:10:34Z2009-09-29T21:30:41Z<p>Solve problems on a daily basis. Watch traffic lights and ask yourself, "How can these be synced to optimize the flow of traffic? Or to optimize the flow of pedestrians? What is the best solution for both?". Look at elevators and ask yourself "Why should these elevators use different rules than the elevators in that other building I visited yesterday? How is it actually implemented? How can it be improved?". </p>
<p>Try to see a problem everywhere, even if it is solved already. Reflect on the solution. Ask yourself why your own superior solution probably isn't as good as the one you can see - what are you missing?</p>
<p>And so on. Every day. All of the time.</p>
<p>The idea is that almost everything can be viewed as an algorithm (a goal that has some kind of meaning to somebody, and a method with which to achieve it). Try to have that in mind next time you watch a gameshow on TV, or when you read the news coverage of the latest bank robbery. Ask yourself "What is the goal?", "Whose goal is it?" and "What is the method?". </p>
<p>It can easily be mistaken for critical thinking but is more about questioning your own solutions, rather than the solutions you try to understand and improve.</p>
http://stackoverflow.com/questions/1491621/how-to-see-current-version-of-iphone-sdk-in-mac-system/1491632#14916321Answer by Ludvig A Norin for how to see current version of iphone SDK in MAC system?Ludvig A Norin2009-09-29T10:02:06Z2009-09-29T10:02:06Z<p>Try this at the command-prompt: </p>
<pre><code>xcodebuild -showsdks
</code></pre>
http://stackoverflow.com/questions/471026/how-do-i-make-cron-run-something-every-nth-minute-where-n-5-1/1474269#14742690Answer by Ludvig A Norin for How do I make cron run something every "N"th minute, where n % 5 == 1?Ludvig A Norin2009-09-24T21:32:37Z2009-09-24T21:32:37Z<p>I'd create a new script "delaystart" that takes a sleeping period as first parameter and the script to run as the rest. I'd make the script check the crontab line for the line with the script and only start the script if the line is not commented out. That makes it reusable, and ps won't report the script as running when it really isn't.</p>
<pre><code>#!/bin/bash
sleeptime=$1
sleep ${sleeptime}
shift
if ( ! crontab -l | grep -e '#.+delaystart '${sleeptime} $* ) then
$*
fi
</code></pre>
http://stackoverflow.com/questions/1470389/viewing-the-stack-when-a-crash-happens/1470448#14704481Answer by Ludvig A Norin for viewing the stack when a crash happensLudvig A Norin2009-09-24T08:43:15Z2009-09-24T08:43:15Z<p>This works on AIX 5.1:</p>
<p>Use the ulimit command to set the limit for core dumps, before you start the binary (the limit is likely set to 0, which means you're not getting any core dump at all). You will need to do this in the same shell as the process you run. Then you can use the debugger to see the stack in the core. You will need to have debugging symbols in the binary to make much sense out of it, though. Check 'man ulimit' to see how ulimit works. Good luck!</p>
http://stackoverflow.com/questions/1469994/using-make-on-osx/1470112#14701120Answer by Ludvig A Norin for Using make on OSXLudvig A Norin2009-09-24T06:50:27Z2009-09-24T06:50:27Z<p>If you don't want to install the full Xcode suite, then the <a href="http://www.macports.org/" rel="nofollow">MacPorts</a> is a good option. It's a package management solution that gives you access to ports of many common Linux utilities on the Mac. </p>
http://stackoverflow.com/questions/343488/signing-data-with-smartcards-on-mac-in-c/1470091#14700910Answer by Ludvig A Norin for Signing data with smartcards on Mac in C++Ludvig A Norin2009-09-24T06:42:38Z2009-09-24T06:42:38Z<p>I'm answering my own question here, for reference.
The <a href="http://www.opensc-project.org/" rel="nofollow">OpenSC</a> libraries provides everything you need to deal with smartcards, and it is cross-platform (Windows, Linux and Mac), and its license is good for commercial projects.</p>
http://stackoverflow.com/questions/1402174/what-is-your-favorite-xcode-keyboard-shortcut/1454146#14541462Answer by Ludvig A Norin for What is your favorite XCode keyboard shortcut?Ludvig A Norin2009-09-21T11:52:43Z2009-09-21T11:52:43Z<p>Cmd-Shift-D opens the "Open quickly" dialog, where you can quickly find and open files that contain the text you enter.</p>
http://stackoverflow.com/questions/1407310/how-to-launch-xcode-executables-from-command-line/1454138#14541380Answer by Ludvig A Norin for How to launch XCode executables from command lineLudvig A Norin2009-09-21T11:50:00Z2009-09-21T11:50:00Z<p>You can also use the command "open MyApp.app"</p>
http://stackoverflow.com/questions/1439745/xcodes-shared-workgroup-unreachable-after-snow-leopard-xcode-upgrade/1454072#14540721Answer by Ludvig A Norin for Xcode's shared workgroup 'Unreachable' after Snow Leopard/Xcode upgrade.Ludvig A Norin2009-09-21T11:33:55Z2009-09-21T11:40:43Z<p>You must re-install Xcode using the version on the Snow Leopard DVD. The iPhone SDK must be re-installed afterwards.</p>
<p>Edit: I just noticed that Apple started distributing Xcode 3.2 with the iPhone 3.1 SDK. I would recommend you to attempt a full uninstall of the developer tools, as described in the SDK release notes (see developer.apple.com), and then to re-install it. You should also check that each computer have a unique name set in system preferences>>sharing. As a last resort, I'd check that Snow Leopard was booted in 32-bit mode (it does by default), and (just for the test) try to boot Snow Leopard in 64-bit mode (hold the 6 and 4 keys while booting). </p>
<p>Edit 2: Check <a href="http://stackoverflow.com/questions/1363137/how-well-does-xgrid-work-with-xcode-for-parallel-compiling">this thread</a>, it seems related. Maybe you should try to enable Xgrid in sharing preferences?</p>
http://stackoverflow.com/questions/1388456/bash-quoting-of-current-path-pwd2Bash quoting of current path (pwd)Ludvig A Norin2009-09-07T09:35:18Z2009-09-07T11:52:29Z
<p>Dear lazyweb,</p>
<p>I have encountered a most annoying problem that occurs on the <code>PWD</code> variable when the current path includes a space. My code looks somewhat like this:</p>
<pre><code>mycommand |sed -E '
s|mystuff|replacement| ;
s|'$(pwd)'|replacement| ;
'
</code></pre>
<p>This works great, unless the current path contains a space character. If it does, <code>$(pwd)</code> is expanded to<br />
<pre>'mypath/with space'</pre>
instead of just<br />
<pre>mypath/with space</pre></p>
<p>This cause the sed expression to be messed up (because of the extra quotes): </p>
<pre>sed: 1: "s|mypath/with": unterminated substitute pattern</pre>
<p>I have noticed that it doesn't help to expand pwd like this: <code>${PWD//\'/}</code>.</p>
<p>Any ideas on how this can be solved?</p>
http://stackoverflow.com/questions/1081101/should-business-objects-contain-objects-or-references/1081112#1081112-2Answer by Ludvig A Norin for Should business objects contain objects or references?Ludvig A Norin2009-07-03T23:16:49Z2009-07-03T23:16:49Z<p>It depends on the data. Some data should be stored as a copy of the original object, some should be a reference. </p>
http://stackoverflow.com/questions/246998/what-needs-to-go-in-order-to-fully-remove-a-mamp-install-from-osx/247101#2471010Answer by Ludvig A Norin for What needs to go in order to fully remove a MAMP install from OSX?Ludvig A Norin2008-10-29T14:53:08Z2008-10-29T14:53:08Z<p>AppZapper is a great tool that solves this problem. Search Google for it, it's free for the first 5 time you use it.</p>
http://stackoverflow.com/questions/132383/how-to-gain-ssl-load-balancing/132401#1324010Answer by Ludvig A Norin for How to gain SSL load balancing!!!Ludvig A Norin2008-09-25T09:53:57Z2008-09-25T10:00:25Z<p>DNS based load balancing should take you a long way. <a href="http://content.websitegear.com/article/load_balance_dns.htm" rel="nofollow">Click here</a> for an article on the subject. For an overview of load balancing in the IIS/ASP world, <a href="http://www.microsoft.com/technet/archive/itsolutions/ecommerce/deploy/duwwsr.mspx?mfr=true" rel="nofollow">go here</a>.</p>
<p>Windows Network Load balancing may be a solution for you, <a href="http://networkloadbalancing.blogspot.com/" rel="nofollow">here you'll find</a> lots of information about it.</p>
http://stackoverflow.com/questions/105971/can-i-pass-an-arbitrary-block-of-commands-to-a-bash-function/105999#1059993Answer by Ludvig A Norin for Can I pass an arbitrary block of commands to a bash function?Ludvig A Norin2008-09-19T21:59:13Z2008-09-23T06:53:26Z<p>This should be readable to most C programmers:</p>
<pre><code>function file_exists {
if ( [ -e $1 ] ) then
echo "Doing stuff"
else
echo "File $1 doesn't exist"
false
fi
}
file_exists filename && (
echo "Do your stuff..."
)
</code></pre>
<p>or the one-liner</p>
<pre><code>file_exists filename && echo "Do your stuff..."
</code></pre>
<p>Now, if you really want the code to be run from the function, this is how you can do that:</p>
<pre><code>function file_exists {
if ( [ -e $1 ] ) then
echo "Doing stuff"
shift
$*
else
echo "File $1 doesn't exist"
false
fi
}
file_exists filename echo "Do your stuff..."
</code></pre>
<p>I don't like that solution though, because you will eventually end up doing escaping of the command string.</p>
<p>EDIT: Changed "eval $*" to $ *. Eval is not required, actually. As is common with bash scripts, it was written when I had had a couple of beers ;-)</p>
http://stackoverflow.com/questions/106243/how-do-i-synchronize-the-address-book-in-my-app-using-mapi0How do I synchronize the address book in my app using MAPI?Ludvig A Norin2008-09-19T22:49:39Z2008-09-20T18:57:40Z
<p>Dear Lazyweb,</p>
<p>The system I'm working on contains an address book. I am looking for sample code that will synchronize addresses with the current users address book through MAPI. I need two-way sync.</p>
<p>If you know of any open-source library with easy to use functions for this, I'd be glad to hear about it. If you know of a library that is not open-source, well, that is fine too. The best would be a library which license will allow me to use it in our own solution.</p>
<p>And if you, god forbid, know of a library that will make it <em>easy</em> for me to publish my address book in a MAPI provider - well, then I'm dying to hear about it!</p>
<p>Using an external address book and ditching our own is not an option that would serve our customers.</p>
<p>A good, working code sample using vanilla MAPI is of course also acceptable. ;-)</p>
http://stackoverflow.com/questions/105400/what-are-indexes-and-how-can-i-use-them-to-optimize-queries-in-my-database/105428#1054280Answer by Ludvig A Norin for What are indexes and how can I use them to optimize queries in my database?Ludvig A Norin2008-09-19T20:40:14Z2008-09-19T20:40:14Z<p>An index can be explained as a sorted list of the items in a register. It is very quick to lookup the position of the item in the register, by looking for it's key in the index. Next the the key in the index is a pointer to the position in the register where the rest of the record can be found.</p>
<p>You can have many indexes on a register, but the more you have, the slower inserting new records will be (because each index needs a new record as well - in a sorted order, which also adds time).</p>
http://stackoverflow.com/questions/1831527/simple-way-to-colour-alternate-output-lines-in-bash/1831633#1831633Comment by Ludvig A Norin on Simple way to colour alternate output lines in bashLudvig A Norin2009-12-02T09:07:24Z2009-12-02T09:07:24ZVery neat, can also be used as a function to avoid a second script.http://stackoverflow.com/questions/1827019/when-to-use-c-vs-c-for-performance-london-stock-exchangeComment by Ludvig A Norin on When To Use C# vs C++ For Performance (London Stock Exchange)Ludvig A Norin2009-12-01T17:35:10Z2009-12-01T17:35:10ZThis question should be presented to the decision makers, not SO. We know nothing about the measured performance of the app in question. Generally speaking, if performance is important, prototype and profile, rinse, repeat.http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-frenchComment by Ludvig A Norin on Is it true that in France log files have to be French?Ludvig A Norin2009-12-01T17:05:22Z2009-12-01T17:05:22Z I agree. There may be good reasons for this questions not to be on SO, but "too localized" is certainly not one of them. France is the largest western European nation, the 9th largest economy (measured by GDP) and is the 6th largest country in the world measured by number of internet hosts. All data taken from CIA factbookhttp://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-frenchComment by Ludvig A Norin on Is it true that in France log files have to be French?Ludvig A Norin2009-12-01T16:43:31Z2009-12-01T16:43:31ZThis question is useful to other not because of any answer stating the state of law, but as an area that must be considered for professional legal advice when entering the French market.http://stackoverflow.com/questions/1552814/why-arent-a-batch-files-environment-variables-set-when-run-from-perl/1553081#1553081Comment by Ludvig A Norin on Why aren't a batch file's environment variables set when run from Perl?Ludvig A Norin2009-10-12T18:13:31Z2009-10-12T18:13:31ZBesides, nofollow is used on all links. There's no google juice to be gathered here.http://stackoverflow.com/questions/1552814/why-arent-a-batch-files-environment-variables-set-when-run-from-perl/1553081#1553081Comment by Ludvig A Norin on Why aren't a batch file's environment variables set when run from Perl?Ludvig A Norin2009-10-12T18:11:05Z2009-10-12T18:11:05ZSinian, are you being directed to a spam site when clicking that link, or an overview of how to start external commands in perl? The site may not be to your liking, not the best or even correct - but you should respect my answer anyway (and downvote it, comment on it, as is the way things goes, if you wish). As for the correctness, the actual bug seems to be that he is using 'start' in his code (which wasn't shown in the original question).http://stackoverflow.com/questions/1546411/url-moniker-examples-for-c-imoniker/1546499#1546499Comment by Ludvig A Norin on URL Moniker Examples for C# (IMoniker)Ludvig A Norin2009-10-10T01:03:11Z2009-10-10T01:03:11ZThe res protocol handler is great for loading images from resources in the application. I need to load images from an application specific storage (a proprietary database).http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools/1513578#1513578Comment by Ludvig A Norin on How do I create a nice-looking DMG for Mac OS X using command-line tools?Ludvig A Norin2009-10-03T21:51:43Z2009-10-03T21:51:43ZI haven't found any way to deterministically wait for the completion of the 'update without registering applications' command. I am not sure sleep is needed after "hdiutil attach", you'll have to check the documentation (man hdiutil). Sync should only be needed to be called once, I do it twice out of old habit since the good old SunOS days. http://stackoverflow.com/questions/1467448/silverlight-combo-box-with-1000-valuesComment by Ludvig A Norin on Silverlight combo box with 1000 values.Ludvig A Norin2009-09-23T17:23:54Z2009-09-23T17:23:54ZWhat is the use-case that requires 1000s of values in a combo box? It sounds like a combo box might not be the best solution, I suggest you re-think the design rather than optimize...http://stackoverflow.com/questions/1388456/bash-quoting-of-current-path-pwd/1388586#1388586Comment by Ludvig A Norin on Bash quoting of current path (pwd)Ludvig A Norin2009-09-07T13:58:52Z2009-09-07T13:58:52ZTo be clear, the solution is to use double-quotes around the sed expression, and to use the PWD environment variable, removing single-quotes, instead of the pwd builtin which will produce single-quotes still:
mycommand | sed -E " s|${PWD//\'/}|replacement " http://stackoverflow.com/questions/1388456/bash-quoting-of-current-path-pwdComment by Ludvig A Norin on Bash quoting of current path (pwd)Ludvig A Norin2009-09-07T11:15:18Z2009-09-07T11:15:18ZAs is explained in the question, yes. The contents of the variable is what is returned by the pwd command (including the single-quotes).http://stackoverflow.com/questions/1388456/bash-quoting-of-current-path-pwd/1388586#1388586Comment by Ludvig A Norin on Bash quoting of current path (pwd)Ludvig A Norin2009-09-07T10:24:39Z2009-09-07T10:24:39ZThis will not work, as $(pwd) will be expanded to 'mypath/with space', which won't match in the sed expression. If I used ${PWD//\'/} this would work, though. http://stackoverflow.com/questions/1388456/bash-quoting-of-current-path-pwdComment by Ludvig A Norin on Bash quoting of current path (pwd)Ludvig A Norin2009-09-07T09:57:01Z2009-09-07T09:57:01ZThanks for pointing that out. I've added the missing quotes.http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools/287843#287843Comment by Ludvig A Norin on How do I create a nice-looking DMG for Mac OS X using command-line tools?Ludvig A Norin2009-03-20T08:26:54Z2009-03-20T08:26:54ZThis perl script seems to do exactly one thing: creating a dmg from a folder. That can be done in a single command as described in this thread. The buildDMG script does not handle images and icon positioning.http://stackoverflow.com/questions/116657/how-do-you-create-an-osx-application-dmg-from-a-python-package/116946#116946Comment by Ludvig A Norin on How do you create an osx application/dmg from a python package?Ludvig A Norin2008-09-23T09:42:38Z2008-09-23T09:42:38ZIt's actually not answered in that other topic - I'm still hoping for some feedback on how to do it with command-line tools only. Hopefully your links will help me! Thanks!