Watch it! I've run across some highly creative accountants.
At least one of them is in jail right now.
Watch it! I've run across some highly creative accountants.
At least one of them is in jail right now.
;single precision (32 bit IEEE) verion
pushfl x ;Get new (float) sample x
pushfl y ;Get previous (float) filter output y
call subf ;get difference (float)
pushfl alpha ;get (float) alpha
call mulf ;multiply (float)
pushfl y ;Get previous (float) filter output
call addf ;add difference (float)
popfl y ;save new (float) y
;double precision (56 bit IEEE) version
pushfd x ;cast new float sample x as a double and push on stack
pushd dy ;Push high precision previous filter output y
call subd ;get difference (double precision subtraction)
pushfd alpha ;cast alpha as a double and push on stack
call muld ;multiply (double precision multiplication)
pushd dy ;Push high precision previous filter output y
call addd ;add difference (double precision addition)
peekd dy ;capture high precision (double) new filter output
call convdf ;cast double as float for float output
popfl y ;save new (float) output y
Can you summarize the reason for the big advance without giving too much away? Just curious what you attribute the success to.According to the potential customer, the transducer is about 100x better than the marketing requirements.
I guess that 56 bit math paid off...
Edit: and it's less than half the cost of existing tech.
Mainly, things are done a certain way because that is the way they've always been done.Can you summarize the reason for the big advance without giving too much away? Just curious what you attribute the success to.
Soooo, the advancement is not so much a new technology coming along (which is rare!) as a novel approach and clever selection of tools, including code, to solve the problem? Anyone could have done it, but didn't? That's a very cool way to snatch a success.This often results in novel, high-performance, low-cost solutions.
I take big risks. But the return is significant if the ideas are successful.
If anyone could do it, they would. I've had other engineers refuse to work with/for me because they thought my ideas were impossible to implement -- even after I explained to them how to do it. That's another reason why I went off on my own many years ago.Soooo, the advancement is not so much a new technology coming along (which is rare!) as a novel approach and clever selection of tools, including code, to solve the problem? Anyone could have done it, but didn't? That's a very cool way to snatch a success.
Would it surprise you that my only tools are a Harbor Freight DVM and a turn-of-the-century Tektronix analog scope?...and clever selection of tools...
...Oh, and coffee. Coffee helps a lot.
The Guinness is for celebratory purposes -- and there are three milestones upon which it gets consumed:...... so ... I assume that you've been using Guinness as an ointment? ...
![]()
Oh dear, I do hope you mean after you write down the brilliant idea. Having a brilliant idea pass through my head used to be enough. These days I know I'd better make a note.The Guinness is for celebratory purposes -- and there are three milestones upon which it gets consumed:
1. When a brilliant idea pops into my head;
Actually no. A craftsman can work miracles with simple tools.Would it surprise you that my only tools are a Harbor Freight DVM and a turn-of-the-century Tektronix analog scope?
Are you saying that, given a thumbnail outline of what you did, they still couldn't do it? That's cooler still. A natural monopoly beats the hell out of one based on patents and IP.If anyone could do it, they would.
Actually no. A craftsman can work miracles with simple tools.
Maybe I am talking with the wrong people, or perhaps my communication skills are lacking, but the usual responses to my explanations are glazed-over eyes and head-shaking disbelief (disbelief that I'd actually talk such nonsense).Are you saying that, given a thumbnail outline of what you did, they still couldn't do it?
I rarely write anything down (unless I'm writing a patent application). Sometimes, I even have to reinterpret some of my former work on projects I haven't revisited in a while.Oh dear, I do hope you mean after you write down the brilliant idea. Having a brilliant idea pass through my head used to be enough. These days I know I'd better make a note.
I write it down and still have to reinterpret my work. It's that process, of revisiting projects years and even decades later, that taught me the value of clear documentation. It's hard when you're in the middle of something to write a note to your future self, the one that has long forgotten what you are writing about.I rarely write anything down (unless I'm writing a patent application). Sometimes, I even have to reinterpret some of my former work on projects I haven't revisited in a while.
To be more specific: I don't keep a notebook with concise moment-by-moment notes of ideas that occur to me as they happen (as some I know do.)I write it down and still have to reinterpret my work. It's that process, of revisiting projects years and even decades later, that taught me the value of clear documentation. It's hard when you're in the middle of something to write a note to your future self, the one that has long forgotten what you are writing about.