Posts by DeMarco • 518 points
7 posts
-
0
votes1
answer332
viewsQ: Problem when doing String Code and Discovery
I would like to know why such methods do not behave in a way that: long2str(str2long(String s)) == String s public long[] str2long(String s){ final byte[] authBytes =…
-
6
votes2
answers189
views -
2
votes2
answers123
viewsA: How to use two Python text decorators?
Just define the functions: def makebold(fn): def pacote(): return "<b>" + fn() + "</b>" return pacote def makeitalic(fn): def pacote(): return "<i>" + fn() + "</i>" return…
-
7
votes1
answer266
viewsQ: Finding Unknown Heroes in Stack Overflow using Data Explorer
I know there’s no Unknown Hero here at SOPT, but I know there are several at SOEN. My intention is to sort the percentage of responses accepted without votes of the people who hold this medal. And…
-
13
votes2
answers477
views -
6
votes1
answer162
viewsQ: Code-golf - the description is the program
It will be accepted at most a include (or Resources file etc) that is native to the language (which is probably what will make all the interesting part) and the description of the problem shall be…
language-independentasked DeMarco 518 -
3
votes2
answers3335
viewsQ: Print special characters on windows console
How to print special characters like 'is' and 'ç' on the windows console (printf)?