User Stefan Mai - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:16:12Z http://stackoverflow.com/feeds/user/13257 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1735717/help-refactoring-this-nasty-ruby-if-else-statement/1735734#1735734 2 Answer by Stefan Mai for Help refactoring this nasty Ruby if/else statement Stefan Mai 2009-11-14T21:56:15Z 2009-11-14T21:56:15Z <p>This method looks like it was written for speed. You can use a minhash as a substitute, but I think the code is fairly clean and doesn't require a refactor. Rubyists tend to be disgusted by needless structure, but oftentimes it's needed to model real-world situations and/or provides a performance boost. The keyword should be needless.</p> http://stackoverflow.com/questions/1735705/c-string-manipulation-input/1735730#1735730 0 Answer by Stefan Mai for C++ string manipulation / input Stefan Mai 2009-11-14T21:53:50Z 2009-11-14T21:53:50Z <p>Hint: tolower(letter)-'a' is:</p> <pre><code>0 if letter is a 1 if letter is b ... </code></pre> http://stackoverflow.com/questions/1681667/intentional-hashing-collisions 2 Intentional Hashing Collisions Stefan Mai 2009-11-05T16:14:29Z 2009-11-05T18:19:55Z <p>I'm trying to write some code that will do "fuzzy hashing". That is: I want several inputs to hash to the same output so that I can do searches etc quickly and easily. If A hashes to 1 and C hashes to 1, it will be trivial for me to find out that A is equivalent to C. </p> <p>Designing such a hash function seems hard, so I was wondering if anyone had experience with CMPH or GPERF and could walk me through creating a function that would result in this hash function.</p> <p>Thanks in advance! Stefan</p> <p>@Ben</p> <p>In this case, matrixes of booleans, but I can easily pack them into 64 bit integers. Rotations, translations, etc in the input are irrelevant and need to be weeded out. Thus:</p> <pre><code>000 111 000 </code></pre> <p>Is equivalent to</p> <pre><code>111 000 000 </code></pre> <p>and</p> <pre><code>001 001 001 </code></pre> <p>(simplification)</p> <p>@Kinopiko</p> <p>My best bet thus far would be to determine some sort of "canonical" representation and design code that terminates when the transformations reach such a representation (say...packing all the bits at the bottom). Yet this is slow and I'm looking for a better way. My data set is large.</p> <p>@Jason</p> <p>These two would not hash to the same value.</p> <pre><code>000 010 000 000 011 000 </code></pre> http://stackoverflow.com/questions/1586393/custom-c-preprocessor-typeful-macros 0 Custom C++ Preprocessor / Typeful Macros Stefan Mai 2009-10-18T23:59:50Z 2009-10-19T10:35:05Z <p>Having seen the advantages of metaprogramming in Ruby and Python, but being bound to lower-level languages like C++ and C for actual work, I'm thinking of manners by which to combine the two. One instance comes in the simple problem for sorting lists of arbitrary structures/classes. For instance:</p> <pre><code>struct s{ int a; int b; }; vector&lt;s&gt; vec; for(int x=0;x&lt;10;x++){ s inst; inst.a = x; inst.b = x+10; vec.push_back(inst); } </code></pre> <p>Ultimately, I'd like to be able to sort inst arbitrarily with a minimal amount of boilerplate code. The easiest way I can see to do this is to make use of STL's sort:</p> <pre><code>sort(vec.begin(),vec.end()); </code></pre> <p>Yet this requires me to write a method that can compare "struct s"s. What I'd rather do is:</p> <pre><code>sort(vec,a ASC,b DESC); </code></pre> <p>Which is very clearly not valid C++.</p> <p>So, SO community. What is the best way to accomplish my dream? If I had some sort of typeful macro, that would reveal to me what the type of a vector's elements were, then it would be trivial to write C preprocessor macros to create the function required to do the sorting.</p> <p>The alternative seems to be to write my own preprocessor. This works well, up until the point where I have to deduce the type of "vec" again. Is there an easy way to do this?</p> <p>Context: Less code = less bugs, programming competitions.</p> http://stackoverflow.com/questions/1524963/how-to-create-a-nested-menu-from-mysql-with-php/1525052#1525052 1 Answer by Stefan Mai for How to create a nested menu from MySQL with PHP? Stefan Mai 2009-10-06T11:33:50Z 2009-10-06T11:33:50Z <p>This is specifically for two levels deep. Recommended approach should it be more is to use an optimized table structure for traversal, like <a href="http://articles.sitepoint.com/article/hierarchical-data-database/2" rel="nofollow">http://articles.sitepoint.com/article/hierarchical-data-database/2</a> (pointed out elsewhere) or to pull the data you need and push it into a dictionary (associative array) and query it that way.</p> <pre><code>&lt;?php $query = &lt;&lt;&lt;EOT SELECT parent.name as parent_name, child.name as child_name, FROM items child INNER JOIN items parent ON child.parent_id = parent.id ORDER BY parent.name EOT; $result = mysql_query($query) or die('Failure!'); echo "&lt;ul id=\"catmenu\"&gt;"; $last_parent = ''; while($row = mysql_fetch_array($result)){ // If this is a new category, start a new one if($last_parent != $row['parent_name']){ // Unless this is the first item, close the last category if($last_parent != ''){ echo "&lt;/ul&gt;&lt;/li&gt;"; } $last_parent = $row['parent_name']; echo "&lt;li class=\"menulist\"&gt;{$row['parent_name']}&lt;ul&gt;"; } echo "&lt;li&gt;{$row['child_name']}&lt;/li&gt;"; } // If we actually had items, close the "category" if($last_parent != ''){ echo "&lt;/ul&gt;&lt;/li&gt;"; } echo "&lt;/ul&gt;"; ?&gt; </code></pre> http://stackoverflow.com/questions/1524905/linux-ioctl-how-to-tell-if-current-ip-was-obtained-by-dhcp/1524988#1524988 0 Answer by Stefan Mai for Linux ioctl -> how to tell if current IP was obtained by dhcp Stefan Mai 2009-10-06T11:16:54Z 2009-10-06T11:16:54Z <p>If you're running Ubuntu, the leases are stored in /var/lib/dhcp3/dhclient-[interface_name].lease, maybe that's a start.</p> http://stackoverflow.com/questions/1524937/avoiding-segmentation-fault/1524957#1524957 1 Answer by Stefan Mai for Avoiding Segmentation fault Stefan Mai 2009-10-06T11:08:46Z 2009-10-06T11:08:46Z <p>You can probably:</p> <ul> <li>Not do pointer arithmetic.</li> <li>Always initialize pointer variables</li> <li>Not dereference integers</li> </ul> <p>And never encounter it. But you're missing out, for sure.</p> http://stackoverflow.com/questions/1195948/what-is-the-appropriate-limit-for-a-question-in-a-database/1195959#1195959 3 Answer by Stefan Mai for What is the appropriate limit for a question in a database? Stefan Mai 2009-07-28T18:39:54Z 2009-07-28T18:39:54Z <p>Which DBMS are you using? You'll probably want to use a TEXT column or equivalent, which is much better for storing large amounts of data.</p> http://stackoverflow.com/questions/1093990/how-do-you-avoid-jquery-toggle-on-a-layout-div-from-causing-your-layout-to-move/1094020#1094020 4 Answer by Stefan Mai for How do you avoid JQuery toggle() on a layout div from causing your layout to move around? Stefan Mai 2009-07-07T18:33:56Z 2009-07-07T18:33:56Z <p>Try writing a new function that uses visibility: hidden instead of display: none. That will maintain the CSS box (and the layout) without showing the div.</p> http://stackoverflow.com/questions/1093925/how-to-send-mail-with-a-subject-using-a-mailto-url/1093948#1093948 1 Answer by Stefan Mai for How to send mail with a Subject using a Mailto URL? Stefan Mai 2009-07-07T18:21:25Z 2009-07-07T18:21:25Z <pre><code>&lt;a href="mailto:stefan.mai@example.com?subject=YourSubjectHere"&gt;Try This&lt;/a&gt; </code></pre> <p>If you want something more advanced, you're going to have to code it from scratch (or use someone else's script). Try looking into PHP, ASP.NET, Ruby on Rails, etc.</p> http://stackoverflow.com/questions/1088387/what-specific-productivity-gains-does-vim-emacs-provide-over-gui-text-editors/1088443#1088443 13 Answer by Stefan Mai for What specific productivity gains does vim/emacs provide over GUI text editors? Stefan Mai 2009-07-06T18:11:23Z 2009-07-06T18:11:23Z <p>I think one of the real powers of a dedicated text editor is macro editing. Repetition is painful for a lot of programmers, and writing proper macros can be borderline entertaining. If you're not doing everything through the keyboard, creating macros will require an extra set of commands rather than making use of the ones you already are using.</p> http://stackoverflow.com/questions/1075154/memory-allocation-in-c/1075165#1075165 2 Answer by Stefan Mai for memory allocation in C++ Stefan Mai 2009-07-02T15:46:57Z 2009-07-02T15:46:57Z <p>new char[7];</p> <p>Traditionally, char is a byte, though you might find some libraries that typedef a BYTE type.</p> http://stackoverflow.com/questions/1074114/engineering-scalability-into-an-application/1074424#1074424 0 Answer by Stefan Mai for Engineering scalability into an application Stefan Mai 2009-07-02T13:45:18Z 2009-07-02T13:45:18Z <p>I think when you're talking about the web, you're mainly concerned with:</p> <ul> <li>Partitioning your code such that it can, if necessary, be divided vertically (for one request) along many servers.</li> <li>Adjusting your code such that all data (especially session data) is persisted in some sort of global store (like a database) rather than locally in the filesystem.</li> <li>Load balancing.</li> </ul> <p>With this, you can stretch one server into however many tiers (application tier, caching tier, database tier) and expand those horizontally should a scaling problem arise.</p> http://stackoverflow.com/questions/458839/vim-comment-newlines-unexpected-behavior 1 vim Comment Newlines Unexpected Behavior Stefan Mai 2009-01-19T19:32:33Z 2009-06-30T20:32:59Z <p>In using vim, when I start a comment with //, immediately after I type a space, it begins a new comment line.</p> <p>For instance, if I typed the following:</p> <pre><code>//hello world my name is stefan </code></pre> <p>I would get:</p> <pre><code>//hello //world //my //name //is //stefan </code></pre> <p>This behavior has manifested itself in python code as well, where if I begin a line with print, each space is interpreted as a newline</p> <pre><code>print "Hello world my name is Stefan" </code></pre> <p>Is</p> <pre><code>print "hello world my name is stefan" </code></pre> <p>Is this the intended behavior or do I have a setting messed up? The following is my .vimrc:</p> <pre><code>" An example for a vimrc file. " " Maintainer: Bram Moolenaar &lt;email address&gt; " Last change: 2006 Nov 16 " " To use it, copy it to " for Unix and OS/2: ~/.vimrc " for Amiga: s:.vimrc " for MS-DOS and Win32: $VIM\_vimrc " for OpenVMS: sys$login:.vimrc " When started as "evim", evim.vim will already have done these settings. if v:progname =~? "evim" finish endif " TagList plugin settings nmap &lt;f12&gt; :TlistToggle&lt;end&gt; " Use Vim settings, rather then Vi settings (much better!). " This must be first, because it changes other options as a side effect. set nocompatible " allow backspacing over everything in insert mode set backspace=indent,eol,start set nobackup " do not keep a backup file, use versions instead set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time set showcmd " display incomplete commands set incsearch " do incremental searching " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries " let &amp;guioptions = substitute(&amp;guioptions, "t", "", "g") " Don't use Ex mode, use Q for formatting map Q gq " In many terminal emulators the mouse works just fine, thus enable it. " set mouse=a " Switch syntax highlighting on, when the terminal has colors " Also switch on highlighting the last used search pattern. if &amp;t_Co &gt; 2 || has("gui_running") syntax on set hlsearch endif " Only do this part when compiled with support for autocommands. if has("autocmd") " Enable file type detection. " Use the default filetype settings, so that mail gets 'tw' set to 72, " 'cindent' is on in C files, etc. " Also load indent files, to automatically do language-dependent indenting. filetype plugin indent on " Put these in an autocmd group, so that we can delete them easily. augroup vimrcEx au! " For all text files set 'textwidth' to 78 characters. autocmd FileType text setlocal textwidth=78 " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid or when inside an event handler " (happens when dropping a file on gvim). autocmd BufReadPost * \ if line("'\"") &gt; 0 &amp;&amp; line("'\"") &lt;= line("$") | \ exe "normal! g`\"" | \ endif augroup END else set autoindent " always set autoindenting on endif " has("autocmd") set backupdir=./.backup,.,/tmp set directory=.,./.backup,/tmp map &lt;F1&gt; :NERDTree &lt;CR&gt; map &lt;F2&gt; :q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt;:q!&lt;CR&gt; map &lt;F5&gt; :AV&lt;CR&gt; map &lt;F6&gt; :AS&lt;CR&gt; map &lt;F7&gt; :IHV&lt;CR&gt; map &lt;F8&gt; :IHS&lt;CR&gt; </code></pre> http://stackoverflow.com/questions/1054906/ajax-calling-a-php-code-and-getting-a-response-every-few-minutes/1054920#1054920 0 Answer by Stefan Mai for AJAX calling a PHP code and getting a response every few minutes Stefan Mai 2009-06-28T13:19:15Z 2009-06-28T13:19:15Z <p>Ignore the ASP.NET stuff, this link is a good start:</p> <p><a href="http://www.aspcode.net/Timed-Ajax-calls-with-JQuery-and-ASPNET.aspx" rel="nofollow">http://www.aspcode.net/Timed-Ajax-calls-with-JQuery-and-ASPNET.aspx</a></p> <p>What you're going to use is a javascript function called setTimeout, which asynchronously calls a javascript function on an interval. From there, jQuery has a fancy function called "load" that will load the results of an AJAX call into a DIV or whatever element you're looking for. There are also numerous other ways to get jQuery to do alter the DOM the way you'd like.</p> <p>There are a hundred ways to do this, but I'd say avoid writing plain Javascript to save yourself the headache of cross-browser functionality when you can.</p> http://stackoverflow.com/questions/1049011/sharepoint-content-targeting-is-it-possible-to-have-multiple-views-per-user/1049069#1049069 1 Answer by Stefan Mai for SharePoint content targeting, is it possible to have multiple views per user? Stefan Mai 2009-06-26T13:15:39Z 2009-06-26T13:15:39Z <p>Put the manager content and the user content in separate divs. Create a content editor web part, and use javascript to hide the irrelevant div based on the query string. Then link to:</p> <pre><code>mypage.aspx?page=manager </code></pre> <p>This worked really well for a similar project I had.</p> http://stackoverflow.com/questions/1035807/does-sharepoint-2007-use-frontpage-extensions/1035820#1035820 2 Answer by Stefan Mai for Does SharePoint 2007 use FrontPage Extensions? Stefan Mai 2009-06-23T23:39:20Z 2009-06-24T00:13:11Z <p>I think what you're seeing are <em>the files that support</em> SharePoint designer, which essentially evolved out of Frontpage.</p> http://stackoverflow.com/questions/1035819/concating-null-fields/1035828#1035828 11 Answer by Stefan Mai for CONCAT'ing NULL fields Stefan Mai 2009-06-23T23:40:45Z 2009-06-24T00:11:35Z <p>Try</p> <pre><code>ISNULL(FirstName, '&lt;BlankValue&gt;') </code></pre> <p>So, </p> <pre><code>CONCAT(ISNULL(FirstName,''),ISNULL(LastName,''),ISNULL(Email,'')) </code></pre> <p>would return the same thing without the null issue (and a blank string where nulls should be).</p> http://stackoverflow.com/questions/1034084/set-up-svn-repository-from-my-linux-desktop-with-apache/1034105#1034105 1 Answer by Stefan Mai for Set up svn repository from my Linux desktop with apache Stefan Mai 2009-06-23T17:52:05Z 2009-06-23T17:52:05Z <p>Can you show some of the tutorials and where you get stuck? We can probably point you to the same tutorials, but it'd help to know where you're having trouble.</p> <p>I think there are two issues you're likely to have:</p> <ul> <li>Port forwarding enables you to get access to services running on your computer from the internet. The usually involve setting up your router and/or negotiating with your ISP.</li> <li>Apache SVN setup involves modules like webdav and other things. If you're just getting up and running, perhaps you should just use svn+ssh?</li> </ul> <p>That said, give us a little more information and you're sure to find lots of help.</p> http://stackoverflow.com/questions/1032489/how-can-a-program-control-another-program/1032530#1032530 19 Answer by Stefan Mai for How can a program control another program? Stefan Mai 2009-06-23T13:18:00Z 2009-06-23T15:22:02Z <p>I've written a bunch of bots at one time or another (from Pogo games to Yohoho Puzzle Pirates). For windows, you're usually going to either be sending Win32 events to simulate mouse movements, or spoof the actually low-level messages sent between windows when the mouse is actually clicked. A lot of it really depends on how the program reacts (by accepting the message with the coordinates, or, in Java's case, immediately reading the mouse coordinates). The "automation" part usually involves reading the screen and writing heuristics or algorithms for determining the state, but can also be as nice as packet sniffing (a lot of information there in poor poker implementations) or as hacky as reading memory locations directly. Pretty big "field", and poorly documented as it's pretty profitable and not hard to get into.</p> <h2>Sending Input</h2> <h2>C/C++ (in Windows)</h2> <p>For keys, try CodeProject:</p> <p><a href="http://www.codeproject.com/KB/cpp/sendkeys_cpp_Article.aspx" rel="nofollow">http://www.codeproject.com/KB/cpp/sendkeys_cpp_Article.aspx</a></p> <p>And messages:</p> <p><a href="http://www.codeproject.com/KB/threads/sendmsg.aspx" rel="nofollow">http://www.codeproject.com/KB/threads/sendmsg.aspx</a></p> <p>Your best bet is to learn to send messages using the Win32 API, then use something like Spy++ or its derivatives to "reverse engineer" how KeyPresses and mouse movements are sent to the window.</p> <h2>Java</h2> <p>Java has an amazingly portable Robot class that is able to:</p> <ol> <li>Read Pixels from the screen.</li> <li>Control the mouse.</li> <li>Send keys.</li> </ol> <p>I'd give that a shot if you're looking for quick and easy.</p> <h2>Basic Logic</h2> <p>This is described elsewhere on the internet in depth, but most bots follow a simple state-machine program flow. You read the screen (or packets, or memory), find out what "state" you're in based on your readings and past data, do calculations, and send the result back out to the program.</p> <p>Reading the screen can be difficult, but can be made easier if you consider that a lot of times, there are a few "lucky" pixels relative to the window that will give you an idea of what state the program is in. The process of finding these pixels can be automated.</p> http://stackoverflow.com/questions/1033075/converting-google-video-codes-to-video-titles/1033127#1033127 2 Answer by Stefan Mai for Converting Google Video Codes to Video Titles Stefan Mai 2009-06-23T15:02:51Z 2009-06-23T15:02:51Z <p>Curl and Grep (and Sed)</p> <pre><code>for code in 6168784043164674382 -6812164614976718979; do curl -s http://video.google.com/videoplay?docid=$code | grep "&lt;div class=titlebar-title&gt;" | sed "s/^&lt;div class=titlebar-title&gt;\(.*\)&lt;\/div&gt;$/\1/g" done </code></pre> <p>Obviously this could be done with Perl/Python/PHP/Ruby/whatever with regex. Google video actually has nice class names for their divs.</p> http://stackoverflow.com/questions/1030905/php-security-question/1030914#1030914 0 Answer by Stefan Mai for Php security question Stefan Mai 2009-06-23T06:28:23Z 2009-06-23T06:28:23Z <p>The real issue is that people can intercept the packet midflight and rewrite the values of the form to be whatever they want. What security goals are you trying to accomplish? People will always be in complete control over the values sent from the client, make sure your application doesn't assume anything of the data coming back.</p> <p>Look at Tamper Data for Firefox: https://addons.mozilla.org/en-US/firefox/addon/966</p> http://stackoverflow.com/questions/1028714/how-do-you-calm-down-when-dealing-with-difficult-clients/1028725#1028725 1 Answer by Stefan Mai for How do you calm down when dealing with difficult clients? Stefan Mai 2009-06-22T18:28:28Z 2009-06-22T18:28:28Z <p>Mute the phone and laugh. I love teleconferences ;)</p> http://stackoverflow.com/questions/1002565/sharepoint-search-property-weighting 2 Sharepoint Search Property Weighting Stefan Mai 2009-06-16T16:24:52Z 2009-06-22T15:21:06Z <p>I'm using the code listed here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms553069.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms553069.aspx</a></p> <p>With an additional line added as a call to .update() after the property is set in order to save the changes, but even with a weight of 10,000 the search results for my property are still at the bottom, particularly below title. Is there some other things that need to be done in order to get the weighting to propogate?</p> <p>I've also tried setting the title, author, and filename to 0, setting the property (keywords) to 9999, and setting length normalization of the property to 0. The results shift a bit, but searches with keywords that match the property still do not match.</p> <p>All tests were done with a full crawl afterwards, reset IIS, and recycle the shared services app pool.</p> <p>I can give you any extra information you might request.</p> <p>Thanks, Stefan</p> <p>UPDATE (6-19-09): Added a bounty of 500 to this. Very little information about this feature available online, apparently a good answer would a huge service to the internet community. It'd probably save me a week too :)</p> <p>UPDATE 2 (6-19-09): The schema is essentially this: OOB sharepoint document content type with added text field "Keywords". Managed property attached to ows_keywords(Text). </p> <p>UPDATE 3 (6-19-09): Sharepoint Search Bench from Codeplex has helped the search a lot.</p> <p>UPDATE 4 (6-19-09): I've arrived at a solution that involves creating many (5 right now) more managed properties with the same crawled property. Each weight is set to something unusual (like 9999). These do enough to buoy the keyword results to the top. Less than ideal though. Still looking for a solution.</p> <p>The solution in Update 4 is what I ended up with. As Lars commented, the search is not very flexible and despite offering tweaks to the property weightings, the effect is not always what you would expect.</p> http://stackoverflow.com/questions/1023785/light-weight-sql-server-for-linux-windows/1023804#1023804 0 Answer by Stefan Mai for Light-weight SQL server for Linux/Windows? Stefan Mai 2009-06-21T12:36:48Z 2009-06-21T12:36:48Z <p>You might try looking at Apache Derby (<a href="http://db.apache.org/derby/" rel="nofollow">http://db.apache.org/derby/</a>). It's Java, so it'll be portable and it's definitely lightweight.</p> http://stackoverflow.com/questions/1021353/contentfor-inside-formbuilder 0 content_for Inside Formbuilder Stefan Mai 2009-06-20T10:08:49Z 2009-06-20T12:07:22Z <p>I've got a formbuilder field specifically for doing DateTime using jQuery. What I'd like to do is have the helper able to push content out to my &lt; head > through content_for. Any ideas?</p> <p>Thanks, Stefan</p> http://stackoverflow.com/questions/1015702/alternative-for-windows-task-scheduler/1015715#1015715 1 Answer by Stefan Mai for Alternative for Windows Task Scheduler Stefan Mai 2009-06-18T23:30:14Z 2009-06-18T23:30:14Z <p>Cron supports Cron files, so does Cron for Windows!</p> <p><a href="http://cronw.sourceforge.net/" rel="nofollow">http://cronw.sourceforge.net/</a></p> http://stackoverflow.com/questions/1015424/occurrence-prediction/1015439#1015439 0 Answer by Stefan Mai for Occurrence prediction Stefan Mai 2009-06-18T22:00:56Z 2009-06-18T22:00:56Z <p>I think with your idea as stated, you'll have asymptotic behavior as time goes by. Either your data will converge to 0, or it will explode. That said, you'd probably have to give some data and/or describe its properties before anyone can help you. This is basically a simulation, and the factors are <em>everything</em> when it comes to extrapolation.</p> http://stackoverflow.com/questions/1015412/copy-a-whole-directory-with-phing/1015425#1015425 2 Answer by Stefan Mai for Copy a whole directory with phing Stefan Mai 2009-06-18T21:57:59Z 2009-06-18T21:57:59Z <p>Try svn export, this will send all the files in your working copy to another directory (sans .svn etc). Then you can phing away.</p> http://stackoverflow.com/questions/1015379/how-to-design-database-for-multiple-domains/1015403#1015403 0 Answer by Stefan Mai for How to design database for multiple domains? Stefan Mai 2009-06-18T21:53:20Z 2009-06-18T21:53:20Z <p>I think one of the approaches used by Wordpress and Drupal is to prefix tables with a name:</p> <pre><code>dom1_Customers dom2_Customers </code></pre> <p>This way the tables don't grow out of proportion and you don't have to maintain an extra index of site_id. That said, your code has to compensate for it, which can require some reinstrumentation (and stored procedures are basically out without some nastiness).</p> http://stackoverflow.com/questions/1765249/difference-between-float-and-numeric18-10/1765280#1765280 Comment by Stefan Mai on difference between float and [numeric](18, 10) Stefan Mai 2009-11-19T19:51:27Z 2009-11-19T19:51:27Z @mrblah if your floats are small. http://stackoverflow.com/questions/1760223/entab-detab-in-vim/1760242#1760242 Comment by Stefan Mai on Entab / Detab in VIM Stefan Mai 2009-11-19T00:59:55Z 2009-11-19T00:59:55Z +1 Note: Shift V (Visual mode) to select the text block. Otherwise &lt; and &gt; will work on the current line. http://stackoverflow.com/questions/1586393/custom-c-preprocessor-typeful-macros/1586462#1586462 Comment by Stefan Mai on Custom C++ Preprocessor / Typeful Macros Stefan Mai 2009-10-19T00:39:02Z 2009-10-19T00:39:02Z Brilliant, I knew someone had to have done this with templates. Thanks! http://stackoverflow.com/questions/1560455/mix-ascending-and-descending-sorting-in-conditional-sorting-in-mysql/1560550#1560550 Comment by Stefan Mai on Mix ascending and descending sorting in conditional sorting in MySQL Stefan Mai 2009-10-13T15:10:58Z 2009-10-13T15:10:58Z +1 There are a multitude of &quot;valid&quot; sorts where creation date of the news items are ascending, and events are descending, depending upon their interleaving. You'll need to specify this more clearly, otherwise the most obvious solution would be to sort one and union it with the other. http://stackoverflow.com/questions/1525050/non-blocking-socket Comment by Stefan Mai on NON BLOCKING Socket Stefan Mai 2009-10-06T11:40:53Z 2009-10-06T11:40:53Z Sounds too much like homework. Second question, can't come up with a feasible project that would require two widely disparate pieces of elementary OS programming. http://stackoverflow.com/questions/1524937/avoiding-segmentation-fault/1524957#1524957 Comment by Stefan Mai on Avoiding Segmentation fault Stefan Mai 2009-10-06T11:18:36Z 2009-10-06T11:18:36Z If you're looking for a sum, the answer is easy. Only access the memory in the space you have allocated to your process. Anything else will cause a segfault. http://stackoverflow.com/questions/1524963/how-to-create-a-nested-menu-from-mysql-with-php Comment by Stefan Mai on How to create a nested menu from MySQL with PHP? Stefan Mai 2009-10-06T11:13:37Z 2009-10-06T11:13:37Z Is the list 2 levels deep only or can it be N levels deep? http://stackoverflow.com/questions/1240514/what-would-be-a-nice-modal-box-for-an-asp-website Comment by Stefan Mai on What would be a nice modal box for an ASP Website? Stefan Mai 2009-08-06T18:25:55Z 2009-08-06T18:25:55Z Wtf is happening with &quot;do not click this link&quot;? http://stackoverflow.com/questions/1195948/what-is-the-appropriate-limit-for-a-question-in-a-database/1195959#1195959 Comment by Stefan Mai on What is the appropriate limit for a question in a database? Stefan Mai 2009-07-28T19:32:12Z 2009-07-28T19:32:12Z Provided these questions can be fairly long (if you'll notice, some StackOverflow questions are well into the thousands of characters), I don't think that text is out of the question. Ha. http://stackoverflow.com/questions/1093925/how-to-send-mail-with-a-subject-using-a-mailto-url/1093942#1093942 Comment by Stefan Mai on How to send mail with a Subject using a Mailto URL? Stefan Mai 2009-07-07T18:21:37Z 2009-07-07T18:21:37Z Beat by 4 seconds, haha. http://stackoverflow.com/questions/1088387/what-specific-productivity-gains-does-vim-emacs-provide-over-gui-text-editors/1088443#1088443 Comment by Stefan Mai on What specific productivity gains does vim/emacs provide over GUI text editors? Stefan Mai 2009-07-07T18:19:38Z 2009-07-07T18:19:38Z Oh, for the record. I work with Microsoft products, and using VimEmu for Visual Studio has been a godsend. Still like going home to my terminal and Vim though :) http://stackoverflow.com/questions/1067159/deleted-user-postgres-oops Comment by Stefan Mai on Deleted user 'postgres' - oops Stefan Mai 2009-07-01T04:20:21Z 2009-07-01T04:20:21Z Maybe belongs on Serverfault? http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort/69961#69961 Comment by Stefan Mai on Is Unit Testing worth the effort? Stefan Mai 2009-06-26T18:14:22Z 2009-06-26T18:14:22Z If Vi has very few features, you're not using it. ;) http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003 Comment by Stefan Mai on Problem with regular expression replacement in Visual Studio 2003 Stefan Mai 2009-06-25T03:47:16Z 2009-06-25T03:47:16Z You're trying to match a line and replace it with something else. Can you post a sample line? http://stackoverflow.com/questions/1042046/problem-with-regular-expression-replacement-in-visual-studio-2003 Comment by Stefan Mai on Problem with regular expression replacement in Visual Studio 2003 Stefan Mai 2009-06-25T03:43:05Z 2009-06-25T03:43:05Z Can you post a sample text line just to be sure?