46,727 reputation
1059117
bio website piotrl.pl
location Poland
age 21
visits member for 4 years, 8 months
seen 3 hours ago
stats profile views 4,786


1d
comment Programming tutorials that do not use an IDE (C# & C++)
"i feel like i will be learning so much more on how things work" No.
May
23
awarded  Nice Answer
May
22
awarded  Nice Answer
May
21
awarded  Enlightened
May
21
awarded  Nice Answer
May
17
comment Calling Haskell from C#
Pointers: chapters 4.13 and 8.2 from GHC user guide, haskell.org/haskellwiki/Calling_Haskell_from_C
May
11
comment Check/modify iterator “constness”
@BenVoigt Being clear on what this does?
May
10
comment Crash when deleting nodes in a circular list
I have a suggestion. Don't implement circular lists, especially in this way.
May
10
comment Virtual methods & classes
Don't use throw specifiers
May
8
revised HUnit testing with file dependent tests
Actually scratch that no need for IO here
May
8
answered HUnit testing with file dependent tests
May
4
comment How should I conceal helper classes from the rest of the world?
Reserved means you're not allowed to use identifiers like that.
May
4
comment How should I conceal helper classes from the rest of the world?
Yup, detail. And don't do using namespace detail, it kind of defeats the point.
May
1
comment What is an example of a snippet that computes something useful, that is both much smaller in Haskell AND beats C++ in performance?
SLOC comparisons are useless. Performance comparisons are mostly useless. This question is not useful.
May
1
awarded  Enlightened
May
1
awarded  Nice Answer
May
1
comment How important is standards-compliance?
"For a language like C++ the existence of a standard is a must." Not really. It'd be better off with a spec, a reference implementation and no committee.
Apr
29
comment Haskell pointless performance - efficiently map multiple functions to the same data
It's pointless because both versions will go over the list twice. Use fold to get min/max in one go.
Apr
26
comment how can i get output result in ascending order from two array in c++
ftr this is not how you lift your question ban
Apr
19
comment Global variables in Haskell
What you want is a running sum/accumulator, i.e. use scanl. For the literal question about global variables, read a Haskell book, because that's not how this works.