Drew Scott Daniels' Blog Personal, usually technical posts

May 24, 2011

Adding old paper notes

Filed under: Uncategorized — admin @ 11:38 pm

I plan to start adding in my old hand written notes into this blog. I have notes going back more than 13 years. Most of my notes were written during my time at the University of Manitoba.

I have notes on Data Compression, games, short-wave radio logs, computer errors, my own literary writing, course related reference notes, notes about various organizations I was in, travel observations, business process observations and more.

I’ve got a small folder of things mostly from 2004 that I may be starting with. I’m still debating what’s worthy for entry. Some notes I may have lost the context for. I must admit that one of the reasons for this effort is reducing the pile of paper I’ve accumulated.

At one point I was taking notes on my Palm device, but after several minor data loss incidents, and the nuisance of changing batteries I stopped using it. I have some notes there that I may look at putting in this blog too, but since I’ve got a digital copy there’s less urgency.

Another challenge I have is what to do with the various diagrams and pictures I’ve drawn. Most of it isn’t relevant, and when it is I may put it into a proper web page and re-draw it digitally. I think when I was younger I had a notion that my hand written notes would be treasured like those of the scientists of history, but that was long before the topic of “horders” hit the main stream media. Now my rules for what to keep and what to dispose of is leaning towards getting rid of more.

I have a small file folder filled with small notes on books I’ve looked up that I’d like to revisit and maybe post reviews about. Without looking I know that I want to re-read some books that quote “How To Solve It”. I particularly liked the following problem:
If a bear walks south 1km, east 1km, and then north 1km and ends up where it starts, what colour is it?

Drew Daniels

March 20, 2010

Random word’s definition shell script

Filed under: Uncategorized — admin @ 9:16 pm

dict "$(head -n $(($(od -N 2 /dev/urandom|cut -d' ' -f2 -s)%98326)) /usr/share/dict/british-english| tail -n1)" |less

More people may prefer:

dict "$(head -n $(($(od -N 2 /dev/urandom|cut -d' ' -f2 -s)%$(wc -l /usr/share/dict/words|cut -d' ' -f1))) /usr/share/dict/words| tail -n1)"|more

  • I still want to check for bashisms
  • 98326 is the output of wc -l /usr/share/dict/british-english. I put it inline for speed, and didn’t bother with a variable since I wanted a one line script.
  • If the dictionary is too big then a larger random number would be needed.
  • /usr/share/dict/british-english isn’t installed on many systems, but words is.
  • “more” is lighter weight than “less”, and is installed on more systems. It lacks the ability to go backwards.

To get a random number I used:

$(od -N 2 /dev/urandom|cut -d' ' -f2 -s)

  • od converts to decimal.
  • -N 2 gets two bytes
  • /dev/urandom is pseudorandom bytes from the kernel. There might be a more cross platform alternative like maybe $RANDOM for bash.
  • cut -d' ' -f2 -s gets only the second column. Often awk '{print $2}' is used instead. Awk can be very big. gawk is said to be big, and mawk is said to be minimal. cut seems more portable and smaller yet to me. -d sets the delimiter, -f2 is field two, -s is only print lines with the delimiter.

Try “set -x” before the command to see the different levels of shell script in the one line, do “set +x” after to get things back to normal.

Drew Daniels’ resume: http://www.boxheap.net/ddaniels/resume.html

September 20, 2009

Online vs Offline data storage

Filed under: Uncategorized — admin @ 1:31 pm

I have a ever rising need for data storage. Even if I stop accumulating data, or even cutting back what I store, I have to deal with failing media. I’ve had numerous hard drives die over the years, CDR’s have gone bad…

In my searches for cheap ways to store data, I came across some recommendations to use online storage. With Dreamhost offering 50GB for backups for free, this is something I’m going to start using. At $0.10 US/GB for overages, I hear it beats out quite a bit of competition. I’d prefer to stick with Dreamhost if possible as I know and use them.

Hard drive costs

So how much does hard drive storage cost, and how reliable is it? Well for the raw drive, I’ve recently been seeing about $1/GB CDN for SATA drives. My backup server is currently PATA with slow USB (likely version 1) so I’d likely need to spend some money upgrading the backup server. A cheap modern PC seems to go for about $300 CDN. I’d guess controller cards aren’t cheaper than $20.

Related costs

But the media cost isn’t the only cost. There’s also install time, maintenance time, and operation costs. One of the biggest operation costs at a house is electricity. Manitoba Hydro charges somewhere around $0.063/kwh CDN. That’s about 365.242199 * 24 * 0.063 = $552.246205 per kw-year.

Western Digital seems to say hard drives consume between 0.40 Watts to 5.4+5=10.4 Watts. I’ve seen elsewhere claiming 25 Watts for hard drives. So at the given kw-year, the cost of operation could be as low as about 0.40 * 552.246205 = $220 CDN. The more likely case of lets say 2 hours of operation, 1 hour idle to off, based on Western Digital’s “competing” write case of 5.4+4.5 watts in operation, 2.8 watts for idle, and 0.40 watts for standby is about
((((5.4 + 4.5) / 24) * 2) + (((2.8) / 24) * 1) + ((0.40 / 24) * 21)) * 552.246205 = $715.

Wow. I need to turn my computer off more often.

Simple comparisions

So lets take the best case for hard drives then and make it as big as seems reasonable right now. 1.5 TB is about 1,396.98386 GB. At Dream host, 3 years (typical hard drive warrenty) times 12 months times $0.10 times 1396 GB times 1.13 for padding for exchange rate, and possible volitility is about
3 * 12 * 0.10 * 1 396 * 1.13 = $5,679. Local storage would be $750 for electricty * 3 years, plus $150 for the hard drive, plus maintanence of lets say $250 is about (750 * 3) + 150 + 250 = $2,650.

So local storage is about half the cost in its best case. I’d say it’s more likely to be far less used, but at home I’d have to budget for expansion immediatly. Being at Dreamhost is good for a site disaster (like a house fire), but bad for access time.

Conclusion

More research is needed. If I had to make the decision tomorrow, I’d probably go with spending more on Dreamhost storage. I like the offsite feature, the low maintenance, and not having to spend as much time figuring out how much storage I might need.

Drew Scott Daniels’ resume

January 3, 2009

Adventures with testdisk

Filed under: Uncategorized — admin @ 8:00 pm

Saturday, January 3rd, 2009 (2009/01/03)
Drew Scott Daniels

Adventures with testdisk

Testdisk seems like a great utility as does its companion PhotoRec. I recently had a single NTFS partion hard drive stop displaying its contents in Windows. When I tried to mount it in Linux, “mount” complained that the $MFT file which holds the meta data about where files are was missing or corrupt. My initial experiments with testdisk showed the same results. The mirrored copy of the MFT seemed to be missing or corrupt too.

To try to restore the MFT file, I wanted to use the beta TestDisk 6.11. I tried the Microsoft Windows version which seems to be CygWin compiled. I’ve seen many problems with cygwin in the past so I have a bit of a distaste for it. I much prefer when applications are compiled with mingw. I gave it a try anyway, but couldn’t find the MFT recovery section, I later learned it was under Advanced, then Boot.

Since I had trouble with the Windows version, I pulled out an old copy of Knoppix (a Linux LiveCD) and booted to Linux with the startup options:

knoppix 2 noswap

The “2” boots to the command prompt which takes less memory. The noswap option prevents Knoppix from automatically trying to write files to any of the disks for “swap” space (AKA a page file). I later added the option “nodma” to try to make sure that the DMA controler/driver weren’t causing problems with trying to mount or run TestDisk.

Knoppix comes with the testdisk package installed, so I gave it a quick try. I didn’t find the MFT recovery section so I moved on to compiling TestDisk 6.11. I already had the source code so I coppied that to /tmp and tried configuring it. Of course, I was missing build dependencies. After a while of playing I remembered I could do an “apt-get build-deps testdisk”, but I needed to update the /etc/apt/sources.list file first so that I didn’t try to pull in a new libc6 (my Knoppix CD was from 2006) or anything else like that. On reflection, I should have added the deb-src line for Debian unstable (sid) after, and done a “apt-get source testdisk”, then coppied over the new TestDisk code, then did another round of getting build-deps.

I managed to get it compiled with a simple “./configure;make”, and ran the executable without needing to install the package. I still didn’t find the MFT option.

I rebooted back into Windows as my nagios monitor was of course reporting the host as being down, and my nightly bacula backup was about to start. I decided to treat the MFT issue as an accidentally reformated partition. I then went to Windows’ TestDisk’s Advanced, Boot options and found the MFT recovery option. The MFT mirror wasn’t available either. So I stared the boot recovery option which seems to scan for the MFT. The “Rebuild BS” didn’t seem to help. The MFT file or files seem to have bad magic. I beleive bad magic means the “magic numbers”. The magic numbers are a fixed string of bytes which are usually at the beginning of a file. See the “file” utility for more information on “magic”.

So I had no luck finding the MFT. I’m now starting to look at PhotoRec which supports scanning for an interesting variety of files. Unfortunatly, I’ll have to find a disk large enough to put all the found data on. I’ll have to sift through the data by hand and look to see if there was anything useful on the drive. I mostly think it was just where I did optical media backups so I’m not too worried, but I think I may have had some more interesting backups there.

Drew Scott Daniels’ resume: http://www.boxheap.net/ddaniels/resume.html

Originally from: http://www.boxheap.net/ddaniels/notes/20090103.html

January 1, 2009

20090101

Filed under: Uncategorized — admin @ 8:00 pm

Thursday, January 1st, 2009 (2009/01/01)

Drew Scott Daniels

  • Updated 2009/01/02, added links to build EVA8000 firmware.

Open Source on my TV

I recently got a new LG TV. It has an “Open Source Software Notice” with the caviet “This feature is not available for all models.” It notes that it may be running Linux kernel 2.6.12, busybox, uclibc, and Nanox. To get a CD (for a charge of distribution and media), within 3 years of distribution, I have to write to Opensource@lge.com which I think I’ll give a try. There’s a USB port and RS-232C in port on the back of the TV for “service only” which have the note “Used for software updates.”. I can’t find any other details so I guess it’s time to make some inquiries, and make sure I’ve got a nice null modem cable which I can use for lots of other projects.

I’d like to find a way to make use of the MPEG decoder that’s on my TV. A cheap encoder that I got the link for went for several hundered
dollars. I don’t know of any easily accessible digital television (DTV)
signals in my area. I’m wondering if Shaw offers free to air (FTA) DTV
that my TV will accept as CADTV (cable DTV?). I know PBS in Minnesota, and FOX in Pembina, ND may theoretically be accessible, but I don’t have time for that until it’s warm enough outside.

Since the TV has a nice “SVGA” input plug (that they call “RGB(PC)”) in
the form of a “D-sub 15 pin cable (VGA cable)”, I may try and hook up a computer to it. I’m conserned about the noise of the fans which seem to fail fast. I also would like to run another circut so I don’t have to stretch to the next circut’s plug. I’m thinking this could replace my Netgear EVA8000 – Digital Entertainer HD.

Netgear EVA8000 runs Linux

Netgear’s EVA8000 has a support page here, but the main forum and a restricted beta forum seem to have quite a bit of information not in their support site.

My Netgear EVA8000 runs Linux, and has several open ports on it. It
seems like the firmware is encrypted though. I can’t find anyone posting information like even a port scan so I may do that later. I’m worried that the Netgear EVA9000 will/has caused the developers to stop working on the EVA8000 which I hear ran out of memory.

Although for what they call GPL compliance, they offer to let you
download source code for the EVA8000, it seemed to be the original
version only (I later found the Feb 2008 release). It also seemed to be stripped of quite a bit of functionality. I also can’t easily figure out a way to upload the code which I think is intentional. I guessed it was a simple block device upload, but it didn’t mount in loopback. I should run testdisk on the file just in case. I think I remember reading somewhere about an encryption password being used to do updates, but it seems others have figured out how to dissect the image like this:

dd if=$FW of=crc bs=1 count=32
dd if=$FW of=bootkernel bs=1 skip=32 count=$((0x210000))
dd if=$FW of=jffsroot bs=1 skip=$((0x210020))

I just found a forum thread about how to edit the firmware images, and I’ve seen they’ve updated the source code to the latest non-beta release. Versions in between don’t seem to be available nor do beta versions. Unfortunately it seems you have to register to see this.

Another use for a null modem cable is connecting to the EVA8000 during boot and after interrupting the boot (by sending a few escape’s?), typing:

config cmd root=/dev/nfs ip=bootp
boot net

All at the boot prompts.

I see that it runs a 2.4 kernel which bothers me (2.4.22-uc0-sigma-20051018-nm). When I worked with embedded systems, I saw a few that updated 2.4 kernels to run with their reference boards as opposed to 2.6 kernels.

The EVA8000’s PC software called Digital Entertainer for Windows (DEW) seems to have at least one Windows audio driver which would be nice to learn how to use. I’m pretty sure that is what it is using to play iTunes music.

The DEW software comes with receiver.exe which seems to be what’s used to play things like YouTube videos. This makes me wonder if there are other videos that the DEW software manipulates (re-encodes, or redirects?) prior to going to the EVA8000.

Wireless network drivers

It’s a bit frustrating to see the software upgrade path for wireless
network devices stop. On old versions of Windows it’s easy to see that
the cost of maintaining the wireless network stacks for various
families of cards complicates things. On Linux, it’s easy to see the
problem is time and motivation. Now that there’s a standard wireless
stack on Windows Vista, and Linux, I hope that I can do things like
setup a Wireless Access Point, mesh network, etc. all with just a
software update and some configuration. I’ll have to be careful about
making sure my next devices work with the new standard wireless network stacks.

Mass storage

Now that I’m doing more with video, and I’m actively backing up many of the computers that I have, I’d like to get more storage. I evaluated
getting more drives, getting a Network Attached Storage (NAS) device
like the D-Link DNS-321, but for the cost, I think I should look at
online storage. I’ll likely still need a few extra drives, but not the
high capacity I was looking at.

I’ve decided that for home applications, I don’t need a RAID array. The
costs of maintaining the drives, the controller etc. is extremely high. I
seem to currently get all the relevant benefits with Bacula backups
plus the bonus of a long retention period.

Optical media (e.g. DVD’s) and other “removable” media seem to have a
very high time cost. They also require manual intervention on a regular
basis. Reloading any data requires finding the media and inserting it
which often doesn’t feel worth while for just verification.
Additionally, one should periodically do full backups and manage the
removal of old backups (AKA retention). Thus the removable media method of backup does not seem suitable for backups. Optical media seems less useful for movies too except that it’s so cheap.

I’ve been trying to think of the common modes of failure to help come up of ways of recovering from future failures. Most of my past failures
have been due to hardware problems, though a few seem like they may have been software triggered. Software for managing files like NTFS and ext3 seem to be a lot more reliable as are the OS’s that run the software. Hard drives are also more reliable with various SMART and related features. CD-R’s however have become less reliable from what I’ve read.

Power supply related failures causing hard drive failure has happened to me a few times. Drives failing to work after long periods of
inactivity… Most failures have resulted in the loss of an entire data
set.

Some of the online data storage have a 1GB file size limit. This is
probably to prevent the storage of large amounts of data. The easy work around for me is to set bacula to 1GB volumes.

Drew Scott Daniels’ resume: http://www.boxheap.net/ddaniels/resume.html
Originally from: http://www.boxheap.net/ddaniels/notes/20090101.html

July 23, 2006

Maintaining old x86 machines

Filed under: Uncategorized — admin @ 8:00 pm

Sunday, July 23rd, 2006

Drew Scott Daniels

I am maintaining a variety of old machines including many running
Windows 95. I have many licenses for Windows 95, but not as many for other versions of windows (although my MSDN subscription allows me to install certain versions of Windows on certain computers).

Applications I use on Windows 95 include:

  • Abiword
  • VideoLan Client (VLC)
  • Opera Web Browser

Problems

I’ve had significant trouble with, Mozilla Firefox mostly due to its
installer. I believe Firefox would run fine, but it was taking too long
to install so I switched to Opera instead.

Abiword had a well documented required that I download some
“redistributable” Microsoft files. I was considering OpenOffice.org, but
it is quite bloated and has many features that I and other users do not
use. I use OpenOffice.org on several Windows XP machines quite happily.

One feature that I miss in OpenOffice.org’s Writer is a grammar checker. When I was in grade 10 I had my grammar level tested. The test indicated that I had a grade 14 level of understanding. Despite that, I enjoy grammar checkers such as the one in Abiword. A number of years ago I tried many word processors including Correl WordPerfect, Microsoft Office, Microsoft Works and Lotus WordPro. I found Lotus WordPro’s grammar checker to be so useful that I still like to run it over documents that I proof read. I hope to have more time to see if Abiword’s grammar checker is up to that level, and maybe help improve it.

VLC worked on one Windows 95 machine, but not another due to missing dlls. The missing dlls could probably all be downloaded, but I ran out of time. I installed two Microsoft packages after searching to find the source of the error messages that I was getting. A third error message left me without time. It had some kind of winsock dll requirement that could probably be removed if the dlls were delay loaded. I would imagine that it would be the same case for several other dlls that VLC required.

I find VLC to be one of the best video and audio players available.
It supports almost every format I want, is OpenSource, has support for
professional broadcast standards, and is very portable. I run VLC on
quite a few different operating systems including Windows 95, Windows
2000, Windows XP, Debian Linux and others. Unfortunately I currently
can’t say I run it on Apple’s MacOS X version 10.2 as it seems to crash. I believe the version 0.85 was the one that was crashing on startup. One other problem I have with VLC is that its playlist seems to cause the application to crash under certain circumstances. Rather than look into it, I’ve simply avoided the playlist feature.

I’m hoping to use VLC or ffmpeg to transcode some movies I have into
a format that I can watch and listen to on my 200MHz laptop. In the past I used to play 128Kbps mp3’s at lower quality on a 486 DX2 50Mhz. To do that I think I used WinAmp’s decode at quarter quality option. I think I can decrease the decoder requirements by lowering the frame rate. I was also considering lowering the bitrates of the video, audio and stream, but I’m uncertain as to whether that might mean more processing. Some compression/decompression algorithms take more system resources when trying to lower the bits per byte ratio (“better compression”).

Time has been a valuable resource lately. I finally got around to
upgrading my laptop to Windows 98. I spent quite a few hours trying a
few weeks ago, but the installer refused to work as I was trying to
upgrade with Toshiba’s Windows 95 winutils installed. I tried figuring
it out what was going on by reading all the documentation I could find
on the computer, and on the Win98 CD, but there was very few hints. One day, when I had some time on another computer, I searched and found that Toshiba has a nice upgrade web page. The trick to the upgrade was a separate uninstaller that was not linked to from the list of downloadable files.

My upgrade to Win 98 required a Linux boot CD, and a USB storage
device. The files I wanted/needed would not fit on a floppy
easily/conveniently. Win 95 does support USB, but it does not support
mass storage devices. That means that it would not support my USB key, any external USB drive, my digital camera… It also doesn’t support the Palm Pilot USB driver, and I couldn’t get a dlink USB wireless network key to work.

One of my motivations for updating, was that despite my many hours
working on getting my WPC11v4 working, I found that I required special out of tree Linux drivers, or Windows 98. I did find some indications that it might work on Windows 95, but it seems that was the WPC11v3 using a different chipset, the European version… The RealTek RTL8180 (or RTL8180L?) reference driver would install, and I believe attach, but not work.

More on these topics later.

Drew Scott Daniels’ resume: http://www.boxheap.net/ddaniels/resume.html

Originally from: http://www.boxheap.net/ddaniels/notes/20060723.html

March 9, 2006

20060309

Filed under: Uncategorized — admin @ 8:00 pm

Today on CBC’s “Up To Speed”, they had a business columnist talking about user interfaces. She complained that they shouldn’t need training to figure out how to use a photocopier. She further went on to talk about how the design of Research In Motion (RIM)’s BlackBerry keyboard went through quite a bit of research.

I’m a long time fan of Palm (formerly of 3Com). PalmOS, most Palm
Pilots and HandSpring portable data assistants (PDA’s) have a witting
interface called Graphiti. Grafiti can be used to write with a stylus
(pen like stick), onto a touch sensitive surface. The character language of graphiti is English writing characters, simplified for easier
recognition. This simplified language causes the users to have to learn
it if they want to take advantage of the high speed input. With the
advent of the Palm Treo, a BlackBerry like product, Palm looked at, and
later removed the graphiti capability. Until very recently, one could
download graphiti for the Treo, but without graphiti, stylus input
didn’t make much sense. So the company bowed to pressures and put a qwerty keyboard set of buttons at the bottom of the device. They also shrunk the touch pad area to make more room for this new keyboard.

With my arguments above, it might seem like Palm made a mistake in
adding a keyboard, but maybe not. Requiring a stylus makes one handed operation, difficult or impossible. Generally, this wouldn’t matter, except that the Palm Treo is intended to be used out in the field. In the filed is where people have to carry or hold other things. What though do people need one handed operation for? Primarily just for making calls, or acknowledging/checking incoming messages. If it’s
anything involved or time consuming, wouldn’t people want to free up
their other hand to pay more attention to the device? Of course if they
do that, then one step further is finding a flat surface at elbow hight.
Full size keyboards are by far a faster interface device. One could (and
probably still can), buy and external keyboard for Palm devices. My
personal preference is for Graphiti though, as if I can use a full size
keyboard, I can probably use a full size display, and… well I’d want
to use a laptop or notebook computer.

With laptops being less portable, and not needing one handed operation very often, my preference for Graphiti is strong. The real impractical ideal input would be Voice recognition. Unfortunately, that probably requires more processing power than would be available in a highly portable device (currently).

A month or two ago, at a consumer electronics show, it was announced that the new Palm Treo (the 700?) would run Windows CE. Besides the luggage that Microsoft’s Windows platforms have carried with them, I’m not aware of any version of Graphiti for Windows CE. It would be unfair for me to say that Windows CE likely requiring battery depleting hardware would be three strikes. Without the budget to buy a new Palm Treo, or use any of the extremely overpriced wireless data services for it, I probably won’t be researching which of those three strikes, if any aren’t true, or can be overlooked.

With doing research into real time operating systems, and cheap
alternatives to Windows XP, I’ve started to have a reason to look into
Windows CE. What’s really given me a peak into Windows CE is that
Microsoft Visual Studio .Net 2003 (and VC8 AKA MSVS 2005) shows help for CE library functions before any other results (and usually brings it up in such a way that one has to hunt to find the non-CE results).

From the Microsoft developer’s network (MSDN)’s help, I’ve found that
Windows CE supports many of the same functions as are available to most Windows applications. This means it might be easy to translate or port programs to the Windows CE platform. That’s not quite a home run, as there still is some work required for porting. Still the prospect of having many applications for the Windows CE platform might make it as popular as the PalmOS platform. When looking at the Treo 600, the salesperson commented to me that one of the reasons that people preferred the Treo’s over the Blackberry, was the number of applications for it. Certainly that has been a factor for people choosing Windows over MacOS or Linux in the past (now most Windows applications can be run on those platforms). I haven’t seen much of a developer community around the blackberry, but there may be one.

Windows CE might be called Windows Mobile now. Microsoft has split their products in many different ways these days, and renamed old products several times. Product names has been a problem for me in determining what it does, and how it’s different from other products. I’m a developer with a subscription to MSDN’s stuff, and I although I read and write Microsoft based things almost every work day, I still can’t keep track. I think however, I’m well ahead of the average user. The easiest way to learn about the products is to use them. Maybe someone might pick up the tab for me to get a new Palm Treo and give it a work out.

I’d like to write more about Voice Recognition, battery consumption,
and research the unknowns above, but I’ll save that for later.

Drew Daniels Resume: http://www.boxheap.net/ddaniels/resume.html

Originally from: http://www.boxheap.net/ddaniels/notes/20060309.txt

January 2, 2006

20060102

Filed under: Uncategorized — admin @ 8:00 pm

The differences between OnClose(), OnDestroy(), and DestroyWindow() (MFC/WinAPI stuff).

I knoticed one programmer uses OnClose() to try to prevent the user
from closing the window when they shouldn’t. To do this, he only called CDialog::OnClose() from his overloaded OnClose when closing was allowed.

OnDestroy() is another CWnd member. It’s called durring the
destruction of the CWnd object. This is probably the most useful
function for doing cleanup.

DestroyWindow() is yet another CWnd member. The MSDN documentation suggests that it might never get called unless the program explicity calls it. There is however a note that MFC’s might call it. Which, or when I’m not sure (isn’t CWnd part of MFC?).

Drew Scott Daniels

Resume: http://www.boxheap.net/ddaniels/resume.html

Originally from: http://www.boxheap.net/ddaniels/notes/20060102.html

November 28, 2005

20051128

Filed under: Uncategorized — admin @ 8:00 pm

The content here is written without the permission of Linear Systems
Ltd., but only uses publicly available information.

Some pages at http://www.linsys.ca

  • Linear Systems Ltd.’s web site’s site map seems to make it easier to navigate the site. Google seemingly wasn’t indexing the site.
  • Linear Systems seems to have quite a few different Broadcast Boards available. These look to be branded DVEO boards (many or all of the pictures show the word DVEO on the boards). There seems to be mostly boards for DVB-ASI, ATSC (SMPTE 310M), and SDI (SMPTE 259M).
  • IP Caster is a pair of systems designed to receive ASI at one end, and then transmit ASI at the other. In between them is some kind of IP based network (probably using Gigabit Ethernet). The transmitter side of IP Caster looks like it might be able to be used to send to other appliances and software such as VideoLan.
  • DVB Loop is a product that according to Computer Modules, uses Stream Valve software, and seems like it has a full duplex DVEO DVB-ASI PCI card in it.
  • Quad Mux looks like it could be quite a nice, low cost, real time MPEG-2 transport stream multiplexer. The page says it supports MPEG SI tables such as PAT’s, PMT’s etc..
  • TimeShifter looks like a low cost way to move content from one time zone to another, keeping prime time content, in prime time for the new time zone (e.g. a 9PM show in the eastern time zone could be played out an hour later to be 9PM in the next time zone over).
  • A variety of software is available from Linear Systems.
  • It seems that Linear Systems gives away their drivers, and some SDK’s for their cards at their downloads page.
  • A variety of manuals are available for free download from Linear Systems’ Support –
    Manuals
    page. Of particular interest is the Master
    Technical Reference Manual
    which has quite a few details on the
    features of many of the DVEO boards, their operation, how to qualify a
    system, and even some introduction to DVB, MPEG and other broadcast industry concepts.
  • The Support – Data Sheets page seems to contain both Data Sheets and a few white papers. Of particular interest is discussions on high speed (AKA throughput) data transfers, and information about overflows.

Drew Scott Daniels’ resume: http://www.boxheap.net/ddaniels/resume.html

Originally from: http://www.boxheap.net/ddaniels/notes/20051128.html

September 3, 2005

20050903

Filed under: Uncategorized — admin @ 8:00 pm
Issues of interest:
- Road traffic controls
- Road traffic problems (potholes, etc.)
- Fuel efficiency
A bug tracking system (BTS) for city work is a concept I've considered.
Citizens could then file "bugs" and various departments could manage
them. In the absence of the willingness of employees, volunteers could
do the work.

- Logistics of the transport of goods (could be more efficient)
Lots of empty trucks and train cars travel around on a regular basis.
Encouraging the use of local goods can decrease pollution, improve local
economies, make regions independent, and increase the quality of goods.
Local food and other perishables are generally in better condition if
they have to spend less time travelling.
Margins on goods from chain stores might be higher than the cost benefit
they gain through Economies of Scale.
- Regulation of household cleaners
In workplaces the Workplace Hazardis Material Information System (WHMIS)
requires that material data sheets be available for each cleaner or
hazardis material. On the sheet is a list of chemical ingredients, their
hazards, symptoms of hazards, and first aid.
- Airline regulations
On PBS I saw an episode of NOVA about an investigation into an airline
crash (Swiss Air 111?). In it they said that there were some
recommendations for industry regulations that were never implemented.
Some were as simple as requiring smoke detectors.
- Deregulating travel
Most airports say to arrive an hour early. While a large part of the
delay is due to the airlines, security delays are long. Security at
airports is a good idea, but the methods, purposes and other aspects
need to be evaluated. Not allowing a nail file through, but having other
such things for sale on the other side doesn't make much sense. Even if
the area past security were to be restricted, one should consider the
people sped through (e.g. workers and frequent travellers). Also other
items should be considered including the same kind of items as a prison
does (e.g. anything that can be made into a "shiv"). Even this much
restriction won't keep all possibilities of malicious intent "in check" as
employees in the industry must have access to dangerous things
including equipment for maintenance, fuelling, cargo handling, and the
air planes themselves must be kept available. As Bruce Schnider has said,
better security would be people trained to look for suspicious activity.
- Preventing insecure national ID cards
Bruce Schnider probably has a good number of articles talking about how
getting someone's ID doesn't prove that they're a criminal or not. It
may not even be a reliable way to get any statistics on a person unless
the people in charge of the ID have the proper policies in place to
insure the completeness, accuracy and integrity of such information is
insured.

Originally From: http://www.boxheap.net/ddaniels/notes/20050903.txt
« Newer PostsOlder Posts »

Powered by WordPress