User svrist - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T17:01:06Zhttp://stackoverflow.com/feeds/user/86http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1879626/index-over-a-column-with-only-5-distinct-values-worth-it4Index over a column with only 5 distinct values - Worth it?svrist2009-12-10T08:56:38Z2009-12-10T15:21:17Z
<p>I have a table with a potential of up to 5.000.000 rows. One of the columns in this table is used alone in queries, but there is only 5 possible values of this column, and currently I got 10.000 rows and according to the explain plan it makes no sense to use my index on that column.</p>
<p>Will it ever, or shouldn't I bother with an index</p>
<p>Edit: This is the two explain plans at the moment
<img src="http://img706.imageshack.us/img706/1903/noindex.png" alt="Without index">
vs.
<img src="http://img692.imageshack.us/img692/8205/indexp.png" alt="With forced index via hints">
The latter image I force the usage of the index with a hint.</p>
http://stackoverflow.com/questions/675077/ocr-for-sheet-music3OCR for sheet musicsvrist2009-03-23T20:24:49Z2009-12-09T10:07:36Z
<p>Im considering doing a small project as a part of my masters for doing ocr just for sheetmusic instead of text.</p>
<p>I think PIL and Python would be fine for simple proof of concept O"notes"R.</p>
<p>My question is: Has anyone got any "dont do it with PIL use xyz instead" or something in that alley?</p>
<p>EDIT: My delicius links regarding the subject if anyone is interested: <a href="http://delicious.com/seet/DIKU-09b4%2Bb1" rel="nofollow">http://delicious.com/seet/DIKU-09b4%2Bb1</a></p>
<p>=========================================================================</p>
<p>EDIT2:</p>
<p>Actually, now I know a lot more about OCR for sheet music or OMR as it is called.</p>
<p>Within academia the area has been researched since late 60/early 70 and building an OMR system is not a simple task. To get a summary of the problems and the research until early 2000 you could read <a href="http://www.springerlink.com/content/x1nv36548113k51u/" rel="nofollow">"The challenge of Optical Music Recognition"</a> which is quite successful in drawing up the lines of the field.</p>
<p>Regarding existing software I know of at least these:</p>
<ul>
<li><a href="http://www.visiv.co.uk/" rel="nofollow">Sharpeye</a></li>
<li><a href="http://www.neuratron.com/photoscore.htm" rel="nofollow">Photoscore</a></li>
<li><a href="http://www.musitek.com/" rel="nofollow">Smartscore X</a></li>
<li><a href="http://www.capella-software.com/capscan.htm" rel="nofollow">Capella Scan</a></li>
<li><a href="http://www.myriad-online.com/en/products/pdftomusic.htm" rel="nofollow">PdfToMusic</a></li>
</ul>
<p>And my unscientific tests gave me the idea that photoscore was the most robust one.</p>
<p>For Opensource software <a href="https://audiveris.dev.java.net/" rel="nofollow">Audiveris</a> is the only complete thing I found and is written in Java.</p>
<p>Regarding my original question I am using <a href="http://gamera.informatik.hsnr.de/" rel="nofollow">Gamera</a>. Gamera is an opensource tool for document image analysis which provides tools to do all the basic stuff needed for analysing images for recognition. Gamera has a python interface and the possibility to write c++ "toolkits". For example is it possible to <a href="http://lionel.kr.hs-niederrhein.de/~dalitz/data/projekte/stafflines/" rel="nofollow">download and use a staffline removal toolkit for gamera.</a></p>
http://stackoverflow.com/questions/675077/ocr-for-sheet-music/1872875#18728750Answer by svrist for OCR for sheet musicsvrist2009-12-09T10:07:36Z2009-12-09T10:07:36Z<p>My project ended with a report and some python software. Find it here:</p>
<p><a href="http://preomr.appspot.com/" rel="nofollow">http://preomr.appspot.com/</a></p>
<p>The gist of it is: It is hard to do good OMR and takes a lot of effort. I didn't have the time to do complete OMR (and it looks like it's not that needed after all). </p>
<p>I implemented a tool that can do preprocessing of sheet music before handing it to a OMR tool like Photoscore or the like. The preprocessing includes removal of lyrics and dynamics as this information is not needed for statistical analysis of the music in large music corpora</p>
http://stackoverflow.com/questions/1865423/index-with-multiple-columns-ok-when-doing-query-on-only-one-column3index with multiple columns - ok when doing query on only one column?svrist2009-12-08T08:06:42Z2009-12-08T11:00:09Z
<p>If I have an table</p>
<pre><code>create table sv ( id integer, data text )
</code></pre>
<p>and an index:</p>
<pre><code>create index myindex_idx on sv (id,text)
</code></pre>
<p>would this still be usefull if I did a query</p>
<pre><code>select * from sv where id = 10
</code></pre>
<p>My reason for asking is that i'm looking through a set of tables with out any indexes, and seeing different combinations of select queries. Some uses just one column other has more than one. Do I need to have indexes for both sets or is an all-inclusive-index ok?
I am adding the indexes for faster lookups than full table scans.</p>
<p>Example (based on the answer by Matt Huggins):</p>
<pre><code>select * from table where col1 = 10
select * from table where col1 = 10 and col2=12
select * from table where col1 = 10 and col2=12 and col3 = 16
</code></pre>
<p>could all be covered by index table (co1l1,col2,col3) but </p>
<pre><code>select * from table where col2=12
</code></pre>
<p>would need another index?</p>
http://stackoverflow.com/questions/1701124/for-each-row-in-query-select-top-20-from-other-query1For each row in query select top 20 from other querysvrist2009-11-09T13:58:55Z2009-11-09T14:47:48Z
<p>Hi.</p>
<p>I'm trying to do something and I'm not sure how to do it.</p>
<p>I have some data like this:</p>
<pre><code>WITH a AS (SELECT theid, thename, thetimestamp FROM mytable)
SELECT thename, TRUNC (thetimestamp, 'HH24'), COUNT (theid) FROM a
group by thename,trunc(thetimestamp,'HH24') ORDER BY COUNT (theid) desc)
</code></pre>
<p>which returns me the count grouped by the hour and the name.</p>
<p>I would like it to just be </p>
<pre><code>for each hour, top X counts
</code></pre>
<p>Is that possible?</p>
<p><hr></p>
<p>I ended with:</p>
<pre><code>SELECT thename, hour, cnt
FROM
( SELECT thename, hour, cnt,
rank() over (partition by hours order by cnt desc) rnk
FROM
( SELECT thename, TRUNC (thetimestamp, 'HH24') hour, COUNT (theid) cnt
FROM mytable
group by thename,trunc(thetimestamp,'HH24')
)
)
WHERE rnk <= :X
</code></pre>
http://stackoverflow.com/questions/1105004/querying-for-n-random-records-on-appengine-datastore/1417574#14175740Answer by svrist for Querying for N random records on Appengine datastoresvrist2009-09-13T11:52:15Z2009-09-13T11:52:15Z<p>I just had the same problem. I decided not to assign IDs to my already existing entries in datastore and did this, as I already had the totalcount from a sharded counter.</p>
<p>This selects "count" entries from "totalcount" entries, sorted by <strong>key</strong>.</p>
<pre><code> # select $count from the complete set
numberlist = random.sample(range(0,totalcount),count)
numberlist.sort()
pagesize=1000
#initbuckets
buckets = [ [] for i in xrange(int(max(numberlist)/pagesize)+1) ]
for k in numberlist:
thisb = int(k/pagesize)
buckets[thisb].append(k-(thisb*pagesize))
logging.debug("Numbers: %s. Buckets %s",numberlist,buckets)
#page through results.
result = []
baseq = db.Query(MyEntries,keys_only=True).order("__key__")
for b,l in enumerate(buckets):
if len(l) > 0:
result += [ wq.fetch(limit=1,offset=e)[0] for e in l ]
if b < len(buckets)-1: # not the last bucket
lastkey = wq.fetch(1,pagesize-1)[0]
wq = baseq.filter("__key__ >",lastkey)
</code></pre>
<p>Beware that this to me is somewhat complex, and I'm still not conviced that I dont have off-by-one or off-by-x errors.</p>
<p>And beware that if count is close to totalcount this can be very expensive.
And beware that on millions of rows it might not be possible to do within appengine time boundaries.</p>
http://stackoverflow.com/questions/1398018/rsync-git-directory2rsync .git directory svrist2009-09-09T07:14:58Z2009-09-09T16:39:45Z
<p><em>This question probably is based on my lack of understanding of the role of .gits and git repositories in general but:</em></p>
<p>Can I rsync a dir with content that I created with <code>git init</code> between machines ?</p>
<p>I have a repository on my laptop, and the only way to get it away from there is scp/rsync to a remote host, from which I can download it again. Could I rsync the complete directory structure between these hosts?</p>
http://stackoverflow.com/questions/1213268/axis-loading-modules-creating-tempfile-and-failing0Axis loading modules - Creating tempfile and failingsvrist2009-07-31T15:40:50Z2009-09-09T07:49:12Z
<p>We are using axis for webservice communication between different system in house. Every once in a while the axis calls fail with a:</p>
<pre><code>[org.apache.axis2.deployment.util.Utils] - Created temporary file : C:\WINDOWS\TEMP\_axis2\axis248890addressing-1.41.mar
[org.apache.axis2.util.Loader] - java.lang.ClassNotFoundException: Class Not found : org.apache.axis2.handlers.addressing.AddressingInHandler
[org.apache.axis2.util.Loader] - java.lang.ClassNotFoundException: org.apache.axis2.handlers.addressing.AddressingInHandler
[org.apache.axis2.i18n.ProjectResourceBundle] - org.apache.axis2.i18n.resource::handleGetObject(invalidmodule)
[org.apache.axis2.deployment.ModuleDeployer] - The addressing-1.41.mar module, which is not valid, caused org.apache.axis2.handlers.addressing.AddressingInHandler
org.apache.axis2.AxisFault: org.apache.axis2.handlers.addressing.AddressingInHandler
</code></pre>
<p>Maybe one in 100 fails like that. </p>
<p>The code is deployed on a 50thread weblogic app server running the axis2 version 1.4.1.</p>
<p>As far as I can tell from the log, the "Creating tempfile" happens in every call(and it mentions the same file everytime), so my guess is that maybe a multiple thread access to the same file, but I dont know what to do about it.</p>
<p>Has anybody got some insights that could help us eliminate this?</p>
<p><strong>Update:</strong></p>
<p>I Found a similar issue on the mailinglist without answer: <a href="http://marc.info/?l=axis-user&m=124411691013763&w=2" rel="nofollow">http://marc.info/?l=axis-user&m=124411691013763&w=2</a>
and posted this question there as well: <a href="http://marc.info/?l=axis-user&m=124912603230939&w=2" rel="nofollow">http://marc.info/?l=axis-user&m=124912603230939&w=2</a></p>
http://stackoverflow.com/questions/1213268/axis-loading-modules-creating-tempfile-and-failing/1398162#13981620Answer by svrist for Axis loading modules - Creating tempfile and failingsvrist2009-09-09T07:49:12Z2009-09-09T07:49:12Z<p>We found this issue
<a href="http://issues.apache.org/jira/browse/AXIS2-3204" rel="nofollow">http://issues.apache.org/jira/browse/AXIS2-3204</a></p>
<p>and the </p>
<p>configContext.terminate()
was the culprit.</p>
http://stackoverflow.com/questions/1311687/detatch-subdirectory-into-separate-git-repository-on-github1Detatch subdirectory into separate git repository - On githubsvrist2009-08-21T12:36:57Z2009-08-21T12:47:00Z
<p>Ive got a project on github which has ended up with a project "inside" and I would like to do a move like described in <a href="http://stackoverflow.com/questions/359424/detach-subdirectory-into-separate-git-repository">detach-subdirectory-into-separate-git-repository</a>.</p>
<p>My added question is, how do i effectuate this on github as well?</p>
http://stackoverflow.com/questions/37929/how-to-test-java-application-for-performance-bottlenecks/37947#379470Answer by svrist for How to test java application for performance bottlenecks?svrist2008-09-01T13:34:10Z2009-07-29T11:21:53Z<p>You could have a look at this post too:
<a href="http://stackoverflow.com/questions/12927/if-you-have-a-java-application-that-is-consuming-cpu-when-it-isnt-doing-anythin">http://stackoverflow.com/questions/12927/if-you-have-a-java-application-that-is-consuming-cpu-when-it-isnt-doing-anythin</a></p>
http://stackoverflow.com/questions/1109988/how-do-i-convert-double-to-double/1110611#11106110Answer by svrist for How do I convert Double[] to double[]?svrist2009-07-10T16:33:36Z2009-07-10T16:33:36Z<p>I would second the ArrayUtils answer and add that the 1.5 <a href="http://www.jcp.org/aboutJava/communityprocess/jsr/tiger/autoboxing.html" rel="nofollow">autoboxing documentation</a>(<a href="http://www.discursive.com/books/cjcook/reference/lang-sect-transform-array.html" rel="nofollow">via</a>) kinda reveals that there is no builtin way:</p>
<blockquote>
<p>There is no permitted conversion from array type SC[] to array type TC[] if there is no permitted
conversion other than a string conversion from SC to TC</p>
</blockquote>
http://stackoverflow.com/questions/697076/what-are-the-best-overviews-for-cloud-technology/760095#7600950Answer by svrist for What are the best overviews for cloud technology?svrist2009-04-17T11:45:11Z2009-04-17T11:45:11Z<p>I would always take a look at John M Willis's/Cote's writings/podcasts about clouds:</p>
<ul>
<li><a href="http://www.johnmwillis.com/cloud-computing/cloud-favorites/" rel="nofollow">http://www.johnmwillis.com/cloud-computing/cloud-favorites/</a></li>
<li><a href="http://www.johnmwillis.com/cloud-computing/cloud-cafe-30-what-is-a-cloud-from-the-beginning/" rel="nofollow">http://www.johnmwillis.com/cloud-computing/cloud-cafe-30-what-is-a-cloud-from-the-beginning/</a></li>
</ul>
<p>And maybe browse through "thinking out cloud":</p>
<ul>
<li><a href="http://gevaperry.typepad.com/main/2009/01/what-is-a-cloud-first-define-a-table-the-furniture-kind-that-is.html" rel="nofollow">http://gevaperry.typepad.com/main/2009/01/what-is-a-cloud-first-define-a-table-the-furniture-kind-that-is.html</a></li>
</ul>
http://stackoverflow.com/questions/610205/yahoo-pipes-simplejson-and-slashes0Yahoo Pipes, simplejson and slashessvrist2009-03-04T11:42:25Z2009-03-24T14:53:50Z
<p>Im trying to use <a href="http://www.javarants.com/2008/04/13/using-google-app-engine-to-extend-yahoo-pipes/" rel="nofollow">http://www.javarants.com/2008/04/13/using-google-app-engine-to-extend-yahoo-pipes/</a> as inspiration, but I'm having some troubles with the output.</p>
<p>Its obvious when testing with the console and the App Engine "django util simplejson":</p>
<pre><code>/cygdrive/c/Program Files/Google/google_appengine/lib/django
$ python
Python 2.5.2 (r252:60911, Dec 2 2008, 09:26:14)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from django.utils import simplejson as json
>>> json.dumps('/')
'"\\/"'
>>> json.dumps('http://stackoverflow.com')
'"http:\\/\\/stackoverflow.com"
</code></pre>
<p><a href="http://microformats.org/wiki/json" rel="nofollow">As far as I can read</a> this is ok behavior:</p>
<blockquote>
<p>In JSON only the backslash, double
quote and ASCII control characters
need to be escaped. Forward slashes
may be escaped as in the URL example
below, but do not have to be.</p>
</blockquote>
<p>But when inputting back to yahoopipes, they don't "unescape" the output and all my urls and html doesnt work.</p>
<p>should I really do a </p>
<pre><code>self.response.out.write(json.dumps(obj).replace('\\/','/'))
</code></pre>
<p>?</p>
<p>==== Edit ===</p>
<p>To my great suprise I see that newest simplejson downloaded from simplejson site doesnt do the "slash" stuff :(
So the real issue is with app engines django.util.simplejson version?</p>
<p>=== Edit again ===</p>
<p>And now Ive created an issue in the tracker for it: <a href="http://code.google.com/p/googleappengine/issues/detail?id=1128" rel="nofollow">http://code.google.com/p/googleappengine/issues/detail?id=1128</a></p>
http://stackoverflow.com/questions/610205/yahoo-pipes-simplejson-and-slashes/677751#6777510Answer by svrist for Yahoo Pipes, simplejson and slashessvrist2009-03-24T14:53:50Z2009-03-24T14:53:50Z<p>Nothing here to see. The ticket is there, but thats it, as far as I can see</p>
http://stackoverflow.com/questions/497552/share-static-singletons-through-ejbs/497595#4975953Answer by svrist for Share static singletons through EJB's svrist2009-01-30T22:49:44Z2009-01-30T22:55:37Z<p>As far as I remember you cant be certain that the stateless bean is global enough for you to keep data in static fields. There exist several caching frameworks that would help you with this. Maybe <a href="http://www.whalin.com/memcached/" rel="nofollow">memcache</a>? </p>
<p>EDIT:
<a href="http://java.sun.com/blueprints/qanda/ejb_tier/restrictions.html#static_fields" rel="nofollow">http://java.sun.com/blueprints/qanda/ejb_tier/restrictions.html#static_fields</a> says:</p>
<blockquote>
<p>Nonfinal static class fields are
disallowed in EJBs because such fields
make an enterprise bean difficult or
impossible to distribute</p>
</blockquote>
http://stackoverflow.com/questions/180858/procedural-music-generation-techniques/485158#4851580Answer by svrist for Procedural music generation techniques...svrist2009-01-27T20:45:40Z2009-01-27T20:45:40Z<p>Ive been looking into doing <a href="http://www.diku.dk/hjemmesider/ansatte/simonsen/projects/spr09.pdf" rel="nofollow">this project proposal - "8.1</a>" from the "Theory and praxis in programming language" research group from the University of Copenhagen - department of CS:</p>
<blockquote>
<p>8.1 Automated Harvesting and Statistical Analysis of Music Corpora</p>
<p>Traditional analysis of sheet music
consists of one or more persons
analysing rhythm, chord sequences and
other characteristics of a single
piece, set in the context of an often
vague comparison of other pieces by
the same composer or other composers
from the same period. </p>
<p>Traditional
automated analysis of music has barely
treated sheet music, but has focused
on signal analysis and the use of
machine learning techniques to extract
and classify within, say, mood or
genre. In contrast, incipient research
at DIKU aims to automate parts of the
analysis of sheet music. The added
value is the potential for extracting
information from large volumes of
sheet music that cannot easily be done
by hand and cannot be meaningfully
analysed by machine learning
techniques.</p>
</blockquote>
<p>This - as I see it - is the opposite direction of your question the data generated - I imagine - could be used in some instances of procedural generation of music.</p>
http://stackoverflow.com/questions/463282/designing-a-process0Designing a processsvrist2009-01-20T21:51:00Z2009-01-21T08:17:23Z
<h2>I challenge you :)</h2>
<p>I have a process that someone already implemented. I will try to describe the requirements, and I was hoping I could get some input to the "best way" to do this.</p>
<p><hr /></p>
<p>It's for a financial institution.</p>
<p>I have a routing framework that will allow me to recieve files and send requests to other systems. I have a database I can use as I wish but it is only me and my software that has access to this database.</p>
<p><strong>The facts</strong></p>
<ul>
<li>Via the routing framework I recieve a file. </li>
<li>Each line in this file follows a fixed length format with the identification of a person and an amount (+ lots of other stuff).</li>
<li>This file is 99% of the time im below 100MB ( around 800bytes per line, ie 2,2mb = 2600lines)</li>
<li>Once a year we have 1-3 gb of data instead.</li>
<li>Running on an "appserver"</li>
<li>I can fork subprocesses as I like. (within reason)</li>
<li>I can not ensure consistency when running for more than two days. subprocesses may die, connection to db/framework might be lost, files might move</li>
<li>I can NOT send reliable messages via the framework. The call is synchronus, so I must wait for the answer.
<ul>
<li>It's possible/likely that sending these getPerson request will crash my "process" when sending LOTS. </li>
</ul></li>
<li>We're using java.</li>
</ul>
<p><br></p>
<p><strong>Requirements</strong></p>
<ul>
<li>I must return a file with all the data + I must add some more info for somelines. (about 25-50% of the lines : 25.000 at least)</li>
<li>This info I can only get by doing a getPerson request via the framework to another system. One per person. Takes between 200 and 400msec.</li>
<li>It must be able to complete within two days</li>
</ul>
<p><strong>Nice to have</strong></p>
<ul>
<li>Checkpointing. If im going to run for a long time I sure would like to be able to restart the process without starting from the top.
...</li>
</ul>
<p>How would you design this?
<em>I will later add the current "hack" and my brief idea</em></p>
<p><strong>========== Current solution ================</strong></p>
<p>It's running on BEA/Oracle Weblogic Integration, not by choice but by definition</p>
<p>When the file is received each line is read into a database with </p>
<p><pre>id, line, status,batchfilename</pre> and status 'Needs processing'</p>
<p>When all lines is in the database the rows are seperated by mod 4 and a process is started per each quarter of the rows and each line that needs it is enriched by the getPerson call and status is set to 'Processed'. (38.0000 in the current batch).</p>
<p>When all 4 quaters of the rows has been Processed a writer process startes by select 100 rows from that database, writing them to file and updating their status to 'Written'.
When all is done the new file is handed back to the routing framework, and a "im done" email is sent to the operations crew.</p>
<p>The 4 processing processes can/will fail so its possible to restart them with a http get to a servlet on WLI.</p>
http://stackoverflow.com/questions/297565/soa-what-internal-web-service-did-your-company-implement-first/372618#3726181Answer by svrist for SOA - What Internal Web Service Did Your Company Implement First?svrist2008-12-16T20:39:25Z2009-01-14T10:27:15Z<p>One of the first movers was the "Customer base system". </p>
<p>The common authority for all customers in the company.</p>
<p>EDIT:<br>
regarding the comment:<br>
It did indeed open up for more SOA. It's about 3-5years ago (before me) and currently it was publicly known last year that the SOA helped the company switch from a 3years delayed system to a new one within a year.</p>
<p>Regarding other stuff:<br>
Dont get me started on our SAP integration :S Thats 3 years old as well, and nobody is really able to debug or update the setup. Currently we are POCing webservice integration with SAP. Pheeew</p>
http://stackoverflow.com/questions/379332/any-experiences-with-websphere-integration-developer-wid/411081#4110811Answer by svrist for Any experiences with Websphere Integration Developer (WID)?svrist2009-01-04T14:43:07Z2009-01-04T14:43:07Z<p>So far I havent been impressed by any tools with the "SOA" and/or "BPM" labels on them. My "roadmap" would be very very iterative to see some results with the archetecture as fast as possible while trying to grab some of the easy fruits. That way you gain your feel for what works for you and your people.</p>
<p>I would never let any vendor push me anywhere in the "scuplturing" of the architecture.</p>
http://stackoverflow.com/questions/411019/how-do-you-get-yourself-back-out-of-the-zone-when-the-work-day-is-over/411028#4110281Answer by svrist for How do you get yourself back "out of the zone" when the work day is over?svrist2009-01-04T14:14:39Z2009-01-04T14:14:39Z<p>Reading fiction</p>
http://stackoverflow.com/questions/186829/ipv6-and-ports/186846#1868461Answer by svrist for IPv6 and portssvrist2008-10-09T11:33:59Z2008-12-26T18:58:55Z<p>I'm pretty certain that ports only have a part in tcp and udp. So it's exactly the same even if you use a new IP protocol</p>
http://stackoverflow.com/questions/3175/repository-pattern-tutorial-in-c/3484#34843Answer by svrist for Repository pattern tutorial in C#svrist2008-08-06T14:43:37Z2008-12-15T17:02:40Z<p>I'm not sure one exists.
<a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">I assume you've looke at the Martin Fowler EA description?</a>. If you have the book, it's very explicit about all the patterns and quite good. In my oppinion :)</p>
<p>Maybe this would be nice opportunity to make one here on this site.</p>
http://stackoverflow.com/questions/292860/spring-integration-as-embedded-alternative-to-standalone-esb/296638#2966381Answer by svrist for Spring Integration as embedded alternative to standalone ESBsvrist2008-11-17T19:45:19Z2008-11-17T19:45:19Z<p>This link describes the <a href="http://www.jroller.com/habuma/entry/spring_integration_return_of_the" rel="nofollow">FileSucker</a> with Spring Integration. Read up on your Enterprise Integration patterns for more info I think.</p>
<p>I kinda think you need to do a bit more investigation your self, or do a couple of tries on some of your usecases. Then we can discuss whats good and bad</p>
http://stackoverflow.com/questions/241003/how-to-get-a-value-from-the-last-inserted-row/241016#2410163Answer by svrist for How to get a value from the last inserted row?svrist2008-10-27T18:44:59Z2008-10-27T18:44:59Z<p>The sequences in postgresql is transaction safe. So you can use the </p>
<pre><code>currval(sequence)
</code></pre>
<p><a href="http://www.postgresql.org/docs/7.4/interactive/functions-sequence.html" rel="nofollow">Quote:</a></p>
<blockquote>
<p>currval</p>
<blockquote>
<p>Return the value most recently obtained by nextval for this sequence
in the current session. (An error is
reported if nextval has never been
called for this sequence in this
session.) Notice that because this is
returning a session-local value, it
gives a predictable answer even if
other sessions are executing nextval
meanwhile.</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/225830/syntax-highlighting-when-pasting-into-emails1Syntax highlighting when pasting into emailssvrist2008-10-22T13:56:18Z2008-10-23T09:29:10Z
<p>Im in the situation that I often send small codesnippets and xml-snippets to coworkers and partners via my outlook.
Has anyone got a good idea or tool that I can use to have my pastes syntaxhighlighted before I paste them into an email.</p>
<p>I was thinking of an intermediate paste to "$fancytool" and then I would have something to copy that will htmlified so I can copy paste it into the "compose email" window.</p>
<p><em>Edit-More-info:</em></p>
<p>Im pasting from windows within a VMWare virtual Machine, it might be eclipse, xmlspy, logfiles and other programs</p>
<p><em>Even-more-info:</em></p>
<p>I've seen <a href="http://vim.wikia.com/wiki/Pasting_code_with_syntax_coloring_in_emails" rel="nofollow">this link</a> how to do it from Vim. Unfortunately it seldom from vim im copying Code, and my email machine hasnt got any vim. The vmware machines has gvim, but I was hoping for an easier way that pasting to vim, saving to file, opening in internetexplorer and then copy/paste</p>
http://stackoverflow.com/questions/225830/syntax-highlighting-when-pasting-into-emails/226000#2260000Answer by svrist for Syntax highlighting when pasting into emailssvrist2008-10-22T14:33:47Z2008-10-23T09:29:10Z<p>This <a href="http://www.fauskes.net/nb/syntaxms/" rel="nofollow">link</a> led me to <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a>.</p>
<p>Looks like <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> has a Copy to RTF feature:</p>
<p><img src="http://www.scintilla.org/demo.png" alt="SciTE" /></p>
<p>Edit(vmware upgrade):
But it looks like I am pretty much lost when I use vmware because I cant transfer rtf clipboard items to the vmware host. And I cant install software on the vmware host.</p>
<p>Maybe a paste-site with syntax highlighting?</p>
http://stackoverflow.com/questions/190368/getting-the-string-representation-of-a-type-at-runtime-in-scala/195294#1952940Answer by svrist for Getting the string representation of a type at runtime in Scalasvrist2008-10-12T10:00:09Z2008-10-15T09:20:40Z<p>Please note that this isn't really "the thing:"</p>
<pre><code>object Test {
def main (args : Array[String]) {
println(classOf[List[String]])
}
}
</code></pre>
<p>gives</p>
<pre><code>$ scala Test
class scala.List
</code></pre>
<p>I think you can blame this on erasure</p>
<p>====EDIT====
I've tried doing it with a method with a generic type parameter:</p>
<pre><code>object TestSv {
def main(args:Array[String]){
narf[String]
}
def narf[T](){
println(classOf[T])
}
}
</code></pre>
<p>And the compiler wont accept it. Types arn't classes is the explanation</p>
http://stackoverflow.com/questions/200837/using-sql-for-cleaning-up-jira-database1Using SQL for cleaning up JIRA databasesvrist2008-10-14T11:54:07Z2008-10-14T15:59:13Z
<p>Has anyone had luck with removing large amount of issues from a jira database instead of using the frontend. Deleting 60.000 issues with the bulktools isnt really feasible.</p>
<p>Last time i tried it, the jira went nuts because of its own way of doing indexes</p>
http://stackoverflow.com/questions/200837/using-sql-for-cleaning-up-jira-database/201763#2017632Answer by svrist for Using SQL for cleaning up JIRA databasesvrist2008-10-14T15:59:13Z2008-10-14T15:59:13Z<p>We got gutsy and did a truncate on the jiraissues table and then use the rebuild index feature on the frontend. It looks like it's working!</p>
http://stackoverflow.com/questions/1879626/index-over-a-column-with-only-5-distinct-values-worth-it/1879675#1879675Comment by svrist on Index over a column with only 5 distinct values - Worth it?svrist2009-12-10T10:06:21Z2009-12-10T10:06:21ZIm already there (trying it out). See the image :)
Splitting into more tables is not a possibility at the moment, and would destroy other queries so I dont think its a good ideahttp://stackoverflow.com/questions/1879626/index-over-a-column-with-only-5-distinct-values-worth-it/1879656#1879656Comment by svrist on Index over a column with only 5 distinct values - Worth it?svrist2009-12-10T09:55:45Z2009-12-10T09:55:45ZLooks like it ignores the SAMPLE 5000000 stuff. The optimizer still favors full table scan with 60.000 rows. Ill leave the index there. The insert and storage "issues" is not an issue anywayhttp://stackoverflow.com/questions/1879626/index-over-a-column-with-only-5-distinct-values-worth-it/1879656#1879656Comment by svrist on Index over a column with only 5 distinct values - Worth it?svrist2009-12-10T09:21:53Z2009-12-10T09:21:53ZInteresting. With my current load of data it is still cheaper with a full table scan, but Ill try and increase to 50.000 rows instead of 10.000http://stackoverflow.com/questions/241003/how-to-get-a-value-from-the-last-inserted-row/241016#241016Comment by svrist on How to get a value from the last inserted row?svrist2009-12-10T08:27:06Z2009-12-10T08:27:06ZNo. that exactly what the currval function is for.http://stackoverflow.com/questions/1865423/index-with-multiple-columns-ok-when-doing-query-on-only-one-columnComment by svrist on index with multiple columns - ok when doing query on only one column?svrist2009-12-09T09:23:39Z2009-12-09T09:23:39ZI just <3 StackOverflow. Excellent answers way better than expected. I accepted the answer that I used, and allow the highest voted answer to be the supplement right below the accepted answerhttp://stackoverflow.com/questions/1701124/for-each-row-in-query-select-top-20-from-other-query/1701188#1701188Comment by svrist on For each row in query select top 20 from other querysvrist2009-11-09T14:33:17Z2009-11-09T14:33:17ZIn my toad i needed to change "Rownumber(....)" to "Rownumber() over (..." but otherwise works as a charm. Tony won the fastest gun in the west thoughhttp://stackoverflow.com/questions/1701124/for-each-row-in-query-select-top-20-from-other-query/1701154#1701154Comment by svrist on For each row in query select top 20 from other querysvrist2009-11-09T14:31:46Z2009-11-09T14:31:46ZI removed the "comma" in (partition by thename, order by cnt desc) and I needed to partion by hour instead of thename but otherwise perfect!http://stackoverflow.com/questions/1062540/how-to-delete-all-datastore-in-google-app-engine/1062553#1062553Comment by svrist on How to delete all datastore in Google App Engine?svrist2009-09-11T08:49:36Z2009-09-11T08:49:36ZThere's a -c parameter to the dev_appserver.py to delete from the development datastore.http://stackoverflow.com/questions/1398018/rsync-git-directory/1398050#1398050Comment by svrist on rsync .git directory svrist2009-09-09T07:27:54Z2009-09-09T07:27:54ZI was figuring that as my remote server doesnt have git I couldnt git push to ithttp://stackoverflow.com/questions/675077/ocr-for-sheet-musicComment by svrist on OCR for sheet musicsvrist2009-08-29T14:22:42Z2009-08-29T14:22:42ZMy "feeling" about the best commercial tool is Photoscorehttp://stackoverflow.com/questions/1149280/autodoc-for-private-methods-in-sphinx/1149714#1149714Comment by svrist on Autodoc for private methods in Sphinxsvrist2009-08-19T19:31:05Z2009-08-19T19:31:05ZThis seems backwards to what PEP-8 says about private. "If in doubt, choose non-public" <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">python.org/dev/peps/pep-0008</a>http://stackoverflow.com/questions/1213268/axis-loading-modules-creating-tempfile-and-failing/1234921#1234921Comment by svrist on Axis loading modules - Creating tempfile and failingsvrist2009-08-05T18:56:45Z2009-08-05T18:56:45ZThe resending is handled already. My problem is the performance impact and the irritationhttp://stackoverflow.com/questions/1110257/how-to-make-apache-slow-and-unreliableComment by svrist on How to make apache slow and unreliable?svrist2009-07-10T16:37:48Z2009-07-10T16:37:48ZDummynet in freebsd is made for this kind of testing.http://stackoverflow.com/questions/806606/difference-between-bpm-and-app-workflowComment by svrist on Difference between BPM and App. workflow?svrist2009-05-05T19:36:48Z2009-05-05T19:36:48ZIm not sure I understand the "application workflow" part. Like "BPM is just the workflow of an application"? http://stackoverflow.com/questions/785305/keep-timestamp-when-copying-my-sql-server-databaseComment by svrist on Keep timestamp when copying my SQL Server databasesvrist2009-04-24T10:30:14Z2009-04-24T10:30:14ZI think that the [SQL Server] mark in the title is superfluous. That's what the tags are for.