Domain: google.com
Stories and comments across the archive that link to google.com.
Comments · 95,278
-
Re:Cam-tastic
-
Re:The solution is obvious
Agree. I use Android, but they could really benefit from something like this:
https://www.google.com/chrome/...
or
http://windows.microsoft.com/e...
or
https://access.redhat.com/supp...
or
http://www.ubuntu.com/info/rel...The first link is Google's, so it isn't like they don't know how to do this stuff.
-
Re:Oh please, you act as if they're computers
There are engineering apps. There are fluid dynamic apps, wind tunnel simulation apps and graphic calculator apps.
In the more practical domain there are function generators and oscilloscopes
It's just that those aren't downloaded as often as Candy Crush. -
Re:Oh please, you act as if they're computers
There are engineering apps. There are fluid dynamic apps, wind tunnel simulation apps and graphic calculator apps.
In the more practical domain there are function generators and oscilloscopes
It's just that those aren't downloaded as often as Candy Crush. -
Re:Oh please, you act as if they're computers
There are engineering apps. There are fluid dynamic apps, wind tunnel simulation apps and graphic calculator apps.
In the more practical domain there are function generators and oscilloscopes
It's just that those aren't downloaded as often as Candy Crush. -
Re:Oh please, you act as if they're computers
There are engineering apps. There are fluid dynamic apps, wind tunnel simulation apps and graphic calculator apps.
In the more practical domain there are function generators and oscilloscopes
It's just that those aren't downloaded as often as Candy Crush. -
Re:Oh please, you act as if they're computers
There are engineering apps. There are fluid dynamic apps, wind tunnel simulation apps and graphic calculator apps.
In the more practical domain there are function generators and oscilloscopes
It's just that those aren't downloaded as often as Candy Crush. -
Re:You know...
Every dollar store sells USB wall chargers
Speaking of that - maybe everybody knows this already but it had escaped my attention - I was getting annoyed that my phone charges very fast with the Samsung charger/cable but rather slowly with the well-rated 2A charger I bought off Amazon.
The issue was my dollar-store cables. Long story short, there is 28/28 gauge wire inside cheap cables and the resistance means they can only pull 500mA. The electronics at both ends are smart enough to figure this out. What you need is a
28/24 cable and then you can get a fast charge.I'm using Galaxy Charging Current Lite to measure my existing USB cables and tossing the ones that can't handle at least 1.3A. This helps with my over-stuffed box of USB cables too.
-
Underrated or not, Pascal has no niche
Pascal might be underrated but it doesn't matter. There is no place for Pascal in the modern programming world.
When I went to college, Pascal was the standard teaching language. I have studied it pretty thoroughly and I understand it pretty well.
Pascal was designed as a teaching language. There are features in Pascal that are stripped-down, and I think it was just to make the teaching easier. In particular, why must all goto labels be integers rather than strings? I'd much rather write goto cleanup_after_fatal_error than goto 1000. It was a tiny bit simpler to write a Pascal compiler because of this limitation.
If you know C and really want to understand why Pascal didn't win over C, get a copy of Software Tools in Pascal. Look at all the places they had to work around limitations in Pascal, and consider how to write similar code in C. In all the cases, I realized that they simply wouldn't have had a problem in C.
Also, after writing the above book, Brian Kernaghan wrote an essay Why Pascal Is Not My Favorite Programming Language and if you have rose-colored glasses for Pascal I suggest you read it.
C really is the king of the "third-generation languages". In its earliest form it had dangerously little type-checking, but in its modern form (where you use function prototypes so the compiler can check types) it has type checking similar to Pascal, with all the benefits that provides. And it has all the little things I appreciate, such as terminating a loop early using break. In Pascal, to terminate a loop early you needed to either clutter up the loop conditionals with an extra flag variable (early_exit or some such) or else you had to use goto to break out (with a numeric label target, of course).
"But wait," some of you are muttering. "I used to write Pascal programs and I remember using break..." No, you didn't used to write Pascal programs: you used to write Turbo Pascal programs. When Borland created Turbo Pascal they fixed all of the worst problems of Pascal, pretty much by just doing whatever C did first. I wrote a lot of Turbo Pascal and I liked it very much.
But this points out the biggest problem of Pascal: it was not well specified, and as a result it didn't work a lot of the time. Where a spec is weak, you tend to get different implementations doing different things, which is horrible for portability. The wonderful book Oh, Pascal! discusses the brokenness of the I/O in Standard Pascal, and the various ways that Pascal implementations work around the problem, and summarizes with Cooper's Law of Standards: "If it doesn't work, it doesn't stay standard."
For Pascal to have a niche, it should do something a lot better than C, for it is C that it needs to displace. But IMHO there really isn't anything it does very much better than C, and there are numerous areas where it's a non-starter unless it copies features from C.
Given the massive installed base of C, C isn't going anywhere, and that leaves no room for Pascal; Pascal does the same sort of things as C does, but not as well.
-
Underrated or not, Pascal has no niche
Pascal might be underrated but it doesn't matter. There is no place for Pascal in the modern programming world.
When I went to college, Pascal was the standard teaching language. I have studied it pretty thoroughly and I understand it pretty well.
Pascal was designed as a teaching language. There are features in Pascal that are stripped-down, and I think it was just to make the teaching easier. In particular, why must all goto labels be integers rather than strings? I'd much rather write goto cleanup_after_fatal_error than goto 1000. It was a tiny bit simpler to write a Pascal compiler because of this limitation.
If you know C and really want to understand why Pascal didn't win over C, get a copy of Software Tools in Pascal. Look at all the places they had to work around limitations in Pascal, and consider how to write similar code in C. In all the cases, I realized that they simply wouldn't have had a problem in C.
Also, after writing the above book, Brian Kernaghan wrote an essay Why Pascal Is Not My Favorite Programming Language and if you have rose-colored glasses for Pascal I suggest you read it.
C really is the king of the "third-generation languages". In its earliest form it had dangerously little type-checking, but in its modern form (where you use function prototypes so the compiler can check types) it has type checking similar to Pascal, with all the benefits that provides. And it has all the little things I appreciate, such as terminating a loop early using break. In Pascal, to terminate a loop early you needed to either clutter up the loop conditionals with an extra flag variable (early_exit or some such) or else you had to use goto to break out (with a numeric label target, of course).
"But wait," some of you are muttering. "I used to write Pascal programs and I remember using break..." No, you didn't used to write Pascal programs: you used to write Turbo Pascal programs. When Borland created Turbo Pascal they fixed all of the worst problems of Pascal, pretty much by just doing whatever C did first. I wrote a lot of Turbo Pascal and I liked it very much.
But this points out the biggest problem of Pascal: it was not well specified, and as a result it didn't work a lot of the time. Where a spec is weak, you tend to get different implementations doing different things, which is horrible for portability. The wonderful book Oh, Pascal! discusses the brokenness of the I/O in Standard Pascal, and the various ways that Pascal implementations work around the problem, and summarizes with Cooper's Law of Standards: "If it doesn't work, it doesn't stay standard."
For Pascal to have a niche, it should do something a lot better than C, for it is C that it needs to displace. But IMHO there really isn't anything it does very much better than C, and there are numerous areas where it's a non-starter unless it copies features from C.
Given the massive installed base of C, C isn't going anywhere, and that leaves no room for Pascal; Pascal does the same sort of things as C does, but not as well.
-
Re:Wow ....
Are you sure that was bread? It might have been more chicken.
-
Re:Just for fun
I googled for "GMO Hazards"
https://www.google.com/search?...
and out of the top 10 sites not one had actual problems that were caused by GMO foods
Lot of might and could be, but no actually. No "Killer corn ate my baby "
So How bout labeling foods that are produced from selective breeding genetically engineered as well ?
I think the labelling thing is nonsense since I don't think health risks are a big concern but I am a bit more cautious about the long term environmental effects as I suspect we're underestimating the probability of black swan events.
I think of selective breeding vs GMOs is a bit like traditional medicine vs modern medicine. Traditional medicine generally ranges from slightly beneficial to mildly harmful, you're not going to do yourself much harm, but you're not going to help much either. By contrast modern medicine is devastatingly effective in good ways and bad.
Right now you'd be a fool to choose traditional medicine over modern medicine, especially if you have a serious health issue, the benefits are too strong and we know how to manage the nasty side effects.
But at the dawn of modern medicine? You're probably better off dealing with the traditional stuff, a lot of people died because modern medicine was an incredibly powerful tool and people didn't know enough about that tool to use it safely.
I worry we're at that stage with GMOs and the environment. We don't really understand what it does to the ecosystem when we introduce new traits at that speed and effectiveness. We really can't know until we've done it a while. I'm sure GMO crops are the answer for the future, but I'm worried our capabilities are outstripping our knowledge.
-
Re: Lift?
Have you tried searching for aerogel samples?
-
Just for fun
I googled for "GMO Hazards"
https://www.google.com/search?...
and out of the top 10 sites not one had actual problems that were caused by GMO foods
Lot of might and could be, but no actually. No "Killer corn ate my baby "
So How bout labeling foods that are produced from selective breeding genetically engineered as well ?
-
Re:Hey Dice you dumb fucks
My recommendation would be to submit a Chrome bug report.
-
IBM scrollpoint
The original variant of the optical IBM/Lenovo scrollpoints are really nice and have a separate third button above the XY scroll saddle. Bonus points for having a two axis scroller that is hard to slip off when pressing left or right and being symmetric for ambidextrous use. The later models fail by putting the third button on the side.
-
Make your own
Get a used mouseman from ebay ($10 and free shipping), throw away the top cover, and 3-d print your own.
Don't own a 3-d printer? Probably one of your friends does, or the local university, or the local hackerspace, or as a last resort you can use shapeways.
Grab some modeling clay in your hand, make a 3-d scan of the resulting "handle", add fasteners for the buttons and ball (or IR chip), then 3-d print a custom-grip top cover. You can get IR mouse elements and ball elements from old mice, usually for free on Craigslist. Or the local Salvation Army store.
Purchase a sheet of friendly plastic (polycaprolactone), soften it in a pan of boiling water, then lay it over your relaxed open hand like a handkerchief. Wait for it to cool and harden, take a dremel to it, and use that as a custom-molded mouse top.
Get an Arduino, or any of the zillions of hobbyist microcontroller systems (pic, propeller, &c) which have a USB interface, and add buttons and an IR chip from an existing older mouse and program the buttons specifically for your needs.
Get a used mouse with lots of buttons, remount the buttons into a custom top as mentioned, then reprogram the button codes in the driver.
Or write your own USB driver at the OS level - it's not that hard. (For windows, it involves downloading the DDK and modifying an example found on the net.)
-
Make your own
Get a used mouseman from ebay ($10 and free shipping), throw away the top cover, and 3-d print your own.
Don't own a 3-d printer? Probably one of your friends does, or the local university, or the local hackerspace, or as a last resort you can use shapeways.
Grab some modeling clay in your hand, make a 3-d scan of the resulting "handle", add fasteners for the buttons and ball (or IR chip), then 3-d print a custom-grip top cover. You can get IR mouse elements and ball elements from old mice, usually for free on Craigslist. Or the local Salvation Army store.
Purchase a sheet of friendly plastic (polycaprolactone), soften it in a pan of boiling water, then lay it over your relaxed open hand like a handkerchief. Wait for it to cool and harden, take a dremel to it, and use that as a custom-molded mouse top.
Get an Arduino, or any of the zillions of hobbyist microcontroller systems (pic, propeller, &c) which have a USB interface, and add buttons and an IR chip from an existing older mouse and program the buttons specifically for your needs.
Get a used mouse with lots of buttons, remount the buttons into a custom top as mentioned, then reprogram the button codes in the driver.
Or write your own USB driver at the OS level - it's not that hard. (For windows, it involves downloading the DDK and modifying an example found on the net.)
-
Just 3 buttons? That's lame.
I too suffered from dangling digit syndrome, until I got a mouse with thumb and "pinky" buttons. Now I use the index and middle finger for the mouse buttons and the others for the buttons around the sides of the mouse. Just Google "gaming mouse"
Aside: It would be cool if we could get some mouse vendor to sport 3D printed covers, so we could design our own custom "ergonomic" fits, custom button placements would be nifty too. Some kind of click-wrap that said any designs built atop their framework could be put into production might incentivize crowd sourced (re)engineering of better mice. Something like the Statial mouse, but with more button customizations.
-
Re:Pedantic, but...
You forgot to substitute for the zero complementizer.
-
Re:What's the difference between China and EU?
The term "50-centers" is of wide enough currency in the English-language popular media that I don't think we need it explained to us, but thanks for playing.
And it's wumaodang if you want to get pedantic about it
-
Re:If all goes well. . .
Um, no.
Reading Google's opt-out page at https://support.google.com/ads/answer/2662922?hl=en, it only talks about opting out of "interest-based ads". As in, google still tracks you, only they don't apply the tracking information when presenting ads to you. Which is EXACTLY what I said.
And note, the google page completely ignores the entire idea of not tracking the user. That is simply not an option they will ever consider permitting the user to choose.
-
I know the reason why they did it
systemd fanbois kept spamming e10s's inboxes that they want poetteringd on chromeos and that binary logs are soooo great, and hey, what about an ntp daemon on a chromebook? So google made it easier for systemd fanbois to install GNU/poetteringd/Linux.
-
Re:It was the press coverage that was the disaster
I recall reading about the mirror when it was being made, the precision with which it was polished was mind bogglingly accurate
Be careful how you use the terms "precision" and "accuracy," because they have very specific meanings to engineers and metrologists. Yes, the precision was mind-boggling. The accuracy, on the other hand, well...
-
Re:Size
It isn't. You just "fear" it is.
Wrong, it absolutely is shoving a camera in people's faces, not always but certainly when you're in close proximity to other people. That's what this whole "glasshole" thing is about.
And by gosh, by gum, and by gollee, you're certain it's a picture being taken! A picture of you!
When did I ever say anything about it taking a picture? All I said is it is the equivalent of shoving a camera in people's faces, disagree all you want but you're still wrong which is precisely what all the "glasshole" backlash is all about. Why do you think google issued guidelines about it?
I'm not saying I care about it - you're just projecting that onto me - I'm saying that, correctly, incorrectly or subjectively, that is the way it is perceived.
-
Quick history lesson
Way back in the 1970s, a scientist named Roy Curtiss engineered Chi-1776: a strain of E. Coli for precisely these purposes. It was unable to synthesize d-amino pimelic acid, it couldn't exchange plasmids(*) with other bacteria, it was killed by detergents and UV radiation, and so on.
It was subsequently discovered that the survival of Chi-1776 was greatly enhanced when a plasmid commonly used for research was added.
Chi-1776 was also found difficult to work with. The very safeguards that made it safe for experimental use also made it difficult to grow. In fermentors it was outcompeted by just about everything else in the environment, so absolutely sterile environments were required, and this turns out to be very difficult in practice.
In response, researchers turned to a strain labelled K-12 which had a higher survival rate than Chi-1776, but couldn't infect the digestive tract and also couldn't survive in the wild.
...until it was found to infect mouse digestive tracts after the mice had been given certain antibiotics.Also, despite strict procedures in place for chemical or physical disinfection, K-12 was subsequently found in the sewer systems supporting the University of Texas.
Those who cannot remember history are doomed to repeat it, or so they say. Does that statement apply to the current situation?
(*) A plasmid is a "loop" of DNA that is sometimes exchanged between bacteria. It's a method of propagating useful survival traits without going through the full reproductive cycle.
-
Quick history lesson
Way back in the 1970s, a scientist named Roy Curtiss engineered Chi-1776: a strain of E. Coli for precisely these purposes. It was unable to synthesize d-amino pimelic acid, it couldn't exchange plasmids(*) with other bacteria, it was killed by detergents and UV radiation, and so on.
It was subsequently discovered that the survival of Chi-1776 was greatly enhanced when a plasmid commonly used for research was added.
Chi-1776 was also found difficult to work with. The very safeguards that made it safe for experimental use also made it difficult to grow. In fermentors it was outcompeted by just about everything else in the environment, so absolutely sterile environments were required, and this turns out to be very difficult in practice.
In response, researchers turned to a strain labelled K-12 which had a higher survival rate than Chi-1776, but couldn't infect the digestive tract and also couldn't survive in the wild.
...until it was found to infect mouse digestive tracts after the mice had been given certain antibiotics.Also, despite strict procedures in place for chemical or physical disinfection, K-12 was subsequently found in the sewer systems supporting the University of Texas.
Those who cannot remember history are doomed to repeat it, or so they say. Does that statement apply to the current situation?
(*) A plasmid is a "loop" of DNA that is sometimes exchanged between bacteria. It's a method of propagating useful survival traits without going through the full reproductive cycle.
-
Quick history lesson
Way back in the 1970s, a scientist named Roy Curtiss engineered Chi-1776: a strain of E. Coli for precisely these purposes. It was unable to synthesize d-amino pimelic acid, it couldn't exchange plasmids(*) with other bacteria, it was killed by detergents and UV radiation, and so on.
It was subsequently discovered that the survival of Chi-1776 was greatly enhanced when a plasmid commonly used for research was added.
Chi-1776 was also found difficult to work with. The very safeguards that made it safe for experimental use also made it difficult to grow. In fermentors it was outcompeted by just about everything else in the environment, so absolutely sterile environments were required, and this turns out to be very difficult in practice.
In response, researchers turned to a strain labelled K-12 which had a higher survival rate than Chi-1776, but couldn't infect the digestive tract and also couldn't survive in the wild.
...until it was found to infect mouse digestive tracts after the mice had been given certain antibiotics.Also, despite strict procedures in place for chemical or physical disinfection, K-12 was subsequently found in the sewer systems supporting the University of Texas.
Those who cannot remember history are doomed to repeat it, or so they say. Does that statement apply to the current situation?
(*) A plasmid is a "loop" of DNA that is sometimes exchanged between bacteria. It's a method of propagating useful survival traits without going through the full reproductive cycle.
-
Re:Bye_bye, Blackberry
where are the iPhone, Android, Symbian, etc versions of BBM!
Uh, well for Google Play, it'd be here, and for iDevices it would be here
I still agree that their argument is dumb though. People develop apps for a platform where it will sell, and that has nothing to do with net neutrality. I find it annoying that I can't run [game/software X] on Linux, but that has nothing to do with my ISP or internet service.
-
I can offer a solution to the cosmology problemThe answer to the cosmological problem can be found in thermodynamics, and the same solution simultaneously removes the need for Dark Matter, Dark Energy, and explains the origin of the vacuum energy. By partially defining the photon in physical terms Gravity becomes simply a emergent property of spacetime given the existence of vacuum energy and it's interaction with the spacetime curvature. In my paper I logically present an argument for the thermodynamics as a conclusion, and present a theory based on first principals. I defer the complete definition and the photon and structure of spacetime/matter for a later paper, so I apologize in advance for trying to keep the paper small enough to be readable.
.
On The Thermodynamics Of General Relativity.
http://vixra.org/abs/1412.0270I have been looking for constructive feedback on these new ideas, so please do so if you have the time. I published this paper simply to get these new ideas out on the table for discussion by the community while I turn my attention to my next paper on solutions to the paradox of Special Relativity, and later the structure of matter and spacetime. The same solution fits all the open issues I know about.
Thermodynamic Unification Theory https://plus.google.com/u/0/+S... -
Re:Amazing
I see your google query, and I raise you one:
-
Re:Amazing
-
Re:poisionous and risky name policy.
-
Re:Finally. A Google plan I can get behind
Backing underdogs like Sprint and T-Mobile makes me think Google may end up owning both.
That would be perfectly fine with me.. a combined Sprint + TMo may be the only way to break up the Verizon + AT&T duopoly.
However, there is one caveat: will Google be sniffing all the traffic it sees on these newly-acquired traffic just to harvest it and sell to advertisers.
I seriously doubt they'd do anything that stupid. I'm guessing it's probably even illegal. At the very least they'd have to spell it out in their privacy guidelines.
IANAL but the Google Fiber Privacy Policy seems to explicitly state they won't do this.
-
Re:poisionous and risky name policy.
i pointed this out before, but google's policy of forcing people to give their *real* names is incredibly dangerous.
I know you young people might find this hard to believe, but being forced to use your *real* name on the Internet was the norm until the mid-1990s. Don't believe me? Go to Google Groups (where old USENET posts are archived) and browse anything from the early 1990s or before. It has everyone's real names, and *gasp* sometimes even their contact info. School, company, and government sysadmins voluntarily enforced an unwritten rule that you could not be anonymous on the Internet. When a method of doing something anonymously on the Internet was discovered, it was reported as a bug, and quashed at the earliest opportunity.
What brought anonymity to the Internet was, ironically, AOL joining USENET in 1993. See, AOL required you to use your real name when signing up (so they could bill your credit card). But they also allowed you to make up to 5 sub-accounts for free, ostensibly so your family members could use AOL services under their own name. Of course people immediately took advantage of this to create alter-egos which could make USENET posts anonymously.
So while I do think anonymity is better for the Internet (not that we could do anything about it if it were bad - that horse has long since fled the stable), don't make up stuff like real names being "incredibly dangerous." The Internet worked just fine for ~2 decades with everyone using their real names. -
Re:poisionous and risky name policy.
I am not sure about that name policy statement. I mean, I have this guy in my circles:
https://plus.google.com/+Whatw...
He's registered under "Jesus H. Christ", but I somehow doubt that that's his real name. -
Re:poisionous and risky name policy.
pointed this out before, but google's policy of forcing people to give their *real* names is incredibly dangerous.
So I'm going to try to respond with "both sides" of this issue--
1. Google's real name policy was horrific.
2. Still, they abandoned it months ago, with a pseudo-apology.
3. Still, it was too late for me, and I still refuse to sign up. In part this is because they have a no-opt-out "real location contact" address policy for developers which I find just as dangerous as their Google Plus real name policy.
4. Yes, I've sacrificed the ability to review Youtube videos and Play store apps/movies.
5. That said, 9% of 2.2 billion users is 198000000 users. Had the article been titled "198 million active users use Google Plus" regularly, this phrasing would have sounded to me like a success story.
-
Re:They already have
Historical temperatures are adjusted for comparison. This is well known. There are relatively few sites where the exact same thermometer, in the exact same structure, surrounded by the exact same surrounding structures, developments, and foliage has been in use for a hundred years or more. There are more in the US than in other countries. Many, many adjustments have to be made to the historical temperature readings to normalize them all with current readings and combine them into a global average representation. There are different methods for doing this that produce different results.
You should read up on the subject if you're interested in understanding it. If you just want to shoot down conspiracy straw men, then proceed. No knowledge or understanding of the subject is required.
-
Re: Want one.
Vpro?
They're avoiding Vpro specifically because of security concerns.
-
Re:Want one, with signature checking
But using my signature.
I want secure boot from beginning to desktop, with the knowledge that the NSA has not dicked with my computer beyond its initial state.
They are looking into it... https://groups.google.com/d/ms...
The Qubes OS community is interested in this laptop, but without a TPM chip Qubes' AEM firmware guarding feature won't work on the Librem. So they are looking at accommodating us in another way by employing some kind of user-generated cert to protect the system firmware.
Purism did, however, switch their CPU to an i7-770HQ (along with HM87 chipset) specifically to satisfy Qubes' requirement for I/O virtualization. Pending proper support in Coreboot, Qubes should run and provide great protection from remote exploits on the Librem.
-
Re:Nobody read the law, huh?
But there are already districts saying so (from another commenter):
https://drive.google.com/file/... -
Not necessarily all of Illinois
I actually live in the school district that has created the issue. You can find the original printed notice here:
https://drive.google.com/file/...From the language used, they seem to believe that their policy is enforceable by law. However, the actual text of the law says nothing about compelling access to a personal social network profile. This leads me to believe that a degree of incompetence has invaded the district's administration. Shocking, right?
I don't expect it to happen, but nonetheless I am telling my kids that if any authority figure at school asks for access to any of their personal accounts, they should defer to me so I can pass the issue along to the lawyer.
-
Re:stupid idea
This already happens according to some Farcebook algorithm.
MANY users[who?] detest this and opt for "Most Recent" instead of "Top Stories". It's one of the reasons extensions such as FB Purity and Social Fixer exist.
Right now I do most of my Farcebook interactions through Tinfoil for Facebook. There's also a version for Twitter. Having "social" media in its own browser cut off from the rest of your system means you don't have to install "Messenger" to use chat and more importantly, it can't be written to by any pissant program that fancies using your normally logged in account. -
US Army is running cover stories I see
They already have a substantial network of directed energy weapon technology, which are quite capable of remotely knocking drones out of the sky, through a variety of means including destruction and EMP to disable it. There's also remote control potential through Signals Intelligence. I don't think the US is in true danger of attack as they say..
In fact this is patented technology. Look up Raytheon's multi-functional radio frequency directed energy system. That patent says,
"An RFDE system includes an RFDE transmitter and at least one RFDE antenna. The RFDE transmitter and antenna direct high power electromagnetic energy towards a target sufficient to cause high energy damage or disruption of the target. The RFDE system further includes a targeting system for locating the target. The targeting system includes a radar transmitter and at least one radar antenna for transmitting and receiving electromagnetic energy to locate the target. The RFDE system also includes an antenna pointing system for aiming the at least one RFDE antenna at the target based on the location of the target as ascertained by the targeting system. Moreover, at least a portion of the radar transmitter or the at least one radar antenna is integrated within at least a portion of the RFDE transmitter or the at least one RFDE antenna."
It mentions targeting humans, air craft, atmosphere and more. It images, tracks, and can destroy using the same radio frequency apparatus. http://www.google.com/patents/US7629918
Another patent for disabling vehicles through directed EMPs is Apparatus for producing EMP, the last patent says:
"An apparatus which includes a plurality of sub-atmospheric vehicular devices; a substantially high power microwave transmitter located on each of the vehicular devices; and a waveguide for directing microwave energy from the high power microwave transmitter to a point in free space. The microwave energy from the microwave transmitters is directed from each of the plurality of vehicular devices to the point in free space." https://www.google.com/patents/US8785840.
Signals Intelligence has this deployed across the entire globe including the United States today in a network of hundreds of satellites and large ground based phased array antenna at sea, on land, etc. They already have a defense network for this and a delivery system.
It also targets humans and is responsible for untold slaughter. obamasweapon.com.
-
US Army is running cover stories I see
They already have a substantial network of directed energy weapon technology, which are quite capable of remotely knocking drones out of the sky, through a variety of means including destruction and EMP to disable it. There's also remote control potential through Signals Intelligence. I don't think the US is in true danger of attack as they say..
In fact this is patented technology. Look up Raytheon's multi-functional radio frequency directed energy system. That patent says,
"An RFDE system includes an RFDE transmitter and at least one RFDE antenna. The RFDE transmitter and antenna direct high power electromagnetic energy towards a target sufficient to cause high energy damage or disruption of the target. The RFDE system further includes a targeting system for locating the target. The targeting system includes a radar transmitter and at least one radar antenna for transmitting and receiving electromagnetic energy to locate the target. The RFDE system also includes an antenna pointing system for aiming the at least one RFDE antenna at the target based on the location of the target as ascertained by the targeting system. Moreover, at least a portion of the radar transmitter or the at least one radar antenna is integrated within at least a portion of the RFDE transmitter or the at least one RFDE antenna."
It mentions targeting humans, air craft, atmosphere and more. It images, tracks, and can destroy using the same radio frequency apparatus. http://www.google.com/patents/US7629918
Another patent for disabling vehicles through directed EMPs is Apparatus for producing EMP, the last patent says:
"An apparatus which includes a plurality of sub-atmospheric vehicular devices; a substantially high power microwave transmitter located on each of the vehicular devices; and a waveguide for directing microwave energy from the high power microwave transmitter to a point in free space. The microwave energy from the microwave transmitters is directed from each of the plurality of vehicular devices to the point in free space." https://www.google.com/patents/US8785840.
Signals Intelligence has this deployed across the entire globe including the United States today in a network of hundreds of satellites and large ground based phased array antenna at sea, on land, etc. They already have a defense network for this and a delivery system.
It also targets humans and is responsible for untold slaughter. obamasweapon.com.
-
Re:Data about where and how people drive?
Their cars aren't on the market yet. They have no data on my driving.
Google Maps — on every Android phone, and on many iPhones as well. If you use it — and many people do — here is, what Google knows about where you've been.
So the average person spends most of their day walking around with a GPS recording their every movement, I have to imagine this is already having a pretty big effect on the criminal court system. Sure most people committing a premeditated crime would be smart enough to leave their phone at home (or give it to a fake alibi), but this seems to greatly simplify the standard TV question of "where were you between the times of X and Y last night?"
-
Re:Hacking the insurance dongle
What stupid fuck would use an OBD2 dongle?!
According to TFA, Progressive says, "We are confident in the performance of our Snapshot device – use in more than two million vehicles since 2008"
And I have confidence that it was made in China by the lowest bidder. I had about a half-dozen "dead car battery" incidents during the several months that my car had their Snapshot device installed. After I sent the device back, the problems disappeared. I am not the only one to have a problem with the device draining my battery. Many people had more serious problems.
-
Re:Hacking the insurance dongle
What stupid fuck would use an OBD2 dongle?!
According to TFA, Progressive says, "We are confident in the performance of our Snapshot device – use in more than two million vehicles since 2008"
And I have confidence that it was made in China by the lowest bidder. I had about a half-dozen "dead car battery" incidents during the several months that my car had their Snapshot device installed. After I sent the device back, the problems disappeared. I am not the only one to have a problem with the device draining my battery. Many people had more serious problems.
-
Re:Getting insurance isn't the problem
They have a toll free number for their android store
-
Re:And five minutes later...
really only once a year? As it is now I can get a dump of all of my Google information as often as I want and download it s often as i want i have report on my profile emailed me once a month now and i can edit my information they keep on me. you can also delete you Google plus profile if you don't want it just go to.
https://myaccount.google.com/