Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
Google

Mr. Schmidt Goes To Washington: A Look Inside Google's Lobbying Behemoth 128

barlevg (2111272) writes "In May 2012, in the midst of an FTC investigation into Google's search practices, the law school at George Mason University in Northern Virginia hosted a conference attended by congressmen, regulators and staffers. The topic: competition, search and social media. What none of the attendees of the conference knew was that Google was pulling many of the strings behind the event, even going so far as to suggest invited speakers. This event, as documented in The Washington Post is just a snapshot of the operations of one of the largest and highest spending lobbying entities in DC, a far cry from the one-man shop it started out as nine years ago, from a company "disdainful" of Washington's "pay-to-play" culture."

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

Your talking about abstractions really makes not much sense, so I pray for the entroneurs you consult, good luck.

I'm sure it doesn't, because you have demonstrated quite clearly that you don't understand abstraction.

How can you be a competent architect when you don't understand abstraction? LOL.

In any case, you're a programmer, right?

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

Your first post I answered to certailny was not clear about "abstracting away persistanve issues"

Are you an escaped inmate from a Guatemalan insane asylum?

The entire first post, including the title of the post, is explicitly about abstracting your persistence model.

"In other words, have your backend web services (presuming you're using them and not manually POSTing from a socket yourself to your own socket server) instantiate an instance of iMyDBAdapter and use it."

Maybe you don't find that clear, but that's because you apparently don't understand abstraction...

your naming examples like ValidateConnection or CheckConnection are certainly bad choices as an example.

The stupidity of your statement really cannot be overstated. You dislike ValidateConnection because you claim you will simply catch an exception when you connect; ergo, you are either connected or you are not. This, alone, is proof that you do not understand abstraction.

I'm a real programmer, not a manager.

And you'll apparently never get any further, because you'll need to understand abstraction before you can be an architect. I'm also not a programmer, I'm a software engineer (there's a difference that you're not aware of), a software architect, a founder, a co-founder, and I also perform technical due diligences for multiple Vencture Capital firms.

Abstracting away the fact that a Service is remote and not local leads to all forms of problems. It is very often. o good idea.

Actually, this is EXACTLY what you should abstract away. Yet again you demonstrate your lack of basic understanding of the purpose of abstraction. You think that abstracting away 'locality' is bad and leads to problems? Why on earth would it do that? LOL. Your abstraction layer should satisfy the requirements of the business logic, if locality is an issue (i.e. for performance) then your adapter implementation must account for that. The only time anyone using your abstraction layer should ever know anything about locality would be if that knowledge would be required so that the business logic could make a decision - otherwise, that sort of information should be encapsulated totally.

And no, I don't use that line often, actually I don't remember if I had used it already once.

Sure, I believe you, and you understand abstraction too.

Well, the application I'm working on right now...

Great, I hope you have a competent architect.

Comment Re:IANA Physicist, So... (Score 1) 630

Seriously, look at the reaction process for what you're talking about ... you'll notice there is no reaction without adding oxygen ... in the form of water.

Did you even bother to read the article you linked to? LOL. It clearly states that it oxidizes several metals. It then goes on to describe the reaction that you're trying to claim is the only oxidation case. In fact, the article you linked lists at least four chemical oxidations above and beyond those involving metals.

You seem to only capable of reading about the ones that have to do with water. Rather selective of you.

But hey, don't let basic chemistry stand in your way of looking silly.

Don't let basic reading skills stand in your way of looking silly [sic].

YOU CAN NOT OXIDIZE WITHOUT OXYGEN.

Yes, you can. The article you linked points this out to you as well.

LOOK AT THE DEFINITION OF OXIDIZE.

You appear to be obsessed with the colloquial definition of 'oxidize.' You should check out the formal definition; especially the part that relates it entirely to electron transfer.

See the stupid people who agree with me:

http://www.chemguide.co.uk/ino...

Don't just read the first part (the beginners' definition), read down to the "most important use of the terms oxidation" part...

Maybe I should have typed that in all caps so you could read it...

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

Sorry, you have no idea about the real world.

Funny, just a few years ago I was the chief software architect for a company purchased for more than 60 million dollars entirely for our enterprise product. One of the primary reason this company was acquired instead of its competitors was because we were pioneering open standards in our market verticals and supporting those open standards with public integration points that 3rd party companies, including our competitors, wrote integrations to.

This system had a persistence model that had to scale, not just horizontally, but in 'swim lane' fashion - or if you prefer the actual fashion we used, in AKF cube fashion. It handled tens of millions of persisted logic events daily and integrated with many different back end databases - all supported through this EXACT same facade/proxy system implemented with adapters. This pattern was used for all of the integration points and was how 3rd parties wrote integrations with our system.

So, whatever it is you do, you can rest assured that I write enterprise software in the "real world" and quite successfully.

You connect to a DB or open a File or open a Socket and either "it just works" or you get an exception.

You really just can't seem to understand abstraction.

After I answered to you, you suddenly talk about abstracting the business level.

Not at all. Again you demonstrate that you don't understand what abstraction is. By hiding the details of the persistence model, which means (so that you understand) that people using the abstraction interface don't know if it is a DB, or a file, or a web service, or a pipe, or a local process, or a remote process, the business logic simple deals with business objects.

If I was talking about abstracting the "business level" (presumably you mean business logic) I would be talking about an interface exposed to a view or consumer that didn't need to know any details about how the business logic operated. I was clearly not talking about that at all.

So either you made a mistake in choosing the right words or headline or you simply are mixing stuff up and now try to weasel out of it ;D

I'm willing to bet that you end up in a lot of 'arguments' where you bring out this line. It's okay, maybe some day you'll get it.

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

Well, in the real world, when you abstract things properly you don't expose a "connect" method. The code behind your interface - the adapter - would use connect and disconnect internally.

In the real world, when you abstract things, you expose a method that validates that the persistence layer is functioning/configured/usable as a normal part of the application/service/component's life-cycle. I called it ValidateConnection in this scenario because of the way he described his issue.

Comment Re:IANA Physicist, So... (Score 1) 630

No, you don't, there are plenty of things that burn without oxygen simply because there are lots of other oxidizers. Oxygen just happens to be the most common.

In any case, the combustion being referred to isn't "burning" it is the light emitted by the compressed gasses, and with oxygen being much more exciteable than nitrogen and their being the two most prevalent gases in this scenario, that's what I was referring to. This is what you see from a 'flame' in any case.

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

"...so that you simply write an adapter for pushing/pulling data" makes you think the abstraction layer would have the DB layout in?

Let me be perfectly clear then, the abstraction layer would simply know about the business logic side of things and that you can store and retrieve those things in some fashion most likely represented by some criteria associated with them.

If you simply talk about method signatures, then I wonder why you brought it up

I don't know what you mean.

And what exactly does ValidateConnection mean? Either you have a connection, or you have not, just an idea ....

What? Who/what would already "have a connection" to another server or memory mapped file or process or socket?

ValidateConnection, in this example, would simply ensure that the backend persistence mechanism both exists and (as is required in most cases) that you have valid credentials.

Comment Re:Perhaps you should abstract your persistence mo (Score 1) 272

Why would you be modeling anything relating to entities at the interface level?

iMyDatabase would have methods such as:

ValidateConnection
GetSomething
StoreSomething

It shouldn't know anything about how that data is stored, where it is stored, how your object is serialized/deserialized from a DB entity, et cetera...

Slashdot Top Deals

Always draw your curves, then plot your reading.

Working...