| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 8 months |
| seen | Apr 28 at 7:19 | |
| stats | profile views | 25 |
|
Mar 18 |
comment |
Connecting A Haskell Program to a Python Program via Pipelines (in Python) If using the PIPE is not a must, I would use a messaging library like zeromq for inter-program communication. |
|
Mar 18 |
awarded | Critic |
|
Feb 25 |
comment |
Using List Comprehension in place of Recursion It might help to think of the list comprehension as foreach loop where you can apply filter and computation to each element. See do syntax for list monad in this wiki haskell.org/haskellwiki/List_comprehension |
|
Feb 19 |
awarded | Nice Question |
|
Feb 19 |
accepted | Is (>>) supposed to discard all left-side output? |
|
Feb 19 |
comment |
Is (>>) supposed to discard all left-side output? Thank you too, To bad that I can only pick one accepted answer. |
|
Feb 19 |
comment |
Is (>>) supposed to discard all left-side output? Wow! what a clear (and very fast) answer. Thanks |
|
Feb 19 |
asked | Is (>>) supposed to discard all left-side output? |
|
Feb 15 |
accepted | iterate list creation from IO Int, How to? |
|
Feb 7 |
comment |
iterate list creation from IO Int, How to? Ah! I do forget that IO is not just a monad but it also not pure. So this make sense on why it is different. |
|
Feb 7 |
awarded | Commentator |
|
Feb 7 |
comment |
iterate list creation from IO Int, How to? Don't know if I get this all correct. Can I conclude that there is no such lazy list generation that mimic iterate for IO monad? Just curious, if list is a kind of monad, why not all monad have this characteristic? |
|
Feb 7 |
comment |
iterate list creation from IO Int, How to? Thanks, I will try to see if this can be adopted. I have no idea on terminate condition for this puzzle. stop might don't make any sense. The only information I have is I have to keep requesting with value form last returned.
I think the ideal solution should be lazy IO that I can see each return value pop up from putStr even if it is infinite list. |
|
Feb 7 |
revised |
iterate list creation from IO Int, How to? typo, always typo |
|
Feb 6 |
revised |
iterate list creation from IO Int, How to? add small clearification |
|
Feb 6 |
comment |
iterate list creation from IO Int, How to? @sabauma I don't know but I think so. This is like a puzzle game. You can start from the first quest here |
|
Feb 6 |
asked | iterate list creation from IO Int, How to? |
|
Feb 4 |
revised |
Generating All Possible Paths in Haskell not sure if he ask a beginner question. |
|
Feb 4 |
answered | Generating All Possible Paths in Haskell |
|
Feb 3 |
accepted | apply window function to get a recursive list, how can I do? |