User ADEpt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:33:49Zhttp://stackoverflow.com/feeds/user/10105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1897306/haskell-record-syntax-and-type-classes/1911498#19114980Answer by ADEpt for Haskell record syntax and type classesADEpt2009-12-16T00:30:59Z2009-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 <- 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#18562486Answer by ADEpt for Avoiding boilerplate when dealing with many unrelated typesADEpt2009-12-06T19:05:31Z2009-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 -> [l]
allGuardedAlts t = [ l | GuardedAlt l _ _ <- 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#22872722Answer by ADEpt for Palindrome GolfADEpt2008-10-23T06:30:54Z2009-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#17370594Answer by ADEpt for Remove elements by index in haskellADEpt2009-11-15T09:15:47Z2009-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#17248870Answer by ADEpt for IMAP folders diff?ADEpt2009-11-12T19:47:31Z2009-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->new(
Server => $imaphost, User => $login, Password => $pass, Uid => 1
);
$imap->select("demo_folder");
my $msgs = $imap->search("ALL");
for my $h (
# get specified headers from every message in folder "demo_folder" the
values %{ $imap->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->{$_}[0]\n"} keys %$h;
}
</code></pre>
http://stackoverflow.com/questions/1388209/how-to-format-numbers-according-to-locale-in-haskell/1724730#17247301Answer by ADEpt for How to format numbers according to locale in Haskell?ADEpt2009-11-12T19:26:12Z2009-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 -> (Ptr Word8) -> CInt -> IO CInt
buf = unsafePerformIO $ mallocBytes 64
cPrintf :: Double -> B.ByteString
cPrintf n = B.pack $ unsafePerformIO $ do
len <- 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 <stdio.h>
#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#17225731Answer by ADEpt for How can my shell script control the placement of a zenity window?ADEpt2009-11-12T14:33:20Z2009-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 # <some window id here></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#13454929Answer by ADEpt for Haskell: type inference and function compositionADEpt2009-08-28T07:09:47Z2009-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> :t filter . (/=)
filter . (/=) :: (Eq a) => a -> [a] -> [a]
</code></pre>
http://stackoverflow.com/questions/958293/how-to-wrap-uninterrupted-text-in-latex/958356#9583567Answer by ADEpt for How to wrap uninterrupted text in Latex? ADEpt2009-06-05T22:03:50Z2009-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#9005182Answer by ADEpt for Unable to have full-screen in Mac's XmonadADEpt2009-05-23T00:24:36Z2009-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#3861603Answer by ADEpt for Implications of foldr vs. foldl (or foldl')ADEpt2008-12-22T12:33:01Z2009-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#7804816Answer by ADEpt for A Gentler Introduction to Functional ProgrammingADEpt2009-04-23T06:17:18Z2009-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#7653031Answer by ADEpt for Jquery like selector in HaskellADEpt2009-04-19T12:00:52Z2009-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#7033180Answer by ADEpt for formatting shell output into structured data?ADEpt2009-03-31T22:22:59Z2009-03-31T22:22:59Z<p>Sounds like the task for SNMP.</p>
http://stackoverflow.com/questions/699908/making-small-haskell-executables/700593#7005938Answer by ADEpt for Making small haskell executables?ADEpt2009-03-31T08:36:19Z2009-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#6839682Answer by ADEpt for What is a good way to debug haskell code?ADEpt2009-03-25T23:41:38Z2009-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#6935001Answer by ADEpt for Parallel execution of shell processesADEpt2009-03-28T20:47:08Z2009-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 < 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#6604521Answer by ADEpt for Overriding yum dependency checks when newer versions of the dependent software existADEpt2009-03-18T23:10:21Z2009-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#6564670Answer by ADEpt for In Haskell how do you extract strings from an XML document?ADEpt2009-03-17T23:53:35Z2009-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#5770633Answer by ADEpt for Have you used Quickcheck in a real projectADEpt2009-02-23T09:52:43Z2009-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#5371162Answer by ADEpt for wget errors breaks shell script - how to prevent that?ADEpt2009-02-11T14:46:48Z2009-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#1903215Answer by ADEpt for How to insert emoticons in LaTeX?ADEpt2008-10-10T06:27:55Z2009-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#4751360Answer by ADEpt for Qt Toolbar button icons show in Windows after MinGW build, but disappear after being built with g++ADEpt2009-01-24T00:01:47Z2009-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#4685284Answer by ADEpt for How to reduce memory usage in a Haskell app?ADEpt2009-01-22T09:38:18Z2009-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 <- [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#4273741Answer by ADEpt for Haskell REST/GDATA API libraryADEpt2009-01-09T08:01:04Z2009-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#4207161Answer by ADEpt for is it possible to print all reductions in Haskell - using WinHugs?ADEpt2009-01-07T15:26:47Z2009-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#4131006Answer by ADEpt for Creative uses of monadsADEpt2009-01-05T13:31:57Z2009-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#2969052Answer by ADEpt for Need for troubleshooting in UNIX w/ shell script program and IF..THEN command. ADEpt2008-11-17T21:00:45Z2008-11-18T08:18:41Z<p>Anything between "sqlplus -s $1 << 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 <<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#2968770Answer by ADEpt for Haskell IO and closing filesADEpt2008-11-17T20:52:42Z2008-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-headache1How to track third-party sources with ClearCase without a headache?ADEpt2008-10-05T19:37:00Z2008-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-windowComment by ADEpt on How can my shell script control the placement of a zenity window?ADEpt2009-12-06T23:35:20Z2009-12-06T23:35:20ZHave you tried EWMHIgnoreStateHints and EWMHIgnoreWindowType?http://stackoverflow.com/questions/1736028/remove-elements-by-index-in-haskell/1737059#1737059Comment by ADEpt on Remove elements by index in haskellADEpt2009-11-15T15:34:26Z2009-11-15T15:34:26ZYes, indeed, thank youhttp://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573Comment by ADEpt on How can my shell script control the placement of a zenity window?ADEpt2009-11-14T00:06:50Z2009-11-14T00:06:50Zoh, and try adding EWMHIgnoreStateHints as wellhttp://stackoverflow.com/questions/1718154/how-can-my-shell-script-control-the-placement-of-a-zenity-window/1722573#1722573Comment by ADEpt on How can my shell script control the placement of a zenity window?ADEpt2009-11-13T23:39:17Z2009-11-13T23:39:17Ztry dropping quotes around "zenity" 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#1722573Comment by ADEpt on How can my shell script control the placement of a zenity window?ADEpt2009-11-12T19:13:46Z2009-11-12T19:13:46ZMaybe EWMH are the issue, see edithttp://stackoverflow.com/questions/384797/implications-of-foldr-vs-foldl-or-foldl/386160#386160Comment by ADEpt on Implications of foldr vs. foldl (or foldl')ADEpt2009-05-17T10:04:13Z2009-05-17T10:04:13Zfixed, thank youhttp://stackoverflow.com/questions/699908/making-small-haskell-executables/700593#700593Comment by ADEpt on Making small haskell executables?ADEpt2009-04-03T20:04:10Z2009-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#548707Comment by ADEpt on How useful/difficult would it be for me to learn linux shell scripting? Alternative recommendations?ADEpt2009-02-16T11:10:24Z2009-02-16T11:10:24ZIf 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 IMOhttp://stackoverflow.com/questions/475074/regex-to-parse-or-validate-base64-dataComment by ADEpt on RegEx to parse or validate Base64 dataADEpt2009-01-23T23:55:51Z2009-01-23T23:55:51ZI 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#249153Comment by ADEpt on KSH scripting: how to split on ',' when values have escaped commas? [solved]ADEpt2009-01-04T09:18:06Z2009-01-04T09:18:06ZThe 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#296908Comment by ADEpt on Need for troubleshooting in UNIX w/ shell script program and IF..THEN command. ADEpt2008-11-18T08:20:41Z2008-11-18T08:20:41ZThis part is inside here-doc, so "if" would not be evaluatedhttp://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234476#234476Comment by ADEpt on What is your best programmer joke?ADEpt2008-10-26T14:44:10Z2008-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#233995Comment by ADEpt on What's the best way to sync large amounts of data around the world?ADEpt2008-10-24T18:33:33Z2008-10-24T18:33:33ZThe 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#230537Comment by ADEpt on When is a problem too complex for a regular expression?ADEpt2008-10-23T17:03:40Z2008-10-23T17:03:40ZWell, there are Perl extensions. They bring regexps out of class of regular languages.http://stackoverflow.com/questions/228518/palindrome-golf/228685#228685Comment by ADEpt on Palindrome GolfADEpt2008-10-23T06:31:24Z2008-10-23T06:31:24ZNot fair :)
You have to add (defun ....) and count it in