AtariAge Forums: AtariAge Forums -> EricBall's Tech Projects

Jump to content

Subscribe to EricBall's Tech Projects        RSS Feed

Bloombox is not green!

I was listening to the 60 Minutes podcast and they were doing a segment on the Bloombox, which is based on a fuel cell. The thing which annoys me is they call this "green energy". Umm, folks . . . you're generating electricity by consuming gaseous hydrocarbons (typically natural gas), which isn't green IMHO unless you are capturing bio-methane. And even then you're replacing the power grid with some sort of hydrocarbon delivery system. They also talk about avoiding grid losses, but half of my gas bill is "delivery charges"! Pushing gas down a pipeline ain't free folks!

This is not to say a fuel cell can't be used to generate power, or that it won't have value in some situations. But listening to the segment I couldn't believe the hype and spin which were being presented as fact. (OTOH, it's a good thing it wasn't broadcast with last week's segment on con artists and Ponzi schemes. Bloombox has taken a lot...

Home network monitoring

My wife plays Cafe World and other games on Facebook. She's noticed that her MacBook gets hot while she's playing. I suspect it's just because Flash is a hog, but it occurs to me that I really have no idea what it's doing. And although my home network is safely hidden behind a NAT router, that doesn't protect me if something which is running from inside Flash (which has security holes) or other "trusted" environments.

What I'd like to do is put a sniffer on a hub connected between my cable modem and the NAT router to watch the traffic coming out of my network. Eventually I could scale this up to a full IDS (Intrusion Detection System) which would do some analysis and flag any suspicious traffic for later investigation. But first I'd like to get a basic idea of what is going on, and thus what the IDS will need to deal with.

Unfortunately, I haven't been able to find a plug&play LiveCD which does what I want. There's a few...

mythbuntu woes

Both my new Dell (very fast and near silent) and the two ATI HDTV Wonder cards arrived this week. So after backing up the old system last night I tried to install Mythbuntu today.

The install itself went okay. I think most of the problems I had were self-inflicted. Unfortunately, my capture cards weren't automatically recognized, but I expected that because I had the digital-only VE version. However, even if I had the normal cards, I would have had to jump through hoops to get the cards recognized. But I think that's all okay now, the channel scan picks up the local stations and it's no longer complaining about no local channels.

Unfortunately, I haven't been able to establish connectivity otherwise. The web interface isn't active and the LiveCD front end doesn't want to connect either.

MythTV plotting

Well, I just bought two ATI HDTV Wonders on eBay, so I guess it's gone beyond plotting.

I've read as much as I can without taking the plunge. In theory it should be fairly simple.
1. Acquire PC to use as a back-end server. This server contains the capture cards and the hard drives to store the recordings. Since I'm dealing with ATSC the CPU specs don't matter.
2. Acquire compatible capture card(s). Sure, there may be cheaper cards out there which you might be able to get working, but it's reasonable to assume if no-one has done it, it can't be done.
3. Download and burn the install ISO. I'm going to play with LinHES as it seems to be minimalist (so probably better for my needs). However Mythbuntu...

new project curse

I have too many unfinished projects. I think of a project and I can think of nothing else. It rattles inside my head, making it difficult to think of anything else. But as I actually start the project the noise quiets down and life returns to normal. But then I get another idea and I can never quite get back to finishing off the project.

Currently rattling around in my head is an idea for an MPEG Transport Stream separator. This relates back to my idea of using my PS3 as a MythTV front end. (That project is stalled for a few reasons, including my unfinished outdoor antenna project.) I have some sample ATSC captures which the PS3 won't play back without "transcoding", which I'd like to avoid. The files are basically raw MPEG Transport Streams, and I suspect the reason my PS3 won't play them is because they 1 - are slightly corrupted and don't begin nicely and 2 - contain multiple channels.

However, the transport stream is a fairly simple container...

PS3 as ATSC PVR?

Of course, now that I've ordered a new computer the "dead" one stops crashing and actually transcodes overnight. So now I have a spare computer to find a use for.

I have two SD TiVos - a dual tuner connected to the HDTV for analog and digital cable, and an old Sony S1 in the bedroom for analog cable. I also have an antenna connected to the HDTV for getting OTA (over the air) channels in HD. I'd love to add an HD TiVo but I can't quite justify it for recording network television; and I can't justify the rental cost of a cableco HD PVR when I get HD OTA for free. But would it be possible to use my old computer as a cheaper solution?

An ATSC PVR does two things - first it stores the bitstream to disk and second it decodes that bitstream for display. The first step just requires the right hardware and a large hard disk. The second step is CPU or GPU intensive. So my old computer should be able to handle the first step without any problems, I just need to...

just buy a Dell?

My home computer is close to dead - random reboots and errors which point to a hardware failure. It's at least 7 years old, so I guess it's time for an upgrade. Sigh.

I've spec'd out a Dell replacement for C$878+tax etc. My question is whether there's any real point in looking at other makes etc. Unlike the old machine, I'm not interested in researching each component and assembling it myself. I have consoles for playing games so I don't need the ultimate in performance. I just want good value for money.

I guess my thinking is HP et al are sold via channels like Future Shop, who are going to take a slice of the profit. But Dell can take some of that cost and give me a better price.

I'd look at Macs too if I didn't have a bunch of Windows only software. Macs are great if you can stay inside the box of available software. Unfortunately, I tend to wander off that trail.

Beatles Rock Band

Two years ago when Rock Band was released, we gave it some serious consideration for a family Christmas gift. But we ended up giving the whole plastic instrument craze a pass until this year where we used some gift money and took advantage of the post-Christmas sales to buy Beatles Rock Band. The big advantage is we "know" most of the songs.

And we're having a blast. C is getting better banging on the skins, and I play bass while K handles the vocals (although we might swap). We've worked our way through the story mode (on easy for the most part) already, so now we'll probably explore and see what else the game has to offer. We might buy some DLC (like the Sgt. Pepper album) and maybe even one of the other games (since we have the instruments).

FAST! DHT

I've finally finished (and debugged) my Fast Discrete Hartley Transform for the Propeller. It takes 2^N signed 32 bit input samples and produces the output in the same array. I've measured the following:
16 samples in 12,496 clock cycles
64 samples in 87,648 clock cycles
256 samples in 534,656 clock cycles
1024 samples in 2,899,504 clock cycles
4096 samples in 14,668,112 clock cycles

At 80MHz that's 27.5 1024 sample DHTs per second!

Hartley Transform

Sample code (unoptimized). Comment if you want more details.
L = log2(N)for i = 0 to N-1  j = bitreverse( i, L )  if j > i then    t = x[i]    x[i] = x[j]    x[j] = t  endifnext ifor i = 0 to N-1 step 4  t0 = x[i]  t2 = x[i+1]  t1 = x[i+2]  t3 = x[i+3]  x[i+0]=(t0+t1+t2+t3)/2  x[i+1]=(t0+t1-t2-t3)/2  x[i+2]=(t0-t1+t2-t3)/2  x[i+3]=(t0-t1-t2+t3)/2next ifor o = 3 to L  s = 1 << o  h = s / 2  q = s / 4  for i = 0 to N-1 step s    t0 = x[i]    t1 = x[i+q]    t2 = x[i+h]    t2 = x[i+h+q]    x[i] = t0 + t2    x[i+q] = t1 + t3    x[i+h] = t0 - t2    x[i+h+q] = t1 - t3    for j = 1 to h-1      t0 = x[i+j] / sqrt(2)       t1 = x[i+h-j] / sqrt(2)       t2 = x[i+h+j] / sqrt(2)       t2 = x[i+s-j] / sqrt(2)      x[i+j]   = t0 + t1 * cos(2*pi()*j/N) + t3 * sin(2*pi()*j/N)      x[i+h-j] = t2 + t1 * sin(2*pi()*j/N) - t3 * cos(2*pi()*j/N)      x[i+h+j] = t0 - t1 * cos(2*pi()*j/N) - t3 * sin(2*pi()*j/N)      x[i+s-j] = t2 - t1 * sin(2*pi()*j/N) + t3 * cos(2*pi()*j/N)    next j  next inext o

  • (16 Pages)
  • +
  • 1
  • 2
  • 3
  • Last »

March 2010

S M T W T F S
 123456
78910111213
141516171819 20
21222324252627
28293031   

Recent Entries

Recent Comments

Search My Blog