User Vinko Vrsalovic - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:47:00Zhttp://stackoverflow.com/feeds/user/5190http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796573/regex-word-breaker-in-unicode/1796607#17966070Answer by Vinko Vrsalovic for Regex word-breaker in unicodeVinko Vrsalovic2009-11-25T12:28:48Z2009-11-25T12:28:48Z<p>This works as expected for me</p>
<pre><code> string foo = "Hola, la niña está gritando en alemán: Maüschen raus!";
Regex r = new Regex(@"\w+");
MatchCollection mc = r.Matches(foo);
foreach (Match ma in mc)
{
Console.WriteLine(ma.Value);
}
</code></pre>
<p>It outputs</p>
<pre>
Hola
la
niña
está
gritando
en
alemán
Maüschen
raus
</pre>
<p>Are you using .Match() instead of .Matches()?</p>
<p>Another possible explanation is that you have a non word character in what you expect to receive, like a comma.</p>
http://stackoverflow.com/questions/1788267/advice-writing-losely-coupled-code-with-agile-methods-or-otherwise/1788298#17882981Answer by Vinko Vrsalovic for Advice writing Losely Coupled code with Agile methods or otherwiseVinko Vrsalovic2009-11-24T06:47:53Z2009-11-24T09:03:07Z<p>It seems to me you are misunderstanding coupling with (relatively) complex software development. </p>
<p>If you are passing the data around to be consumed, be it via a class or more than one, all the consumers can do is to access the public interface of the class with the data. This is fine regarding to coupling, because you can change how are those classes implemented internally without breaking anything as long as you have your interface constant. It is expected that data could have many clients, as long as they don't depend on anything but the specified public interface.</p>
<p>You would have a problem with coupling if you accessed private members of the classes, or if you passed a reference of the array another class exposes to be modified by third parties, and so on. </p>
<p>It's true though that if you want to change that public interface and the class is being consumed in many places but that would happen anyway, even if you used composition instead of parameter passing, so the most important thing is to design your public interfaces well enough so changes are not a common occurrence.</p>
<p>Summing up, while sometimes this may point to a design problem (where a better design might translate into a class hierarchy where you don't need to pass that much data around), it isn't per se something bad, and in certain cases it's even needed.</p>
<p>EDIT: First of all, is CartCalculations really needed or are you creating that class just to follow some rule? Then, if CartCalculations is warranted, why are you passing an int[] instead of CartItems where you can have control about what is done and how to the list of items? Finally, why do you feel that is brittle? Because you might forget to pass the parameter (compile error, no biggie)? Because somebody might modify the list where it shouldn't (somewhat controllable via having the CartItems which would be the only one loading the data)? Because if you need to change how items are represented (again no biggie if you wrap the array in a class where you could make that kind of changes).</p>
<p>So, assuming all this hierarchy is warranted, and changing Chart to Cart because it makes more sense to me:</p>
<pre><code>class CartProgram () {
CartItems lastItems;
void main () {
lastItems = getLast10ItemsSold();
Cart myChart = new Cart(lastItems);
}
}
class Cart () {
CartItems lastItems;
Cart(CartItems lastItems) {
this.lastItems = lastItems;
CartCalulations cc = new CartCalculations(this.lastItems);
cc.getAverage();
}
class CartCalculations {
CartItems lastItems;
CartCalculations (CartItems lastItems){
this.lastItems = lastItems;
// Okay so at this point I have had to forward this value 3 times and this is
// a simple example. It just seems to make the code very brittle
}
getAverage() {
// do stuff here
}
}
class CartItems {
private List<Item> itemList;
public static CartItems Load(int cartId) {
//return a new CartItems loaded from the backend for the cart id cartId
}
public void Add(Item item) {
}
public void Add(int item) {
}
public int SumPrices() {
int sum = 0;
foreach (Item i in itemList) {
sum += i.getPrice()
}
return sum;
}
}
class Item
{
private int price;
public int getPrice() { return price; }
}
</code></pre>
<p>For a well architected chart library, see <a href="http://www.aditus.nu/jpgraph/jpgarchitecture.php" rel="nofollow">http://www.aditus.nu/jpgraph/jpgarchitecture.php</a></p>
http://stackoverflow.com/questions/1788367/best-way-to-ship-1gb-of-structured-textual-data-used-in-my-software/1788391#17883911Answer by Vinko Vrsalovic for Best way to ship 1GB of structured textual data used in my software?Vinko Vrsalovic2009-11-24T07:16:04Z2009-11-24T07:16:04Z<p>Given that you already have the data in a database, you could send the user an encrypted SQLite database. There are various (paid) third party tools to encrypt data in SQLite transparently, or else you can just write encrypted data into SQLite in blobs, depending on the actual usage.</p>
<p>Also, depending on the technologies involved, you might be able to leverage the Microsoft Crypto API in SQLite ADO.NET driver, for instance.</p>
http://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer/1787624#17876243Answer by Vinko Vrsalovic for printf((char *) i); runtime error? (i as integer)Vinko Vrsalovic2009-11-24T03:40:01Z2009-11-24T03:40:01Z<p>If you are using C++, you should use cout instead of printf:</p>
<pre><code>#include <iostream>
using namespace std;
int main() {
int i = 42;
cout << "The answer is: " << i << endl;
}
</code></pre>
http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-20050Compressed backups in SQL Server 2005Vinko Vrsalovic2008-11-17T11:57:55Z2009-11-24T01:05:08Z
<p>What is the best free way to get your maintenance plan-generated backups compressed?</p>
<p>I know there are non-free tools that will compress the backups, but I'm not interested in them.</p>
<p>Options:</p>
<ol>
<li>Have a T-SQL task after the backups that will run a script through xp_cmdshell that compresses every non compressed backup.</li>
<li>???</li>
</ol>
<p>Any other ideas welcome, I'd like to avoid writing a script/program.</p>
http://stackoverflow.com/questions/1786121/dns-query-structure/1786346#17863460Answer by Vinko Vrsalovic for DNS Query StructureVinko Vrsalovic2009-11-23T22:00:39Z2009-11-23T22:00:39Z<p>I tend to think that your problem depends on how are you actually "flipping the bits to convert to network format". </p>
<p>Typical C library implementations provide the <code>htonl()</code> <a href="http://linux.die.net/man/3/htonl" rel="nofollow">function family</a> to do the conversion from host into network order and viceversa.</p>
<p>Of course, without seeing the code, I cannot be sure that this is the problem.</p>
http://stackoverflow.com/questions/1785961/replacing-a-new-line-with-its-html-equivalent-in-php/1785977#17859776Answer by Vinko Vrsalovic for Replacing a new line with its html equivalent in PHPVinko Vrsalovic2009-11-23T21:08:19Z2009-11-23T21:08:19Z<p>Maybe you want <a href="http://php.net/nl2br" rel="nofollow">http://php.net/nl2br</a>? Or maybe I have misunderstood...</p>
http://stackoverflow.com/questions/1780242/postgres-math-expression-calculcated-for-each-row-in-table/1780307#17803070Answer by Vinko Vrsalovic for Postgres math expression calculcated for each row in tableVinko Vrsalovic2009-11-22T22:47:40Z2009-11-22T23:29:41Z<p>Typical cast trick needed because col2 and col3 are integers (so result is by default an integer)</p>
<pre><code>select col1, col2/col3*1.0 from table
</code></pre>
<p>or</p>
<pre><code>select col1, col2/col3::float from table
</code></pre>
<p>or (SQL Standard way)</p>
<pre><code>select col1, col2/cast(col3 as float) from table
</code></pre>
http://stackoverflow.com/questions/1777167/select-from-one-table-and-include-sum-value-from-another/1777180#17771804Answer by Vinko Vrsalovic for Select From One Table And Include Sum Value From AnotherVinko Vrsalovic2009-11-21T23:45:12Z2009-11-21T23:45:12Z<p>You could post your schema to be sure, but something like this should work</p>
<pre><code>select v.link_id, (sum(karma_up) - sum(karma_down)) as points from
Links l, Votes v
where l.link_id = v.link_id group by v.link_id
</code></pre>
<p>That should give you the points per link_id.</p>
http://stackoverflow.com/questions/1773909/sort-a-csv-by-date-in-python/1773915#17739152Answer by Vinko Vrsalovic for Sort a CSV by date in PythonVinko Vrsalovic2009-11-20T23:48:36Z2009-11-20T23:48:36Z<p>What you show is pretty easy but also pretty fragile. </p>
<p>It is best to use Python's CSV library: <a href="http://docs.python.org/library/csv.html" rel="nofollow">http://docs.python.org/library/csv.html</a></p>
<p>About comparing dates (I'm assuming some dates are in a specific column on each row) you can use the datetime module: <a href="http://docs.python.org/library/datetime.html" rel="nofollow">http://docs.python.org/library/datetime.html</a>. You can use the standard comparison operators on date objects.</p>
http://stackoverflow.com/questions/1773776/anagram-hash-function/1773898#17738981Answer by Vinko Vrsalovic for Anagram Hash FunctionVinko Vrsalovic2009-11-20T23:41:13Z2009-11-20T23:41:13Z<p>Your hash function looks totally arbitrary. Why are you using that?</p>
<p>There are a few common, well known and relatively good hash functions, see a description here:</p>
<p><a href="http://www.azillionmonkeys.com/qed/hash.html" rel="nofollow">http://www.azillionmonkeys.com/qed/hash.html</a></p>
<p>See also <a href="http://stackoverflow.com/questions/263400#263416">http://stackoverflow.com/questions/263400#263416</a></p>
http://stackoverflow.com/questions/1766966/monitoring-dashboard-for-iis-and-sql-server/1767033#17670330Answer by Vinko Vrsalovic for Monitoring dashboard for IIS and SQL ServerVinko Vrsalovic2009-11-19T22:28:31Z2009-11-19T22:28:31Z<p>First of all, I think you are designing a different dashboard than what you are telling us, tech support wants to know if machines are up/down and what to do when there is a problem.</p>
<p>Requests and transactions per second are useful for capacity planning and/or system and application tuning, not for tech support. </p>
<p>Also, I believe a single figure makes no sense and helps nobody, because what would 87,75% mean?</p>
<p>So, I believe you want a dashboard for sysadmins and app developers, where this type of measurement makes sense, to tune the OS or know when to add a new machine or which query is bogging down SQL Server.</p>
<p>That said, performance counters already store much of the information you want to present so that does make sense. Additionally you can use SQL Server traces to measure performance data about the queries, the traces should not be run constantly, but at defined intervals.</p>
<p>Now, if you really wanted a dashboard for tech support, two type of monitors would be enough: Server up/down - Application responsive/unresponsive</p>
http://stackoverflow.com/questions/1759536/how-to-copy-large-set-of-data-in-sqlserver-db/1759597#17595970Answer by Vinko Vrsalovic for How to copy large set of data in SQLServer dbVinko Vrsalovic2009-11-18T22:26:16Z2009-11-19T07:46:25Z<p>Does it need to be in the exact same tables? You could make a set of "snapshots" tables where all these records go, you would only need a single insert + select, like</p>
<pre><code>insert into snapshots_source1 (user,col1, col2, ..., colN)
select 'john', col1, col2, ..., colN from source1
</code></pre>
<p>and so on. </p>
<p>You can make <code>snapshots_*</code> to have an IDENTITY column that will create the 'new PK' and that can also preserve the old one if you so wished.</p>
<p>This has (almost) no locking issues and looks a lot saner.</p>
<p>It does require a change in the code, but shouldn't be too hard to make the app to point to the snapshots table when appropriate.</p>
<p>This also eases cleaning and maintenance issues</p>
<p><code>---8<------8<------8<---outdated answer---8<---8<------8<------8<------8<---</code></p>
<p>Why don't you just take a live backup and do the data manipulation (key changing) on the destination clone?</p>
<p>Now, in general, this snapshot with new primary keys idea sounds suspect. If you want a replica, you have log shipping and cluster service, if you want a copy of the data to generate a 'new app instance' a backup/restore/manipulate process should be enough.</p>
<p>You don't say how much your DB will occupy, but you can certainly backup 20 million rows (800MB?) in about 10 seconds depending on how fast your disk subsystem is...</p>
http://stackoverflow.com/questions/1758889/are-data-snapshots-of-line-item-prices-better-than-calculations-in-all-cases/1758980#17589801Answer by Vinko Vrsalovic for Are data-snapshots of line item prices better than calculations in all cases?Vinko Vrsalovic2009-11-18T20:49:13Z2009-11-18T20:49:13Z<p>Usually snapshots are taking to make it easy to insure you have a faithful record of each sale, be it for datawarehousing or for customer complaint handling. With snapshots it's just a matter of keeping a single table safe, backed up and with strict auditing. </p>
<p>Doing it your way makes having that guarantee <strong>a lot harder</strong>, mainly because you have to ensure nobody has messed in any way with any of the involved tables (discount, tax, product, order and so on). For example, how would you tell if somebody changed the discount rate for the january 2005? Additionally, this prevents you from evolving your data model in an easy way, what if you now have to have more than one column for the discount rate, you would then not only have to change the calculations for the future but to keep the old ones for the past (or else do every change in a backwards compatible way.)</p>
<p>Space is cheap, having snapshots makes lots of things easier, at a small cost.</p>
http://stackoverflow.com/questions/1752815/why-isnt-dry-considered-a-good-thing-for-type-declarations/1752878#17528781Answer by Vinko Vrsalovic for Why isn't DRY considered a good thing for type declarations?Vinko Vrsalovic2009-11-18T00:37:59Z2009-11-18T00:37:59Z<p>It isn't considered a bad thing at all. In fact, C# maintainers are already moving a bit towards reducing the tiring boilerplate with the <code>var</code> keyword, where</p>
<pre><code>MyContainer<MyType> cont = new MyContainer<MyType>();
</code></pre>
<p>is exactly equivalent to</p>
<pre><code>var cont = new MyContainer<MyType>();
</code></pre>
<p>Although you will see many people who will argue <strong>against</strong> <code>var</code> usage, which kind of shows that many people is not familiar with strong typed languages with type inference; type inference is mistaken for dynamic/soft typing.</p>
http://stackoverflow.com/questions/1746996/convert-microsoft-office-documents-to-text/1747065#17470654Answer by Vinko Vrsalovic for Convert Microsoft Office documents to TextVinko Vrsalovic2009-11-17T06:58:34Z2009-11-17T06:58:34Z<p>The new office 2007 format is just (ZIP) compressed XML. </p>
<p>All the text (in at least the .docx format) is located (once you decompress the file) in the word folder, document.xml file. Strip it from all the XML tags and you'll get the text. You'll lose the formatting no doubt, but if you want to do text indexing or something like it format isn't relevant anyway. The order is preserved.</p>
<p>I haven't analyzed Excel and Powerpoint but the approach should be similar. Excel might be trickier, depending on how are the cells stored in the XML file.</p>
http://stackoverflow.com/questions/1711327/why-does-scala-create-a-tmp-directory-when-i-run-a-script/1711442#17114421Answer by Vinko Vrsalovic for Why does Scala create a ~/tmp directory when I run a script?Vinko Vrsalovic2009-11-10T21:43:56Z2009-11-10T21:43:56Z<p>Early versions of the Scala interpreter wrote generated class files out to disk, in a temporary directory. </p>
<p>Try a newer version.</p>
http://stackoverflow.com/questions/1704014/the-return-statement/1704040#17040402Answer by Vinko Vrsalovic for The Return statementVinko Vrsalovic2009-11-09T21:40:39Z2009-11-09T21:40:39Z<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/ms174998%28SQL.90%29.aspx" rel="nofollow">return</a> returns from a query or procedure.
RETURN is immediate and complete and
can be used at any point to exit from
a procedure, batch, or statement
block. Statements that follow RETURN
are not executed.</p>
</blockquote>
<p>So this just means that if there is no outer frame, execution simply ends.</p>
http://stackoverflow.com/questions/1692509/how-do-i-retrieve-every-nth-record-from-a-table/1692549#16925494Answer by Vinko Vrsalovic for How do I retrieve every Nth record from a table?Vinko Vrsalovic2009-11-07T09:34:37Z2009-11-07T09:34:37Z<p>You can do a varying offset query in a single query like this</p>
<pre><code>select NAME from
(select @row:=@row+1 as row, t.NAME from
tbl t, (select @row := 0) y
where alphabet_index='A' order by alphabet_index) z
where row % 880 = 1;
</code></pre>
<p>This will add a unique integer id to each row via the @row variable. Then it will select a row every other 880 via the modulo operator and that variable. An order by clause is required to get repeatable behavior, else the result would be effectively random.</p>
http://stackoverflow.com/questions/1685821/how-to-find-out-if-a-windows-restart-is-needed/1685861#16858612Answer by Vinko Vrsalovic for How to find out if a windows restart is needed?Vinko Vrsalovic2009-11-06T06:49:43Z2009-11-06T07:00:25Z<p>The following registry key has the information:</p>
<p><code>HKLM\System\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations</code></p>
<p>Source: <a href="http://technet.microsoft.com/en-us/sysinternals/bb897556.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb897556.aspx</a></p>
http://stackoverflow.com/questions/1685763/url-aliasing-using-htaccess/1685889#16858890Answer by Vinko Vrsalovic for URL Aliasing using .htaccessVinko Vrsalovic2009-11-06T06:59:46Z2009-11-06T06:59:46Z<p>You can use the proxying abilities of mod_rewrite to achieve this. In the VirtualHost section for abc.mydomain, you can add:</p>
<pre><code>RewriteRule (.*) http://mydomain/folder/$1 [P]
ProxyPassReverse / http://mydomain/folder
</code></pre>
http://stackoverflow.com/questions/1684291/sql-like-condition-to-check-for-integer/1684325#16843252Answer by Vinko Vrsalovic for SQL LIKE condition to check for integer?Vinko Vrsalovic2009-11-05T23:11:56Z2009-11-05T23:11:56Z<p>PostgreSQL supports <a href="http://www.postgresql.org/docs/8.3/static/functions-matching.html#FUNCTIONS-POSIX-TABLE" rel="nofollow">regular expressions matching</a>.</p>
<p>So, your example would look like</p>
<pre><code>SELECT * FROM books WHERE title ~ '^\d+ ?'
</code></pre>
<p>This will match a title starting with one or more digits and an optional space</p>
http://stackoverflow.com/questions/1679022/cannot-create-a-file-when-that-file-already-exists/1679033#16790331Answer by Vinko Vrsalovic for Cannot create a file when that file already exists.?Vinko Vrsalovic2009-11-05T08:03:52Z2009-11-05T08:03:52Z<p><code>File.Copy(source,destination,true)</code> will overwrite destination if permissions allow. See <a href="http://msdn.microsoft.com/en-us/library/9706cfs5.aspx" rel="nofollow">the docs</a>.</p>
http://stackoverflow.com/questions/1678999/does-team-leader-have-to-take-blame-for-subordinate-errors/1679019#167901910Answer by Vinko Vrsalovic for Does team leader have to take blame for subordinate errors?Vinko Vrsalovic2009-11-05T08:00:14Z2009-11-05T08:00:14Z<p>Answering the title question: <strong>You just cannot blame an employee to a customer</strong></p>
<p>You take the blame and then, internally, take appropriate actions if necessary.</p>
<p>About what and how to improve, i think you need time management skills. You might be interested in trying "<a href="http://www.pomodorotechnique.com" rel="nofollow">The Pomodoro Technique</a>"</p>
http://stackoverflow.com/questions/1678871/is-solaris-or-linux-the-better-c-gui-development-environment/1678971#16789711Answer by Vinko Vrsalovic for Is Solaris or Linux the better C GUI development environment?Vinko Vrsalovic2009-11-05T07:47:16Z2009-11-05T07:47:16Z<p>To choose a machine as your main dev platform... It's simple: What suits you best? </p>
<p>"Linux with Valgrind etc"
or
"Solaris with DTrace, locklint"</p>
<p>The environment and toolset is markedly different, even if you can use Sun Studio in both. In fact, why are you doing this question, what is bothering you about Solaris? That should give you some ideas. If you've never used Linux as a main dev platform, you should to be able to compare and switch back if necessary. Because, as I said, the toolset is markedly different, even when GNUing Solaris.</p>
<p>Lastly, don't forget if you aim for cross platform code you should test it in all platforms where it is supposed to run on.</p>
http://stackoverflow.com/questions/1667689/who-owns-documentation/1667733#16677335Answer by Vinko Vrsalovic for Who owns documentation?Vinko Vrsalovic2009-11-03T14:38:48Z2009-11-03T14:38:48Z<p>Technical writers own documentation. Developers provide technical insight, tech support provides troubleshooting insight and product owners provide the overall insight (uses, future directions, and so on.)</p>
<p>If you don't have technical writers, you should get the best writer in a team to be responsible for it. Roles are not important as long as all them are committed to providing the information the writer needs.</p>
http://stackoverflow.com/questions/1666848/mysql-create-database-and-user-script/1666997#16669972Answer by Vinko Vrsalovic for mysql create database and user scriptVinko Vrsalovic2009-11-03T12:20:07Z2009-11-03T12:20:07Z<p>You are missing quotes and a proper mysql client command line:</p>
<pre><code>ssh -p 8899 root@$REMOTEIP "mysql -u root -p -e \"$SQL\""
</code></pre>
<p>You need to escape the quotes around the $SQL variable so they get passed to the remote shell, else they get interpreted by the local shell (that's why you get DROP: command not found, the semi colon is interpreted by the shell.) Also, to have the mysql client to execute a command you have to pass the -e command line option.</p>
http://stackoverflow.com/questions/1665726/how-do-i-know-if-my-postgresql-server-is-using-the-c-locale/1665782#16657821Answer by Vinko Vrsalovic for How do I know if my PostgreSQL server is using the "C" locale?Vinko Vrsalovic2009-11-03T07:33:02Z2009-11-03T07:46:38Z<p>Currently some locale [<a href="http://www.postgresql.org/docs/8.3/interactive/locale.html" rel="nofollow">docs</a>] support can only be set at initdb time, but I think the one relevant to <code>_pattern_ops</code> can be modified via <a href="http://www.postgresql.org/docs/8.3/interactive/sql-set.html" rel="nofollow">SET</a> at runtime, LC_COLLATE. To see the set values you can use the <a href="http://www.postgresql.org/docs/8.3/static/sql-show.html" rel="nofollow">SHOW</a> command.</p>
<p>For example:</p>
<pre><code>SHOW LC_COLLATE
</code></pre>
<p><code>_pattern_ops</code> indexes are useful in columns that use pattern matching constructs, like <code>LIKE</code> or regexps. You still have to make a regular index (without <code>_pattern_ops</code>) to do equality search on an index. So you have to take all this into consideration to see if you need such indexes on your tables.</p>
<p>About what <a href="http://en.wikipedia.org/wiki/Locale" rel="nofollow">locale</a> is, it's a set of rules about character ordering, formatting and similar things that vary from language/country to another language/country. For instance, the locale fr_CA (French in Canada) might have some different sorting rules (or way of displaying numbers and so on) than en_CA (English in Canada.). The standard "C" locale is the POSIX standards-compliant default locale. Only strict ASCII characters are valid, and the rules of ordering and formatting are mostly those of en_US (US English)</p>
<blockquote>
<p>In computing, locale is a set of
parameters that defines the user's
language, country and any special
variant preferences that the user
wants to see in their user interface.
Usually a locale identifier consists
of at least a language identifier and
a region identifier.</p>
</blockquote>
http://stackoverflow.com/questions/1652200/how-to-become-a-good-programmer-in-a-different-framework-language-without-a-teach/1652245#16522453Answer by Vinko Vrsalovic for How to become a good programmer in a different framework/language without a teacher or supervisor?Vinko Vrsalovic2009-10-30T20:49:23Z2009-10-30T20:56:04Z<p>There are people who learn well alone, and people who need guidance. You seem to be of this latter category.</p>
<p>My advice: buy books, find screencasts, read existing code, and what could be the best hope for somebody like you: find an open source project you fit in nicely, you can then probably find mentors there via email or IRC.</p>
<p>Check <a href="http://google.com/search?q=mobile+open+source+project" rel="nofollow">this</a> out, there are various tempting alternatives, like android (<a href="http://code.google.com/p/apps-for-android/" rel="nofollow">http://code.google.com/p/apps-for-android/</a>), openmoko, phonegap, opensource.nokia.com and so on. I bet you can find a community you like to learn.</p>
http://stackoverflow.com/questions/1642048/select-string-with-comma-regex/1642056#16420561Answer by Vinko Vrsalovic for Select string with comma (regex)Vinko Vrsalovic2009-10-29T07:10:31Z2009-10-29T07:10:31Z<p>Have you tried:</p>
<pre><code>"[^"]?,[^"]+?"
</code></pre>
<p>That will match, a ", any character not a " once or more until a comma, a comma, any character not a " once or more until a ", and a " </p>
http://stackoverflow.com/questions/1807194/regular-expression-toolsComment by Vinko Vrsalovic on Regular Expression ToolsVinko Vrsalovic2009-11-27T07:17:26Z2009-11-27T07:17:26Zdupe: <a href="http://stackoverflow.com/questions/32282/regex-testing-tools" rel="nofollow" title="regex testing tools">stackoverflow.com/questions/32282/…</a>http://stackoverflow.com/questions/1474113/how-do-i-sign-a-java-midletComment by Vinko Vrsalovic on How do I sign a Java midlet?Vinko Vrsalovic2009-11-26T07:24:53Z2009-11-26T07:24:53Z<a href="http://stackoverflow.com/questions/1383771/how-do-you-sign-a-java-midlet" rel="nofollow" title="how do you sign a java midlet">stackoverflow.com/questions/1383771/…</a>http://stackoverflow.com/questions/1794995/find-and-replace-in-xml-file-using-sedComment by Vinko Vrsalovic on Find and replace in xml file using sedVinko Vrsalovic2009-11-25T06:23:51Z2009-11-25T06:23:51ZI 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?http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005/1784533#1784533Comment by Vinko Vrsalovic on Compressed backups in SQL Server 2005Vinko Vrsalovic2009-11-24T09:55:32Z2009-11-24T09:55:32ZGreat tool! Thanks!http://stackoverflow.com/questions/1788267/advice-writing-losely-coupled-code-with-agile-methods-or-otherwise/1788298#1788298Comment by Vinko Vrsalovic on Advice writing Losely Coupled code with Agile methods or otherwiseVinko Vrsalovic2009-11-24T08:59:36Z2009-11-24T08:59:36ZYes, 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?http://stackoverflow.com/questions/1788390/why-the-operator-overridding-is-not-permittedComment by Vinko Vrsalovic on Why the operator overridding is not permittedVinko Vrsalovic2009-11-24T07:20:00Z2009-11-24T07:20:00ZIt cannot be .NET related, given the nickhttp://stackoverflow.com/questions/1788367/best-way-to-ship-1gb-of-structured-textual-data-used-in-my-software/1788396#1788396Comment by Vinko Vrsalovic on Best way to ship 1GB of structured textual data used in my software?Vinko Vrsalovic2009-11-24T07:18:51Z2009-11-24T07:18:51ZI 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...http://stackoverflow.com/questions/1788267/advice-writing-losely-coupled-code-with-agile-methods-or-otherwise/1788292#1788292Comment by Vinko Vrsalovic on Advice writing Losely Coupled code with Agile methods or otherwiseVinko Vrsalovic2009-11-24T07:04:48Z2009-11-24T07:04:48ZIf you are sure that's the only way you then apply the second paragraph and live happily ever after ('suggests a different class organization <i>might</i> work better').http://stackoverflow.com/questions/1788248/how-to-neglect-this-error-in-sql-queryComment by Vinko Vrsalovic on how to neglect this error in sql queryVinko Vrsalovic2009-11-24T06:37:43Z2009-11-24T06:37:43Zplease give us a contexthttp://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer/1787609#1787609Comment by Vinko Vrsalovic on printf((char *) i); runtime error? (i as integer)Vinko Vrsalovic2009-11-24T03:47:05Z2009-11-24T03:47:05ZErr... Edit your <b>question</b> with your code, Chris.http://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer/1787609#1787609Comment by Vinko Vrsalovic on printf((char *) i); runtime error? (i as integer)Vinko Vrsalovic2009-11-24T03:45:04Z2009-11-24T03:45:04ZEdit your answer with your code.http://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer/1787624#1787624Comment by Vinko Vrsalovic on printf((char *) i); runtime error? (i as integer)Vinko Vrsalovic2009-11-24T03:44:14Z2009-11-24T03:44:14ZYou either do "using namespace std;" or write "std::cout << i << std::endl;" instead. Read about C++ namespaces. http://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer/1787609#1787609Comment by Vinko Vrsalovic on printf((char *) i); runtime error? (i as integer)Vinko Vrsalovic2009-11-24T03:43:27Z2009-11-24T03:43:27Zstd::cout << i << std::endl; to write an exact equivalent of your printf linehttp://stackoverflow.com/questions/884608/share-common-useful-svn-pre-commit-hooks/884618#884618Comment by Vinko Vrsalovic on Share common / useful SVN pre-commit hooksVinko Vrsalovic2009-11-23T21:14:42Z2009-11-23T21:14:42ZMy tracker tracks bug as well as features...http://stackoverflow.com/questions/1780242/postgres-math-expression-calculcated-for-each-row-in-table/1780307#1780307Comment by Vinko Vrsalovic on Postgres math expression calculcated for each row in tableVinko Vrsalovic2009-11-22T23:33:02Z2009-11-22T23:33:02ZAnd, as you can see from my examples, you can get away casting only the denominator.