Hynek -Pichi- Vychodil

3,554
Reputation
574 views

Registered User

Name Hynek -Pichi- Vychodil
Member for 11 months
Seen yesterday
Website
Location Brno, Czech Republic
Age 34
Software developer specialized in BI using Perl. Interested in Erlang, Haskell, OCaml, Lisp, ...
1d
revised Lisp Flavored Erlang - Messaging primitives
fixed code example
2d
comment pitfalls/disadvantages of functional programming
@CrazyJugglerDrummer: I think that whole article is about this ;-)
Nov
21
comment How do I create a cyclic graph of immutable objects in Perl and Moose?
Immutable 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.
Nov
20
comment How can I ask the user to re-enter input when they enter invalid input, in Perl?
Yes, goto (and redo) version will prevent overloading the stack.
Nov
11
accepted Erlang: Session management and timeout
Nov
10
answered perl: getting value out of a hash using map
Nov
10
comment perl: getting value out of a hash using map
Hash slice will make array with undefs where string is not presented in hash.
Nov
9
revised why doesn’t this erlang code work???
improved title
Nov
9
comment Help me improve this Erlang?
@rvinrding: It seems that it doesn't make measurable improvement in R13B02. It looks like that compiler does it for you magically.
Nov
9
answered Erlang: Session management and timeout
Nov
7
revised Help me improve this Erlang?
added 1812 characters in body
Nov
6
comment Help me improve this Erlang?
Nice, It is really fast in bytecode (2x to mine) and comparable to native of straight forward approach (approx 15% slower).
Nov
5
accepted Help me improve this Erlang?
Nov
5
revised Help me improve this Erlang?
added 338 characters in body
Nov
5
revised Help me improve this Erlang?
deleted 2 characters in body; added 6 characters in body
Nov
5
revised Help me improve this Erlang?
added 563 characters in body; added 778 characters in body
Nov
5
revised Help me improve this Erlang?
added 218 characters in body
Nov
5
comment Help me improve this Erlang?
Are you sure? I'm not sure. Can you show us benchmark result for this example?
Nov
5
revised Help me improve this Erlang?
added 1234 characters in body
Nov
5
answered Help me improve this Erlang?
Nov
4
revised How do I split strings in Erlang?
added 46 characters in body
Oct
29
comment Why does an undef value become a valid array reference in Perl?
... unless it bites you when you doesn't like it.
Oct
23
accepted Erlang gen_server vs stateless module
Oct
23
answered Erlang gen_server vs stateless module
Oct
22
awarded  Popular Question
Oct
22
comment How do I return nothing from a subroutine?
If you would like be more verbose you can explicitly write return (); to say: "Really just return nothing".
Oct
20
accepted How can I autoincrement a Perl hash value?
Oct
20
answered How can I autoincrement a Perl hash value?
Oct
16
answered Is this the way to go about building Perl subroutines?
Oct
16
answered How can I check that a column in a tab-delimited file has valid values?
Oct
15
comment Which versions of Perl are you using?
We have >150kSLOC project and there we triggered above mentioned regressions. It doesn't contain new features. So those issues fixed months ago.
Oct
14
comment mochijson2 or mochijson
Regardless that your explanation of iodata there is yet another issue. "foo" is not valid JSON and can't be translated to valid JSON.
Oct
13
answered CMS in functional programming language
Oct
13
answered How can I maintain the order of keys I add to a Perl hash?
Oct
6
comment How do I create or test for NaN or infinity in Perl?
One 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.
Oct
2
answered How can I get a list of all files with a certain extension from a specific directory?
Sep
30
comment How can I ask the user to re-enter input when they enter invalid input, in Perl?
Copy paste and it serves me right :(
Sep
29
comment Why is Perl the best choice for most string manipulation tasks?
There is impossible to write Text.ParserCombinators.PArrow module in perl? It is new for me.
Sep
29
answered How can I ask the user to re-enter input when they enter invalid input, in Perl?
Sep
29
answered Why is Perl the best choice for most string manipulation tasks?
Sep
29
comment How can I ask the user to re-enter input when they enter invalid input, in Perl?
Performance? With user input? ROFLAMO!
Sep
28
revised Speeding up Erlang indexation function
added 1 characters in body
Sep
28
comment Speeding up Erlang indexation function
You can obtain exactly this result using: [{Team, lists:zip(lists:seq(1,20), [X/N||X<-tuple_to_list(Prob)])}||{Team, Prob}<-dict:to_list(process([simulation()||X<-lists:seq(1,N)]))] where N is number of simulations and simulation is function which returns [{Team, Points}]
Sep
27
revised Speeding up Erlang indexation function
added 28 characters in body
Sep
26
revised Speeding up Erlang indexation function
added 230 characters in body
Sep
26
revised Speeding up Erlang indexation function
added 22 characters in body
Sep
26
revised Speeding up Erlang indexation function
added 4327 characters in body; added 70 characters in body; deleted 5 characters in body
Sep
25
revised Speeding up Erlang indexation function
added 80 characters in body; added 7 characters in body
Sep
25
answered Speeding up Erlang indexation function
Sep
23
comment Erlang lists:index_of function?
@Justin: Well, It means that mine response is exactly as I wrote. Solution is Just do it in different way and you doesn't need this function. Solution also performs better.