User ADEpt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:33:49Z http://stackoverflow.com/feeds/user/10105 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1897306/haskell-record-syntax-and-type-classes/1911498#1911498 0 Answer by ADEpt for Haskell record syntax and type classes ADEpt 2009-12-16T00:30:59Z 2009-12-16T00:30:59Z <p>Seems to me like a job for generics. If you could tag your Int with different newtypes, then you would be able to write (with uniplate, module PlateData):</p> <pre><code>data Foo = Foo Something Another deriving (Data,Typeable) data Bar = Bar Another Thing deriving (Data, Typerable) data Opts = F Foo | B Bar newtype Something = S Int newtype Another = A Int newtype Thing = T Int getAnothers opts = [ x | A x &lt;- universeBi opts ] </code></pre> <p>This would extract all Another's from anywhere inside the Opts.</p> <p>Modification is possible as well.</p> http://stackoverflow.com/questions/1855371/avoiding-boilerplate-when-dealing-with-many-unrelated-types/1856248#1856248 6 Answer by ADEpt for Avoiding boilerplate when dealing with many unrelated types ADEpt 2009-12-06T19:05:31Z 2009-12-06T19:05:31Z <p>All of those types seem to be instances of Typeable and Data. You can define your type Tree to be an instance of Typeable and Data as well, and then use one of the available generics libraries (SYB, uniplate, ...) to traverse the Tree with ease.</p> <p>My personal favorite is uniplate. For example, collecting all GuardedAlt from Tree would be as easy as:</p> <pre><code>import Data.Uniplate.PlateData ... allGuardedAlts :: Tree l -&gt; [l] allGuardedAlts t = [ l | GuardedAlt l _ _ &lt;- universeBi t] </code></pre> <p>You could take a look at my package <a href="http://hackage.haskell.org/package/graphtype" rel="nofollow">graphtype</a> where I did similar things.</p> http://stackoverflow.com/questions/228518/palindrome-golf/228727#228727 22 Answer by ADEpt for Palindrome Golf ADEpt 2008-10-23T06:30:54Z 2009-11-24T08:09:54Z <p>Haskell, <strong>15</strong> chars:</p> <pre><code>p=ap(==)reverse </code></pre> <p>More readable version, <strong>16</strong> chars:</p> <pre><code>p x=x==reverse x </code></pre> http://stackoverflow.com/questions/1736028/remove-elements-by-index-in-haskell/1737059#1737059 4 Answer by ADEpt for Remove elements by index in haskell ADEpt 2009-11-15T09:15:47Z 2009-11-15T15:33:50Z <p>Since nobody did a version with "unfoldr", here is my take:</p> <pre><code>drop3after5 lst = concat $ unfoldr chunk lst where chunk [] = Nothing chunk lst = Just (take 5 lst, drop (5+3) lst) </code></pre> <p>Seems to be the shortest thus far</p> http://stackoverflow.com/questions/1554653/imap-folders-diff/1724887#1724887 0 Answer by ADEpt for IMAP folders diff? ADEpt 2009-11-12T19:47:31Z 2009-11-12T19:47:31Z <p>The easies way is probably to get perl and Mail::IMAPClient and use something like:</p> <pre><code> use Mail::IMAPClient; my $imap = Mail::IMAPClient-&gt;new( Server =&gt; $imaphost, User =&gt; $login, Password =&gt; $pass, Uid =&gt; 1 ); $imap-&gt;select("demo_folder"); my $msgs = $imap-&gt;search("ALL"); for my $h ( # get specified headers from every message in folder "demo_folder" the values %{ $imap-&gt;parse_headers( $msgs , "Date", "From", "Subject") } ) { # $h is the value of each element in the hash ref returned # from parse_headers, and $h is also a reference to a hash. # We'll only print the first occurrence of each field because # we don't expect more than one particular header line per # message. print map { "$_:\t$h-&gt;{$_}[0]\n"} keys %$h; } </code></pre> http://stackoverflow.com/questions/1388209/how-to-format-numbers-according-to-locale-in-haskell/1724730#1724730 1 Answer by ADEpt for How to format numbers according to locale in Haskell? ADEpt 2009-11-12T19:26:12Z 2009-11-12T19:26:12Z <p>I would say that if the library in question is missing then you could either write yourself one (obvious option, not easy) or write a binding for the needed function. For example, restricted binding for <code>sprintf</code> which allows to sprintf only doubles:</p> <p>Double.hs:</p> <pre><code>{-# INCLUDE "double.h" #-} {-# LANGUAGE ForeignFunctionInterface #-} module Double (cPrintf) where import Foreign import Foreign.C.Types import System.IO.Unsafe import qualified Data.ByteString as B foreign import ccall "double.h toString" c_toString :: CDouble -&gt; (Ptr Word8) -&gt; CInt -&gt; IO CInt buf = unsafePerformIO $ mallocBytes 64 cPrintf :: Double -&gt; B.ByteString cPrintf n = B.pack $ unsafePerformIO $ do len &lt;- c_toString (realToFrac n) buf 64 peekArray (fromIntegral len) buf </code></pre> <p>double.h:</p> <pre><code>int toString(double a, char *buffer, int bufferLen); </code></pre> <p>double.c:</p> <pre><code>#include &lt;stdio.h&gt; #include "double.h" int toString(double a, char *buffer, int bufferLen) { return snprintf(buffer, bufferLen, "%f", a); } </code></pre> <p>Build as:</p> <pre><code>gcc -c double.c ghc --make Main.hs double.o </code></pre> http://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573 1 Answer by ADEpt for How can my shell script control the placement of a zenity window? ADEpt 2009-11-12T14:33:20Z 2009-11-12T19:13:19Z <p>Yes, it is definitely possible with the proper help from window manager. For example, with xmonad it would be one line of code...</p> <p>My fvwm is little rusty, but it seems like something along the lines of:</p> <pre><code>Style "zenity" PositionPlacement -0 -0 </code></pre> <p>in your fvwm2rc should do the trick.</p> <p>EDIT: Notice the lowercase "zenity" since, according to the docs, it should match not only window title, but window class as well (which you can find out using "xprop" utility: launch it and point to window in question).</p> <p>According to xprop, zenity window has two interesting properties:</p> <ol> <li>It has <code>_NET_WM_WINDOW_TYPE(ATOM) = _NET_WM_WINDOW_TYPE_DIALOG</code>, indicating that it is a dialog window</li> <li>It has <code>WM_TRANSIENT_FOR(WINDOW): window id # &lt;some window id here&gt;</code>, indicating the main window for which it is a dialog (in my case - xterm window)</li> </ol> <p>So, if my suggestion does not work, then it is almost certainly because fvwm handles dialogs in a special way - either due to configuration or due to hardcoded behavoir.</p> <p>You can try adding "<code>EWMHIgnoreWindowType</code>" to the style of zenity windows, which should hopefuly made fvwm ignore those hints</p> http://stackoverflow.com/questions/1344414/haskell-type-inference-and-function-composition/1345492#1345492 9 Answer by ADEpt for Haskell: type inference and function composition ADEpt 2009-08-28T07:09:47Z 2009-08-28T07:09:47Z <p>It is also worth noting that if you don't assign a name to the expression, typechecker seems to avoid typ[e defaulting:</p> <pre><code>Prelude&gt; :t filter . (/=) filter . (/=) :: (Eq a) =&gt; a -&gt; [a] -&gt; [a] </code></pre> http://stackoverflow.com/questions/958293/how-to-wrap-uninterrupted-text-in-latex/958356#958356 7 Answer by ADEpt for How to wrap uninterrupted text in Latex? ADEpt 2009-06-05T22:03:50Z 2009-06-05T22:03:50Z <p>Your question lacks the definition of the desired outcome, so I'll just try to guess.</p> <p>Simplest idea: just add spaces after each comma.</p> http://stackoverflow.com/questions/890822/unable-to-have-full-screen-in-macs-xmonad/900518#900518 2 Answer by ADEpt for Unable to have full-screen in Mac's Xmonad ADEpt 2009-05-23T00:24:36Z 2009-05-23T00:24:36Z <p>exec is a shell built-in. If you insists on using it with sudo, you should do something like:</p> <pre><code>sudo bash -c "exec ...." </code></pre> <p>But that is pretty much pointless, if you use sudo anyway. Just drop the "exec" altogether.</p> http://stackoverflow.com/questions/384797/implications-of-foldr-vs-foldl-or-foldl/386160#386160 3 Answer by ADEpt for Implications of foldr vs. foldl (or foldl') ADEpt 2008-12-22T12:33:01Z 2009-05-17T10:03:50Z <p><a href="http://foldr.com" rel="nofollow">Foldr illustrated</a>. <a href="http://foldl.com" rel="nofollow">Foldl illustrated</a></p> http://stackoverflow.com/questions/779800/a-gentler-introduction-to-functional-programming/780481#780481 6 Answer by ADEpt for A Gentler Introduction to Functional Programming ADEpt 2009-04-23T06:17:18Z 2009-04-23T06:17:18Z <p>Use <a href="http://en.wikibooks.org/wiki/Write%5FYourself%5Fa%5FScheme%5Fin%5F48%5FHours" rel="nofollow">"Write yourself a Scheme interpreter (in Haskell) in 48 hours"</a> - this way you'll learn something about scheme and haskell in the same run</p> http://stackoverflow.com/questions/764168/jquery-like-selector-in-haskell/765303#765303 1 Answer by ADEpt for Jquery like selector in Haskell ADEpt 2009-04-19T12:00:52Z 2009-04-19T12:00:52Z <p>Take a look at the Xtract module from the HaXml. There is a command-line tool of the same name there to test it out.</p> http://stackoverflow.com/questions/703163/formatting-shell-output-into-structured-data/703318#703318 0 Answer by ADEpt for formatting shell output into structured data? ADEpt 2009-03-31T22:22:59Z 2009-03-31T22:22:59Z <p>Sounds like the task for SNMP.</p> http://stackoverflow.com/questions/699908/making-small-haskell-executables/700593#700593 8 Answer by ADEpt for Making small haskell executables? ADEpt 2009-03-31T08:36:19Z 2009-03-31T08:36:19Z <p>GHC is statically linking everything (except libraries used by runtime itself, which are linked dynamically). </p> <p>In the old ages, GHC linked the whole (hsakell) library in as soon as you've used something from it. Sometime ago, GHC started to link "per obj file", which drastically reduced the binary size. Judging from the size, you must'vebeen used the newer GHC already.</p> <p>On the plus side, you aready have a lot of stuff in those 500K, like mulithreaded core, garbage collector etc.</p> <p>Add at least garbage collector to your C code, then compare them again :)</p> http://stackoverflow.com/questions/672979/what-is-a-good-way-to-debug-haskell-code/683968#683968 2 Answer by ADEpt for What is a good way to debug haskell code? ADEpt 2009-03-25T23:41:38Z 2009-03-30T09:21:35Z <p>As a side note, be aware that <code>Debug.trace</code> will NOT be your friend when debugging multithreaded programs.</p> <p>Testing is the way to go in the long run.</p> http://stackoverflow.com/questions/672719/parallel-execution-of-shell-processes/693500#693500 1 Answer by ADEpt for Parallel execution of shell processes ADEpt 2009-03-28T20:47:08Z 2009-03-29T22:43:43Z <p>GNU xargs under Linux has a "-P n" switch to launch "n" processes in parallel.</p> <p>Maybe cygwin/mingw build of xargs also supports this?</p> <p>Then you can use:</p> <pre><code>xargs -P 4 processFile &lt; fileList </code></pre> <p>No fancy multi-node process spawning, though.</p> http://stackoverflow.com/questions/660398/overriding-yum-dependency-checks-when-newer-versions-of-the-dependent-software-ex/660452#660452 1 Answer by ADEpt for Overriding yum dependency checks when newer versions of the dependent software exist ADEpt 2009-03-18T23:10:21Z 2009-03-18T23:10:21Z <p>As a rule of thumb, it's better to have one package management in the system, so you'll be better off packaging everything in RPMS and managing it via yum. It will save you lots of time in the long run.</p> <p>If you absolutely want to have something (fe PHP) compiler from sources by hand, use stow/checkinstall/... or any other solution which would enable you to do rudimentary package management for source-compiled stuff.</p> <p>Regerding your question, you could try to override dependency checking by downloading RPM of the required package an doing "rpm -i --force file.rpm", since yum does not have any option for forced installations</p> http://stackoverflow.com/questions/654384/in-haskell-how-do-you-extract-strings-from-an-xml-document/656467#656467 0 Answer by ADEpt for In Haskell how do you extract strings from an XML document? ADEpt 2009-03-17T23:53:35Z 2009-03-17T23:53:35Z <p>FWIW, HXT seems like overkill where a simple TagSoup will do :)</p> http://stackoverflow.com/questions/576901/have-you-used-quickcheck-in-a-real-project/577063#577063 3 Answer by ADEpt for Have you used Quickcheck in a real project ADEpt 2009-02-23T09:52:43Z 2009-02-23T09:52:43Z <p>I've used it quite a lot, mostly in straighforward manner, chiefly for testing protocol and parser implementations.</p> <p>However, here is less trivial bit from my personal experience: <a href="http://www.haskell.org/haskellwiki/QuickCheck_as_a_test_set_generator" rel="nofollow">http://www.haskell.org/haskellwiki/QuickCheck_as_a_test_set_generator</a></p> http://stackoverflow.com/questions/535623/wget-errors-breaks-shell-script-how-to-prevent-that/537116#537116 2 Answer by ADEpt for wget errors breaks shell script - how to prevent that? ADEpt 2009-02-11T14:46:48Z 2009-02-11T14:46:48Z <p>Do not (ab)use the shell.</p> <p>Save your URLs to some file (let's say my_urls.lst) and do:</p> <pre><code>wget -i my_urls.lst </code></pre> <p>Wget will handle quoting etc on it's own</p> http://stackoverflow.com/questions/190145/how-to-insert-emoticons-in-latex/190321#190321 5 Answer by ADEpt for How to insert emoticons in LaTeX? ADEpt 2008-10-10T06:27:55Z 2009-02-07T04:05:14Z <p>I know at least two partial ways:</p> <p>First:</p> <pre><code>$\ddot\smile$ </code></pre> <p>Second:</p> <pre><code>\usepackage{wasysym} \smiley \frownie </code></pre> <p>Or you can use images (as mentioned in other replies).</p> http://stackoverflow.com/questions/474833/qt-toolbar-button-icons-show-in-windows-after-mingw-build-but-disappear-after-be/475136#475136 0 Answer by ADEpt for Qt Toolbar button icons show in Windows after MinGW build, but disappear after being built with g++ ADEpt 2009-01-24T00:01:47Z 2009-01-24T00:01:47Z <p>Use 'strace -e file -o LOG ./YourBinary', and exit program immediately after startup.</p> <p>Look through the LOG for 'file not found errors'. In mysterious cases like this it never hurts to double-check this way that paths are indeed correct</p> http://stackoverflow.com/questions/459725/how-to-reduce-memory-usage-in-a-haskell-app/468528#468528 4 Answer by ADEpt for How to reduce memory usage in a Haskell app? ADEpt 2009-01-22T09:38:18Z 2009-01-22T09:38:18Z <ol> <li><p>Lists are not the best datastructure for this type of code (with lots of (++), and (last)). You loose a lot of time constucting and deconstructing lists. I'd use Data.Sequence or arrays, as in C versions.</p></li> <li><p>There is no chance for thunks of makeu0 to be garbage-collected, since you need to retain all of them (well, all of the results of "diffuse", to be exact) all the way till the end of computation in order to be able to do "reverse" in applyBC. Which is very expensive thing, considering that you only need two items from the tail of the list for your "zeroflux". </p></li> </ol> <p>Here is fast hack of you code that tries to achieve better list fusion and does less list (de)constructing:</p> <pre><code>module Euler1D ( stepEuler ) where -- impose zero flux condition zeroflux mu (boundary:inner:xs) = boundary+mu*2*(inner-boundary) -- one step of integration stepEuler mu n = (applyBC . (diffused mu)) $ makeu0 n where diffused mu (left:x:[]) = [] -- ignore outer points diffused mu (left:x:right:xs) = -- integrate inner points let y = (x+mu*(left+right-2*x)) in y `seq` y : diffused mu (x:right:xs) applyBC inner = lbc + sum inner + rbc -- boundary conditions where lbc = zeroflux mu ((f 0 n):inner) -- left boundary rbc = zeroflux mu ((f n n):(take 2 $ reverse inner)) -- right boundary -- initial condition makeu0 n = [ f x n | x &lt;- [0..n]] f x n = ((^2) . sin . (pi*) . xi) x where xi x = fromIntegral x / fromIntegral n </code></pre> <p>For 200000 points, it completes in 0.8 seconds vs 3.8 seconds for initial version</p> http://stackoverflow.com/questions/422221/haskell-rest-gdata-api-library/427374#427374 1 Answer by ADEpt for Haskell REST/GDATA API library ADEpt 2009-01-09T08:01:04Z 2009-01-09T08:01:04Z <p>According to "cabal list", there is no such thing among libraries on Hackage. Sad, but true.</p> http://stackoverflow.com/questions/416956/is-it-possible-to-print-all-reductions-in-haskell-using-winhugs/420716#420716 1 Answer by ADEpt for is it possible to print all reductions in Haskell - using WinHugs? ADEpt 2009-01-07T15:26:47Z 2009-01-07T15:26:47Z <p>Believe me, you dont want to go this way.</p> <p>Set (and order) of reductions used in each particular case would depend on particular language implementation (hugs could do it one way, ghci - in other way, jhc - in yet another, etc).</p> <p>Better read something about general ways to implement compiler/interpreter/virual machine for functional language - like SECD machine, etc.</p> <p>Several links:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/SECD_machine" rel="nofollow">http://en.wikipedia.org/wiki/SECD_machine</a></li> <li><a href="http://lambda-the-ultimate.org/node/2884" rel="nofollow">http://lambda-the-ultimate.org/node/2884</a></li> </ul> http://stackoverflow.com/questions/412929/creative-uses-of-monads/413100#413100 6 Answer by ADEpt for Creative uses of monads ADEpt 2009-01-05T13:31:57Z 2009-01-05T13:31:57Z <p>Read series of articles on monads used to model probability and probabilistic processes here : <a href="http://www.randomhacks.net/articles/2007/03/03/smart-classification-with-haskell" rel="nofollow">http://www.randomhacks.net/articles/2007/03/03/smart-classification-with-haskell</a> (follow links to prev/next parts)</p> http://stackoverflow.com/questions/296797/need-for-troubleshooting-in-unix-w-shell-script-program-and-if-then-command/296905#296905 2 Answer by ADEpt for Need for troubleshooting in UNIX w/ shell script program and IF..THEN command. ADEpt 2008-11-17T21:00:45Z 2008-11-18T08:18:41Z <p>Anything between "sqlplus -s $1 &lt;&lt; EOF" and "EOF" is called "here-doc" and intended for consumption by sqlplus. You can't really expect sqlplus to understand shell scripting in the form of "if [ "$7" -eq ....] ".</p> <p>You should make all "ifs" outside of the here-doc and use results in it. Like this:</p> <pre><code>if [ "$7" -eq "AAA" ] ; then attr="attr2" elsif [ "$7" -eq "BBB" ] ; then attr="attr1" else echo "Bogus $7 - need AAA or BBB" fi .... sqlplus -s $1 &lt;&lt;EOF ... SELECT 'Total $7 Updated: '||count(*)||' records' FROM reldatetemp ,allcustomers WHERE trx_num = trx_no AND error_text IS NULL AND ${attr} IS NOT NULL AND ${attr} = TO_CHAR(new_date,'YYYY/MM/DD HH24:MI:SS'); ... EOF </code></pre> <p>Pay attention to "${attr}" and read a decent tutorial on shell scripting.</p> http://stackoverflow.com/questions/296792/haskell-io-and-closing-files/296877#296877 0 Answer by ADEpt for Haskell IO and closing files ADEpt 2008-11-17T20:52:42Z 2008-11-17T20:52:42Z <p>The explanation is rather long to be included here. Forgive me for dispensing a short tip only: you need to read about "semi-closed file handles" and "unsafePerformIO".</p> <p>In short - this behaviour is a design compromise between a semantic clearness and lazy evaluation. You should either postpone hClose until you are absolutely sure you woudnt be doing anything with the file content (like, call it in error handler, or somesuch), or use something else besides hGetContents to get file contents non-lazily.</p> http://stackoverflow.com/questions/172510/how-to-track-third-party-sources-with-clearcase-without-a-headache 1 How to track third-party sources with ClearCase without a headache? ADEpt 2008-10-05T19:37:00Z 2008-11-14T12:23:41Z <p>First of all: I am not an experienced ClearCase user, but I have lots of experience with other VCS and *nix command-line tools. WIth ClearCase, I use command-line tool ("cleartool") working in a Unix shell.</p> <p>Problem: I have a small set of sources stored in the ClearCase. Once in a while a fresh .tgz with the same sources comes in and I have to update sources in the repository (process could not be changed so that other party will use ClearCase).</p> <p>Now I do the following:</p> <ol> <li>Extract tgz into, say, "~/new_src"</li> <li>"ct setview ..." and cd to the place where the sources are (say, "/vobs/src")</li> <li>I compare the sources with "diff -Naurb . ~/new_src", examine diff's output and: <ol> <li>Copy new files to the /vobs/src and do "cleartool mkelem" on them</li> <li>Checkout changed files, copy new sources over and commit them</li> <li>Do "cleartool mkdir" for new dirs and populate them</li> </ol></li> </ol> <p>This process is slowly driving me crazy since in almost any other version control system I would just checkout the sources, copy new sources over, examine diffs, add new files and then commit the whole lot. Or, better yet, use tags/branches, though they are really not needed in this case - I need to have an up-to-date version of the sources in the repo, that's all.</p> <p>I tried to checkout everything (using "cleartool co -nc <code>find .</code>"), copy new sources over, and commit changed files/add new files afterward. But this requires parsing of the "cleartool ls" output and is even messier.</p> <p>I could miss something obvious, but several forays into Google tell me that I'm not. However, I'd like to hear it from ClearCase powerusers - is there any hope for clueless like me or not? :)</p> http://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window Comment by ADEpt on How can my shell script control the placement of a zenity window? ADEpt 2009-12-06T23:35:20Z 2009-12-06T23:35:20Z Have you tried EWMHIgnoreStateHints and EWMHIgnoreWindowType? http://stackoverflow.com/questions/1736028/remove-elements-by-index-in-haskell/1737059#1737059 Comment by ADEpt on Remove elements by index in haskell ADEpt 2009-11-15T15:34:26Z 2009-11-15T15:34:26Z Yes, indeed, thank you http://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573 Comment by ADEpt on How can my shell script control the placement of a zenity window? ADEpt 2009-11-14T00:06:50Z 2009-11-14T00:06:50Z oh, and try adding EWMHIgnoreStateHints as well http://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573 Comment by ADEpt on How can my shell script control the placement of a zenity window? ADEpt 2009-11-13T23:39:17Z 2009-11-13T23:39:17Z try dropping quotes around &quot;zenity&quot; like this: Style zenity PositionPlacement -0 -0 http://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573 Comment by ADEpt on How can my shell script control the placement of a zenity window? ADEpt 2009-11-12T19:13:46Z 2009-11-12T19:13:46Z Maybe EWMH are the issue, see edit http://stackoverflow.com/questions/384797/implications-of-foldr-vs-foldl-or-foldl/386160#386160 Comment by ADEpt on Implications of foldr vs. foldl (or foldl') ADEpt 2009-05-17T10:04:13Z 2009-05-17T10:04:13Z fixed, thank you http://stackoverflow.com/questions/699908/making-small-haskell-executables/700593#700593 Comment by ADEpt on Making small haskell executables? ADEpt 2009-04-03T20:04:10Z 2009-04-03T20:04:10Z @liw.fi Haskell is almost by definition about garbage collection, multi-core execution etc. So, in fact, it is pointless <i>not</i> to have all that stuff in the core. Or leave it out (pouring additional effort into modularized core that could do just so). And for what? To save 100K of binary size? http://stackoverflow.com/questions/548676/how-useful-difficult-would-it-be-for-me-to-learn-linux-shell-scripting-alternati/548707#548707 Comment by ADEpt on How useful/difficult would it be for me to learn linux shell scripting? Alternative recommendations? ADEpt 2009-02-16T11:10:24Z 2009-02-16T11:10:24Z If the guy just wants to launch couple of processes and tie them together somehow, Perl or Python would be overkill. It seems to me that this answer is written from programmers point of view and completely misses the question IMO http://stackoverflow.com/questions/475074/regex-to-parse-or-validate-base64-data Comment by ADEpt on RegEx to parse or validate Base64 data ADEpt 2009-01-23T23:55:51Z 2009-01-23T23:55:51Z I guess that you have to define the task better. It is completely unclear what is your aim: be strict? parse 100% of the samples? ... http://stackoverflow.com/questions/171873/ksh-scripting-how-to-split-on-when-values-have-escaped-commas-solved/249153#249153 Comment by ADEpt on KSH scripting: how to split on ',' when values have escaped commas? [solved] ADEpt 2009-01-04T09:18:06Z 2009-01-04T09:18:06Z The only caveat here is that older KSH (as still found on SunOS, for example) does not have that nifty substitution function. http://stackoverflow.com/questions/296797/need-for-troubleshooting-in-unix-w-shell-script-program-and-if-then-command/296908#296908 Comment by ADEpt on Need for troubleshooting in UNIX w/ shell script program and IF..THEN command. ADEpt 2008-11-18T08:20:41Z 2008-11-18T08:20:41Z This part is inside here-doc, so &quot;if&quot; would not be evaluated http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234476#234476 Comment by ADEpt on What is your best programmer joke? ADEpt 2008-10-26T14:44:10Z 2008-10-26T14:44:10Z ... whereas sysadmin puts <b>two</b> full glasses and <b>two</b> empty ones. Why's the second pair? That's a hot backup. http://stackoverflow.com/questions/233966/whats-the-best-way-to-sync-large-amounts-of-data-around-the-world/233995#233995 Comment by ADEpt on What's the best way to sync large amounts of data around the world? ADEpt 2008-10-24T18:33:33Z 2008-10-24T18:33:33Z The way I see it, you can think in terms of the usual copy/move operations, substituting bittorrent in place of actual file transfers. I'll edit my solution to reflect this. http://stackoverflow.com/questions/230517/when-is-a-problem-too-complex-for-a-regular-expression/230537#230537 Comment by ADEpt on When is a problem too complex for a regular expression? ADEpt 2008-10-23T17:03:40Z 2008-10-23T17:03:40Z Well, there are Perl extensions. They bring regexps out of class of regular languages. http://stackoverflow.com/questions/228518/palindrome-golf/228685#228685 Comment by ADEpt on Palindrome Golf ADEpt 2008-10-23T06:31:24Z 2008-10-23T06:31:24Z Not fair :) You have to add (defun ....) and count it in