User dpavlin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T00:11:19Zhttp://stackoverflow.com/feeds/user/1081http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673145/capturing-rsync-progress-messages-in-perl/1212229#12122290Answer by dpavlin for Capturing rsync progress messages in Perldpavlin2009-07-31T12:17:38Z2009-07-31T12:17:38Z<p><a href="http://perl.plover.com/FAQs/Buffering.html" rel="nofollow">Suffering from Buffering?</a> is best explanation about buffering effect I found so far. Well worth the time to read and understand.</p>
<p>Don't forget that buffering is there for a reason so don't just blinding turn it off for every possible problem.</p>
http://stackoverflow.com/questions/1097488/decoding-url-in-wireshark/1161491#11614911Answer by dpavlin for Decoding URL in Wiresharkdpavlin2009-07-21T20:08:52Z2009-07-21T20:08:52Z<p>As far as I can see, this is SYN packet from initial TCP/IP handshake, and it doesn't contain URL yet. You have to capture a few more packets (or move down in wireshark if you are using gui).</p>
<p>Capturing longer snippets in reproducable pattern (power-on device, click few operations, power-off) is good suggestion if you intend to compare dumps.</p>
http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm5How could I guess a checksum algorithm?dpavlin2008-09-29T16:56:37Z2009-07-08T14:33:21Z
<p>Let's assume that I have some packets with a 16-bit checksum at the end. I would like to guess which checksum algorithm is used.</p>
<p>For a start, from dump data I can see that one byte change in the packet's payload totally changes the checksum, so I can assume that it isn't some kind of simple XOR or sum.</p>
<p>Then I tried <a href="http://svn.rot13.org/index.cgi/RFID/view/guess-crc.pl" rel="nofollow">several variations of CRC16</a>, but without much luck.</p>
<p>This question might be more biased towards cryptography, but I'm really interested in any easy to understand statistical tools to find out which CRC this might be. I might even turn to <a href="http://lcamtuf.coredump.cx/newtcp/" rel="nofollow">drawing different CRC algorithms</a> if everything else fails.</p>
<p>Backgroud story: I have serial RFID protocol with some kind of checksum. I can replay messages without problem, and interpret results (without checksum check), but I can't send modified packets because device drops them on the floor. </p>
<p>Using existing software, I can change payload of RFID chip. However, unique serial number is immutable, so I don't have ability to check every possible combination. Allthough I could generate dumps of values incrementing by one, but not enough to make exhaustive search applicable to this problem.</p>
<p><a href="http://www.bljak.org/~dpavlin/rfid-serial-dump.tar.gz" rel="nofollow">dump files with data</a> are available if question itself isn't enough :-)</p>
<p><strong>Need reference documentation?</strong> <a href="http://www.geocities.com/SiliconValley/Pines/8659/crc.htm" rel="nofollow">A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS</a> is great reference which I found after asking question here.</p>
<p>In the end, after very helpful hint in accepted answer than it's CCITT, I
<a href="http://www.zorc.breitbandkatze.de/crc.html" rel="nofollow">used this CRC calculator</a>, and xored generated checksum with known checksum to get 0xffff which led me to conclusion that final xor is 0xffff instread of CCITT's 0x0000.</p>
http://stackoverflow.com/questions/1050919/how-would-you-align-pictures1How would you align pictures?dpavlin2009-06-26T19:48:58Z2009-06-29T15:35:44Z
<p>I have a bunch of gif files which would be much more useful as animation. Unfortunately, they are not exactly the same size, and main features (country borders) shift a bit from picture to picture.</p>
<p><a href="http://ti.arc.nasa.gov/project/nasa-vision-workbench/" rel="nofollow">NASA Vision Workbench</a> seems like solution to my problem, but I would love to get something a bit simpler.</p>
http://stackoverflow.com/questions/164800/clos-like-object-model-for-php2CLOS like object model for PHPdpavlin2008-10-02T21:59:13Z2009-04-27T19:23:17Z
<p>I have returned to php development from <a href="http://www.iinteractive.com/moose/" rel="nofollow">Moose</a> and I really miss CLOS like object model for php. Is there some kind of syntaxtic sugar which would allow me to write <strong>less code</strong> in php when dealing with objects?</p>
<p>Just to stress this requirement a bit more. I don't want to write one thing in several places. I can live with part of code being generated automatically, but in the code that I have to see to develop I don't want to see redundant information which is just clutter (think: LISP macro if you really need more analogy). So this part can be also called DSL if that makes more sense.</p>
<p>I would love to have at least <strong>roles</strong> (mixins), and some kind of <strong>introspection</strong> without re-inventing the weel. Code generators and auto-loaders might be one way to solve at least part of this problem.</p>
<p>p.s. For JavaScript there is <a href="http://code.google.com/p/joose-js/" rel="nofollow">Joose</a>, so similar API would be very useful.</p>
http://stackoverflow.com/questions/639545/is-there-a-business-proven-cloud-store-keyvalue-database-open-source/720470#7204703Answer by dpavlin for Is there a business proven cloud store / Key=>Value Database? (Open Source)dpavlin2009-04-06T07:25:28Z2009-04-06T07:25:28Z<p><a href="http://www.mongodb.org" rel="nofollow">MongoDB</a> is another option which is very similar to CouchDB, but using query language very similar to SQL instead of map/reduce in JavaScript. It also supports indexes, query profiling, replication and storage of binary data.</p>
<p>It has huge amount of documentation which might be overwhelming at fist, so I would suggest to start with <a href="http://www.mongodb.org/display/DOCS/MongoDB%2B-%2BA%2BDeveloper%27s%2BTour" rel="nofollow">Developer's tour</a></p>
http://stackoverflow.com/questions/572835/camel-caps-soap-method-names1Camel Caps SOAP method namesdpavlin2009-02-21T11:32:16Z2009-02-21T13:08:32Z
<p>One of my co-workers is developing SOAP API for php application and he is wondering if CamelCaps names are some kind of convention for SOAP methods?</p>
<p>Our current API has lower_caps_and_underscores, but it seems somewhat strange when compared with random subset of other SOAP APIs, and we wouldn't really want to annoy consumers of API with our wrong convention.</p>
http://stackoverflow.com/questions/234084/how-to-detect-duplicate-text1How to detect duplicate text?dpavlin2008-10-24T15:46:14Z2009-01-21T01:03:16Z
<p>Some thing ago, I write <a href="http://svn.rot13.org/index.cgi/refeed/view/trunk/deduper/reblog-dupe.pl" rel="nofollow">small script</a> using <a href="http://search.cpan.org/dist/Text-DeDuper/" rel="nofollow">Text::DeDupe</a> to remove duplicates of blog posts before I have to lay my eyes on them.</p>
<p>After reading <a href="http://www.ra.ethz.ch/CDstore/www6/Technical/Paper205/Paper205.html" rel="nofollow">Syntactic Clustering of the Web</a> paper on which implementation is based, I would love to have ability to find overlapping documents (e.g. snippets of blogs as opposed to full text, maybe also quotes).</p>
<p>Do you know of any other implementation in C, C++ or perl which I can try out before writing my own?</p>
http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows6How to sniff usb port under Windows?dpavlin2008-09-22T20:39:03Z2008-10-16T10:52:13Z
<p>From time to time I need to dump usb traffic under windows, mostly to support hardware under Linux, so my primary goal is to produce dump files for protocol analysis.</p>
<p>For USB traffic, it seems that <a href="http://www.pcausa.com/Utilities/UsbSnoop/default.htm" rel="nofollow">SniffUsb</a> is the clear winner... It works under XP and has much nicer GUI than earlier versions. It produce <em>huge</em> dump files, but everything is there.</p>
<p>However, my device is in fact usb serial device, so I turned to <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">Portmon</a> which can sniff serial port traffic without USB overhead.</p>
http://stackoverflow.com/questions/164105/testing-onbeforeunload-events-from-selenium/164754#1647540Answer by dpavlin for Testing onbeforeunload events from Seleniumdpavlin2008-10-02T21:46:54Z2008-10-02T21:46:54Z<p>When I was confronted with limited control which I had over browser using Selenium, I turned to <a href="http://hyperstruct.net/projects/mozlab" rel="nofollow">MozLab</a> plugin which solved my problem if only for one browser platform.</p>
http://stackoverflow.com/questions/42778/which-perl-database-interface-should-i-use/59406#594062Answer by dpavlin for Which Perl database interface should I use?dpavlin2008-09-12T16:07:06Z2008-09-12T16:07:06Z<p>If you want to work with objects (with introspection!), take a look at Fey::ORM which implements ORM based on Moose. It's also has very SQL like syntax so it fits my RDBMS-based brain a bit better than some of other ORM frameworks.</p>
http://stackoverflow.com/questions/46324/possible-to-perform-cross-database-queries-with-postgres/59389#593891Answer by dpavlin for Possible to perform cross-database queries with postgres?dpavlin2008-09-12T15:56:31Z2008-09-12T15:56:31Z<p>If performance is important and most queries are read-only, I would suggest to replicate data over to another database. While this seems like unneeded duplication of data, it might help if indexes are required.</p>
<p>This can be done with simple on insert triggers which in turn call dblink to update another copy. There are also full-blown replication options (like Slony) but that's off-topic.</p>
http://stackoverflow.com/questions/1970/what-language-do-you-use-for-postgresql-triggers-and-stored-procedures/59345#593451Answer by dpavlin for What language do you use for Postgresql triggers and stored procedures?dpavlin2008-09-12T15:39:39Z2008-09-12T15:39:39Z<p>Skype uses PostgreSQL together with python, and they have improved PL/Python to it's current state so I would doubt that python support is far behind perl. They have written queuing/replication system on top of those bindings, after all :-) Take a look: https://developer.skype.com/SkypeGarage/DbProjects/SkyTools</p>
<p>From a quick look in documentation, python seems to have less documentation than perl bindings, but I would suggest to just stick with language you are most comfortable with.</p>
http://stackoverflow.com/questions/45470/suggest-some-good-mvc-framework-in-perl/59258#592581Answer by dpavlin for Suggest some good MVC framework in perldpavlin2008-09-12T15:17:43Z2008-09-12T15:24:12Z<p>Let me just say that Jifty doesn't have terrible documentation. However, most of included documentation is API documentation, but there is very low-noise mailing list which has useful tips and links to applications.</p>
<p>Wiki at <a href="http://jifty.org/" rel="nofollow">http://jifty.org/</a> is another resource which has useful bits.</p>
<p>If your goal is to make video store (my favorite benchmark for 4GLs and CRUD frameworks) in afternoon, it's really worth a look!</p>
<p>For your problem I would take a look into Jifty::Plugin::REST which allows access to models and actions using various formats.</p>
http://stackoverflow.com/questions/2861/options-for-html-scraping/29130#291301Answer by dpavlin for Options for HTML scraping?dpavlin2008-08-26T22:46:37Z2008-08-27T09:28:43Z<p>Another option for perl would be <a href="http://search.cpan.org/~miyagawa/Web-Scraper/lib/Web/Scraper.pm" rel="nofollow" title="Web::Scraper">Web::Scraper</a> which is based on Ruby's <a href="http://blog.labnotes.org/2006/07/11/scraping-with-style-scrapi-toolkit-for-ruby/" rel="nofollow" title="Scrapi">Scrapi</a>. In a nutshell, with nice and concise syntax you can get robust scraper directly into datastructures.</p>
http://stackoverflow.com/questions/1050919/how-would-you-align-pictures/1056230#1056230Comment by dpavlin on How would you align pictures?dpavlin2009-07-02T12:35:17Z2009-07-02T12:35:17ZThanks for suggestion. Although I didn't accept it, I really appreciate hint. It's hard to talk about topic which you don't know terms :-)http://stackoverflow.com/questions/1050919/how-would-you-align-picturesComment by dpavlin on How would you align pictures?dpavlin2009-07-02T12:33:52Z2009-07-02T12:33:52ZYeah, sure: <a href="http://klima.hr/ocjene/2009/" rel="nofollow">klima.hr/ocjene/2009</a>http://stackoverflow.com/questions/1050919/how-would-you-align-picturesComment by dpavlin on How would you align pictures?dpavlin2009-06-27T10:54:07Z2009-06-27T10:54:07ZI have country borders, which are quite similar (but not same due to anti-aliasing) in all pictures. I could extract it manually, but best solution would find that automatically as common shape in all pictures.http://stackoverflow.com/questions/164800/clos-like-object-model-for-php/165908#165908Comment by dpavlin on CLOS like object model for PHPdpavlin2008-10-06T11:52:36Z2008-10-06T11:52:36ZIs there any hope to have it in official php any time soon?http://stackoverflow.com/questions/164800/clos-like-object-model-for-php/166081#166081Comment by dpavlin on CLOS like object model for PHPdpavlin2008-10-03T19:07:27Z2008-10-03T19:07:27ZWhile it does seem like a nice framework, it fails initial requirement of less code, especially __construct in example that you linked. After few readings it still seems completely redundant to me.http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-10-02T20:39:15Z2008-10-02T20:39:15ZIgnore me, final xor is 0xffff not 0x0000 as with ccitt... I xored ccitt checksum with checksum itself, and that lead me in right direction...
http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-10-02T20:09:41Z2008-10-02T20:09:41ZI'm slowly loosing my hair (again). I tried to use CCITT with my data, but it doesn't work for me. Can you share a snippet of implementation and/or reproduce CRC on <a href="http://www.zorc.breitbandkatze.de/crc.html" rel="nofollow">zorc.breitbandkatze.de/crc.html</a> or <a href="http://www.lammertbies.nl/comm/info/crc-calculation.html" rel="nofollow">lammertbies.nl/comm/info/…</a>http://stackoverflow.com/questions/137998/qs-on-pgsql/156332#156332Comment by dpavlin on Q's on pgsqldpavlin2008-10-02T17:59:34Z2008-10-02T17:59:34Z1) is actually cross-schema which is just different namespace in same database
http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/158693#158693Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-10-02T16:31:31Z2008-10-02T16:31:31ZThanks, I'm trying it right now! :-)http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/149715#149715Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-09-29T17:23:19Z2008-09-29T17:23:19ZTo be exact, my longest message is 70 bytes. There is hole in packet before length which might extend possible lengths over one byte, but I haven't seen any real-life messages longer than 70 bytes yet.http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/149715#149715Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-09-29T17:20:44Z2008-09-29T17:20:44ZTrue, but messages are well below 256 bytes, and checksum is checked on rather simple hardware device, so my best guess for now is that it's some kind of CRC.http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithmComment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-09-29T17:14:04Z2008-09-29T17:14:04ZNo, I can't. I can change part of data and generate checksums of that using existing application which talks to device, but this is not whole packet.http://stackoverflow.com/questions/149617/how-could-i-guess-a-checksum-algorithm/149663#149663Comment by dpavlin on How could I guess a checksum algorithm?dpavlin2008-09-29T17:06:31Z2008-09-29T17:06:31ZCorrect. I have serial RFID protocol with some kind of checksum. I can replay messages without problem, and interpret results (without checksum check), but I can't send modified packets because device drop them on the floor.http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows/117842#117842Comment by dpavlin on How to sniff usb port under Windows?dpavlin2008-09-23T19:59:45Z2008-09-23T19:59:45ZThnaks, as a next step I will probably try to run it under qemu or kvm.http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows/117853#117853Comment by dpavlin on How to sniff usb port under Windows?dpavlin2008-09-23T19:49:49Z2008-09-23T19:49:49ZIf you look at URL of SniffUsb, it includes USBSnoop because it's based on it :-)