User Hynek -Pichi- Vychodil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T14:51:26Zhttp://stackoverflow.com/feeds/user/49197http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashes/1839869#18398690Answer by Hynek -Pichi- Vychodil for How can I get the second-level keys in a Perl hash-of-hashes?Hynek -Pichi- Vychodil2009-12-03T13:28:29Z2009-12-03T13:28:29Z<p>Yet another solution:</p>
<pre><code>for my $sh ( values %Bean ) {
print "$_ => $sh->{$_}\n" for grep exists $sh->{$_}, qw(Key4 Key5 Key6);
}
</code></pre>
http://stackoverflow.com/questions/1822405/convert-nested-lists-into-a-list-of-tuples/1834734#18347340Answer by Hynek -Pichi- Vychodil for Convert nested Lists into a List of TuplesHynek -Pichi- Vychodil2009-12-02T18:05:48Z2009-12-02T18:05:48Z<p>Even shorter:</p>
<pre><code>KVL = [{list_to_atom(K), V} || [K,V] <- [string:tokens(T,"=") || T <- L]].
</code></pre>
http://stackoverflow.com/questions/1820241/erlang-breaking-out-of-listsforeach-loop/1831870#18318700Answer by Hynek -Pichi- Vychodil for Erlang : Breaking out of lists:foreach "loop"Hynek -Pichi- Vychodil2009-12-02T09:59:20Z2009-12-02T09:59:20Z<p>There are many nice functions in <a href="http://www.erlang.org/doc/man/lists.html" rel="nofollow">lists</a> module:</p>
<pre><code>lists:foreach(fun(E) -> do_something(E) end,
lists:takewhile(fun(E) -> E =/= 1 end, List)).
</code></pre>
<p>or more effective but less nice</p>
<pre><code>lists:takewhile(fun(1) -> false;
(E) -> do_something(E), true
end, List)
</code></pre>
http://stackoverflow.com/questions/1817230/how-can-i-print-a-hash-of-hashes-of-hashes-in-perl/1821444#18214440Answer by Hynek -Pichi- Vychodil for How can I print a hash of hashes of hashes in Perl?Hynek -Pichi- Vychodil2009-11-30T18:15:00Z2009-11-30T18:15:00Z<p>Poor man's Dumper: </p>
<pre><code>sub trace {
my ( $val, $path ) = @_;
my $ref = ref $val;
if ( $ref eq '' ) {
print "$path = $val\n";
}
elsif ( $ref eq 'HASH' ) {
trace( $val->{$_}, $path . "{$_}" ) for keys %$val;
}
elsif ( $ref eq 'ARRAY' ) {
trace( $val->[$_], $path . "[$_]" ) for 0 .. $#$val;
}
else {
warn "I don't know what to do with $ref at $path\n";
}
}
trace($map, '$map->');
</code></pre>
http://stackoverflow.com/questions/1710557/perl-getting-value-out-of-a-hash-using-map/1711148#17111483Answer by Hynek -Pichi- Vychodil for perl: getting value out of a hash using mapHynek -Pichi- Vychodil2009-11-10T21:01:31Z2009-11-10T21:01:31Z<p>I'm used to do it in this way:</p>
<pre><code>@values = map { exists $hash{$_} ? $hash{$_} : () } @strings;
</code></pre>
<p>but I don't see anything wrong in this way</p>
<pre><code>push @values, $hash{$_} for grep exists $hash{$_}, @strings;
</code></pre>
<p>or</p>
<pre><code>@values = @hash{grep exists $hash{$_}, @strings};
</code></pre>
http://stackoverflow.com/questions/1701049/erlang-session-management-and-timeout/1701930#17019303Answer by Hynek -Pichi- Vychodil for Erlang: Session management and timeoutHynek -Pichi- Vychodil2009-11-09T15:52:47Z2009-11-09T15:52:47Z<p>Use <code>timer:send_after</code>, <code>timer:exit_after</code> or <code>timer:kill_after</code>. <code>timer</code> module uses <code>ets</code> for store timers and there is only one <code>gen_server</code> for whole VM. Store timer reference in each session record for timer restarting or so. It is simple and clean solution.</p>
http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1679307#16793074Answer by Hynek -Pichi- Vychodil for Help me improve this Erlang?Hynek -Pichi- Vychodil2009-11-05T09:19:40Z2009-11-07T10:11:41Z<p>If you want not be repetitive, you can inspire by mine <a href="http://stackoverflow.com/questions/394574/code-golf-new-year-edition-integer-to-roman-numeral">Code Golf New Year Edition - Integer to Roman Numeral</a> <a href="http://stackoverflow.com/questions/394574/code-golf-new-year-edition-integer-to-roman-numeral/394842#394842">contribution</a>.</p>
<pre><code>-module(n2).
-export([y/1]).
-define(D(V,S),n(N)when N>=V->[??S|n(N-V)];).
y(N)->io:format(n(N)).
?D(1000,M)?D(900,CM)?D(500,D)?D(400,CD)?D(100,C)?D(90,XC)?D(50,L)?D(40,XL)?D(10,X)?D(9,IX)?D(5,V)?D(4,IV)?D(1,I)n(0)->[10].
</code></pre>
<p>It is not nice and recommended way to write code in erlang. Macros are bad. If you can, avoid it. It is hard to debug, it introduces intermodule dependencies which are not tracked by hot code swap, and so and so. If you like more functional like approach "code is data, data is code" look at this as example:</p>
<pre><code>-module(roman).
-compile([export_all]).
toRoman(N) when is_integer(N), N >= 0 ->
toRoman(N,
[{1000, "M"}, {900, "CM"}, {500, "D"}, {400, "CD"},
{100, "C"}, {90, "XC"}, {50, "L"}, {40, "XL"},
{10, "X"}, {9, "IX"}, {5, "V"}, {4, "IV"}, {1, "I"}]).
toRoman(0, _) -> [];
toRoman(N, [{X, V} | _] = S) when N >= X ->
[V | toRoman(N - X, S)];
toRoman(N, [_ | S]) -> toRoman(N, S).
test() ->
F = fun (X) -> lists:flatten(toRoman(X)) end,
"" = F(0),
"I" = F(1),
"III" = F(3),
"VI" = F(6),
"XXIII" = F(23),
"XLIII" = F(43),
"LXXV" = F(75),
"LXXXVII" = F(87),
"XIII" = F(13),
"XXIII" = F(23),
"MMMCMXCIX" = F(3999),
"MMMCMXCVIII" = F(3998),
"MMDXXXI" = F(2531),
"CXL" = F(140),
ok.
</code></pre>
<p>Just for curiosity, your code is about 5% faster in bytecode and 5% slower in native than mine. It performs one translation in 1.2us in bytecode and in 370ns in native on Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz.</p>
<p><strong>Edit</strong>: I have not used tail recursive version because depth of recursion is very small. So I was curious if there is any performance penalty or gain from it. I can't measure any in mine algorithm in bytecode even native but interesting thing happen in original code. If I wrote original algorithm in straight forward way (not optimized for tail call) it is about 40% faster than mine in native code (one transformation in approx 250ns). There is not measurable difference in byte code. It is interesting example where tail call optimization is not worth to do.</p>
<pre><code>toRoman(N) when N >= 1000 -> "M" ++ toRoman(N - 1000);
toRoman(N) when N >= 900 -> "CM" ++ toRoman(N - 900);
toRoman(N) when N >= 500 -> "D" ++ toRoman(N - 500);
toRoman(N) when N >= 400 -> "CD" ++ toRoman(N - 400);
toRoman(N) when N >= 100 -> "C" ++ toRoman(N - 100);
toRoman(N) when N >= 90 -> "XC" ++ toRoman(N - 90);
toRoman(N) when N >= 50 -> "L" ++ toRoman(N - 50);
toRoman(N) when N >= 40 -> "XL" ++ toRoman(N - 40);
toRoman(N) when N >= 10 -> "X" ++ toRoman(N - 10);
toRoman(N) when N >= 9 -> "IX" ++ toRoman(N - 9);
toRoman(N) when N >= 5 -> "V" ++ toRoman(N - 5);
toRoman(N) when N >= 4 -> "IV" ++ toRoman(N - 4);
toRoman(N) when N >= 1 -> "I" ++ toRoman(N - 1);
toRoman(0) -> [].
</code></pre>
<p><strong>P.S.</strong>: Flattening lists is not common behavior for Erlang code. Return structure in above examples is well known as <code>io_list</code> and is usually accepted in erlang io system. You can send it directly to sockets, ports and so. If you want for example write it you can use <code>io:put_chars(IOList)</code> or <code>io:format("Result: '~s'~n", [IOList])</code>.</p>
<p><strong>EDIT2</strong>: If there is constant list as left operand of <code>++</code> operator erlang compiler will optimize list concatenation for you thus <code>["string" | L]</code> is not not necessary for speed. Resulting code is more readable and result is flattened without performance penalty. Personaly if I would be interested in performace I would use this version which is little bit repetitive but is the fastest what I know and performs one transformation in 310ns in byte code and in 210ns in native.</p>
<pre><code>toRoman(N) when N >= 1000 -> "M" ++ toRoman(N - 1000);
toRoman(N) -> toRomanC(N div 100, N rem 100).
toRomanC(0, N) -> toRomanX(N);
toRomanC(1, N) -> "C" ++ toRomanX(N);
toRomanC(2, N) -> "CC" ++ toRomanX(N);
toRomanC(3, N) -> "CCC" ++ toRomanX(N);
toRomanC(4, N) -> "CD" ++ toRomanX(N);
toRomanC(5, N) -> "D" ++ toRomanX(N);
toRomanC(6, N) -> "DC" ++ toRomanX(N);
toRomanC(7, N) -> "DCC" ++ toRomanX(N);
toRomanC(8, N) -> "DCCC" ++ toRomanX(N);
toRomanC(9, N) -> "CM" ++ toRomanX(N).
toRomanX(N) -> toRomanX(N div 10, N rem 10).
toRomanX(0, N) -> toRomanI(N);
toRomanX(1, N) -> "X" ++ toRomanI(N);
toRomanX(2, N) -> "XX" ++ toRomanI(N);
toRomanX(3, N) -> "XXX" ++ toRomanI(N);
toRomanX(4, N) -> "XL" ++ toRomanI(N);
toRomanX(5, N) -> "L" ++ toRomanI(N);
toRomanX(6, N) -> "LX" ++ toRomanI(N);
toRomanX(7, N) -> "LXX" ++ toRomanI(N);
toRomanX(8, N) -> "LXXX" ++ toRomanI(N);
toRomanX(9, N) -> "XC" ++ toRomanI(N).
toRomanI(0) -> [];
toRomanI(1) -> "I";
toRomanI(2) -> "II";
toRomanI(3) -> "III";
toRomanI(4) -> "IV";
toRomanI(5) -> "V";
toRomanI(6) -> "VI";
toRomanI(7) -> "VII";
toRomanI(8) -> "VIII";
toRomanI(9) -> "IX".
</code></pre>
http://stackoverflow.com/questions/1573158/is-this-the-way-to-go-about-building-perl-subroutines/1580031#15800311Answer by Hynek -Pichi- Vychodil for Is this the way to go about building Perl subroutines?Hynek -Pichi- Vychodil2009-10-16T19:42:52Z2009-10-28T16:30:13Z<p>I strongly dislike overly-smart functions. An overly-smart function is one whose behavior is totally changed by its parameters. Look at yours, they almost don't share any code except parameter handling. Anyway if I would do some similar this I would write something like this:</p>
<pre><code>use Carp;
{
my %ucwords = (
0 => sub {
my $str = lc( shift() );
$str =~ s/\b(\w)/\u$1/g;
return $str;
},
1 => sub {
my $str = shift;
$str =~ s/\b(\w)/\u$1/g;
return $str;
},
2 => sub {
$str = lc( shift() );
$str =~ s/(\w)\b/\u$1/g;
return $str;
},
3 => sub {
my $str = shift;
$str =~ s/(\w)\b/\u$1/g;
return $str;
}
);
sub ucwords {
my ( $str, $mode ) = @_;
croak "No overload method of ucwords() takes no arguments"
unless defined $str;
$mode = 0 unless defined $mode;
my $code = $ucwords{$mode};
croak "Invalid mode: '$mode'" unless defined $code;
goto \&$code;
}
}
</code></pre>
http://stackoverflow.com/questions/1613958/erlang-genserver-vs-stateless-module/1614758#16147582Answer by Hynek -Pichi- Vychodil for Erlang gen_server vs stateless moduleHynek -Pichi- Vychodil2009-10-23T17:09:09Z2009-10-23T17:09:09Z<p>It strongly depend of your needs and application design. When you need shared state between processes you have to use process to keep this state. Then <code>gen_server</code>, <code>gen_fsm</code> or other <code>gen_*</code> is your friend. You can avoid this design when your application is not concurrent or this design doesn't bring you some other benefits. For example break your application to processes will lead to simpler design. In other case sometimes you can choose single process design and using "stateless" modules for performance or such. "stateless" module is best choice for very simply stateless (pure functional) tasks. <code>gen_server</code> is often best choice for thinks that seems naturally "process". You must use it when you want share something between processes (using processes can be constrained by scalability or concurrency).</p>
http://stackoverflow.com/questions/1593992/how-can-i-autoincrement-a-perl-hash-value/1594244#15942444Answer by Hynek -Pichi- Vychodil for How can I autoincrement a Perl hash value?Hynek -Pichi- Vychodil2009-10-20T12:25:58Z2009-10-20T12:25:58Z<p>It's very simply, you should save your auto-increment separated from your indexes.</p>
<pre><code>use strict;
use warnings;
use Data::Dumper;
my ( %counts, %credit );
while (<DATA>) {
my ( $passport_no, $bank, $statement ) = split / /;
$credit{$passport_no}{$bank}{$statement} = $counts{$passport_no}{$bank}++;
}
print Dumper( \%credit );
__DATA__
4126897 HSBC 2948608 0
4126897 HSBC 2948609 1
4126897 barclays 2948610 0
4126897 barclays 2948611 1
4126897 barclays 2948612 2
4126897 SBI 2948613 0
4126897 SBI 2948614 1
4126897 SBI 2948615 2
</code></pre>
http://stackoverflow.com/questions/1575936/how-can-i-check-that-a-column-in-a-tab-delimited-file-has-valid-values/1579866#15798664Answer by Hynek -Pichi- Vychodil for How can I check that a column in a tab-delimited file has valid values?Hynek -Pichi- Vychodil2009-10-16T19:13:23Z2009-10-16T19:13:23Z<p>It's very easy work for Perl:</p>
<pre><code>perl -F\\t -ane'die"Invalid!"if@F!=8||$F[3]!~/^-?\d+$/' CHECKME
</code></pre>
http://stackoverflow.com/questions/1559701/cms-in-functional-programming-language/1560386#15603861Answer by Hynek -Pichi- Vychodil for CMS in functional programming languageHynek -Pichi- Vychodil2009-10-13T13:50:42Z2009-10-13T13:50:42Z<p>Erlang attempt is <a href="http://c2.com/cgi/wiki?ErlangWiki" rel="nofollow">Wikie</a>.</p>
http://stackoverflow.com/questions/1558625/how-can-i-maintain-the-order-of-keys-i-add-to-a-perl-hash/1559555#15595554Answer by Hynek -Pichi- Vychodil for How can I maintain the order of keys I add to a Perl hash?Hynek -Pichi- Vychodil2009-10-13T11:07:13Z2009-10-13T11:07:13Z<p>Simply:</p>
<pre><code>my (%count, @order);
while(<DATA>) {
chomp;
push @order, $_ unless $count{$_}++;
}
print "$_ $count{$_}\n" for @order;
__DATA__
a
b
e
a
c
d
a
c
d
b
</code></pre>
http://stackoverflow.com/questions/1349604/what-is-the-fastest-way-to-read-10-gb-file-from-the-disk/1352544#13525445Answer by Hynek -Pichi- Vychodil for What is the fastest way to read 10 GB file from the disk?Hynek -Pichi- Vychodil2009-08-29T22:23:32Z2009-10-12T17:52:36Z<p>Most of the time you will be I/O bound not CPU bound, thus just read this file through normal Perl I/O and process it in single thread. Unless you prove that you can do more I/O than your single CPU work, don't waste your time with anything more. Anyway, you should ask: Why on Earth is this in one huge file? Why on Earth don't they split it in a reasonable way when they generate it? It would be magnitude more worth work. Then you can put it in separate I/O channels and use more CPU's (if you don't use some sort of RAID 0 or <a href="http://en.wikipedia.org/wiki/Network-attached%5Fstorage" rel="nofollow">NAS</a> or ...).</p>
<p>Measure, don't assume. Don't forget to flush caches before each test. Remember that serialized I/O is a magnitude faster than random.</p>
http://stackoverflow.com/questions/1510305/how-can-i-get-a-list-of-all-files-with-a-certain-extension-from-a-specific-direct/1510641#15106411Answer by Hynek -Pichi- Vychodil for How can I get a list of all files with a certain extension from a specific directory?Hynek -Pichi- Vychodil2009-10-02T16:34:33Z2009-10-02T16:34:33Z<p>Just use this:</p>
<pre><code>my @files = map {-f && s{\.txt\z}{} ? $_ : ()} readdir DIR;
</code></pre>
http://stackoverflow.com/questions/1490971/how-can-i-ask-the-user-to-re-enter-input-when-they-enter-invalid-input-in-perl/1491843#14918433Answer by Hynek -Pichi- Vychodil for How can I ask the user to re-enter input when they enter invalid input, in Perl?Hynek -Pichi- Vychodil2009-09-29T10:50:45Z2009-09-29T23:44:22Z<p>recursive</p>
<pre><code>sub select_fruit {
print "Enter a number to select (1) Apple (2) Mango (3) grapes:"
$value=<STDIN>;
if($value =~ /[^1-3]/ ) {
print "The input is not valid!";
print "Do you want to continue selecting a fruit again (Y or N)?";
$choice = <STDIN>;
if( $choice eq "y") {
$value = select_fruit();
} else {
exit;
}
}
return $value;
}
</code></pre>
<p>goto - Tail Call Optimization (TCO)</p>
<pre><code>sub select_fruit {
print "Enter a number to select (1) Apple (2) Mango (3) grapes:"
$value=<STDIN>;
if($value =~ /[^1-3]/ ) {
print "The input is not valid!";
print "Do you want to continue selecting a fruit again (Y or N)?";
$choice = <STDIN>;
if( $choice eq "y") {
goto &select_fruit;
} else {
exit;
}
}
return $value;
}
</code></pre>
<p>or redo</p>
<pre><code>sub select_fruit {
SELECT_FRUIT: {
print "Enter a number to select (1) Apple (2) Mango (3) grapes:"
$value=<STDIN>;
if($value =~ /[^1-3]/ ) {
print "The input is not valid!";
print "Do you want to continue selecting a fruit again (Y or N)?";
$choice = <STDIN>;
if( $choice eq "y") {
redo SELECT_FRUIT; # same as goto SELECT_FRUIT;
} else {
exit;
}
}
return $value;
}
}
</code></pre>
<p>and so ...</p>
http://stackoverflow.com/questions/1490745/why-is-perl-the-best-choice-for-most-string-manipulation-tasks/1491364#14913645Answer by Hynek -Pichi- Vychodil for Why is Perl the best choice for most string manipulation tasks?Hynek -Pichi- Vychodil2009-09-29T08:55:23Z2009-09-29T08:55:23Z<p>Because It is what is perl made for. Because Perl is expressive, powerful and fast. I have beaten many times specialized products with small and dirty script in perl written in few minutes. For example, outer join and large join vs. MySQL (just because can't do merge join), ETL processing vs. Java Hadoop (because I have years experience to write it effectively and perl IO layer is just great) and so and so.</p>
http://stackoverflow.com/questions/1476117/speeding-up-erlang-indexation-function/1476851#1476851-3Answer by Hynek -Pichi- Vychodil for Speeding up Erlang indexation functionHynek -Pichi- Vychodil2009-09-25T11:47:16Z2009-09-28T21:01:31Z<p>Just one question: WTF are you trying do?</p>
<p>I just can't found what is practical purpose of this function. I think you do something odd. It seems that you just improved from O(N*M^2) to O(N*M*logM) but it is still very bad.</p>
<p><strong>EDIT</strong>:</p>
<p>When I synthesize what is goal, It seems that you are trying use Monte Carlo method to determine probabilities of team's 'finishing positions' in English Premiere League. But I'm still not sure. You can determine most probable position <code>[1,1,2] -> 1</code> or as fractional number as some sort of average 1.33 - for example this last one can be achieve with less effort than others.</p>
<p>In functional programing languages data structures are more important that in procedural or OO ones. They are more about work-flow. You will do this and than this and than ... In functional language as Erlang you should think in manner, I have this input and I want that output. Required output I can determine from this and this and so. There may be not necessary have list of things as you used to be in procedural approaches.</p>
<p>In procedural approaches you are used to use arrays for storage with constant random access. List is not that such thing. There are not arrays in Erlang where you can write (even array module which is balanced tree in reality). You can use tuple or binary for read only array but no one read write. I can write a lot about that there doesn't exist data structure with constant access time at all (from RAM, through arrays in procedural languages to HASH maps) but there is not enough space to explain it in detail here (from RAM technology, through L{1,2,3} CPU caches to necessity increase HASH length when number of keys increase and key HASH computation dependency of key length).</p>
<p>List is data structure which have O(N) random access time. It is best structure for store data which you want take one by one in same order as stored in list. For small N it can be capable structure for random access for small N when corresponding constant is small. For example when N is number of teams (20) in your problem it can be faster than O(logN) access to some sort of tree. But you must take care how big your constant is.</p>
<p>One of common component of algorithms are Key-Value lookups. There can be used arrays as supporting data structure in procedural world in some circumstances. Key must be integer number, space of possible key must not be to sparse and so. List doesn't serve as its substitution well for this purpose except for very small N here. I learn that best way how write functional code is avoid Key-Value lookups where is unnecessary. It often needs rearrange work-flow or refactoring data structures and so. Sometimes it looks like flip over problem solution like glove.</p>
<p>If I ignore that your probability model is wrong. From information you provide it seems that in your model team's season points are independent random events which is not true of course. There is impossible that all teams have some high amount of point, 82 for example just because there is some limit of points taken by all teams in one season. So forgot for this for now. Then I will simulate one 'path' - season and take result in form <code>[{78,'Liverpool'}, {81,'Man Utd'}, ...]</code>, then I can sort it using lists:sort without loosing information which team is where. Results I would collect using iteration by path. For each path I would iterate over sorted simulation result and collect it in dictionary where team is key (constant and very cheap hash computation from atom and constant storage because key set is fixed, there is possibility to use tuples/records but seems like premature optimization). Value can be tuple of size 20 and position in tuple is final position and value is count of it.</p>
<p>Something like:</p>
<pre><code>% Process simulation results.
% Results = [[{Points, Team}]]
process(Results) ->
lists:foldl(fun process_path/2,
dict:from_list([{Team, {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}} ||
Team <- ['Liverpool', 'Man Utd', ...]]),
Results).
% process simulation path result
process_path(R, D) ->
process_path(lists:reverse(lists:sort(R)), D, 1).
process_path([], _, D) -> D;
process_path([{_, Team}|R], D, Pos) ->
process_path(R, update_team(Team, Pos, D), Pos + 1).
% update team position count in dictionary
update_team(Team, Pos, D) ->
dict:update(Team, fun(T) -> add_count(T, Pos) end, D).
% Add final position Pos to tuple T of counts
add_count(T, P) -> setelement(P, T, element(P, T) + 1).
</code></pre>
<p>Notice that there is nothing like <code>lists:index_of</code> or lists:nth function. Resulting complexity will look like O(N*M) or O(N*M*logM) for small number M of Teams, but real complexity is O(N*M^2) for O(M) <code>setelement/3</code> in <code>add_count/2</code>. For bigger M you should change <code>add_count/2</code> to some more reasonable.</p>
http://stackoverflow.com/questions/1459152/erlang-listsindexof-function/1461888#14618881Answer by Hynek -Pichi- Vychodil for Erlang lists:index_of function?Hynek -Pichi- Vychodil2009-09-22T18:44:27Z2009-09-22T18:44:27Z<p>This function is very uncommon for Erlang and this is may be reason why it is not in standard library. No one of experienced Erlang programmers need it and is discourage to use algorithms using this function. When someone needs it, can write for own purpose but this very rare occasions are not reason to include it to <code>stdlib</code>. Design your data structures in proper way instead of ask for this function. In most cases need of this function indicates error in design.</p>
http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1435069#14350691Answer by Hynek -Pichi- Vychodil for How can I call a Perl class with a shorter name?Hynek -Pichi- Vychodil2009-09-16T19:44:41Z2009-09-16T19:44:41Z<p>It is almost exactly same approach as <code>aliased</code> but using standard Perl module:</p>
<pre><code>use constant MakeJobSH => 'Galaxy::SGE::MakeJobSH';
my $job = MakeJobSH->new();
</code></pre>
http://stackoverflow.com/questions/1390296/code-golf-email-address-validation-without-regular-expressions/1393945#13939451Answer by Hynek -Pichi- Vychodil for Code Golf: Email Address Validation without Regular ExpressionsHynek -Pichi- Vychodil2009-09-08T13:11:09Z2009-09-08T13:11:09Z<p><strong>Erlang</strong> 266 chars:</p>
<pre><code>-module(cg_email).
-export([test/0]).
%%% golf code begin %%%
-define(E,when X>=$a,X=<$z;X>=$A,X=<$Z).
-define(I(Y,Z),Y([X|L])?E->Z(L);Y(_)->false).
-define(L(Y,Z),Y([X|L])?E;X>=$0,X=<$9;X=:=$.;X=:=$_->Z(L);Y(_)->false).
?L(e,m).
m([$@|L])->a(L);?L(m,m).
?I(a,i).
i([$.|L])->l(L);?I(i,i).
?I(l,c).
?I(c,g).
g([])->true;?I(g,g).
%%% golf code end %%%
test() ->
true = e("b@w.org"),
false = e("b@c@d.org"),
false = e("test@%.org"),
false = e("j_r@x.c.il"),
true = e("r..t@x.tw"),
false = e("test@org"),
false = e("s%p@m.org"),
true = e("j_r@x.mil"),
false = e("foo@a%.com"),
ok.
</code></pre>
http://stackoverflow.com/questions/1351990/erlang-what-are-strategies-for-dealing-with-huge-sasl-crash-dumps/1352505#13525050Answer by Hynek -Pichi- Vychodil for Erlang: What are strategies for dealing with huge SASL crash dumps?Hynek -Pichi- Vychodil2009-08-29T22:01:39Z2009-08-29T22:01:39Z<p>Just configure your logger.</p>
http://stackoverflow.com/questions/1352407/erlang-receive-statement-with-multiple-timeout-clauses/1352495#13524953Answer by Hynek -Pichi- Vychodil for Erlang: receive statement with multiple timeout clausesHynek -Pichi- Vychodil2009-08-29T21:56:57Z2009-08-29T21:56:57Z<p>No, you can't. Just decide what to do before receive.</p>
<pre><code>foo(Timout1, Timeout2) ->
{Timeout, ToDo} = if Timeout1 < Timeout2 -> {Timout1, fun doSomething1/0};
true -> {Timeout2, fun doSomething2/0} end,
receive
after Timeout -> ToDo()
end.
</code></pre>
<p>or</p>
<pre><code>foo(Timout1, Timeout2) when Timeout1 < Timeout2 ->
receive
after Timeout1 -> doSomething1()
end;
foo(_, Timeout2) ->
receive
after Timeout2 -> doSomething2()
end.
</code></pre>
<p>etc.</p>
http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1349233#13492337Answer by Hynek -Pichi- Vychodil for What is the best functional language for scientific programmingHynek -Pichi- Vychodil2009-08-28T20:40:48Z2009-08-28T20:40:48Z<p>After Erlang and OCaml you should also look at <a href="http://www.jsoftware.com/" rel="nofollow">J</a>. It is ultimate scientific language.</p>
http://stackoverflow.com/questions/1320900/a-message-queue-model-in-erlangcomet-chat/1321230#13212301Answer by Hynek -Pichi- Vychodil for A message queue model in Erlang(Comet chat)?Hynek -Pichi- Vychodil2009-08-24T08:59:40Z2009-08-24T08:59:40Z<p>For me seems simplest way to have one process/message queue per user connected to chat (even have more than one chat window). Than keep track of timestamp of last message in chat window application and when reconnect ask for messages after this timestamp. Message queue process should keeps messages only for reasonable time span. In this scenario reconnecting is all up to client. In another scenario you can send some sort of hart beats from server but it seems less reliable for me. It is not solving issue with other reason of disconnection than timeout. There are many variant of server side queuing as one queue per client, per user, per chat room, per ...</p>
http://stackoverflow.com/questions/1298035/how-do-i-use-symbolic-references-in-perl/1298873#12988730Answer by Hynek -Pichi- Vychodil for How do I use symbolic references in Perl?Hynek -Pichi- Vychodil2009-08-19T09:56:45Z2009-08-19T10:41:57Z<pre><code>no strict 'refs';
print "$name is @$name\n";
</code></pre>
http://stackoverflow.com/questions/1231683/how-can-i-loop-through-a-list-of-functions-in-perl/1274006#12740061Answer by Hynek -Pichi- Vychodil for How can I loop through a list of functions in Perl?Hynek -Pichi- Vychodil2009-08-13T19:11:33Z2009-08-13T19:11:33Z<p>You can use <code>can</code></p>
<pre><code>my @funcs = qw (a b c)
foreach $func (@funcs) {
Foo::Bar::Stix->can($func)->(%args)
}
</code></pre>
http://stackoverflow.com/questions/1230782/how-to-count-the-number-of-characters-in-a-file-once-the-starting-point-has-been/1232260#12322600Answer by Hynek -Pichi- Vychodil for How to count the number of characters in a file once the starting point has been figured out?Hynek -Pichi- Vychodil2009-08-05T09:58:11Z2009-08-05T09:58:11Z<p>There is not still clarification what program should do thus there is yet another implementation of something what author may be don't want.</p>
<pre><code>#!/usr/bin/env perl
use strict;
use warnings;
my ( $mark, $length );
while (<DATA>) {
if (/^([0-9]-\w+)/) {
print "$length after $mark" if $mark;
( $mark, $length ) = $_;
next;
}
chomp; # may be
$length += length;
}
print "$length after $mark" if $mark;
__DATA__
1-thisthestartingpoint
COUNTTHENUMBEROFCHARACTERSPRESENTINTHISLINEBEFORETHENEXTSTARTINGPOINT
COUNTTHENUMBEROFCHARACTERSPRESENTINTHISLINEBEFORETHENEXTSTARTINGPOINT
COUNTTHENUMBEROFCHARACTERSPRESENTINTHISLINEBEFORETHENEXTSTARTINGPOINT
2-nextstartingpoint
ETCETCETCETCDONOTCOUNTTHENUMBEROFCHARACTERSPRESENTINTHISLINE
</code></pre>
http://stackoverflow.com/questions/1222084/how-do-i-create-a-temp-filename-in-erlang/1223075#12230752Answer by Hynek -Pichi- Vychodil for How do I create a temp filename in Erlang?Hynek -Pichi- Vychodil2009-08-03T15:44:07Z2009-08-03T15:44:07Z<p>You can also use <code>os:cmd("mktemp")</code></p>
http://stackoverflow.com/questions/1215432/merge-sort-in-haskell/1217346#12173463Answer by Hynek -Pichi- Vychodil for Merge sort in HaskellHynek -Pichi- Vychodil2009-08-01T19:55:15Z2009-08-02T19:44:20Z<p>Try this version:</p>
<pre><code>mergesort :: [String] -> [String]
mergesort = mergesort' . map wrap
mergesort' :: [[String]] -> [String]
mergesort' [] = []
mergesort' [xs] = xs
mergesort' xss = mergesort' (merge_pairs xss)
merge_pairs :: [[String]] -> [[String]]
merge_pairs [] = []
merge_pairs [xs] = [xs]
merge_pairs (xs:ys:xss) = merge xs ys : merge_pairs xss
merge :: [String] -> [String] -> [String]
merge [] ys = ys
merge xs [] = xs
merge (x:xs) (y:ys)
= if x > y
then y : merge (x:xs) ys
else x : merge xs (y:ys)
wrap :: String -> [String]
wrap x = [x]
</code></pre>
<ol>
<li>Bad idea is splitting list first. Instead of it just make list of one member lists. Haslell is lazy, it will be done in right time.</li>
<li>Then merge pairs of lists until you have only one list.</li>
</ol>
<p><strong>Edit</strong>: Someone who down-vote this answer: above merge sort implementation is same algorithm as used in ghc Data.List.sort except with cmp function removed. Well ghc authors are may be wrong :-/</p>
http://stackoverflow.com/questions/1822405/convert-nested-lists-into-a-list-of-tuples/1834734#1834734Comment by Hynek -Pichi- Vychodil on Convert nested Lists into a List of TuplesHynek -Pichi- Vychodil2009-12-03T09:21:28Z2009-12-03T09:21:28ZI like spaces when improve readability ;-)http://stackoverflow.com/questions/1820241/erlang-breaking-out-of-listsforeach-loop/1820571#1820571Comment by Hynek -Pichi- Vychodil on Erlang : Breaking out of lists:foreach "loop"Hynek -Pichi- Vychodil2009-11-30T17:27:04Z2009-11-30T17:27:04ZUsing exception throw is supposed to be "non local return" from function. Usage in this answer is valid throw usage and I don't understand why it is down-voted then.http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programming/1787229#1787229Comment by Hynek -Pichi- Vychodil on pitfalls/disadvantages of functional programmingHynek -Pichi- Vychodil2009-11-24T17:52:06Z2009-11-24T17:52:06Z@CrazyJugglerDrummer: I think that whole article is about this ;-)http://stackoverflow.com/questions/1775486/how-do-i-create-a-cyclic-graph-of-immutable-objects-in-perl-and-moose/1776367#1776367Comment by Hynek -Pichi- Vychodil on How do I create a cyclic graph of immutable objects in Perl and Moose?Hynek -Pichi- Vychodil2009-11-21T22:45:39Z2009-11-21T22:45:39ZImmutable and cyclic is oxymoron. It's way how immutable languages cope with it. In Erlang for example you can't make any cyclic data structure. Involve immutability is way how to prevent cycles and is reason why immutability involve.http://stackoverflow.com/questions/1490971/how-can-i-ask-the-user-to-re-enter-input-when-they-enter-invalid-input-in-perl/1491843#1491843Comment by Hynek -Pichi- Vychodil on How can I ask the user to re-enter input when they enter invalid input, in Perl?Hynek -Pichi- Vychodil2009-11-20T12:52:38Z2009-11-20T12:52:38ZYes, goto (and redo) version will prevent overloading the stack.http://stackoverflow.com/questions/1710557/perl-getting-value-out-of-a-hash-using-map/1710592#1710592Comment by Hynek -Pichi- Vychodil on perl: getting value out of a hash using mapHynek -Pichi- Vychodil2009-11-10T20:56:52Z2009-11-10T20:56:52ZHash slice will make array with undefs where string is not presented in hash.http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1683031#1683031Comment by Hynek -Pichi- Vychodil on Help me improve this Erlang?Hynek -Pichi- Vychodil2009-11-09T16:12:55Z2009-11-09T16:12:55Z@rvinrding: It seems that it doesn't make measurable improvement in R13B02. It looks like that compiler does it for you magically.http://stackoverflow.com/questions/1690053/how-can-there-be-only-one-way-to-do-it-perl-vs-python/1690312#1690312Comment by Hynek -Pichi- Vychodil on How can there be only one way to do it (Perl vs Python)Hynek -Pichi- Vychodil2009-11-07T08:48:04Z2009-11-07T08:48:04ZGo Robert, go! Why I can't add more than one vote.http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1683031#1683031Comment by Hynek -Pichi- Vychodil on Help me improve this Erlang?Hynek -Pichi- Vychodil2009-11-06T17:02:32Z2009-11-06T17:02:32ZNice, It is really fast in bytecode (2x to mine) and comparable to native of straight forward approach (approx 15% slower).http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1678618#1678618Comment by Hynek -Pichi- Vychodil on Help me improve this Erlang?Hynek -Pichi- Vychodil2009-11-05T10:23:02Z2009-11-05T10:23:02ZAre you sure? I'm not sure. Can you show us benchmark result for this example?http://stackoverflow.com/questions/1643717/why-does-an-undef-value-become-a-valid-array-reference-in-perl/1643738#1643738Comment by Hynek -Pichi- Vychodil on Why does an undef value become a valid array reference in Perl?Hynek -Pichi- Vychodil2009-10-29T17:48:11Z2009-10-29T17:48:11Z... unless it bites you when you doesn't like it.http://stackoverflow.com/questions/1604584/how-do-i-return-nothing-from-a-subroutine/1604659#1604659Comment by Hynek -Pichi- Vychodil on How do I return nothing from a subroutine?Hynek -Pichi- Vychodil2009-10-22T10:22:57Z2009-10-22T10:22:57ZIf you would like be more verbose you can explicitly write return (); to say: "Really just return nothing".http://stackoverflow.com/questions/406258/which-versions-of-perl-are-you-using/406454#406454Comment by Hynek -Pichi- Vychodil on Which versions of Perl are you using?Hynek -Pichi- Vychodil2009-10-15T12:11:05Z2009-10-15T12:11:05ZWe have >150kSLOC project and there we triggered above mentioned regressions. It doesn't contain new features. So those issues fixed months ago.http://stackoverflow.com/questions/1562235/mochijson2-or-mochijson/1562516#1562516Comment by Hynek -Pichi- Vychodil on mochijson2 or mochijsonHynek -Pichi- Vychodil2009-10-14T15:30:41Z2009-10-14T15:30:41ZRegardless that your explanation of iodata there is yet another issue. "foo" is not valid JSON and can't be translated to valid JSON.http://stackoverflow.com/questions/1185822/how-do-i-create-or-test-for-nan-or-infinity-in-perl/1187210#1187210Comment by Hynek -Pichi- Vychodil on How do I create or test for NaN or infinity in Perl?Hynek -Pichi- Vychodil2009-10-06T14:39:28Z2009-10-06T14:39:28ZOne who down vote this answer, let you leave post if you not feel ashamed. This way works absolutely perfect in perl. If $a is number than string representation will be 'nan' or 'inf' only if it is NaN or Inf value.