User Tim Williscroft - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:34:45Zhttp://stackoverflow.com/feeds/user/2789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack/1824308#18243081Answer by Tim Williscroft for Tuturials for problems with Xilinx's microblaze IP StackTim Williscroft2009-12-01T06:13:04Z2009-12-01T06:13:04Z<p>TCP/IP lean by Jeremy Bentham</p>
<p><a href="http://www.iosoft.co.uk/tcplean.php" rel="nofollow">http://www.iosoft.co.uk/tcplean.php</a></p>
http://stackoverflow.com/questions/287331/recommended-techniques-for-field-updating-embedded-linux-safely/1824250#18242500Answer by Tim Williscroft for Recommended techniques for field updating embedded Linux safelyTim Williscroft2009-12-01T05:56:47Z2009-12-01T05:56:47Z<p>Have at least two partitions. I'd suggest 4</p>
<ul>
<li><p>boot</p></li>
<li><p>alternate boot</p></li>
<li><p>program data backup</p></li>
<li><p>program volatile data</p></li>
</ul>
<p>Use grub fallback booting to boot alternate if boot fails.</p>
<p>So if the update fails, the alternate works.</p>
<p>NEVER update the boot loader.</p>
<p>If the data partition is toasted, reformat and copy over the backup data partition.</p>
<p>Now you can't fail unless the flash disk dies.
If you are using COTS hardware, and main disk was say, Compact flash, you could have a physically isolated backup on say, a little USB key.</p>
http://stackoverflow.com/questions/877513/what-are-techniques-for-allowing-safe-software-upgrades-in-embedded-systems/1824218#18242180Answer by Tim Williscroft for What are techniques for allowing safe software upgrades in embedded systemsTim Williscroft2009-12-01T05:43:38Z2009-12-01T05:43:38Z<p>I know this Q is answered, but some people have a need for more reliability.
If your project is really mission critical you can go this route.</p>
<p>Basic plan is to always have a backup plan that cannot fail.</p>
<ol>
<li><p>have PIC or other microcontroller that can program the real processor's flash memory.
You make it use a checksum on a block of data, and interface it via serial, usb or even ethernet ( don't laugh it's not that hard) This device CANNOT be reprogrammed in the field ( or maybe even EVER) so you always have a backup plan. PIC's can run web servers over PPP/SLIP or ehternet so interfacing to it is NOT necessarilty awkward. Google TCP-Lean. Try not to titter. (Site <em>is</em> suitable for work). Put the progrmming port somewhere else. Security is not ensured.</p></li>
<li><p>The program runs on the main CPU and runs a boot loader of it's own.
You have three programs: a boot loader, a maintenance program and the real program.</p></li>
</ol>
<p>This allows upgrades to the boot leader process, as well as the program.
You can run a backup boot loader in some extra flash, with a watchdog to reset you and use the backup if you don't boot.</p>
<p>So you have upgradeable embedded application, upgradeable boot loader, and upgradeable maintenance mode.
AND a backup mode that cannot fail.</p>
<p>Hope nobody needs to find this useful.</p>
http://stackoverflow.com/questions/1823822/simple-serial-point-to-point-communication-protocol-sample-code/1823871#18238711Answer by Tim Williscroft for Simple serial point-to-point communication protocol ---- sample codeTim Williscroft2009-12-01T03:48:10Z2009-12-01T03:48:10Z<p>See my answer ,
but go to <a href="http://www.iosoft.co.uk/tcplean.php" rel="nofollow">Jeremy Bentham's TCP/IP Lean site</a> </p>
<p>You can easily get it to speak normal IP protocols.</p>
http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol/1823865#18238650Answer by Tim Williscroft for Simple serial point-to-point communication protocolTim Williscroft2009-12-01T03:46:52Z2009-12-01T03:46:52Z<p>SLIP and UDP. Seriously. </p>
<p>All PC's and similar devices speak it.</p>
<p>There is a good book and examples from <a href="http://www.iosoft.co.uk/tcplean.php" rel="nofollow">TCP Lean</a></p>
<p>Jeremy Bentham has sneakily got a PIC doing working TCP/IP. An AVR is as good as a PIC right ?</p>
<p>I'd recommend UDP instead, it's pretty darn easy.</p>
http://stackoverflow.com/questions/689827/realistic-time-estimates-for-progress-bars-etc/1800622#18006221Answer by Tim Williscroft for Realistic time estimates for progress bars etc.Tim Williscroft2009-11-25T23:18:55Z2009-11-26T09:13:06Z<p>I'm using <a href="http://www.gregdennis.com/drej/" rel="nofollow">DREJ</a> to do non-linear least-squares regression on historical progress.
It works pretty well.</p>
<p>I use a database table to store my historical data. I re-build my estimator function based on the last 100 entries in the table.</p>
<p>I have annotations on long-running methods to identify the rate determining variable.</p>
<p>YMMV, but the next time the estimate takes that into account.</p>
http://stackoverflow.com/questions/1768165/java-poi-hssf-memory-handling-question/1787035#17870350Answer by Tim Williscroft for Java POI HSSF Memory Handling QuestionTim Williscroft2009-11-24T00:21:24Z2009-11-24T00:21:24Z<p>I have an app that does almost exactly your option 1.
You'll need about 500M of ram for the VM for it to run at all well.
And its not super fast, but it works.</p>
<p>I'd therefore go for option 2. ( refactoring to cache tabs parse results has improved performance.</p>
<p>I'd recommend to stop using HSSF objects as soon as you can so they can be garbage collected.</p>
http://stackoverflow.com/questions/1761676/java-hardware-interrupt-handling/1767474#17674740Answer by Tim Williscroft for Java Hardware Interrupt HandlingTim Williscroft2009-11-19T23:57:22Z2009-11-23T23:16:38Z<p>It's standard on embedded realtime java. go to www.ajile.com, or systrmonx.com and buy an eval board.</p>
<p>Embedded java is <em>not</em> standard on pc's. you can get realtime java on PC hardware, but not the embedded bit.</p>
http://stackoverflow.com/questions/1767008/java-beans-creating-an-inspector-window/1767461#17674610Answer by Tim Williscroft for Java Beans - creating an inspector windowTim Williscroft2009-11-19T23:54:49Z2009-11-19T23:54:49Z<p>Sound like you want the old sun BeanEditor</p>
http://stackoverflow.com/questions/1723140/bug-tracker-running-of-a-usb-pendrive-is-this-possible/1740480#17404800Answer by Tim Williscroft for Bug tracker running of a USB pendrive. Is this possible?Tim Williscroft2009-11-16T06:46:20Z2009-11-16T06:46:20Z<p>I bundle our companies application, a J2EE client-server system onto a USB stick (atop Postgres, on Ubuntu).
(It's not a bucgtracker.)
You can have anything you want on a USB stick.</p>
<p>Postgres/Remastersys is your friend.</p>
http://stackoverflow.com/questions/1739826/serial-programming-measuring-time-between-characters/1739957#17399572Answer by Tim Williscroft for Serial programming: measuring time between charactersTim Williscroft2009-11-16T03:51:27Z2009-11-16T03:51:27Z<p>MODbus is like a lot of old protocols and really hates modern hardware.</p>
<p>The reason you're getting 8 bytes at a time is :
Your PC has a (at least) 16 byte serial FIFO on receive and transmit, in the hardware. Most are 64byte or bigger.</p>
<p>It <em>is</em> possible to tell the uart device to time out and issue a received interrupt after a number of char times.</p>
<p>The Trigger Level is adjustable, but the low-level driver sets it "smartly". try low-latency mode using setserial)
You can fiddle with the code in the serial driver if you must. Google it (mature content warning) it is not pretty.</p>
<p>so the routine is as pseudocode</p>
<pre>
int actual=read (packet, timeout of 1.5 chars)
look at actual # of received bytes
if less than a packet, has issues, discard.
</pre>
<p>not great. </p>
http://stackoverflow.com/questions/1739569/decoding-manchester-biphase-mark-in-software-representing-a-smpte-timecode-audio/1739691#17396912Answer by Tim Williscroft for Decoding Manchester biphase-mark in software (representing a SMPTE timecode audio stream)Tim Williscroft2009-11-16T02:12:01Z2009-11-16T02:12:01Z<p>Your sound card is almost certainly AC coupled. So you shouldn't get a DC offset.</p>
<p><a href="http://www.qsl.net/om3cph/sb/dcwithsb.htm" rel="nofollow">interesting dissection of sound card inputs here </a></p>
<p>Running a moving average to calculate software automatic gain control is probably a good idea.</p>
<p>your zero crossings will probably be near zero. You can also blur the data at 4khz (2*2k)[aka low pass filter at 4khz] and then edge detect it to get the zero crossings.</p>
<p>When I have signal processing issues like this, I graph the captured data in a custom application, then try things semi-interactively in code.</p>
<p>As a suggestion, try capturing some and see how you go feeding stored data to your parsing routines. Try different things and see what works</p>
http://stackoverflow.com/questions/1101498/crystal-reports-or-eclipse-birt1Crystal reports or Eclipse BIRTTim Williscroft2009-07-09T02:12:28Z2009-11-11T13:51:53Z
<p>I'm looking at a reporting solution for an existing application.</p>
<p>Currently it has code for reporting.</p>
<p>Users have expressed interest in Crystal reports.</p>
<p>Eclipse BIRT seems to do the same thing(s) and cost nothing.</p>
<p>Reports will be BIG ( tens of thousands of pages)</p>
<p>and cover about a dozen report sets.
Tables, graphs and charts.
Large graphs. (18'x30')
Large paper sizes sometimes. (A0 continuous, with sticky tape to join it.)
Java,JEE, client server no web.
Installed at customers site(s) not an internet application.
Customers data sets are proprietary.</p>
<p>Experience anyone ?</p>
http://stackoverflow.com/questions/1609880/using-tcp-for-real-time-commands-nagle-arithmetic-causes-huge-delays-what-shoul/1609994#16099941Answer by Tim Williscroft for Using TCP for real-time commands: Nagle arithmetic causes huge delays, what should I do?Tim Williscroft2009-10-22T21:15:00Z2009-10-22T21:15:00Z<p>Note that your switch, router, ISP's swithcgear.... etc may all also nagle their black little guts out. The dirty little beasts can read packets, so they take liberties and rewrite them sometimes..</p>
<p>Take a look at RTP ( which runs over UDP) for a more network -survivable approach.</p>
http://stackoverflow.com/questions/1584267/understanding-word-alignment/1587058#15870580Answer by Tim Williscroft for Understanding word alignmentTim Williscroft2009-10-19T05:07:53Z2009-10-19T05:07:53Z<p>Try reading a serial port. The data is 8 bits wide.
Nice hardware designers ensure it lies on a least significant byte of the word.</p>
<p>If you have a C structure that has elements not word aligned ( from backwards compatibility or conservation of memory say )
then the address of any byte within the structure is not word aligned.</p>
http://stackoverflow.com/questions/1447215/why-arent-floating-point-decimal-numbers-hardware-accelerated-like-floating-poin/1489706#14897062Answer by Tim Williscroft for Why aren't Floating-Point Decimal numbers hardware accelerated like Floating-Point Binary numbers?Tim Williscroft2009-09-28T22:33:56Z2009-09-28T23:59:43Z<p>The hardware you want used to be fairly common.</p>
<p>Older CPU's had hardware BCD (Binaray coded decimal) arithmetic. ( The little Intel chips had a little support as noted by earlier posters)</p>
<p>Hardware BCD was very good at speeding up FORTRAN which used 80 bit BCD for numbers.</p>
<p>Scientific computing used to make up a significant percentage of the worldwide market.</p>
<p>Since everyone (relatively speaking) got home PC running windows, the market got tiny
as a percentage. So nobody does it anymore.</p>
<p>Since you don't mind having 64bit doubles (binary floating point) for most things, it mostly works.</p>
<p>If you use 128bit binary floating point on modern hardware vector units it's not too bad. Still less accurate than 80bit BCD, but you get that.</p>
<p>At an earlier job, a colleague formerly from JPL was astonished we still used FORTRAN. "We've converted to C and C++ he told us." I asked him how they solved the problem of lack of precision. They'd not noticed. (They have also not the same space probe landing accuracy they used to have. But anyone can miss a planet.)</p>
<p>So, basically 128bit doubles in the vector unit are more okay, and widely available.</p>
<p>My twenty cents. Please don't represent it as a floating point number :)</p>
http://stackoverflow.com/questions/1191615/simple-hardware-rng/1489684#14896841Answer by Tim Williscroft for Simple hardware RNGTim Williscroft2009-09-28T22:25:12Z2009-09-28T22:25:12Z<p>Some server motherboards already have hardware random number generators (intel make some).
This is not a joke.</p>
http://stackoverflow.com/questions/740400/how-to-hide-datasource-passwords-in-in-tomcat-jmx-beans/1408386#14083860Answer by Tim Williscroft for How to hide datasource passwords in in Tomcat JMX Beans Tim Williscroft2009-09-11T00:10:56Z2009-09-11T00:10:56Z<p>we use encrypted passwords.
the password is "there" but unusable for casual users.</p>
http://stackoverflow.com/questions/1195659/i2c-write-acknowledge-polling-in-linux-kernel/1344497#13444971Answer by Tim Williscroft for I2C write acknowledge polling in Linux KernelTim Williscroft2009-08-28T00:52:55Z2009-08-29T00:17:24Z<p>It doesn't seem too off the shelf, but </p>
<p>You probably will need to look at having a protocol modification flag like Flag I2C_M_NOSTART
only different, in your patches.
At least there is a way to do it (admittedly a messy way)</p>
<p>I hope for your sake you don't need to put a normal i2c device on the same bus.</p>
<p>Honestly, hardware vendors do stuff like this all the time. They consider the problem "solved" as long as it becomes yours.</p>
<p>I see lots of broken I2C out there and you could make life nicer for other people.</p>
http://stackoverflow.com/questions/1325639/bugs-versus-enhancement-versus-new-feature/1325788#13257883Answer by Tim Williscroft for Bugs versus enhancement versus new featureTim Williscroft2009-08-25T02:36:00Z2009-08-25T02:36:00Z<p>We ask our users.
We have a niche product, and a small user base.</p>
<p>Seriously, the users group are paying maintenance, or thinking about buying.</p>
<p>So we ask them what they would like.</p>
<p>They suggest fixes, ask for new features.</p>
<p>We tell them about the development roadmap: because we have things we want to do to the product ,
due to times changing, design ideas. Changes to regulations.</p>
<p>And if every customer says "we really need feature X" : then it'll come next.</p>
<p>If they say "you guys need to fix the bug where I click there an it doesn't do blah:" then that bug gets fixed.</p>
<p>Commercial software: with the customers voting for changes.
Of course, we take their choices on advisement: the company have other things that are thinking about.</p>
http://stackoverflow.com/questions/1285694/how-can-i-find-islands-in-a-randomly-generated-hexagonal-map/1285735#12857350Answer by Tim Williscroft for How can I find islands in a randomly generated hexagonal map?Tim Williscroft2009-08-17T00:29:46Z2009-08-17T00:29:46Z<p>Run a blurring kernel over your data set.</p>
<p>treating the hex grid as an image ( it is , sort of)</p>
<p>value(x,y) = average of all tiles around this (x,y)</p>
<p>this will erode beaches slightly, and eliminate islands.</p>
<p>It is left as an exercise for the student to run an edge-detection kernel over the resulting dataset to populate the beach tiles.</p>
http://stackoverflow.com/questions/1242974/write-to-stdout-and-printf-output-not-interleaved/1242992#12429920Answer by Tim Williscroft for write() to stdout and printf output not interleaved?Tim Williscroft2009-08-07T05:11:04Z2009-08-07T05:11:04Z<p>Printf is using stdio and it is buffered.
Push it out by sending a changing to "n: %d:\n"</p>
http://stackoverflow.com/questions/1230464/java-properties-file-in-eclipse/1230474#12304741Answer by Tim Williscroft for Java Properties File in EclipseTim Williscroft2009-08-04T23:41:56Z2009-08-04T23:41:56Z<p>Right click in the file tree, new->File.
give it the suffix .properties and it will act as a properties file.</p>
http://stackoverflow.com/questions/1230386/why-do-i-get-a-warning-everytime-i-use-malloc/1230420#12304202Answer by Tim Williscroft for Why do I get a warning everytime I use malloc?Tim Williscroft2009-08-04T23:23:27Z2009-08-04T23:23:27Z<p>make a habit of looking your functions up in help.</p>
<p>most help for C is modelled on the unix manual pages.</p>
<p>man malloc</p>
<p>gives pretty useful results.</p>
<p>googling man malloc will show you what I mean.</p>
<p>of course in unix you also get apropos for things that are related.</p>
http://stackoverflow.com/questions/1176939/do-i-need-to-write-my-own-host-side-usb-driver-for-a-cdc-device/1197624#11976240Answer by Tim Williscroft for Do I need to write my own host side USB driver for a CDC deviceTim Williscroft2009-07-29T01:23:00Z2009-07-29T01:23:00Z<p>If your device reports a device ID that the host OS already supports,
then they won't need a driver.</p>
<p>You may need to impersonate an existing USB uart. Data sheets are readily available.
(But I figure you already knew that.)</p>
<p>I'm not sure that the host OS will honour your multi-configuration idea. </p>
<p>But give it a punt so we all know!</p>
http://stackoverflow.com/questions/1190837/java-xmx-max-memory-on-system/1191165#11911653Answer by Tim Williscroft for Java -Xmx, Max memory on systemTim Williscroft2009-07-27T23:18:02Z2009-07-27T23:18:02Z<p>The limit for -XmX is -Xmx1500m on 32 bit windows.
Shared libraries get in the way of a bigger heap.
You'll need about 2Gb of RAM to do this.</p>
<p>On non-windows OSes you can go bigger, and 64Bit JVM's are capable of a LOT more.</p>
<p>Windows XP will not let you have more than 3Gb of RAM ( doesn't care if you have 4Gb physical, ever since XP SP3)
Vista may be different YMMV.</p>
<p>I've tried -Xmx4000M on a 64 bit JVM on 64 bit Linux and it was fine.
considering I had 6Gb of physical ram, it was not a big ask.</p>
<p>Your 80% idea is interesing, but my test systems run higher percentages than that without ill effect. (As long as you don't try doing anything else.)</p>
<p>And the other commenter is right, paging out your JVM's in-memory image is not quick.
Later JVM's are better at doing this less messily ( but they have better garbage collectors too)</p>
<p>If you can't reduce yuor memeory consumprion: and I know how hardthat is then have lots of physical ram and allocate most of it. </p>
http://stackoverflow.com/questions/1131791/a-couple-questions-about-sutters-concurrency-series-on-dr-dobbs/1151437#11514370Answer by Tim Williscroft for A couple questions about Sutter's concurrency series on Dr. DobbsTim Williscroft2009-07-20T01:46:02Z2009-07-20T01:46:02Z<p>This might seem drastic, but,</p>
<p>Use a language with defined memory, optimization and synchronization semantics.</p>
<p>Otherwise </p>
<p>Try putting code into other compilation units. Many compilers will honor "don't optimize" per compilation unit.
Maybe some pragma's you can use inline if you're lucky.</p>
<p>Basically, if the language doesn't define memory these semantics you're at the mercy of the compiler vendor.</p>
http://stackoverflow.com/questions/1151151/how-would-i-build-an-application-that-can-diagnose-itself-at-runtime/1151419#11514190Answer by Tim Williscroft for How would I build an application that can diagnose itself at runtime?Tim Williscroft2009-07-20T01:39:59Z2009-07-20T01:39:59Z<p>Assuming you just mean static configuration,</p>
<p>add a customer-acessible unit test that exercises all the system interfaces.
You already have one , right ?</p>
<p>Call it "validate configuration". or something.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1149778/is-software-engineering-dead/1151324#11513244Answer by Tim Williscroft for Is Software Engineering Dead?Tim Williscroft2009-07-20T00:52:09Z2009-07-20T00:52:09Z<p>When I was at university, I was told other engineering disciplines were much better at engineering. I believed my professors. </p>
<p>What I discovered, working with Electronic and Mechanical engineers over 15 years,
is that other disciplines mostly don't do something nobody's ever done before.
If you asked a Civil engineer to do something nobody has ever done before: their reaction would be to tell you it was going to cost enormous amounts of money and would have an uncertain schedule.
And nobody would tell a civil engineer what kind of tools or parts to use. </p>
<p>Bridges, Engines, Cars, Telescopes....</p>
<p>As things get more and more complicated, and more and more novel, "traditional" engineering disciplines start looking more like software engineering.
One place I worked invented the dishwasher that looks like a filing cabinet. The mechanical design had bugs just like software. They fixed it eventually ( well enough to sell.)</p>
<p>The contradiction is that beyond simple things, the engineering approach to most things these days is to have software in the middle making it all work.</p>
<p>A car company ran an advertisement when I was a youngster about spending 6 million developing their new car. (Toyota Camry IIRC) Toyota had made a car that was different to their other cars. It cost them millions. </p>
<p>I think that if you measure the complexity of an electronic circuit, or mechanical system it is not anywhere near the complexity of "simple" software. Complexity in the mathematical state space/chaos theory sense of the word.</p>
<p>Consider a standard suspension bridge: no moving parts. Some pivots, some vibration dampers. Copy the bridge for your next project.</p>
<p>A software equivalent would be what ?
We don't (on the whole) do critical and simple in software.</p>
<p>Lets look at manufacturing:</p>
<p>Software: Design software, Write program, hit compile. Copy onto a CD.
The manufacturing bit was at the end. The copying of the data. </p>
<p>Mechanical Engineering: Design system: design assembly, design parts.
Repeat for every one you want (Get parts made, assemble parts. Test, align)</p>
<p>The manufacturing bit was on another line and had to be repeated for every instance.</p>
<p>WARNING: Car Analogy.</p>
<p>We design a new thing every time we write software. Every program is not an Aston Martin, but a custom built car. Some will be from Monster Garage and some will be supercars from a guy in Italy with price tags in the tens of millions.</p>
<p>The funny part it that we can duplicate the "supercar from Italy" in 3 seconds and sell it to everyone in the world. So the cost drops to "shrinkwrap" software prices.</p>
<p>Software is different to other disciplines : because it is uncommon to design things that are not software from scratch.</p>
<p>Software not designed from scratch is really common. But still very complex. So, unreliable.
After all, we're only selling it for $20.</p>
<p>END Car Analogy.</p>
<p>If a company said that the CEO was getting a car designed for him that the company was going to pay for, the shareholders would geek.</p>
<p>If the same company gets software written to their "business processes", nobody blinks.</p>
<p>(I lied about the car analogy ending :-) )</p>
http://stackoverflow.com/questions/1151029/unix-linux-ipc-reading-from-a-pipe-how-to-know-length-of-data-at-runtime/1151268#11512680Answer by Tim Williscroft for UNIX/Linux IPC : Reading from a pipe. How to know length of data at runtime?Tim Williscroft2009-07-20T00:11:57Z2009-07-20T00:11:57Z<p>You might try using IPC message queues if your messages are not too big.</p>
http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack/1824308#1824308Comment by Tim Williscroft on Tuturials for problems with Xilinx's microblaze IP StackTim Williscroft2009-12-01T22:08:21Z2009-12-01T22:08:21ZThe RFC's are quite readable. Other books to consider: Comer & Stevens "Internetworking with TCP/IP" volume II , ANSI C version. This book is very complete, but is not stripped down at all for small devices.http://stackoverflow.com/questions/1797113/why-does-multithreaded-file-transfer-improve-performance/1802327#1802327Comment by Tim Williscroft on Why does multithreaded file transfer improve performance?Tim Williscroft2009-12-01T03:52:35Z2009-12-01T03:52:35ZMicrosoft's file protocols transfer are very poorly 'designed'.
Their implementations are still worse. My evidence of this is that SAMBA will outperform Windows on the same hardware.
In parallel the copy delays caused by waiting for acknowledgments are mitigated by copying other files in the "dead time."http://stackoverflow.com/questions/815758/simple-serial-point-to-point-communication-protocol/817134#817134Comment by Tim Williscroft on Simple serial point-to-point communication protocolTim Williscroft2009-12-01T03:43:21Z2009-12-01T03:43:21ZPlease no more hand-designed, non standard protocols.http://stackoverflow.com/questions/1657067/why-do-most-programmers-know-nothing-about-hardware/1657094#1657094Comment by Tim Williscroft on Why do most programmers know nothing about hardware?Tim Williscroft2009-11-20T00:04:24Z2009-11-20T00:04:24ZAnd having made telescopes and worked with astronomers, Dijkstra was at least right half the time.http://stackoverflow.com/questions/1724001/input-from-4-different-mice/1724563#1724563Comment by Tim Williscroft on Input from 4 different miceTim Williscroft2009-11-19T23:59:29Z2009-11-19T23:59:29Zjust tell X to ignore them.
/dev/input/mice is an aggregator device for all mice,.... /dev/input/mouse0 is your primary mouse,
so edit yuor xorg.conf and you're donehttp://stackoverflow.com/questions/1749668/java-gui-amd-fpga/1750064#1750064Comment by Tim Williscroft on Java GUI amd FPGA Tim Williscroft2009-11-19T01:39:00Z2009-11-19T01:39:00ZEr, the ethernet interface to his FPGA card will probably have enough bandwidth...http://stackoverflow.com/questions/1749668/java-gui-amd-fpga/1752688#1752688Comment by Tim Williscroft on Java GUI amd FPGA Tim Williscroft2009-11-19T01:37:53Z2009-11-19T01:37:53ZUh, his kit has an ethernet interface to the FPGA.http://stackoverflow.com/questions/203229/preventing-the-circumvention-of-copy-protection/203243#203243Comment by Tim Williscroft on Preventing the Circumvention of Copy ProtectionTim Williscroft2009-11-15T21:29:57Z2009-11-15T21:29:57ZWe theorized back in the 90's that putting the customers credit card details in the software license would dissuade them for circulating it.
What else does the seller know about the buyer that they really don't want anyone else to know? It's just escalating the conflict to taking hostages ( see my answer below)http://stackoverflow.com/questions/1101498/crystal-reports-or-eclipse-birt/1101565#1101565Comment by Tim Williscroft on Crystal reports or Eclipse BIRTTim Williscroft2009-11-12T00:23:57Z2009-11-12T00:23:57Zwe have now found that getting really technical formatting is fairly tiresome ( indented columns with decimal point alignment, that kidney of thing.http://stackoverflow.com/questions/1101498/crystal-reports-or-eclipse-birt/1715292#1715292Comment by Tim Williscroft on Crystal reports or Eclipse BIRTTim Williscroft2009-11-11T23:54:05Z2009-11-11T23:54:05ZI take it you've never worked in the defence or aerospace business?
The requirements for one project I've seen ran 10K pages.
And yes, it gets read. I guess some developer worlds don't intersect.http://stackoverflow.com/questions/589015/what-is-the-most-difficult-type-of-software-to-write/589186#589186Comment by Tim Williscroft on What is the most difficult type of software to write?Tim Williscroft2009-11-09T21:51:21Z2009-11-09T21:51:21ZIf your government does things you don't like, vote them out*. All citizens are responsible for their governments. Vote, reform corrupt electoral systems and if needs be, vote with your feet and move country. *If your governemnt is not an elected one, my sympathies. Try another country if you can. http://stackoverflow.com/questions/1334237/carmen-robotics/1685664#1685664Comment by Tim Williscroft on Carmen RoboticsTim Williscroft2009-11-09T04:05:13Z2009-11-09T04:05:13ZPlayer/Stage does this and is a bit more complete.http://stackoverflow.com/questions/589015/what-is-the-most-difficult-type-of-software-to-write/589186#589186Comment by Tim Williscroft on What is the most difficult type of software to write?Tim Williscroft2009-11-09T00:42:09Z2009-11-09T00:42:09ZI think its morally bad. Not an expected answer.
Go find a bunch of books on moral philosophy. Look up sections on the morality of making war. On the morality of making weapons of war. On the morality of the use of violence. There isn't a lot of content, that wasn't written by philosophers sleeping peaceably in their beds at night only because rough men stand ready to do violence on their behalf; My apologies to Orwell.
War is bad. Being invaded is worse. Being well armed does seem to make other countries mostly leave you alone. Terrorists are a different kind of problem (try Predator-B). http://stackoverflow.com/questions/1602865/how-are-external-interrupts-vectored-on-a-powerpc-processor/1602889#1602889Comment by Tim Williscroft on How are external interrupts vectored on a powerpc processor?Tim Williscroft2009-10-22T21:17:06Z2009-10-22T21:17:06ZThus it looks like you really want an external interrupt controller with a PPChttp://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important/62577#62577Comment by Tim Williscroft on What is the Dependency Inversion Principle and why is it important?Tim Williscroft2009-08-30T22:50:35Z2009-08-30T22:50:35ZConsider a dependancy graph for some objects. Apply DIP to the objects. Now any object will be indpendent of the implementation of the other objects. Unit testing is now simple. Later refactoring for reuse is possible. Design changes have very limited change scopes. Design problems don not cascade. See also the AI pattern "Blackboard" for data dependaecy inversion. Together, very powerful tools fo making the software understandable, maintainable and reliable. Ignore dependency injection in this context. It is unrelated.