https://bugs.eclipse.org/bugs/show_bug.cgi?id=382972
The Eclipse IDE and any IDE based on it do not take full advantage yet of the Macbook Pro Retina display. The link above offers an interim fix.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=382972
The Eclipse IDE and any IDE based on it do not take full advantage yet of the Macbook Pro Retina display. The link above offers an interim fix.
I wanted to recycle my Nokia 3650, but not to give up the memory card with any info. Turns out the Macbook Air has a slot. Let’s see what happens.
Using the System Information App - I get Built in SD Card Reader:
Vendor ID: 0x05ac Product ID: 0x8404 Revision: 2.00 Serial Number: 310
SDSC Card:
Capacity: 16.1 MB (16,089,088 bytes) Removable Media: Yes BSD Name: disk1 Partition Map Type: MBR (Master Boot Record) S.M.A.R.T. status: Not Supported Volumes: NO NAME: Available: 10.1 MB (10,133,504 bytes) Capacity: 16 MB (16,039,936 bytes) Writable: Yes File System: MS-DOS FAT12 BSD Name: disk1s1 Mount Point: /Volumes/NO NAME Content: DOS_FAT_12
Cool.
Lets get a dd of what was there.
dd if=/dev/disk1 of=nokiasdcard.dd
That worked to get a mountable version, and then I wiped the card using Disk Utility.
In the end my son wanted the retro phone, no doubt to show his friends the ancient technology.
I’ve been an occasional user of Mathematica since version 2.0. While it is a rare and lucky project that has enough math making it necessary to break out Mathematica, when it does happen it is nice to have the Swiss Army Knife of symbolic math and graphics manipulation there in my box of tools.
I am working a DARPA project called MRC, the BAE portion of which is called SOUND.
One part of this uses the enhanced Xen Flux Time Travel work, which looks to me like a great advance in debugging intermittent bugs.
To make it easy to test and integrate I am trying to run a guest VM inside of the modified Xen inside of VMWare Fusion on my Mac. This is to save me the trouble of acquiring and stacking more hardware into my tiny office.
I miss the days when I was confused because I had ssh’d into some server and then into another and could not recall which system I was editing files on.
Circa 2004
Update: Check out Nagios which is an open source service monitor. This looks like a good solution. Wish I had found it before I did my little project!
| ServerMonitor is a small java program that monitors a server and sends email to the administrator when the server is not available.I have been having some reliability problems with a server that I depend on and wanted an easy way to be notified if there server had stopped running. This program is very simple to use.
The program consists of a single java file ServerMonitor.java [text] and a script smctl.sh to start and stop the monitor. Description Installation Set smctl.sh to be executable with $chmod u+x [drew@drewsG5 serveMon]$ chmod u+x smctl.sh [drew@drewsG5 serveMon]$ javac ServerMonitor.java [drew@drewsG5 serveMon]$ ls -la total 16 drwxr-xr-x 5 drew drew 170 May 2 22:22 . drwxr-xr-x 11 drew drew 374 May 2 22:20 .. -rw-r–r– 1 drew drew 3617 May 2 22:22 ServerMonitor.class -rw-r–r– 1 drew drew 5794 May 2 14:22 ServerMonitor.java -rwxr–r– 1 drew drew 493 May 2 22:18 smctl.sh [drew@drewsG5 serveMon]$ Configuration # Edit these lines for your particular setup HOST=www.host.com PORT=80 INTERVAL=10 REFHOST=refhost REFPORT=81 ADMIN=you@localhost SMTPHOST=mail.localhost Operation To see that everything is running correctly $tail -f log.out [drew@drewsG5 serverMon]$ ./smctl.sh start [drew@drewsG5 serverMon]$ tail -f log.out Starting ServerMonitor. host:mail.host.edu port:25 refHost:www.host.edu refPort:80 interval:10 adminEmail:you@localhost smtpHost:mail.smtp.localhost [Mon May 03 17:18:31 PDT 2004] mail.host.edu seems to be running. Note that only one email will be sent on server failure. When the message is received, you should examine log.out for details about the failure. Then I suggest that you stop and start ServerMonitor again to check for the next problem. # TODO: check is pid file already exists – and ServerMonitor is already running |
Circa 2005/’06
Model Driven Architecture (MDA) is an OMG specified approach to software development intended to ,”…separate[s] the specification of functionality from the specification of the implementation of that functionality on a specific technology platform.”
I have had an opportunity over the last two years to become quite familiar with one large scale, leading edge development using MDA.
The short answer is, Brooks is still right. There is no silver bullet to software development.
What I seem to notice is that there is no lack of smart people working on the project and the main distinction between folks is the years of experience.
If you come across iUML or the corpse of Kennedy Carter, run away, the zombies will eat your brain.
From Sept 2006:
I have some legacy software in need of performance improvement. The software is single thread, single process. How effective are OpenMP and Intel C++ on the pathway to improvement?
I have the Intel C++ compiler (icc) available, which supports OpenMP along with some other auto parallelize features, and a four processor Xeon box to experiment on.
Now, I’m experianced enough not to expect a silver bullet fired out of my C++ compiler will kill the performance monster. On the other hand, there is some interest in finding out how hard it will be to refactor this software into a form that benefits from an SMP platform. If nothing else, shaking out the makefile to support an alternative compiler to the GCC 3.4.4 will make for a stronger build process. And, in looking over some discussion threads regarding the Intel compiler and this particular feature I see that icc will report on the loops in the code that are deemed safe for parallelization and will tell me something about why the other loops are not safe for the speed treatment.
So far I am still getting GCC to compile the code base cleanly.
The work was fun and seemed to be helpful in digging into the code, but eventually the client decided other issues, like clearly stating the problem were more relevant to success than doubling the speed of the code. And I could not agree more.