Driver to drive?

No I did not. I linked to this one:

https://www.festool.com/Microsite/Pages/TSC.aspx
 
On Fri, 11 Apr 2014 22:19:00 -0700, John Larkin
<jjlarkin@highNOTlandTHIStechnologyPART.com> wrote:

On Fri, 11 Apr 2014 20:04:25 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 17:00:17 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:31:46 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 16:14:25 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:03:20 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 15:38:36 -0700 (PDT), Klaus Kragelund
klauskvik@hotmail.com> wrote:

I really don't want to argue with you, but you sure seem beyond reach

What do you want to bet?

I've already won. You've obviously never measure it or you wouldn't
be spouting such nonsense here. Hint: a full-sized cabinet saw is
"only" 3HP, and weighs 600lbs.

If a saw is rated for 13 amps at 120 volts, they would have to be
lying by a factor over 2 to be below 1 HP.

If it actually delivered 1/4HP in use, I would be *shocked*. It's
likely less than half that. If it were really delivering 2HP, it'd
break your arm. It's a little universal motor, fer chrissakes.

Do you think my circular saw, rated 13 amps, dims the lights, warms
the extension cord, has a 1/8 HP motor? It inertia-torques pretty hard
when you pull the trigger. It slices through a 2x4 in under 2 seconds.

Sorry, can't believe it's 1/8 HP.

I'm sorry if you think you can hold onto a tool (or lift) a tool with
a 2HP motor. Hint: Don't try this at home.

It's air cooled, all exposed, intermittent duty. It can do a HP or so, but not
continuously. An enclosed induction motor, like on a bench saw, will be far more
reliable in continuous use, and many times the mass, of an open construction
series/brush motor. Very different animal.

Nope. HP is torque (given the same tool). You couldn't hold onto a
saw delivering 2HP to the blade.
 
On Sat, 12 Apr 2014 00:32:50 -0700 (PDT), Klaus Kragelund
<klauskvik@hotmail.com> wrote:

On Saturday, April 12, 2014 1:31:46 AM UTC+2, k...@attt.bizz wrote:
On Fri, 11 Apr 2014 16:14:25 -0700, John Larkin

jlarkin@highlandtechnology.com> wrote:



On Fri, 11 Apr 2014 19:03:20 -0400, krw@attt.bizz wrote:



On Fri, 11 Apr 2014 15:38:36 -0700 (PDT), Klaus Kragelund

klauskvik@hotmail.com> wrote:



I really don't want to argue with you, but you sure seem beyond reach



What do you want to bet?



I've already won. You've obviously never measure it or you wouldn't

be spouting such nonsense here. Hint: a full-sized cabinet saw is

"only" 3HP, and weighs 600lbs.



If a saw is rated for 13 amps at 120 volts, they would have to be

lying by a factor over 2 to be below 1 HP.



If it actually delivered 1/4HP in use, I would be *shocked*. It's

likely less than half that. If it were really delivering 2HP, it'd

break your arm. It's a little universal motor, fer chrissakes.

For the Festool one, the FSC, it's a permanent magnet motor with a full inverter drive. SO efficiency is high. That's what seperates Festool from the other manufactors of tools, all their cordless drill use permanent magnet motors.

Cheers

You showed the TS75 track saw. That is NOT a cordless tool.
 
On 12-04-2014 16:48, John Larkin wrote:
On Sat, 12 Apr 2014 15:40:04 +0200, David Brown <david.brown@hesbynett.no
wrote:

[snip]
That just reinforces what an astonishingly poor understanding you - and
many others - have about programming languages, and about bugs in software.

This was a bug in the implementation of the response to "heartbeat"
telegrams in OpenSSL, which is a commonly used library for SSL. The bug
was caused by the programmer using data in the incoming telegram without
double-checking it. It is totally independent of the programming
language used, and totally independent of the SSL algorithms and encryption.


Unchecked buffers and stack overflows have been chronic security lapses for
decades now, thousands and thousands of times. Wandering around data structures
with autoincrement pointers is like stumbling in a mindfield, blindfolded. With
various-sized mines.

But the heartbeat problem has nothing to do with bufferoverflows etc.
The programmer did just not check (for whatever reason - there are a lot
of rumors spreading how this could happen) whether the information
coming in makes sense.

This has nothing to do with C or any other programming language. Rather
with bad design. Worse it seems to be a blow to the open source
community, which always claimed their code is better/safer than
commercially developed software, because everyone can and will check the
code. This did obviously not happen.

The c language and, more significantly, the c language culture, will make this
sort of thing keep happening.

Actually the opposite is true. In order to become a capable C programmer
you learn that it is your responsible to make sure that your code
behaves well, when fed with garbage. Other languages tend to foster
programmers less aware of what could happen and how an attacker might
exploit weaknesses.

Given the compute horsepower around these days, most programmers should be
running interpreters, Python-type things, that can protect the world from the
programmers.

Actually I would claim that the majority of security problems is caused
by those interpreters. Do I have to mention Java(-script)?


ADA has better protections than c, but requires discipline that most programmers
don't have time for.
ADA has been responsible for the "most costly software failure of all
times" - the Ariane 5 disaster.


Klaus
 
On Sat, 12 Apr 2014 08:15:03 -0700 (PDT), edward.ming.lee@gmail.com wrote:

That just reinforces what an astonishingly poor understanding you - and
many others - have about programming languages, and about bugs in software.

This was a bug in the implementation of the response to "heartbeat"
telegrams in OpenSSL, which is a commonly used library for SSL. The bug
was caused by the programmer using data in the incoming telegram without
double-checking it. It is totally independent of the programming
language used, and totally independent of the SSL algorithms and encryption.

Unchecked buffers and stack overflows have been chronic security lapses for
decades now, thousands and thousands of times. Wandering around data structures
with autoincrement pointers is like stumbling in a mindfield, blindfolded. With
various-sized mines.

The c language and, more significantly, the c language culture, will make this
sort of thing keep happening.

Data should be stored in declared buffers, and runtime errors thrown if attempts
are made to address outside the buffer. Items should be addressed by named
indexes, not by wandering around with pointers.

There is already something like that: server side Java. But think for a moment how that would impact performance of servers with hundreds and thousands of clients. For servers, every bit of performance count.

And it's crazy for compilers to not use MMUs to prevent data and stacks and code
from being all mixed up.

Remapping MMU hundreds or thousands times for every program? Impractical!

Reliable, secure code? Impractical!


--

John Larkin Highland Technology Inc
www.highlandtechnology.com jlarkin at highlandtechnology dot com

Precision electronic instrumentation
 
On Sat, 12 Apr 2014 00:28:38 -0700 (PDT), Klaus Kragelund
<klauskvik@hotmail.com> wrote:

On Saturday, April 12, 2014 1:15:50 AM UTC+2, Lasse Langwadt Christensen wrote:
Den fredag den 11. april 2014 23.40.25 UTC+2 skrev k...@attt.bizz:

On Fri, 11 Apr 2014 00:51:38 -0700 (PDT), Klaus Kragelund



klauskvik@hotmail.com> wrote:







On Friday, April 11, 2014 12:37:39 AM UTC+2, k...@attt.bizz wrote:



On Thu, 10 Apr 2014 15:07:38 -0700, John Larkin







jlarkin@highlandtechnology.com> wrote:















On Thu, 10 Apr 2014 18:50:31 GMT, Jan Panteltje







pNaonStpealmtje@yahoo.com> wrote:















On a sunny day (Thu, 10 Apr 2014 09:16:12 -0700) it happened John Larkin







jjlarkin@highNOTlandTHIStechnologyPART.com> wrote in







asgdk9d29q9ds74218i3r5me51loi12pm5@4ax.com>:















I avoid battery-powered tools. They are wimpy, and the batteries will die in a







year or two.















You have a cellphone?















Sure, a simple one. I charge it about every other week, and I've







replaced the battery once. But it's not a power tool.















You're not going to get a horsepower or so out of a battery for long,







especially when the battery is two years old.















You're not going to get a "horsepower or so" out of a hand tool.







You're in the stationary tool realm at a HP (Craftsman HPs don't







count).







Sure you will







I swear to Festool tools. I am dreaming about this one:







https://www.festool.com/Microsite/Pages/TSC.aspx







Something like 1-2kW, so about 2HP







It's a lie. You will *never* hold that. Think, man!



sure you'll really have to be making some dust to load it that much,

but you don't have to hold it, the wood is "squeezed" between the teeth

and the base plate you only have to push it

Exactly, it's on a guide rail

Good grief. The rail has nothing to do with it.
 
On Sat, 12 Apr 2014 08:53:57 -0700 (PDT), Lasse Langwadt Christensen
<langwadt@fonz.dk> wrote:

Den lřrdag den 12. april 2014 04.32.24 UTC+2 skrev k...@attt.bizz:
On Fri, 11 Apr 2014 17:35:40 -0700 (PDT), Lasse Langwadt Christensen

langwadt@fonz.dk> wrote:



Den lřrdag den 12. april 2014 01.36.28 UTC+2 skrev k...@attt.bizz:

On Fri, 11 Apr 2014 16:15:50 -0700 (PDT), Lasse Langwadt Christensen



langwadt@fonz.dk> wrote:







Den fredag den 11. april 2014 23.40.25 UTC+2 skrev k...@attt.bizz:



On Fri, 11 Apr 2014 00:51:38 -0700 (PDT), Klaus Kragelund







klauskvik@hotmail.com> wrote:















On Friday, April 11, 2014 12:37:39 AM UTC+2, k...@attt.bizz wrote:







On Thu, 10 Apr 2014 15:07:38 -0700, John Larkin















jlarkin@highlandtechnology.com> wrote:































On Thu, 10 Apr 2014 18:50:31 GMT, Jan Panteltje















pNaonStpealmtje@yahoo.com> wrote:































On a sunny day (Thu, 10 Apr 2014 09:16:12 -0700) it happened John Larkin















jjlarkin@highNOTlandTHIStechnologyPART.com> wrote in















asgdk9d29q9ds74218i3r5me51loi12pm5@4ax.com>:































I avoid battery-powered tools. They are wimpy, and the batteries will die in a















year or two.































You have a cellphone?































Sure, a simple one. I charge it about every other week, and I've















replaced the battery once. But it's not a power tool.































You're not going to get a horsepower or so out of a battery for long,















especially when the battery is two years old.































You're not going to get a "horsepower or so" out of a hand tool.















You're in the stationary tool realm at a HP (Craftsman HPs don't















count).















Sure you will















I swear to Festool tools. I am dreaming about this one:















https://www.festool.com/Microsite/Pages/TSC.aspx















Something like 1-2kW, so about 2HP















It's a lie. You will *never* hold that. Think, man!







sure you'll really have to be making some dust to load it that much,



but you don't have to hold it, the wood is "squeezed" between the teeth



and the base plate you only have to push it







"Lasse, this is Sir Isaac." "Sir Isaac, this is Lasse." It *might*



draw that much if you stall the rotor but it's going to be a real ride



and it's not cutting anything.



what force will give you that ride? the teeth push on under side of the

wood the base plate on the top the saw isn't going anywhere



Oh, good grief, you're dense. The same force that turning the blade,

or not, in this case. If the saw is using 2HP (just frappin' silly by

any standards), it's doing something. You're going to get a good

chunk of that. Have you ever stalled a saw? No, you really are

talking through your ass. Do yourself a favor and measure the

current. You'll see that it's nowhere *close* to 16A.

no I haven't stalled a saw that would be pointless, I back off when I
can hear it bog down

So you admit that you're lying, now.

>ok, I'm dense, please explain in what direction that force will be?

Ever hear of "kick-back"?
 
On Sat, 12 Apr 2014 17:36:12 +0200, Klaus Bahner <Klaus.Bahner@ieee.org> wrote:

On 12-04-2014 16:48, John Larkin wrote:
On Sat, 12 Apr 2014 15:40:04 +0200, David Brown <david.brown@hesbynett.no
wrote:


[snip]


That just reinforces what an astonishingly poor understanding you - and
many others - have about programming languages, and about bugs in software.

This was a bug in the implementation of the response to "heartbeat"
telegrams in OpenSSL, which is a commonly used library for SSL. The bug
was caused by the programmer using data in the incoming telegram without
double-checking it. It is totally independent of the programming
language used, and totally independent of the SSL algorithms and encryption.


Unchecked buffers and stack overflows have been chronic security lapses for
decades now, thousands and thousands of times. Wandering around data structures
with autoincrement pointers is like stumbling in a mindfield, blindfolded. With
various-sized mines.

But the heartbeat problem has nothing to do with bufferoverflows etc.
The programmer did just not check (for whatever reason - there are a lot
of rumors spreading how this could happen) whether the information
coming in makes sense.

It was an unchecked buffer bug. Just past the assumed but unchecked buffer was
whatever else happened to be in memory. That sort of blunder has been chronic
for decades, should be impossible, and keeps happening.

There was, in the DOS days, a joke circulating that a certain JPEG file
contained a virus. A few years later, in Windows, Microsoft actually made that
possible. Same problem, trusting that a declared size was the actual size of a
structure, and data and code and stack mixed in the same memory spaces.

This has nothing to do with C or any other programming language. Rather
with bad design. Worse it seems to be a blow to the open source
community, which always claimed their code is better/safer than
commercially developed software, because everyone can and will check the
code. This did obviously not happen.

A strongly typed language without pointers, and with runtime bounds checking,
and compilers that use proper protections, would prevent sloppy errors like this
one.

The c language and, more significantly, the c language culture, will make this
sort of thing keep happening.

Actually the opposite is true. In order to become a capable C programmer
you learn that it is your responsible to make sure that your code
behaves well, when fed with garbage. Other languages tend to foster
programmers less aware of what could happen and how an attacker might
exploit weaknesses.

You're joking, right? The trickier the language, the better the programmers?


Given the compute horsepower around these days, most programmers should be
running interpreters, Python-type things, that can protect the world from the
programmers.

Actually I would claim that the majority of security problems is caused
by those interpreters. Do I have to mention Java(-script)?



ADA has better protections than c, but requires discipline that most programmers
don't have time for.

ADA has been responsible for the "most costly software failure of all
times" - the Ariane 5 disaster.

ADA wasn't responsible. If someone converts a float to a 16-bit integer, to do
something like load a DAC maybe, he is obligated to consider the consequences.
That's true in any language.

At least nobody died.

http://www.ieee.li/pdf/viewgraphs/trustworthy_software.pdf

http://en.wikipedia.org/wiki/Therac-25





--

John Larkin Highland Technology Inc
www.highlandtechnology.com jlarkin at highlandtechnology dot com

Precision electronic instrumentation
 
On Sat, 12 Apr 2014 11:32:44 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 22:19:00 -0700, John Larkin
jjlarkin@highNOTlandTHIStechnologyPART.com> wrote:

On Fri, 11 Apr 2014 20:04:25 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 17:00:17 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:31:46 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 16:14:25 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:03:20 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 15:38:36 -0700 (PDT), Klaus Kragelund
klauskvik@hotmail.com> wrote:

I really don't want to argue with you, but you sure seem beyond reach

What do you want to bet?

I've already won. You've obviously never measure it or you wouldn't
be spouting such nonsense here. Hint: a full-sized cabinet saw is
"only" 3HP, and weighs 600lbs.

If a saw is rated for 13 amps at 120 volts, they would have to be
lying by a factor over 2 to be below 1 HP.

If it actually delivered 1/4HP in use, I would be *shocked*. It's
likely less than half that. If it were really delivering 2HP, it'd
break your arm. It's a little universal motor, fer chrissakes.

Do you think my circular saw, rated 13 amps, dims the lights, warms
the extension cord, has a 1/8 HP motor? It inertia-torques pretty hard
when you pull the trigger. It slices through a 2x4 in under 2 seconds.

Sorry, can't believe it's 1/8 HP.

I'm sorry if you think you can hold onto a tool (or lift) a tool with
a 2HP motor. Hint: Don't try this at home.

It's air cooled, all exposed, intermittent duty. It can do a HP or so, but not
continuously. An enclosed induction motor, like on a bench saw, will be far more
reliable in continuous use, and many times the mass, of an open construction
series/brush motor. Very different animal.

Nope. HP is torque (given the same tool).

****** Power is NOT torque! ********


You couldn't hold onto a
>saw delivering 2HP to the blade.

If the motor shaft were welded to some big object, it would be hard to hold the
saw. But the reaction torque is mostly applied to the wood being cut.

1/8 HP is silly.

http://en.wikipedia.org/wiki/File:Timber_Framing_Circular_Saw.jpg


--

John Larkin Highland Technology Inc
www.highlandtechnology.com jlarkin at highlandtechnology dot com

Precision electronic instrumentation
 
On 04/12/14 14:36, edward.ming.lee@gmail.com wrote:

This is really a problem of the Government/Industrial leadership (or lack of). This could have been fixed quietly with must less damages. But now, everybody (including criminals) know how to and how easy it is to hack into servers.

Actually, it was, with all the interested parties warned before it
was made public, to allow servers top be patched.

It's really not as bad as the hype anyway.

In fact, this bug is simply the result of a malloc()
requested chunk of memory only being partially filled by
the requesting application before being sent back to
the remote requesting node, the remainder of the buffer
containing what malloc() returned.

This site had an update:

https://www.schneier.com/

where Cloudflare tried to access sensitive info using this
method and got garbage.

It's not surprising. Assuming the server has 32Gbytes memory,
the buffer size 64k, then you have a possible 512,000 x 64k
blocks to examine. Also, to find out where the sensitive data
is, you first have to discover the code / process that was
using it to find the location, which means disassembling the
code, always assuming that you can find it. Also, in a virtual
memory environment, both code and data could be fragmented all
over physical address space, or the memory could have been
reallocated or overwritten. All in all, not a trivial task,
even for the security services with all the resources at their
disposal.

Summary: Storm in a teacup :)...
 
On Sat, 12 Apr 2014 09:34:12 -0700 (PDT), edward.ming.lee@gmail.com wrote:

On Saturday, April 12, 2014 8:53:54 AM UTC-7, John Larkin wrote:
On Sat, 12 Apr 2014 08:15:03 -0700 (PDT), edward.ming.lee@gmail.com wrote:
many others - have about programming languages, and about bugs in software.

This was a bug in the implementation of the response to "heartbeat"
telegrams in OpenSSL, which is a commonly used library for SSL. The bug
was caused by the programmer using data in the incoming telegram without
double-checking it. It is totally independent of the programming
language used, and totally independent of the SSL algorithms and encryption.

Unchecked buffers and stack overflows have been chronic security lapses for
decades now, thousands and thousands of times. Wandering around data structures
with autoincrement pointers is like stumbling in a mindfield, blindfolded. With
various-sized mines.

The c language and, more significantly, the c language culture, will make this
sort of thing keep happening.

Data should be stored in declared buffers, and runtime errors thrown if attempts
are made to address outside the buffer. Items should be addressed by named
indexes, not by wandering around with pointers.

There is already something like that: server side Java. But think for a moment how that would impact performance of servers with hundreds and thousands of clients. For servers, every bit of performance count.

And it's crazy for compilers to not use MMUs to prevent data and stacks and code
from being all mixed up.

Remapping MMU hundreds or thousands times for every program? Impractical!

Reliable, secure code? Impractical!


The technology is already there, but at what cost? What you are saying is really putting JVM like sand boxes on all servers. Performance hits could be 70% to 90%, on my conservation estimate.

The PDP-11 separated code, stack, and data spaces. A stack overflow made a
hardware trap, it didn't clobber code space. Code space was execute-only and
could not be written by the application running it. Data pages could be r/w or
read-only. All that in the 1970's.

C, or at least most c compilers, tangle code, data, and stacks so much that MMU
protection is not feasible. A pointer can clobber anything... bytes, longs,
floats, other pointers, stuff on stacks, opcodes.

Buffer and stack overflows, and unchecked buffers, have been chronic security
problems for decades. The language should prevent it; the culture should
routinely check it. It's disgraceful.

We have a checklist for PCB layouts. Why don't programmers have a checklist for
code?


--

John Larkin Highland Technology Inc
www.highlandtechnology.com jlarkin at highlandtechnology dot com

Precision electronic instrumentation
 
On Sat, 12 Apr 2014 10:23:32 -0700 (PDT), haiticare2011@gmail.com wrote:

On Saturday, April 12, 2014 1:10:18 PM UTC-4, John Larkin wrote:



routinely check it. It's disgraceful.



We have a checklist for PCB layouts. Why don't programmers have a checklist for

code?





--



John Larkin Highland Technology Inc


So how to protect against this threat?

Working in c, always check every buffer for size errors. Study every pointer.
Don't just write the code, READ it. Comment heavily, because commenting is a
code review of sorts all by itself. c is of course a mostly write-only language
and the culture discourages comments.

Or program in a better language, that simply doesn't allow data, or programming
errors, to create system-level hazards.

The CS departments of the world should have Manhattan-project, Man-on-the-moon
scale projects to make computing reliable. They have other priorities.



--

John Larkin Highland Technology Inc
www.highlandtechnology.com jlarkin at highlandtechnology dot com

Precision electronic instrumentation
 
On Sat, 12 Apr 2014 04:29:44 -0700 (PDT), the renowned Lasse Langwadt
Christensen <langwadt@fonz.dk> wrote:

Den lřrdag den 12. april 2014 08.41.41 UTC+2 skrev Spehro Pefhany:



The power tool that I really don't like using is the table saw. Much

more so the slider radial arm saw, and way more than a lathe or mill.

Apparently the first thing most folks do is remove that stupid thing

that marks up wood and helps keep it from randomly flinging stuff

toward you at high velocity (riving something?).

a riving knife is required here, its a slitter that sits behind the blade
so the wood can't pinch the blade, I don't see how it could mark the wood but it can get in the way if you want to do cut that are not all the way through

I can see how something like this: http://www.prettyhandygirl.com/wp-content/uploads/2011/11/anti-kickback_pawl.jpg could scratch the wood

Yes, that's what I'm talking about.

like all power tools it requires respect and attention to safety

-Lasse

And a moment's inattention or misjudgment can result in permanent
injury. Metalworking tends to be safer, IMHO.. you never get near the
sharp bits during operation.


Best regards,
Spehro Pefhany
--
"it's the network..." "The Journey is the reward"
speff@interlog.com Info for manufacturers: http://www.trexon.com
Embedded software/hardware/analog Info for designers: http://www.speff.com
 
On Saturday, April 12, 2014 3:27:03 PM UTC-7, k...@attt.bizz wrote:
On Sat, 12 Apr 2014 10:41:22 -0700 (PDT), edward.ming.lee@gmail.com

wrote:

So how to protect against this threat?
I just got an email from a friend's yahoo address, saying that this person
had been in an accident and needed me to send $1300 to a western union in Rome,
Italy. All false of course.

What to do? - practical steps?

Do you have your friends linked with social media like google+, facebook, twitter, linkedin, etc? People in some countries have plenty of time and motive to find links in social media. Social media is fun, but really dangerous. I stay away from them and people should be more careful using them.. No wonder social media stocks are crashing.

I think the social media market is crashing because the subscription
lies are coming out (44% of twitter accounts have never tweeted). No
problem. The IPO is over and the suckers now own the pig, lipstick
and all.

And I go on facebook to play poker only. Don't post any real data. Can't believe people are posting so much personal data for scamer to harvest. I have no friend on facebook. I am anti-social.
 
"tridac" <design42@ceeq.org> wrote in message
news:libr1n$b85$1@dont-email.me...
It's not surprising. Assuming the server has 32Gbytes memory,
the buffer size 64k, then you have a possible 512,000 x 64k
blocks to examine. Also, to find out where the sensitive data
is, you first have to discover the code / process that was
using it to find the location, which means disassembling the
code, always assuming that you can find it. Also, in a virtual
memory environment, both code and data could be fragmented all
over physical address space, or the memory could have been
reallocated or overwritten. All in all, not a trivial task,
even for the security services with all the resources at their
disposal.

Summary: Storm in a teacup :)...

Very easily resolved using DNA analysis techniques.

What? Yes; typically, when DNA is analyzed, they chop it up into
manageable pieces (~500 base pairs) and, back in the day, you'd do a gel
electrophoresis (mass spectrum resulting in those ghostly bars prints they
used to exhibit on TV), but I forget what's done nowadays (obviously,
something with more precision and throughput!). A pattern matching
algorithm finally hunts for overlapping segments and reassembles a likely
result.

Note that large swaths of repeated information screw up the process, which
does happen from time to time (chromosomal transposons and stuff).

The human genome is in the TB size range, so the practicality of doing
such an attack -- exhaustively, not just to find tasty clues -- isn't
impossible. Though it would be at the very least difficult to reconstruct
a coherent image of memory that's constantly changing. But 'tis the same
way: people had some idea what DNA is, and what parts of it do (genes),
decades before full-on sequencing was developed. All it takes in this
case is a few errant keys and you've got big problems.

Tim

--
Seven Transistor Labs
Electrical Engineering Consultation
Website: http://seventransistorlabs.com
 
Skybuck Flying wrote:
GM, This SHIT company once had criticism on Microsoft's Windows START
button. Claiming that it would be illogical to use the "start" key to
shut down the system.

To me as a programmer it makes complete sense to "start" the shutdown
procedure. So their criticism from an enginering point of view is BOGUS.

Now what comes around goes around you ll see.

Now they face their own stupid engineering crisis:

Their own START KEY IS FLAWED ! and apperently they tried to hide it !:

http://www.thecarconnection.com/news/1091399_gm-suspends-engineers-adds-recall-repair-ups-cost-to-1-3m


SHAME ON THIS COMPANY CALLED GENERAL MOTORS.

May they rott in hell.

Bye,
Skybuck.

P.S.: Don't buy CARS from General Motors if you want to live ! ;) =D
The name now is Government Motors...
 
On Sat, 12 Apr 2014 09:42:20 -0700, John Larkin
<jjlarkin@highNOTlandTHIStechnologyPART.com> wrote:

On Sat, 12 Apr 2014 11:32:44 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 22:19:00 -0700, John Larkin
jjlarkin@highNOTlandTHIStechnologyPART.com> wrote:

On Fri, 11 Apr 2014 20:04:25 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 17:00:17 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:31:46 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 16:14:25 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:03:20 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 15:38:36 -0700 (PDT), Klaus Kragelund
klauskvik@hotmail.com> wrote:

I really don't want to argue with you, but you sure seem beyond reach

What do you want to bet?

I've already won. You've obviously never measure it or you wouldn't
be spouting such nonsense here. Hint: a full-sized cabinet saw is
"only" 3HP, and weighs 600lbs.

If a saw is rated for 13 amps at 120 volts, they would have to be
lying by a factor over 2 to be below 1 HP.

If it actually delivered 1/4HP in use, I would be *shocked*. It's
likely less than half that. If it were really delivering 2HP, it'd
break your arm. It's a little universal motor, fer chrissakes.

Do you think my circular saw, rated 13 amps, dims the lights, warms
the extension cord, has a 1/8 HP motor? It inertia-torques pretty hard
when you pull the trigger. It slices through a 2x4 in under 2 seconds.

Sorry, can't believe it's 1/8 HP.

I'm sorry if you think you can hold onto a tool (or lift) a tool with
a 2HP motor. Hint: Don't try this at home.

It's air cooled, all exposed, intermittent duty. It can do a HP or so, but not
continuously. An enclosed induction motor, like on a bench saw, will be far more
reliable in continuous use, and many times the mass, of an open construction
series/brush motor. Very different animal.

Nope. HP is torque (given the same tool).


****** Power is NOT torque! ********
******Power is torque X RPM! ******** Like tools have similar RPM,
so...

You couldn't hold onto a
saw delivering 2HP to the blade.

If the motor shaft were welded to some big object, it would be hard to hold the
saw. But the reaction torque is mostly applied to the wood being cut.

Without reaction from the wood, there is little reason for power.

>1/8 HP is silly.

Wrong.

>http://en.wikipedia.org/wiki/File:Timber_Framing_Circular_Saw.jpg

At least you've admitted that you've lost the argument.
 
On Sat, 12 Apr 2014 12:23:44 -0700 (PDT), Klaus Kragelund
<klauskvik@hotmail.com> wrote:

No I did not. I linked to this one:

https://www.festool.com/Microsite/Pages/TSC.aspx

Yes, you did.
 
On Sat, 12 Apr 2014 10:41:22 -0700 (PDT), edward.ming.lee@gmail.com
wrote:

So how to protect against this threat?
I just got an email from a friend's yahoo address, saying that this person
had been in an accident and needed me to send $1300 to a western union in Rome,
Italy. All false of course.

What to do? - practical steps?

Do you have your friends linked with social media like google+, facebook, twitter, linkedin, etc? People in some countries have plenty of time and motive to find links in social media. Social media is fun, but really dangerous. I stay away from them and people should be more careful using them. No wonder social media stocks are crashing.

I think the social media market is crashing because the subscription
lies are coming out (44% of twitter accounts have never tweeted). No
problem. The IPO is over and the suckers now own the pig, lipstick
and all.
 
In article <c20hk9tnsm05vbirg1uuauaj6jv2q6f011@4ax.com>,
jlarkin@highlandtechnology.com says...
On Fri, 11 Apr 2014 19:31:46 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 16:14:25 -0700, John Larkin
jlarkin@highlandtechnology.com> wrote:

On Fri, 11 Apr 2014 19:03:20 -0400, krw@attt.bizz wrote:

On Fri, 11 Apr 2014 15:38:36 -0700 (PDT), Klaus Kragelund
klauskvik@hotmail.com> wrote:

I really don't want to argue with you, but you sure seem beyond reach

What do you want to bet?

I've already won. You've obviously never measure it or you wouldn't
be spouting such nonsense here. Hint: a full-sized cabinet saw is
"only" 3HP, and weighs 600lbs.

If a saw is rated for 13 amps at 120 volts, they would have to be
lying by a factor over 2 to be below 1 HP.

If it actually delivered 1/4HP in use, I would be *shocked*. It's
likely less than half that. If it were really delivering 2HP, it'd
break your arm. It's a little universal motor, fer chrissakes.

Do you think my circular saw, rated 13 amps, dims the lights, warms
the extension cord, has a 1/8 HP motor? It inertia-torques pretty hard
when you pull the trigger. It slices through a 2x4 in under 2 seconds.

Sorry, can't believe it's 1/8 HP.

A universal motor is a work horse in a small package.

At 13 amps you are getting 2 HP.

However, they like to eat up brushes, not very good for a constant
speed application and is important to keep a load on them..

We have 2 HP vacuum loader systems at work and those that have the
universal motors, you can hold the motor in your hand.

Jamie
 

Welcome to EDABoard.com

Sponsor

Back
Top