User skoob - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:30:37Zhttp://stackoverflow.com/feeds/user/20708http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1089813/bash-dash-and-string-comparison/1089846#10898461Answer by skoob for bash, dash and string comparisonskoob2009-07-07T00:32:19Z2009-07-07T00:43:38Z<p>Use = instead of ==. Comparisons are handled by test(1). /usr/bin/[ is typically a link to /usr/bin/test . The only difference is that if youb use [ in a shell script, the ] is required aswell.</p>
<p>Note that bash has a built-in test/[, so it doesn't actually use /usr/bin/test.</p>
http://stackoverflow.com/questions/1027309/filemakerpro-equivalent-for-linux/1027378#10273782Answer by skoob for FileMakerPro equivalent for Linux?skoob2009-06-22T14:00:42Z2009-06-22T14:00:42Z<p>Have you looked at <a href="http://www.glom.org" rel="nofollow">Glom</a>? Its "design is loosely based on FileMaker Pro", but it uses PostgreSQL in the backend. Then again, if you're comfortable with Python and MySQL (or maybe even something like SQLite), that might be a better solution, since FileMaker is mostly aimed at people who want to avoid coding.</p>
http://stackoverflow.com/questions/954014/php-2d-array-declaration/954046#9540460Answer by skoob for PHP 2d Array Declarationskoob2009-06-05T02:36:42Z2009-06-05T02:36:42Z<p>Another way to do it is by nesting array() functions:</p>
<pre><code> $requiredFieldsByReferenceType = array(
'Book' => array('volume' => true,
'source' => true),
'Book Section' => array('volume' => true,
'source' => true),
...
);
</code></pre>
http://stackoverflow.com/questions/810177/portable-shared-objects/810430#8104302Answer by skoob for Portable shared objects?skoob2009-05-01T06:41:18Z2009-05-01T06:41:18Z<p>So, the question is, how to develop shared libraries for Linux? You could take a look at <a href="http://www.yolinux.com/TUTORIALS/LibraryArchives-StaticAndDynamic.html" rel="nofollow">this tutorial</a> or <a href="http://www.tldp.org/HOWTO/Program-Library-HOWTO/" rel="nofollow">the Pogram Library Howto</a>. </p>
http://stackoverflow.com/questions/416686/has-anyone-found-a-good-open-source-ajax-calendar-control-not-a-popup-date-picke/497828#4978280Answer by skoob for Has anyone found a good open source ajax calendar control (not a popup date picker)skoob2009-01-31T00:30:06Z2009-01-31T00:30:06Z<p>You could try ripping out the calendar part of one of the open-source Ajaxy groupware projects, such as <a href="http://zimbra.com" rel="nofollow">Zimbra</a>, <a href="http://bongo-project.org" rel="nofollow">Bongo</a>, <a href="http://horde.org" rel="nofollow">Horde</a> or <a href="http://zarafa.com" rel="nofollow">Zarafa</a>.</p>
http://stackoverflow.com/questions/395445/what-cutting-edge-desktop-environments-are-out-there/396682#3966820Answer by skoob for What cutting edge desktop environments are out there?skoob2008-12-28T21:04:59Z2008-12-28T21:04:59Z<p>There's also <a href="http://insitu.lri.fr/metisse/" rel="nofollow">Metisse</a>, which has a few interesting, and perhaps even useful, 3D-ish features.</p>
<p>I've never quite been able to figure out what <a href="http://www.croquetconsortium.org/index.php/Main_Page" rel="nofollow">Croquet</a> is about, but it seems very innovative. Or at least strange. Like something from a virtual world from the 90s. With a creepy rabbit.</p>
<p><a href="http://sugarlabs.org/go/Main_Page" rel="nofollow">Sugar</a>, the UI created for the OLPC is pretty different from anything else.</p>
<p>Then there's <a href="http://en.wikipedia.org/wiki/Hildon" rel="nofollow">Hildon</a>, the mobile GNOME based desktop environment created by Nokia.</p>
http://stackoverflow.com/questions/389415/sftp-rename-file-to-append-date/391108#3911080Answer by skoob for SFTP Rename file to append dateskoob2008-12-24T09:40:37Z2008-12-24T09:40:37Z<p>Do you have access to the Linux server? In that case you could just rename the files there. You could for instance use inotify to monitor the directory, and then have a script that adds the date to files whenever a new file is created in that directory. </p>
<p><a href="http://ubuntuforums.org/showthread.php?t=663950" rel="nofollow">Here's</a> a simple example in Python (although there are inotify bindings for most languages). The event you'll want to listen for is IN_CREATE.</p>
http://stackoverflow.com/questions/154808/whats-the-best-option-for-rendering-complex-fonts/357507#3575070Answer by skoob for What's The Best Option For Rendering Complex Fonts?skoob2008-12-10T20:34:35Z2008-12-10T20:34:35Z<p>For a cross platform solution, check out <a href="http://pango.org" rel="nofollow">Pango</a>.</p>
http://stackoverflow.com/questions/341891/a-simple-way-to-send-mails-from-a-c-application-on-unix/342742#3427420Answer by skoob for A simple way to send mails from a C application on Unixskoob2008-12-05T02:26:54Z2008-12-05T02:26:54Z<p>Sorry, but what you're asking for isn't possible. In order to send mail to another system, you'll need some kind of program which transfers mail from one computer to another. Such a program is by definition an MTA. </p>
<p>You don't have to use Sendmail. You could, as other posters have tried to tell you, use something a lot more lightweight. All you need is something that can act as an SMTP client. You could even build the functionality into your program, but you'll still end up with what's essentially an MTA.</p>
http://stackoverflow.com/questions/238197/whats-your-favorite-os-power-tool/239347#2393470Answer by skoob for Whats your favorite OS Power tool?skoob2008-10-27T08:42:12Z2008-10-27T08:42:12Z<p>I can't imagine life without <a href="http://en.wikipedia.org/wiki/GNU_Screen" rel="nofollow" title="GNU screen">GNU screen</a>. There are so many features that just make things a bit easier. Stuff like being able to detach a session and then attach to from any computer anywhere, with all programs still running. Or searching through the scroll history. Or running several screens in the same terminal window. And lots of other stuff.</p>
http://stackoverflow.com/questions/207047/what-linux-unix-commands-are-outdated-and-have-powerful-alternatives/216764#2167646Answer by skoob for What Linux/Unix commands are outdated and have powerful alternatives?skoob2008-10-19T18:18:33Z2008-10-19T18:18:33Z<p>Not exactly replacements for anything, but <a href="http://joey.kitenet.net/code/moreutils/" rel="nofollow">moreutils</a> is a collection of small Unixy tools, which are basically meant to fill holes in the *nix toolbox. </p>
<p>Since, you only wanted one command per post, I guess I'll have to choose <em>sponge</em>, which allows you to save the output of a pipe to one of the files used as input. IOW, it allows you to modify files in-place, without having to worry about temporary files.</p>
<p>For example, if you do:</p>
<pre><code>grep 'something' somefile.txt > somefile.txt
</code></pre>
<p>somefile.txt will end up empty. So, you could use sponge:</p>
<pre><code>grep 'something' somefile.txt | sponge somefile.txt
</code></pre>
http://stackoverflow.com/questions/175762/is-the-microsoft-public-license-viral/175868#1758688Answer by skoob for Is the Microsoft Public License viral?skoob2008-10-06T19:43:45Z2008-10-06T19:43:45Z<p>No. What that clause means is that you need to comply with the license for the code licensed under the MS-Pl. There's no requirement that the complete derivative work needs to be similarly licensed or that you need to provide source code to your modifications or anything like that.</p>
<p>The only thing you need to do is include the original license text. You'll still have to comply with the patent and trademark (etc) clauses though. As long as you include the license and aren't doing anything that directly violates the license, you can do pretty much anything with the code. Make any changes you like, put any restrictions you want on your code, sell it, distribute it in binary-only form, etc.</p>
http://stackoverflow.com/questions/132902/how-do-i-split-the-output-from-mysqldump-into-smaller-files/132957#1329570Answer by skoob for How do I split the output from mysqldump into smaller files?skoob2008-09-25T12:20:14Z2008-09-25T12:20:14Z<p>You can dump individual tables with mysqldump by running <code>mysqldump database table1 table2 ... tableN</code></p>
<p>If none of the tables are too large, that will be enough. Otherwise, you'll have to start splitting the data in the larger tables.</p>
http://stackoverflow.com/questions/130438/do-utf-8-utf-16-and-utf-32-unicode-encodings-differ-in-the-number-of-characters/130495#13049515Answer by skoob for Do UTF-8,UTF-16, and UTF-32 Unicode encodings differ in the number of characters they can store?skoob2008-09-24T23:04:26Z2008-09-24T23:04:26Z<p>No, they're simply different encoding methods. They all support encoding the same set of characters.</p>
<p>UTF-8 uses anywhere from one to four bytes per character depending on what character you're encoding. Characters within the ASCII range take only one byte while very unusual characters take four.</p>
<p>UTF-32 uses four bytes per character regardless of what character it is, so it will always use more space than UTF-8 to encode the same string. The only advantage is that you can calculate the number of characters in a UTF-32 string by only counting bytes.</p>
<p>UTF-16 uses two bytes for most charactes, four bytes for unusual ones.</p>
<p><a href="http://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings</a></p>
http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/130406#1304061Answer by skoob for How do I run a command in a loop until I see some string in stdout?skoob2008-09-24T22:46:58Z2008-09-24T22:46:58Z<pre><code>CONT=1; while [ $CONT -gt 0 ]; do $CMD | tee -a $FILE | grep -q $REGEXP; CONT=$? ; done
</code></pre>
<p>The tee command can capture stdout in a pipe while still passing the data on, and -a makes it append to the file instead of overwriting it every time. grep -q will return 0 if there was a match, 1 otherwise and doesn't write anything to stdout. $? is the return value of the previous command, so $CONT will be the return value of grep in this case.</p>
http://stackoverflow.com/questions/124542/so-in-good-python-do-you-have-to-type-every-space-individually/125841#1258410Answer by skoob for So in 'good' Python do you have to type every space individually?skoob2008-09-24T07:31:23Z2008-09-24T07:31:23Z<p>Re mattlant: Well, typically there's a command to decrease the indentation that you can use instead of having to delete the spaces individually. In e.g. vim, it's bound to the < key by default, and you can define how many spaces you want each indentation level to be by setting the <em>shiftwidth</em> option.</p>
http://stackoverflow.com/questions/116824/whats-the-best-way-to-get-total-of-records-in-a-mysql-table-with-php/117315#1173150Answer by skoob for Whats the best way to get total # of records in a mysql table with php?skoob2008-09-22T20:16:16Z2008-09-22T20:16:16Z<p>MyISAM tables already store the row count, so "SELECT COUNT(*) FROM table" on a MyISAM table simply reads that value. It doesn't scan the table or the index(es). So, it's just as fast or faster than reading the value from a different table.</p>
http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750620#750620Comment by skoob on What technologies are you using even though they are embarassingly out of date?skoob2009-05-03T06:24:57Z2009-05-03T06:24:57ZUnless you really love reverse polish notation, you can use bc instead of dc: echo "123 * 1024 * 1024 / 4" | bchttp://stackoverflow.com/questions/772017/using-variable-with-sed-in-shell-script/772025#772025Comment by skoob on Using variable with sed in Shell Scriptskoob2009-04-21T11:07:21Z2009-04-21T11:07:21ZIf you use GNU sed, you can use the -i flag to edit the file in place.http://stackoverflow.com/questions/17717/migrating-from-mysql-to-postgresql/17837#17837Comment by skoob on Migrating from MySQL to PostgreSQLskoob2008-12-25T08:21:00Z2008-12-25T08:21:00ZActually, the client libraries are GPL as well, not just the server. If your program is linking against libmysqlclient.so, it either needs to be open source or you need to buy a commercial MySQL licence.
So this affects you if your using MySQL from e.g. C but not if your using it from a PHP script.