Rafał Dowgird

4,055
reputation
799 views

Registered User

name Rafał Dowgird
member for 1 year
seen 10 hours ago
website
location Warsaw
age 35
I am a software developer. To contact me, leave a comment at praptak.blogspot.com or email me @gmail.com. My username there is dowgird.
10h
comment Why are so many algorithm problems asked in interviews?
The gist of this answer is not that googling is wrong. It is not even the possibility of a copyright violation. What is wrong: 1. copying without understanding and 2. being unable to come up with solutions that cannot be googled.
17h
awarded  
1d
answered MVC model in MFC
2d
comment Convince me to switch from YUI 2 to YUI 3
About those widgets that you need to get going on 3 - care to elaborate?
Dec
18
revised What is needed to get Delphi back on top?
Capitalization fix
Dec
18
comment What kind of background would you need to write a programming language?
"Fluent in two separate programming languages" - that's too weak IMHO. I'd say at least one language from each major paradigm (static/dynamic, functional/imperative/declarative). Maybe two languages might cut it, but not Java and C - they are too close to each other.
Dec
17
answered Strassen’s algorithm for matrix multiplication
Dec
16
comment Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
Yeah, "Madame"/"Fellow" has the advantage of being obvious :)
Dec
16
comment More explanation on Lexical Binding in Closures?
It is a bit misleading to say that closure names are bound to values. In some languages (e.g. Smalltalk) they are bound to references. In Smalltalk two closures can "close" a local variable x and they will see each other's assignments to x.
Dec
11
answered unique() for arrays in javascript
Dec
11
answered Pattern for radio buttons, each selecting a “set” of other controls?
Dec
10
revised count subtitled grouping in excel please…
tags: +vba +excel-vba
Dec
10
accepted Using finite automata as keys to a container
Dec
9
accepted Is there a way in .Net to programatically generate a DTD from an existing XML file?
Dec
9
revised Multiple variables in Python ‘with’ statement
added 131 characters in body
Dec
8
revised Using finite automata as keys to a container
added 117 characters in body
Dec
8
answered Using finite automata as keys to a container
Dec
6
awarded  Mortarboard
Dec
6
revised Dynamically Refreshed Pages produced by Python
edited tags
Dec
6
comment Dynamically Refreshed Pages produced by Python
"Is there a way to submit the form values to a new instance of my script each time[...]?" I believe this is exactly the way that CGI works - a new process for each request.
Dec
6
revised Dynamically Refreshed Pages produced by Python
added 233 characters in body
Dec
6
comment Dynamically Refreshed Pages produced by Python
I'll try - in a short time.
Dec
6
answered Dynamically Refreshed Pages produced by Python
Dec
5
comment Maintaining network integrity in peer-to-peer network
Fair enough. I am not even 100% sure how serious the Netsukuku project is, it just seemed vaguely similar to what you're looking for.
Dec
4
answered Maintaining network integrity in peer-to-peer network
Dec
3
comment Subgraph algorithm
A trivial solution still exists, even with the condition above. Any path of the form <r, ...., v, ..., d> satisfies the conditions for the subgraph.
Dec
3
comment Website Crash with millions of HIT
Before even trying to find the root cause of the crash?
Dec
3
answered Should References in Object-Oriented Programming Languages be Non-Nullable by Default?
Dec
3
comment Towers of Hanoi-like problem
Too restrictive. Reserving an auxilliary stack for only the smallest elements will miss a good solution for 1,4,2,3 (assuming that the target stack order is 4,3,2,1 bottom-to-top).
Dec
2
comment Towers of Hanoi-like problem
Does 'Hanoi-like' mean that you cannot push larger numbers over smaller ones?
Nov
27
comment python: conditionally execute code in a “with” block
@nikow: No, it is not the only difference. 1 == True but 1 is not True. Same goes for 1.0 (which is not 1.)
Nov
27
comment python: conditionally execute code in a “with” block
a is True is both ugly and semantically different from a==True :)
Nov
27
comment python: conditionally execute code in a “with” block
@S.Lott: No reason to downvote the answer because it does exactly what the question requires. It is the question that says "only if a==True".
Nov
27
answered python: conditionally execute code in a “with” block
Nov
26
comment Python MySQLdb: Update if exists, else insert
One more thing - are you sure that BEFORE UPDATE will fire if there's no rows to update?
Nov
26
comment How to check if an integer is power of 3?
True in mathematical sense, not practical because of rounding errors. I checked that (log 3^40)/log(3^40-1)=1.0 on my machine.
Nov
26
comment Python MySQLdb: Update if exists, else insert
There is a database that lets triggers read (let alone modify!) the table being updated? What happens if a statement inserts/updates 100 rows? Does the trigger on 30th row see the previous 29 modified rows? What about the atomicity of SQL statements?
Nov
25
comment Is there a O(n) algorithm to build a max-heap?
+1 for being less lazy than me :)
Nov
24
comment Is there a O(n) algorithm to build a max-heap?
@Peter: Quote from the link: "Therefore, the cost of heapifying all subtrees is: [snip equations] O(n)"
Nov
24
answered Is there a O(n) algorithm to build a max-heap?
Nov
23
answered Best-case Running-time to solve an NP-Complete problem?
Nov
23
revised Use of Facade Pattern
Tags: removed c#, added design-patterns and language-agnostic
Nov
23
accepted Use of Facade Pattern
Nov
23
answered Use of Facade Pattern
Nov
22
comment conflicting types error in C
Well, ask codepad admins :)
Nov
22
revised conflicting types error in C
added 235 characters in body
Nov
22
answered conflicting types error in C
Nov
20
comment Random prime number
Optionally - read up on primes distribution to assure yourself that this algorithm is feasible (i.e. won't need trillions of attempts).
Nov
18
comment How to implement a double linked list with only one pointer?
Doubly linked list? You mean that one should be able to traverse it both ways having an external pointer to any of its nodes?
Nov
18
revised How can I get the source code of python function?
Clarified title - the question is about source code not bytecode