AMD finally experiences some good fortune

More than a few pundits have been ready to draw a sheet over AMD, as the company has steadily lost money and share of both the CPU and GPU market. Well, don’t call it a comeback just yet, but fortune is starting to favor Silicon Valley’s biggest underdog.  AMD just announced a new joint venture with Tianjin Haiguang Advanced Technology Investment Co., Ltd (THATIC) to build custom system on chips (SoCs) for the Chinese server market. AMD expects the total value of the deal to be approximately $293 million, with $52 million in revenue earned over the course of this year. This is not a chip or product deal. CEO Lisa Su said this is a technology licensing deal. It’s a combination of x86 technology along with server fabrics, technology AMD probably acquired when it purchased microserver vendor SeaMicro.To read this article in full or to leave a comment, please click here

Tech Q&As: The IDG Enterprise Interview Series

Why Microsoft is your best strategic partner for the futureAvanade CEO Adam Warby details how a $2 billion IT services company is capitalizing on new Microsoft cloud and collaboration capabilities to power digital transformation projects.To read this article in full or to leave a comment, please click here

The Platform Advantage of Amazon, Facebook, and Google

Where’s the mag­ic? [Amazon] The databas­ing and stream­ing and sync­ing in­fras­truc­ture we build on is pret­ty slick, but that’s not the se­cret. The man­age­ment tools are nifty, too; but that’s not it ei­ther. It’s the trib­al knowl­edge: How to build Cloud in­fras­truc­ture that works in a fal­li­ble, messy, un­sta­ble world.

Tim Bray, Senior Principal Engineer at Amazon, in Cloud Eventing

Ben Thompson makes the case in Apple's Organizational Crossroads and in a recent episode of Exponent that Apple has a services problem. With the reaching of peak iPhone Apple naturally wants to turn to services as a way to expand revenues. The problem is Apple has a mixed history of delivering services at scale and Ben suggests that the strength of Apple, its functional organization, is a weakness when it comes to making services. The same skill set you need to create great devices is not the same skill set you need to create great services. He suggests: “Apple’s services need to be separated from the devices that are core to the company, and the managers of those services need to be held accountable via dollars and cents.”

If Apple has this problem they are not the only Continue reading

Google Calendar takes the headache out of scheduling work meetings

Google wants to take some of the pain out of scheduling work meetings with a new feature the company launched for its Calendar product on Wednesday. The new "Find a Time" feature in the Google Calendar Android app helps users pick out a time that works for everyone invited to a meeting without requiring them to spend ages going back and forth over email. Here's how it works: when a user sets up a meeting and adds people to the event, Find a Time will pick out a list of suggested times, along with who will be able to attend. Those suggestions will be built not only on the current state of an invitee's calendar, but also their historical scheduling trends. Once the organizer has picked a time, Google Calendar will send out invitations to everyone. To read this article in full or to leave a comment, please click here

Security Recruiter Directory

Looking for a qualified candidate or new job? CSO's security recruiter directory is your one-stop shop. The recruiters listed below can help you find your next Chief Security Officer (CSO), Chief Information Security Officer (CISO), or VP of Security and fill hard-to-hire positions in risk management, security operations, security engineering, compliance, application security, penetration testers, and computer forensics, among many others. If you're a security recruiting firm, we want your information! Our goal is to provide the most complete recruiter resource available, but to do that we need your assistance. Please send the name, contact info and a few sentences about your company and its specialties to Amy Bennett ([email protected]).To read this article in full or to leave a comment, please click here(Insider Story)

Man who hijacked HBO’s satellite signal 30 years ago would face far different fate today

On April 27, 1986, a Florida man with workplace access to a satellite transmission dish – and a financial beef with HBO -- pulled off the kind of audacious stunt that were it to happen today would likely land him in prison for a long, long time. From a 2011 Buzzblog post: John MacDougall, then 25, was the lonely pamphleteer of lore, only instead of paper and ink he was armed with a 30-foot transmission dish, an electronic keyboard, and a burning objection to HBO's decision in 1986 to begin scrambling its satellite signal and charging viewers $12.95 a month.To read this article in full or to leave a comment, please click here

Man who hijacked HBO’s satellite signal 30 years ago would face far different fate today

On April 27, 1986, a Florida man with workplace access to a satellite transmission dish – and a financial beef with HBO -- pulled off the kind of audacious stunt that were it to happen today would likely land him in prison for a long, long time.From a 2011 Buzzblog post: John MacDougall, then 25, was the lonely pamphleteer of lore, only instead of paper and ink he was armed with a 30-foot transmission dish, an electronic keyboard, and a burning objection to HBO's decision in 1986 to begin scrambling its satellite signal and charging viewers $12.95 a month.To read this article in full or to leave a comment, please click here

Man who hijacked HBO’s satellite signal 30 years ago would face far different fate today

On April 27, 1986, a Florida man with workplace access to a satellite transmission dish – and a financial beef with HBO -- pulled off the kind of audacious stunt that were it to happen today would likely land him in prison for a long, long time.From a 2011 Buzzblog post: John MacDougall, then 25, was the lonely pamphleteer of lore, only instead of paper and ink he was armed with a 30-foot transmission dish, an electronic keyboard, and a burning objection to HBO's decision in 1986 to begin scrambling its satellite signal and charging viewers $12.95 a month.To read this article in full or to leave a comment, please click here

IDG Contributor Network: Are inter-container communications the Achilles’ heel of latency-sensitive cloud apps?

Containerization exploits the idea that cloud applications should be developed on a microservices architecture and be decoupled from their underlying infrastructure.That is not a new concept; software componentization dates back to Service-Oriented Architectures (SOA) and the client-server paradigm. De-coupling applications from their underlying infrastructure aligns with today’s vision that efficient data centers should provide an on-demand resource pool that offers instances of various software-definable resource types spawned as needed. As demand for an application grows, requiring additional resources to support it, the services could span over multiple servers (a cluster) distributed within a data center or across a globally distributed infrastructure.To read this article in full or to leave a comment, please click here

Building the simplest Go static analysis tool

Go native vendoring (a.k.a. GO15VENDOREXPERIMENT) allows you to freeze dependencies by putting them in a vendor folder in your project. The compiler will then look there before searching the GOPATH.

The only annoyance compared to using a per-project GOPATH, which is what we used to do, is that you might forget to vendor a package that you have in your GOPATH. The program will build for you, but it won't for anyone else. Back to the WFM times!

I decided I wanted something, a tool, to check that all my (non-stdlib) dependencies were vendored.

At first I thought of using go list, which Dave Cheney appropriately called a swiss army knife, but while it can show the entire recursive dependency tree (format .Deps), there's no way to know from the templating engine if a dependency is in the standard library.

We could just pass each output back into go list to check for .Standard, but I thought this would be a good occasion to build a very simple static analysis tool. Go's simplicity and libraries make it a very easy task, as you will see.

First, loading the program

We use golang.org/x/tools/go/loader to Continue reading

Introducing the Docker Captains

We receive many requests from the Docker community for help identifying experts who can answer questions on different forums like Stack Overflow, share their knowledge in blog posts and online tutorials, and present at industry events like conferences and meetups. Today, … Continued

IDG Contributor Network: KubeCon donated to the Cloud Native Computing Foundation

The Cloud Native Computing Foundation (CNCF), a Linux Foundation project and organization dedicated to advancing the development of cloud-native applications and services, announced it accepted another "project" under its governance—KubeCon, the Kubernetes community conference. The donation of KubeCon to the CNCF is unique in that this isn't a software project, but a community conference, which will benefit from the "well-oiled (community conference) machine" that the Linux Foundation provides, according to Joseph Jacks of Kismatic, the original organizer of KubeCon.To read this article in full or to leave a comment, please click here

IDG Contributor Network: ISPs see big ingress by mobile operators for internet, study finds

A massive drop in the numbers of those using desktop computers is shown among the datasets released by the Commerce Department last month.That data, based on July 2015 figures, is just one facet of the extraordinary data dump.More juicy stuff includes that well over half of households (60 percent) who use the internet at home use "mobile internet service" while in the home.The government numbers come from a massive, 53,000-household Computer and Internet Use Supplement to the Current Population Survey (CPS) conducted by the U.S. Census Bureau last year. The large size of the sample means the numbers are representative of the entire population, the department says.To read this article in full or to leave a comment, please click here