User Jamie Love - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T21:49:15Zhttp://stackoverflow.com/feeds/user/27308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904971/best-approach-to-creating-a-custom-extjs-of-pure-html0Best approach to creating a custom ExtJS of pure HTMLJamie Love2009-12-15T03:22:52Z2009-12-15T05:27:55Z
<p>So I have a need to create an ExtJS component (version 2.3.0). The component is simply plain HTML (styled) - it is a heading.</p>
<p>My current approach is to create a custom component as follows:</p>
<pre><code>/**
* A ExtJS component for a header for the application
*/
Ext.ux.AppHeader = Ext.extend(Ext.Component, {
height: 32,
tpl: new Ext.Template ('<div class="title-bar"><h1>My App</h1></div>'),
onRender: function(ct) {
this.el = this.tpl.append (ct);
Ext.ux.AppHeader.superclass.onRender.apply(this, arguments);
}
});
Ext.reg('AppHeader', Ext.ux.AppHeader);
</code></pre>
<p>This works fine, but I'm not convinced it is the "right" way to go about it. If anyone can share a more idiomatic way to do it, or a way that utilises some inner magic in ExtJS better, that would be great.</p>
<p>If on the other hand this is the "right" way to do it - let this be an example of how one can.</p>
http://stackoverflow.com/questions/1041563/restricting-an-element-to-having-text-or-subelements1Restricting an element to having text, or subelements.Jamie Love2009-06-24T23:59:04Z2009-11-26T19:00:29Z
<p>We have a situation where we want to restrict an element to having:</p>
<ul>
<li>Either text(). or</li>
<li>Subelements.</li>
</ul>
<p>E.g.</p>
<pre><code><a>mytext</a>
</code></pre>
<p>or</p>
<pre><code><a><b>xxx</b></a>
</code></pre>
<p>But not:</p>
<pre><code><a>mytext<b>xxx</b></a>
</code></pre>
<p>Given the <a href="http://stackoverflow.com/questions/376582/xml-schema-element-with-attributes-containing-only-text">xs:simpleContent</a> mechanism I can restrict it to having only text, and of course I can define the element(s) it can be allowed, but does anyone know how I can combine the two to allow either text or subelements but not both?</p>
<p>Ta
Jamie</p>
http://stackoverflow.com/questions/1408729/flex-datagrid-with-combobox-itemrenderer1Flex DataGrid with ComboBox itemRendererJamie Love2009-09-11T02:43:32Z2009-10-05T19:51:42Z
<p>Hi there,</p>
<p>I'm going spare trying to figure out the "correct" way to embed a ComboBox inside a Flex (3.4) DataGrid. By Rights (e.g. according to this page <a href="http://blog.flexmonkeypatches.com/2008/02/18/simple-datagrid-combobox-as-item-editor-example/" rel="nofollow">http://blog.flexmonkeypatches.com/2008/02/18/simple-datagrid-combobox-as-item-editor-example/</a>) it should be easy, but I can't for the life of me make this work.</p>
<p>The difference I have to the example linked above is that my display value (what the user sees) is different to the id value I want to select on and store in my data provider.</p>
<p>So what I have is:</p>
<pre><code><mx:DataGridColumn headerText="Type" width="200" dataField="TransactionTypeID" editorDataField="value" textAlign="center" editable="true" rendererIsEditor="true">
<mx:itemRenderer>
<mx:Component>
<mx:ComboBox dataProvider="{parentDocument.transactionTypesData}"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</code></pre>
<p>Where <code>transactionTypesData</code> has both 'data' and 'label' fields (as per what the <code>ComboBox</code> - why on earth it doesn't provide both a labelField and idField I'll never know).</p>
<p>Anyway, the above MXML code doesn't work in two ways:</p>
<ol>
<li>The combo box does not show up with any selected item.</li>
<li>After selecting an item, it does not store back that selected item to the datastore.</li>
</ol>
<p>So, has anyone got a similar situation working?</p>
http://stackoverflow.com/questions/1408729/flex-datagrid-with-combobox-itemrenderer/1436270#14362701Answer by Jamie Love for Flex DataGrid with ComboBox itemRendererJamie Love2009-09-17T01:14:22Z2009-10-05T19:51:42Z<p>While Jeff's answer is a partial answer for one approach for this (see <a href="http://flex.gunua.com/?p=119" rel="nofollow">http://flex.gunua.com/?p=119</a> for a complete example of this being used to good effect), it isn't as general as I wanted.</p>
<p>Thankfully, I finally found some great help on <a href="http://www.experts-exchange.com/Web%5FDevelopment/Web%5FLanguages-Standards/Flex/Q%5F22958642.html" rel="nofollow">Experts Exchange</a> (the answers by hobbit72) describes how to create a custom component that works in a grid as a ItemRenderer.
I've extended that code to also support using the combo box as an ItemEditor as well. The full component is as follows:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:ComboBox
xmlns:mx="http://www.adobe.com/2006/mxml"
dataChange="setSelected()"
change="onSelectionChange(event)"
focusEnabled="true">
<mx:Script>
<![CDATA[
import mx.events.DataGridEvent;
import mx.events.ListEvent;
import mx.controls.dataGridClasses.DataGridListData;
private var _ownerData:Object;
private var _lookupField:String = "value";
// When using this component as an itemEditor rather than an itemRenderer
// then set ' editorDataField="selectedItemKey"' on the column to
// ensure that changes to the ComboBox are propogated.
[Bindable] public var selectedItemKey:Object;
public function set lookupField (value:String) : void {
if(value) {
_lookupField = value;
setSelected();
}
}
override public function set data (value:Object) : void {
if(value) {
_ownerData = value;
setSelected();
}
}
override public function get data() : Object {
return _ownerData;
}
private function setSelected() : void {
if (dataProvider && _ownerData) {
var col:DataGridListData = DataGridListData(listData);
for each (var dp:Object in dataProvider) {
if (dp[_lookupField] == _ownerData[col.dataField]) {
selectedItem = dp;
selectedItemKey = _ownerData[col.dataField];
return;
}
}
}
selectedItem = null;
}
private function onSelectionChange (e:ListEvent) : void {
if (selectedItem && _ownerData) {
var col:DataGridListData = DataGridListData(listData);
_ownerData[col.dataField] = selectedItem[_lookupField];
selectedItemKey = selectedItem[_lookupField];
}
}
]]>
</mx:Script>
</mx:ComboBox>
</code></pre>
<p>Using this component is straight forward. As an ItemRenderer:</p>
<pre><code><mx:DataGridColumn headerText="Child" dataField="PersonID" editable="false" textAlign="center">
<mx:itemRenderer>
<mx:Component>
<fx:GridComboBox dataProvider="{parentDocument.childrenData}" labelField="Name" lookupField="PersonID" change="dispatchEvent(new mx.events.DataGridEvent(mx.events.DataGridEvent.ITEM_FOCUS_OUT, true, true))"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</code></pre>
<p>Using this component is straight forward. And as an ItemEditor:</p>
<pre><code><mx:DataGridColumn labelFunction="lookupChildName" headerText="Child" dataField="PersonID" editable="true" editorDataField="selectedItemKey">
<mx:itemEditor>
<mx:Component>
<fx:GridComboBox dataProvider="{parentDocument.childrenData}" labelField="Name" lookupField="PersonID" change="dispatchEvent(new mx.events.DataGridEvent(mx.events.DataGridEvent.ITEM_FOCUS_OUT, true, true))"/>
</mx:Component>
</mx:itemEditor>
</mx:DataGridColumn>
</code></pre>
<p>Note that when using it as an ItemEditor, a custom labelFunction (that looks up the Name from the PersonID in my case) must be used, otherwise you only see the key in the grid when the field isn't being edited (not a problem if your keys/values are the same).</p>
<p>Note that in my case, I wanted the item focus out event to propogate up to provide immediate feedback to the user (my DataGrid has <code>itemFocusOut="handleChange()"</code>), hence the <code>change</code> event creating an ITEM_FOCUS_OUT event.</p>
<p>Note that there are probably simpler ways to have a ComboBox as an ItemEditor when you don't mind the ComboBox only shown when the user clicks on the cell to edit. The approach I wanted was a generic way to show a combo box in a DataGrid for all rows, and being editable and with decent event propogation.</p>
http://stackoverflow.com/questions/1457003/recommended-data-visualisation-books6Recommended Data Visualisation Books?Jamie Love2009-09-21T21:33:33Z2009-09-27T21:22:00Z
<p>I'm trying to decide on a good set of 4 books that would be considered the "best" books to read for people wanting to learn about how best to display and visualize data. I'm particularly interested in language-agnostic books (e.g. I'm not so interested in books specifically about <a href="http://processing.org/" rel="nofollow">Processing</a>). Currently I have:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/1568813066" rel="nofollow">Data Visualization - Principles and Practice</a> - not really sure about this one.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0961392118" rel="nofollow">Envisioning Information</a> - Not necessary as practical as I'd like.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0961392142" rel="nofollow">The Visual Display of Quantitative Information</a> - Maybe having two of Edward Tufte's books in the list is overkill. </li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1558605339" rel="nofollow">Readings in Information Visualization: Using Vision to
Think</a></li>
</ul>
<p>Note that I'm not so keen on books on data mining.</p>
<p>I'm somewhat torn about:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0970601980" rel="nofollow">Now You See It: Simple Visualization Techniques for Quantitative Analysis</a> - I like it's practical nature, but not sure if it can fit in the top 4.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0471149993" rel="nofollow">Visual Data Mining: Techniques and Tools for Data Visualization and Mining</a> - I'm wondering if there are other books more focused on the data visualisation than this one. Information Dashboard Design: "The Effective Visual Communication of Data" is another one to consider.</li>
*
</ul>
<p><a href="http://www.perceptualedge.com/articles/b-eye/data%5Fvisualization%5Fbookshelf.pdf" rel="nofollow">This PDF</a> by Stephen Few provides some good ideas, but as he recommends two of his own books, I'd like another opinion :-)</p>
<p>Can anyone suggest how to improve or round out my list? If I had to focus on a particular aspect of data visualization, It'd have to be around displaying data in an interactive manner onscreen to people who want to "think about the data".</p>
<p>Thanks for any suggestions.</p>
<p><strong>Edit</strong></p>
<p>I finally decided on six books, slightly changed from the above list. They were:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0961392118" rel="nofollow">Envisioning Information</a> - Because Tufte's considered awesome.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0961392142" rel="nofollow">The Visual Display of Quantitative Information</a> - Because it was not easy to choose between this and Envisioning information.</li>
<li>Beautiful Data: The Stories Behind Elegant Data Solutions - Toby Segaran, as suggested by Zsolt.</li>
<li>Creating More Effective Graphs - Naomi B. Robbins </li>
<li>Information Visualization, Second Edition: Perception for Design (Interactive Technologies) - Colin Ware </li>
<li>Turning Numbers into Knowledge: Mastering the Art of Problem Solving - Jonathan G. Koomey PhD </li>
</ul>
<p>I dropped <a href="http://rads.stackoverflow.com/amzn/click/1558605339" rel="nofollow">Readings in Information Visualization: Using Vision to
Think</a> from the list because, although I'd love to include it, at 80USD it isn't cheap.
I also dropped <a href="http://rads.stackoverflow.com/amzn/click/1568813066" rel="nofollow">Data Visualization - Principles and Practice</a> because I think the other books will cover it well enough.</p>
http://stackoverflow.com/questions/196668/external-styles-in-jasperreports2External Styles in JasperReportsJamie Love2008-10-13T03:53:45Z2009-09-07T23:25:15Z
<p>Hi there,</p>
<p>I'm working on a system that includes a large number of reports, generated using <a href="http://jasperforge.org/plugins/project/project_home.php?group_id=102" rel="nofollow">JasperReports</a>. One of the newer features is that you can define styles for reports.</p>
<p>From the available docs I believe there is some way to have an external file defining styles to use, and you can reference that in your jasper reports. This allows a single style to be used by multiple reports.</p>
<p>I can't find any concrete information on whether this is an actual feature, and if it is, how to use it. Does anyone know if it is possible to have external styles for jasper reports, and if so, how to do it?</p>
<p>Thanks,
Jamie</p>
http://stackoverflow.com/questions/1355235/program-to-change-the-phone-numbers-a-call-is-redirected-to-if-a-mobile-phone-can/1355276#13552760Answer by Jamie Love for Program to change the phone numbers a call is redirected to if a mobile phone cannot be reached?Jamie Love2009-08-31T00:07:32Z2009-08-31T00:07:32Z<p>It certainly is possible. </p>
<p>If you're talking about general PTSN and mobile networks, you'll probably need to do so as a service on the network operators IN (intelligent networking) platform(s). Obviously this would be a service provided by the network operation, so I suspect though that's not quite what you're asking about.</p>
<p>If you're talking about a mobile phone redirecting calls that cannot be made to a number the caller (rather than the person called) decides, then you'll need to craft a solution specific to the phone OS.</p>
<p>I'm not familiar enough to know how to do this on a per phone system platform I'm afraid, though I know for the iPhone you'll need to use something other than Java.</p>
http://stackoverflow.com/questions/780089/apache-2-2-cgi-timeout-configuration1Apache 2.2 CGI timeout configurationJamie Love2009-04-23T02:26:01Z2009-08-27T08:00:02Z
<p>I have a default Apache 2.2 system setup with a Perl CGI script directory configured like so:</p>
<pre><code>ScriptAlias /jarvis/ "/opt/jarvis/cgi-bin/"
</code></pre>
<p>Nothing fancy in here except one of my scripts takes over 10 minutes to process, and due to various reasons, prints out nothing during this time.</p>
<p>Apache appears to have a timeframe of 10 minutes (600 seconds) for CGI scripts to run - and if no output appears from the script in this timeframe then the script is killed and a 500 response is sent to the browser/client.</p>
<p>The message:</p>
<pre><code>[Thu Apr 23 13:57:53 2009] [warn] [client 127.0.0.1] Timeout waiting for output from CGI script /opt/jarvis/cgi-bin/jarvis.pl
</code></pre>
<p>appears in the log on one system (Ubuntu, installed via apt-get), but doesn't on another (Windows, installed via package download).</p>
<p>My question is - is there any configuration in Apache 2.2 that would allow me to run a script longer than 10 minutes without it being killed?</p>
<p><strong>Edit</strong></p>
<p>Writing log messages out regularly avoids this error - so a log message written every few minutes ensures that long running processes don't get killed. I eventually solved my problem by implementing a progress bar on the client and having my script write a "." every so often to update the bar on the other end.</p>
<p>Thanks,
Jamie</p>
http://stackoverflow.com/questions/1308582/what-additional-steps-are-necessary-to-restore-a-mysql-database-from-the-physical/1331604#13316041Answer by Jamie Love for What additional steps are necessary to restore a mysql database from the physical files?Jamie Love2009-08-25T23:41:26Z2009-08-25T23:41:26Z<p>When I've done this in the past the only thing(s) I've needed to do in addition to what youve stated are:</p>
<p>a/ ensure at step 5 that the files are all owned by the user running mysql.</p>
<p>b/ create or alter users to have permissions as necessary on the database on the target server (user information is stored in the 'mysql' database, not in the database being copied).</p>
<p>I've only needed to repair tables if I've copied the files while the database was running.</p>
http://stackoverflow.com/questions/1331409/delay-or-waitfor-statement/1331570#13315700Answer by Jamie Love for delay or waitfor statement Jamie Love2009-08-25T23:26:17Z2009-08-25T23:26:17Z<p>Not to my knowledge.</p>
<p>You could do something in the shell, piping your SQL through a simple script and then into PostgreSQL. E.g. with Perl:</p>
<pre><code>cat regionupdates.sql | perl -e '$i = 1; while(<STDIN>) { $i++; print $_; if ($i % 50 == 0) { sleep 10; } }' | psql -d MYDB -L output.txt
</code></pre>
<p>BTW: I see you asked a very similar question before. It would be nice if you could accept the answers you found solved your problem:</p>
<p><a href="http://stackoverflow.com/questions/1307735/begin-commit-every-50-rows">http://stackoverflow.com/questions/1307735/begin-commit-every-50-rows</a></p>
http://stackoverflow.com/questions/1297199/what-is-a-good-stand-alone-perl-editor-for-linux-and-maybe-windows/1297221#12972214Answer by Jamie Love for What is a good stand-alone Perl editor for Linux (and maybe Windows)?Jamie Love2009-08-19T00:05:58Z2009-08-19T00:05:58Z<p>A purpose built Perl editor:</p>
<p><a href="http://padre.perlide.org/trac/wiki/Screenshots" rel="nofollow">http://padre.perlide.org/trac/wiki/</a></p>
<p>It's designed to be very friendly to the perl developer.</p>
http://stackoverflow.com/questions/866822/why-both-no-cache-and-no-store-should-be-used-in-http-response/1218597#12185970Answer by Jamie Love for Why both no-cache and no-store should be used in HTTP response?Jamie Love2009-08-02T10:16:25Z2009-08-02T10:16:25Z<p>Just to make things even worse, in some situations, no-cache can't be used, but no-store can:</p>
<p><a href="http://faindu.wordpress.com/2008/04/18/ie7-ssl-xml-flex-error-2032-stream-error/" rel="nofollow">http://faindu.wordpress.com/2008/04/18/ie7-ssl-xml-flex-error-2032-stream-error/</a></p>
http://stackoverflow.com/questions/1211638/ssl-on-entire-site-or-just-part-of-it/1211719#12117193Answer by Jamie Love for SSL on entire site or just part of it?Jamie Love2009-07-31T10:02:18Z2009-07-31T10:02:18Z<p>It depends on what your site serves. If the data it serves is sensitive, then providing a full SSL encrypted connection is a bonus.</p>
<p>But, as others have mentioned you will eat your bandwidth. SSL encrypted data, be it images, HTML pages or other information is not (supposed to be) cached on the client, so every time the user restarts the browser the files are downloaded again.</p>
<p>I would agree with Vinay, provide signon/signup over SSL and then fall back to normal HTTP, then see.</p>
<p>The other approach may be to provide all your static content over HTTP while all the sensitive content over HTTPS (e.g. if you use systems like ExtJS then the pages are static files and the data is all retrieved via AJAX).</p>
<p>Of course, if you're serving sensitive information (e.g. banking information) where the data itself is always sensitive then go full SSL and eat the costs.</p>
http://stackoverflow.com/questions/1131470/add-a-style-to-a-particular-word-in-a-textfield-data-in-jasper-reports/1176842#11768421Answer by Jamie Love for Add a style to a particular word in a textfield data in jasper reportsJamie Love2009-07-24T10:29:07Z2009-07-24T10:29:07Z<p>To my knowledge, this isn't actually possible. You only have the option of styling text in this way with a static text field (with the styled text option on). Styled text fields can be styled with italic/bold text etc. using HTML type tags.</p>
<p>Text fields though don't allow such styling as far as I'm aware.</p>
http://stackoverflow.com/questions/810659/using-chart-themes-in-jasper-reports/1122745#11227450Answer by Jamie Love for Using Chart Themes in Jasper ReportsJamie Love2009-07-13T23:51:56Z2009-07-13T23:51:56Z<p>I have had the exact same question today. </p>
<p>The theme is defined in the XML like so:</p>
<pre><code><timeSeriesChart>
<chart hyperlinkType="None" theme="eye.candy.sixties">
....
</timeSeriesChart>
</code></pre>
<p>To actually provide this theme, a .jar included in the classpath needs to provide a <a href="http://jasperreports.sourceforge.net/api/net/sf/jasperreports/charts/ChartThemeBundle.html" rel="nofollow">ChartThemeBundle</a> singleton instance that returns a subclass of <a href="http://jasperreports.sourceforge.net/api/index.html" rel="nofollow">ChartTheme</a>.</p>
<p>The <code>ChartTheme</code> subclass then has to implement a whole bunch of methods.</p>
<p>Probably the best approach to take is to download the source code of JasperReports (<a href="http://sourceforge.net/projects/jasperreports/files/" rel="nofollow">http://sourceforge.net/projects/jasperreports/files/</a>) and look in the directory:</p>
<pre><code>demo/samples/charts/src/net/sf/jasperreports/charts/themes/
</code></pre>
<p>Then, select a theme to extend from, subclass it and implement the methods you care about.</p>
http://stackoverflow.com/questions/1102299/is-it-possible-to-use-jasper-reports-to-generate-reports-from-ldap/1107029#11070291Answer by Jamie Love for Is it possible to use Jasper Reports to generate reports from LDAPJamie Love2009-07-09T23:55:14Z2009-07-09T23:55:14Z<p>I believe you can/could.</p>
<p>Basically you would have to write your own datasource to query LDAP based on the query provided by the report/sub-dataset.</p>
<p>Alternatively, though I've never used them, you could try a <a href="http://www.openldap.org/jdbcldap/" rel="nofollow">JDBC-LDAP bridge</a>. If your query needs are fairly straightforward,this may be good enough.</p>
http://stackoverflow.com/questions/1105588/displaying-static-text-instead-of-empty-group-in-jasperreports/1107004#11070040Answer by Jamie Love for Displaying static text instead of empty group in JasperReports.Jamie Love2009-07-09T23:45:38Z2009-07-09T23:45:38Z<p>If you were able to, in your data source, have a count of total # of credits for each group, then you could use the 'print when expression' property on the static text. e.g:</p>
<pre><code>new Boolean ($F{total_credits}.equals(0));
</code></pre>
<p>The static text would need to go in the group header or footer as it wouldn't work in the group detail section (it would print out multiple times).</p>
<p>You may need to create a variable instead of use <code>$F{total_credits}</code> directly - I'm not certain how JasperReports deals with accessing fields in group footers. You may also find that in the group header it picks up the correct total_credits while in the group footer it doesn't.</p>
<p>The other way would be to have a variable that counts the total # of credits in the group. You would need to set the 'reset type' for the variable to 'group', then set the reset group. The Variable expression would be something like:</p>
<pre><code>$V{myvariable} +
($F{credit_or_debit}.equals("credit") ? new Integer(1) : new Integer(0))
</code></pre>
<p>and the initial value expression would be <code>new Integer(0)</code></p>
<p>Then in the group footer you could use the 'print when expression' on the static text to look at the variable.</p>
http://stackoverflow.com/questions/1077444/handling-difficult-clients/1077638#10776381Answer by Jamie Love for Handling difficult clientsJamie Love2009-07-03T03:17:40Z2009-07-03T03:17:40Z<p>One thing I haven't said mentioned here yet, and one thing that will probably be very important to you as a freelancer (with them as the single customer?) is that seeing your work implemented in to 'production' can take a long time. </p>
<p>You can be efficient, responsive and pro-active, but it can still take a long time for them to get on to testing your software, and hence it can take a long time to get over that last line into production. Given the responses you've had currently when not face-to-face with them, I would certainly suggest protecting against this issue.</p>
<p>This can really bite when you're waiting for the last payment for your work, and depending on the contract milestones and how payment is set up this can be really stressful.</p>
<p>I would suggest two things to mitigate this:</p>
<ol>
<li><p>Ensure a reasonable payment based on time worked, monthly (assuming this is a non-trivial project).</p></li>
<li><p>Usually contracts have a monetary component to be paid once software is implemented in production. I would suggest adding a clause to any such contractual arrangement that ensures that this money is to be paid to you a reasonable time after you have 'delivered' the final component even if they have not implemented the system in production. You should have 'exit criteria' for testing as well - i.e. no more than X critical issues, Y major issues etc.</p></li>
</ol>
<p>Regarding your specific questions:</p>
<ol>
<li>Sounds like they are not treating you as someone with options - more of a 'take it or leave it' kind of thing. I have had customers who act like a project is super urgent and want to start yesterday. You have just got to be efficient but not cut corners and they will just have to accept that if they wish to work with you.</li>
<li>Because that's how some companies work. It's just the nature of the beast. See above.</li>
<li>With email it's almost impossible to gauge whether someone is being rude with a short response or are just really busy. I always assume they're busy or having a bad day. Better to base on phone calls or face-to-face meetings. But, in saying this, if your overall opinion is that of rudeness it's unlikely to get better after a contract is signed and unless you think you can deal with it (and probably visit them regularly - weekly maybe) then it may be best to not work with them. Before doing something so drastic, if you feel you can I would definitely try and talk to them as others have mentioned.</li>
</ol>
http://stackoverflow.com/questions/1077480/moving-raw-mysql-data-files-to-a-different-directory/1077494#10774941Answer by Jamie Love for Moving Raw MYSQL Data Files to a Different DirectoryJamie Love2009-07-03T01:49:13Z2009-07-03T01:49:13Z<p>Have you checked that the files in <code>/var/lib/mysql/db_name/</code> are owned by mysql and not root? Usually copying the files in should 'just work' (certainly it has and does for me). I assume you're using the same or very similar version of MySQL?</p>
http://stackoverflow.com/questions/1077267/remove-clear-error-message-tool-tips-on-cancel-button-click/1077400#10774000Answer by Jamie Love for Remove / Clear Error message tool tips on Cancel button click.Jamie Love2009-07-03T00:59:09Z2009-07-03T00:59:09Z<p>The tooltips created are not linked to the dialog pop-up directly - i.e. they're not created as child widgets of the pop-up. </p>
<p>To work around this you hook into the cancel button with an on-click hander, and have the handler loop through all elements in the errorMessageToolTips dictionary, hiding each one.</p>
<p>Depending on your code structure, to avoid problems later on you may want to make the errorMessageToolTips dictionary specific to the pop-up and not a global array.</p>
http://stackoverflow.com/questions/715972/jasper-reports-print-when-group-changes/1055849#10558490Answer by Jamie Love for Jasper Reports - Print when group changesJamie Love2009-06-28T21:40:23Z2009-06-28T21:40:23Z<p>I've never used the 'print when group changes' functionality, but trying it now on a new report, I see what you mean - it prints for every detail record even though the group is not changing.</p>
<p>Instead of using the 'print when group changes' flag, uncheck the 'print repeated values' flag, this will probably give you what you want.</p>
http://stackoverflow.com/questions/1042090/get-unique-system-id-with-flex/1042234#10422342Answer by Jamie Love for Get unique System ID with FlexJamie Love2009-06-25T04:48:52Z2009-06-25T04:48:52Z<p>Hi there,</p>
<p>I can't think of any way to do this based off the users machine or OS. The whole point of browser applications is to have them able to run anywhere, any time via a browser. To my knowledge Flash provides no information that could reasonable be converted into a unique machine ID for licensing purposes, not even the MAC address of a network card on the machine.</p>
<p>Personally, I think you'd be better off requiring a username/password for users to log in, and then using a session key stored in a cookie to allow the user to skip that step (e.g. a 'remember me on this computer' type of feature, such as GMail has). This has the advantage of the user being able to run the application from any PC they like.</p>
http://stackoverflow.com/questions/1035620/jasper-report-two-detail-sections/1041869#10418690Answer by Jamie Love for Jasper report: two detail sections?Jamie Love2009-06-25T02:10:21Z2009-06-25T02:10:21Z<p>Hmm, interesting. </p>
<p>Here is what you could do:</p>
<p>Using this source data (MySQL):</p>
<pre><code>create table items (
item varchar(4),
quantity number,
color varchar(10),
);
</code></pre>
<p>(insert data...)</p>
<pre><code>create table numbers (i integer)
</code></pre>
<p>(insert data 0, 1, 2 .... MySQL 5.1 has stored procedures that could do it, earlier versions would need an external script to populate it. Go from 0 to the largest quantity you'd have).</p>
<p>Then, the trick is to craft the right sort of query. I came up with this:</p>
<pre><code>select i.*, n.i from
(
select concat(i.item, ' ', i.quantity) as grouping, i.item, i.quantity,group_concat(distinct color) as colors
from items i
GROUP BY item, quantity
) i
cross join numbers n
where quantity > n.i;
</code></pre>
<p>E.g. If I populate my numbers table, and the populate the items table with your example data, and then run the query I get:</p>
<pre><code>+----------+------+----------+------------+------+
| grouping | item | quantity | colors | i |
+----------+------+----------+------------+------+
| A001 1 | A001 | 1 | Red,Greem | 0 |
| B002 3 | B002 | 3 | Red,Purple | 0 |
| A001 1 | A001 | 1 | Red,Greem | 1 |
| B002 3 | B002 | 3 | Red,Purple | 1 |
| A001 1 | A001 | 1 | Red,Greem | 2 |
| B002 3 | B002 | 3 | Red,Purple | 2 |
| A001 1 | A001 | 1 | Red,Greem | 3 |
| B002 3 | B002 | 3 | Red,Purple | 3 |
+----------+------+----------+------------+------+
</code></pre>
<p>Then in your Jasper Report, the trick is to create a group/band that works off the 'grouping' column, and put your heading in that:</p>
<pre><code>Item A001, Qty 1, Colors Red, Green
</code></pre>
<p>And then, in the detail section just have a line as the only thing in the detail.</p>
<p>Doing this generates the report you want for me. </p>
<p>Note that the <code>numbers</code> table is a little silly, but is a standard data warehousing technique, though I suspect some database (e.g. Oracle) would have clever recursive procedures or other functions that would exclude the need for it.</p>
http://stackoverflow.com/questions/896330/archive-log-transfer-from-oracle-9i-to-oracle-10g0Archive log transfer from Oracle 9i to Oracle 10gJamie Love2009-05-22T04:20:09Z2009-06-24T23:46:30Z
<p>Hi all,</p>
<p>I have a situation where I need to transfer Oracle 9i archive logs to an Oracle 10g database, from where they are to be mined by a log-miner and then used by an Oracle streams capture/apply processes.</p>
<p>(Oracle 9 archive logs can be read by the Oracle 10 logminer - I can manually copy the archive logs across, manually register them and have them mined, captured then applied).</p>
<p>The difficulty is that the way Oracle does archive log transfer changed quite a bit between 9i and 10g and setting up the 9i database to transfer to the remote machine like so:</p>
<pre><code>log_archive_dest_state_2 = enable
log_archive_dest_2 = "service=OTHERMACHINE arch optional"
</code></pre>
<p>no longer works.</p>
<p>I get this in the 9i logs:</p>
<pre><code>*** 2009-05-22 04:03:44.149
RFS network connection lost at host 'OTHERMACHINE'
Error 3113 attaching RFS server to standby instance at host 'OTHERMACHINE'
Error 3113 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'OTHERMACHINE'
Heartbeat failed to connect to standby 'OTHERMACHINE'. Error is 3113.
*** 2009-05-22 04:03:44.150
kcrrfail: dest:2 err:3113 force:0
ORA-03113: end-of-file on communication channel
</code></pre>
<p>And in the 10g log I get:</p>
<pre><code>Fri May 22 04:07:42 2009
WARNING: inbound connection timed out (ORA-3136)
</code></pre>
<p>My question is:</p>
<p>Does anyone know how I could configure my 9i or 10g server such that the 10g server will accept the 9i connection in such a way that I can transfer the 9i archive logs to the 10g server. It would be a bonus if the archive logs would be automatically registered in the 10g server.</p>
<p>Note I have not set up a full DataGuard configuration here and the 10g database is not a secondary server.</p>
<p>Thanks for any suggestions.</p>
<p><strong>Edit</strong></p>
<p>Note that I can log on to the 10g server from the 9i server via sqlplus, so connectivity is not the problem</p>
<p><strong>Edit 2</strong></p>
<p>After a large amount of time searching for a solution, I've finally decided that such a mechanism doesn't work, and that a non-Oracle method of transferring archive logs from 9i to 10g will need to be used (e.g. rsync).</p>
http://stackoverflow.com/questions/1041344/jquery-multiple-class-selector/1041364#10413640Answer by Jamie Love for Jquery multiple class selectorJamie Love2009-06-24T22:34:38Z2009-06-24T22:34:38Z<p>You can do this using the filter function:</p>
<pre><code>$(".a").filter(".b")
</code></pre>
http://stackoverflow.com/questions/1041199/regular-expressions-parsing-dig-output-extracting-text-from-double-quotes/1041253#10412532Answer by Jamie Love for Regular expressions / parsing dig output / extracting text from double quotesJamie Love2009-06-24T22:02:04Z2009-06-24T22:02:04Z<p>I'm not sure about PHP regular expressions, but in Perl the RE would be simple:</p>
<pre><code>my $c = 0;
print <<EOF;
Array
(
EOF
foreach (<STDIN>) {
if (/[^"]*"([^"]*)"\s+"([^"]*)"\s+"([^"]*)"\s+"([^"]*)"/) {
print <<EOF;
[$c] => Array
(
[0] = $1
[1] = $2
[2] = $3
[3] = $4
)
EOF
$c++;
}
}
print <<EOF;
)
EOF
</code></pre>
<p>This has some limitations, namely:</p>
<ul>
<li>It does not work if the text in the quotes can have escaped quotes (e.g. <code>\"</code>)</li>
<li>It is hard coded to support four quoted values only.</li>
</ul>
http://stackoverflow.com/questions/1040977/general-oracle-data-collection-storage/1041210#10412101Answer by Jamie Love for General Oracle Data Collection StorageJamie Love2009-06-24T21:54:05Z2009-06-24T21:54:05Z<p>I would avoid option 3 - if you're going to use a database to store raw results, you might as well use it to store all the results.</p>
<p>Option 1 sounds like you'll end up duplicating a lot of data for each result row, and have only two values (time offset and value) change.</p>
<p>Of the three options you suggest, I would go with Option 2. You'll be able to store a single result row for each result, and have the details of the result available in the DB as well, without cluttering up the result table itself. </p>
<p>Depending on how you expect to use the data, and how many data points you have per result waveform, I might even be tempted to store the waveform/signal as a single string (e.g. comma-separated values). </p>
http://stackoverflow.com/questions/1040891/how-to-pass-authorization-header-from-flex-webservice/1041164#10411642Answer by Jamie Love for How to pass Authorization header from Flex WebService?Jamie Love2009-06-24T21:44:05Z2009-06-24T21:44:05Z<p>I've never had to do this before in Flex, but what version of the Flash plugin are you running? Version 9.0.115.0. completely blocks the use of that header, while later versions allow it with your crossdomain.xml configuration.</p>
http://stackoverflow.com/questions/1041072/pointer-initializiation-for-a-specific-function/1041115#10411151Answer by Jamie Love for Pointer initializiation? for a specific function.Jamie Love2009-06-24T21:31:28Z2009-06-24T21:31:28Z<p>It would help if you provided the error.</p>
<p>I can, with your function above, to this successfully:</p>
<pre><code>int main() {
unsigned char *B64Encoded;
B64Encoded = (unsigned char *) malloc (1000);
unsigned char *src = "ABC";
Base64Enc(src, 3, B64Encoded);
}
</code></pre>
<p>You <em>definitely</em> need to malloc space for the data. You also need to malloc more space than src (1/4 more I believe).</p>
http://stackoverflow.com/questions/1006012/graphical-representation-of-data-in-flex/1006115#10061150Answer by Jamie Love for Graphical representation of data in flexJamie Love2009-06-17T10:02:37Z2009-06-17T10:02:37Z<p>You could also try:</p>
<p><a href="http://www.fusioncharts.com/" rel="nofollow">http://www.fusioncharts.com/</a></p>
http://stackoverflow.com/questions/1041563/restricting-an-element-to-having-text-or-subelements/1805197#1805197Comment by Jamie Love on Restricting an element to having text, or subelements.Jamie Love2009-11-29T06:55:13Z2009-11-29T06:55:13ZThanks for bringing this up - I was not aware of the inheritance mechanism.http://stackoverflow.com/questions/1457003/recommended-data-visualisation-books/1457122#1457122Comment by Jamie Love on Recommended Data Visualisation Books?Jamie Love2009-11-25T07:48:33Z2009-11-25T07:48:33ZMarked as Answered as the book is fairly interesting. Tahttp://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532254#1532254Comment by Jamie Love on Why do I need an IoC container as opposed to straightforward DI code?Jamie Love2009-10-08T00:15:52Z2009-10-08T00:15:52ZI'm interested in what tool knows how to inject code automatically to work as the NotifyPropertyChangedWrapper(), though your example is crafted to be particularly poor - if you'd use Observable wrappers around each property then you could make the code significantly cleaner without using an IoC container (or whatever NotifyPropertyChangedWrapper()) is.http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1447525#1447525Comment by Jamie Love on Why do I need an IoC container as opposed to straightforward DI code?Jamie Love2009-10-08T00:08:34Z2009-10-08T00:08:34ZI agree with you Sam - DI is a type of IoC, so if the original poster is doing DI, they're already doing IoC so ther real question is why roll your own.http://stackoverflow.com/questions/1457003/recommended-data-visualisation-books/1457122#1457122Comment by Jamie Love on Recommended Data Visualisation Books?Jamie Love2009-09-22T07:20:59Z2009-09-22T07:20:59ZI might get it purely for the chapter on Radiohead's music video.http://stackoverflow.com/questions/441021/in-oracle-why-do-public-synonyms-become-invalid-when-a-table-partition-is-droppe/441940#441940Comment by Jamie Love on In Oracle, why do public synonyms become invalid when a table partition is dropped.Jamie Love2009-09-16T23:00:18Z2009-09-16T23:00:18ZI would have liked to accept this answer to, but I can only accept one, so I'll go for the one related to my Oracle version.
Ta Gary.http://stackoverflow.com/questions/1408729/flex-datagrid-with-combobox-itemrenderer/1423189#1423189Comment by Jamie Love on Flex DataGrid with ComboBox itemRendererJamie Love2009-09-15T23:38:03Z2009-09-15T23:38:03ZI was hoping to avoid such a long winded approach, and I assume I'll need to override the get as well.http://stackoverflow.com/questions/1395860/how-can-i-automate-the-building-of-a-flex-component-libraryComment by Jamie Love on How can I automate the building of a Flex component library?Jamie Love2009-09-08T21:41:54Z2009-09-08T21:41:54ZThe command line MXMLC compiler, as far as I know, compiles only one file at a time (be great if I was wrong!). For an application with various <code>.mxml</code> files what we've ended up doing is creating an Ant target that iterates over each <code>.mxml</code> file (using the ant-contrib <code>for</code> task), and running the <code>mxmlc</code> task for each file in turn.
I can provide our <code><target></code> code if you like, but it is slightly different to compiling a bunch of components into a single SWFhttp://stackoverflow.com/questions/1376690/how-to-monitor-sockets-activity-in-a-computer/1376696#1376696Comment by Jamie Love on How to Monitor Sockets activity in a computer?Jamie Love2009-09-04T00:55:51Z2009-09-04T00:55:51ZThis would be my suggestion to.
Note that under Windows wireless connections are not easily captured, see Q-16 from <a href="http://www.winpcap.org/misc/faq.htm" rel="nofollow">winpcap.org/misc/faq.htm</a>, and <a href="http://www.cacetech.com/products/airpcap.html" rel="nofollow">cacetech.com/products/airpcap.html</a>http://stackoverflow.com/questions/1331409/delay-or-waitfor-statement/1331570#1331570Comment by Jamie Love on delay or waitfor statement Jamie Love2009-08-26T23:14:59Z2009-08-26T23:14:59ZI included the cat as the source of the SQL may quite easily not be a file, but be generated by another program or shell script, so the structure of the command could easily be altered.
But I take your point in general.http://stackoverflow.com/questions/1170772/jasper-reports-jecxelapi-exports-numbers-as-text/1170868#1170868Comment by Jamie Love on Jasper Reports JEcxelApi Exports Numbers As TextJamie Love2009-08-19T00:11:13Z2009-08-19T00:11:13ZThanks for updating us with the solution you found. Very helpful.http://stackoverflow.com/questions/1231454/how-to-setup-constants-like-this-constants-page-title-mycase-in-c/1231465#1231465Comment by Jamie Love on How to setup constants like this - Constants.Page.Title.MyCase - in C#?Jamie Love2009-08-05T08:48:10Z2009-08-05T08:48:10ZAlthough the original poster said they wanted it within their 'Constants' class, though that may have been just because they didn't realise namespaces could be used.http://stackoverflow.com/questions/1226443/how-to-access-a-wpf-object-in-the-dispatcher/1226804#1226804Comment by Jamie Love on How to access a WPF Object in the Dispatcher?Jamie Love2009-08-04T11:34:21Z2009-08-04T11:34:21ZI've been tearing my hair out for the last hour over this problem. Thanks heaps!http://stackoverflow.com/questions/1211638/ssl-on-entire-site-or-just-part-of-it/1211676#1211676Comment by Jamie Love on SSL on entire site or just part of it?Jamie Love2009-07-31T21:43:19Z2009-07-31T21:43:19ZCaching in the browser does not (or should not) work over SSL.http://stackoverflow.com/questions/70389/what-is-the-simplest-tomcat-apache-connector-windows/70553#70553Comment by Jamie Love on What is the Simplest Tomcat/Apache Connector (Windows)?Jamie Love2009-07-29T02:27:46Z2009-07-29T02:27:46ZIn addition, ensure that your tomcat server.xml configuration has the AJP connector defined/uncommented. E.g. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />