Vinko Vrsalovic

35,283
Reputation
2046 views

Registered User

Name Vinko Vrsalovic
Member for 1 year
Seen 6 hours ago
Website
Location The sky
Age 67
A generalist. Or, better put, jack of all trades, master of none.
8h
accepted SQLite ADO .NET and ExecuteScalar()
8h
revised SQLite ADO .NET and ExecuteScalar()
added 295 characters in body
8h
answered SQLite ADO .NET and ExecuteScalar()
1d
comment Regular Expression Tools
dupe: stackoverflow.com/questions/32282/…
2d
comment How do I sign a Java midlet?
stackoverflow.com/questions/1383771/…
2d
answered Regex word-breaker in unicode
Nov
25
comment Find and replace in xml file using sed
I guess any dynamic language with XML parsing libraries (Perl, Python, PHP, Ruby) would be a better tool for this task than sed, any particular reason you are using a screwdriver to eat soup?
Nov
24
comment Compressed backups in SQL Server 2005
Great tool! Thanks!
Nov
24
revised Advice writing Losely Coupled code with Agile methods or otherwise
added 152 characters in body
Nov
24
comment Advice writing Losely Coupled code with Agile methods or otherwise
Yes, I changed it because it made more sense to me this way (the getLast10ItemsSold confused me), a chart program should be structured differently IMO, see jpgraph (PHP project, but very OO in the good way) for a well designed chart library. Another option to consider about the 4 levels deep is why are you loading the data up in the hierarchy, is that data really needed in all levels? Why can't just a deeper level load the data?
Nov
24
revised Advice writing Losely Coupled code with Agile methods or otherwise
added 1436 characters in body
Nov
24
revised Advice writing Losely Coupled code with Agile methods or otherwise
added 704 characters in body
Nov
24
comment Why the operator overridding is not permitted
It cannot be .NET related, given the nick
Nov
24
comment Best way to ship 1GB of structured textual data used in my software?
I think that his concern is that after the data is decrypted and in the SQL database (or wherever else), it will be accessible by the user...
Nov
24
answered Best way to ship 1GB of structured textual data used in my software?
Nov
24
comment Advice writing Losely Coupled code with Agile methods or otherwise
If you are sure that's the only way you then apply the second paragraph and live happily ever after ('suggests a different class organization might work better').
Nov
24
revised Advice writing Losely Coupled code with Agile methods or otherwise
added 251 characters in body
Nov
24
answered Advice writing Losely Coupled code with Agile methods or otherwise
Nov
24
comment how to neglect this error in sql query
please give us a context
Nov
24
comment printf((char *) i); runtime error? (i as integer)
Err... Edit your question with your code, Chris.
Nov
24
comment printf((char *) i); runtime error? (i as integer)
Edit your answer with your code.
Nov
24
comment printf((char *) i); runtime error? (i as integer)
You either do "using namespace std;" or write "std::cout << i << std::endl;" instead. Read about C++ namespaces.
Nov
24
comment printf((char *) i); runtime error? (i as integer)
std::cout << i << std::endl; to write an exact equivalent of your printf line
Nov
24
answered printf((char *) i); runtime error? (i as integer)
Nov
23
answered DNS Query Structure
Nov
23
comment Share common / useful SVN pre-commit hooks
My tracker tracks bug as well as features...
Nov
23
answered Replacing a new line with its html equivalent in PHP
Nov
23
awarded  php
Nov
22
comment Postgres math expression calculcated for each row in table
And, as you can see from my examples, you can get away casting only the denominator.
Nov
22
comment Postgres math expression calculcated for each row in table
See postgresql.org/docs/8.4/… for details. In fact I prefer your way, as it's standard, the ::type form is a PostgreSQL extension.
Nov
22
revised Postgres math expression calculcated for each row in table
added 72 characters in body
Nov
22
accepted Postgres math expression calculcated for each row in table
Nov
22
answered Postgres math expression calculcated for each row in table
Nov
22
comment Opinion Mining - What Database Type?
I doubt such a system will have the hard requirements to warrant a noSQL approach.
Nov
21
accepted Select From One Table And Include Sum Value From Another
Nov
21
answered Select From One Table And Include Sum Value From Another
Nov
21
awarded  Good Answer
Nov
20
answered Sort a CSV by date in Python
Nov
20
answered Anagram Hash Function
Nov
20
comment Anagram Hash Function
I actually suspected so, looked at the tags, and I can swear I didn't see that...
Nov
20
comment Anagram Hash Function
Why don't you use the existing Java hashtable implementation?
Nov
20
comment Being an accidental “IT Support Specialist”
Keep track of the time you lose everyday. Present a week of data to the boss and let him decide if he should do anything (and whether you should keep that job)
Nov
20
revised killing a win process from a C# console application: How do I set permissions?
s/priviledge/privilege
Nov
20
comment Monitoring dashboard for IIS and SQL Server
See nagios. A simple status measurement is enough for tech support. Green OK, Yellow Something's up, Red Some serious problem. A number is useless
Nov
19
answered Monitoring dashboard for IIS and SQL Server
Nov
19
revised How to copy large set of data in SQLServer db
added 739 characters in body; added 40 characters in body
Nov
18
answered How to copy large set of data in SQLServer db
Nov
18
answered Are data-snapshots of line item prices better than calculations in all cases?
Nov
18
comment How to Add ‘Comments’ to a JPEG File Using C#
and how do you associate the stolen PropertyItem to the real image? Is it a read-write property/variable?
Nov
18
answered Why isn’t DRY considered a good thing for type declarations?