Home Blog Page 524

What Is IT Culture? Today’s Leaders Need to Know

“Culture” is a pretty ambiguous word. Sure, reams of social science research explore exactly what exactly “culture” is, but to the average Joe and Josephine the word really means something different than it does to academics. In most scenarios, “culture” seems to map more closely to something like “the set of social norms and expectations in a group of people.” By extension, then, an “IT culture” is simply “the set of social norms and expectations pertinent to a group of people working in an IT organization.”

I suspect most people see themselves as somewhat passive contributors to this thing called “culture.” Sure, we know we can all contribute to cultural change, but I don’t think most people actually feel particularly empowered to make this kind of meaningful change. On top of that, we can also observe significant changes in cultural norms that depend on variables like time and geography. 

Read more at OpenSource.com

Hello Whale: Getting Started with Docker & Flask

When it comes to learning, I tend to retain info best by doing it myself (and failing many times in the process), and then writing a blog about it. So, surprise: I decided to create a blog explaining how you can get a Flask app up and running with Docker! Doing this on my own helped connect the dots when it came to Docker, so I hope it helps you as well. 

You can follow along with my repo here:

https://github.com/ChloeCodesThings/chloe_flask_docker_demo

First, I created a simple Flask application. I started by making a parent directory and naming it chloes_flask_demo.

Read more at Codefresh.io

What Is GraphQL and Why Should You Care? The Future of APIs

“We’re going GraphQL, we’re replacing everything with GraphQL”  — Sid Sijbrandij, GitLab founder and CEO

GraphQL is an open source technology created by Facebook that is getting a fair bit of attention of late. It is set to make a major impact on how APIs are designed.

As is so often the case with these things, it’s not terribly well named. It sounds like a general purpose query language for graph traversal, am I right? Something like Cypher.

It isn’t. The name is a little deceptive. GraphQL is about graphs if you see everything as graphs, but reading the the excellent, crisp docs GraphQL is primarily about designing your APIs more effectively, and being more specific about access to your data sources.

Read more at RedMonk

Productivity or Efficiency: What Really Matters?

Efficiency is a quality many companies and employees are proud to tout. From making 2,000 widgets a day to processing several dozen emails within an hour, being efficient is badge of honor in the working world.

The benefit of efficiency is that it can be relatively easy to measure. As management expert Peter Drucker once said, “If you can’t measure it, you can’t manage it.” So finding something you can measure – whether it’s email messages  or widgets – makes it easier to improve your efficiency by making more of the output while using less money, less time, or both.

The problem is focusing on efficiency to the omission of everything else can mean that you’re focusing on the wrong things. Is it useful to generate more email messages if people aren’t clicking on them? Is it a good use of your time to write more and bigger reports if people don’t read them?

Read more at Laserfiche

Open Source Summit Brings Diverse Voices to Keynote Lineup

As Jim Zemlin announced at last year’s LinuxCon in Toronto, the event is now called Open Source Summit. The event now combines LinuxCon, ContainerCon, and CloudOpen conferences along with two new conferences: Open Community Conference and Diversity Empowerment Summit. And, this year, the OSSummit will take place between September 11-14 in Los Angeles, CA.  

Traditionally, the event starts off with a keynote by Zemlin where he gives an overview of the state of Linux and open source, And, one highlight of the schedule is always a keynote discussion between Zemlin and Linus Torvalds, Creator of Linux and Git. 

This year, attendees will also get to hear Tanmay Bakshi, a 13-year-old Algorithm-ist and Cognitive Developer, Author and TEDx Speaker, as part of the keynote lineup, which also includes:

  • Bindi Belanger, Executive Program Director, Ticketmaster

  • Christine Corbett Moran, NSF Astronomy and Astrophysics Postdoctoral Fellow, CALTECH

  • Dan Lyons, FORTUNE columnist and Bestselling Author of “Disrupted: My Misadventure in the Startup Bubble”

  • Jono Bacon, Community Manager, Author, Podcaster

  • Nir Eyal, Behavioral Designer and Bestselling Author of “Hooked: How to Build Habit Forming Products”

  • Ross Mauri, General Manager, IBM z Systems & LinuxONE, IBM

  • Zeynep Tufekci, Professor, New York Times Writer, Author and Technosociologist

As one of the biggest open source events, the summit attracts more than 2,000 developers, operators, and community leadership professionals to collaborate, share information, and learn about the latest in open technologies, including Linux, containers, cloud computing, and more.

Top 5 reasons to attend Open Source Summit

Diversity: Open Source Summit strives to bring more diverse voices from the community and enterprise world. And, the new Diversity Empowerment Summit expands that goal by facilitating an increase in diversity and inclusion and providing a venue for discussion and collaboration. 

Cross-pollination: Open Source Summit brings together many different events, representing different projects, under the same umbrella. This allows for cross-pollination of ideas among different communities that are part of a much larger open source ecosystem.

Care for family: Open Source Summit is the only tech event where you can bring your entire family including kids. The reason is simple — the organizers offer childcare at the venue which allows parents to participate in the event without having to worry about childcare.  

Awesome activities: Angela Brown, Vice President of Events at The Linux Foundation, not only knows how to plan top-notch events, she also knows how to throw parties. The New Orleans LinuxCon, for example, hosted a Mardi Gras parade and a dinner with live jazz music. Chicago featured an event on the top floor of the Ritz hotel and a reception at the Museum of Science and Industry. Seattle included the Space Needle and Chihuly Garden and Glass Museum. The Toronto event tooks guests to Muzik where they  “gambled” and celebrated 25 years of Linux.

Great opportunity for networking: Open Source Summit is a great mix of attendees. You get to meet with leading developers, founders, community members, CEOs, CTOs, technologists, and users. As exciting as the sessions are, the real value of OSS is the hallway tracks where you connect and reconnect with friends and colleagues. You come back from OSS with more contacts, more friends, new perspectives, and good memories.

Register now at the discounted rate of $800 through June 24,. Academic and hobbyist rates are also available. Applications are also being accepted for diversity and needs-based scholarships.

Basic Commands for Performing Docker Container Operations

In this series, we’re sharing a preview of the new self-paced Containers for Developers and Quality Assurance (LFS254) training course from The Linux Foundation. In earlier articles, we looked at installing Docker and setting up your environment, and we introduced Docker Machine. Now we’ll take a look at some basic commands for performing Docker container and image operations. Watch the videos below for more details.

To do container operations, we’ll first connect to our “dockerhost” with Docker Machine. Once connected, we can start the container in the interactive mode and explore processes inside the container.

For example, the “docker container ls” command lists the running containers. With the “docker container inspect” command, we can inspect an individual container. Or, with the “docker container exec” command, we can fork a new process inside an already running container and do some operations. We can use the “docker container stop” command to stop a container and then remove a stopped container using the “docker container rm” command.

To do Docker image operations, again, we first make sure we are connected to our “dockerhost” with Docker Machine, so that all the Docker commands are executed on the “dockerhost” running on the DigitalOcean cloud.

The basic commands you need here are similar to above. With the “docker image ls” command, we can list the images available on our “dockerhost”. Using the “docker image pull” command, we can pull an image from our Docker Registry. And, we can remove an image from the “dockerhost” using the “docker image rm” command.

Want to learn more? Access all the free sample chapter videos now! 

This online course is presented almost entirely on video, and the material is prepared and presented by Neependra Khare (@neependra), Founder and Principal Consultant at CloudYuga, Docker Captain, and author of the Docker Cookbook.

ODPi Webinar on DataOps at Scale: Taking Apache Hadoop Enterprise-Wide

2016 was a pivotal year for Apache Hadoop, a year in which enterprises across a variety of industries moved the technology out of PoCs and the lab and into production. Look no further than AtScale’s latest Big Data Maturity survey, in which 73 percent of respondents report running Hadoop in production.

ODPi recently ran a series of its own Twitter polls and found that 41 percent of respondents do not use Hadoop in-production, while 41% of respondents said they do. This split may partly be due to the fact that the concept of “production” Hadoop can be misleading. For instance, pilot deployments and enterprise-wide deployments are both considered “production,” but they are vastly different in terms of DataOps, as Table 1 below illustrates.

YiNSxpTWDbZhddVcZmA13-qBFp8yp7gqIKpNPcU2

Table 1: DataOps Considerations from Lab to Enterprise-wide Production.

As businesses move Apache Hadoop and Big Data out of Proof of Concepts (POC)s and into enterprise-wide production, hybrid deployments are the norm and several important considerations must be addressed. 

Dive into this topic further on June 28th for a free webinar with John Mertic, Director of ODPi at the Linux Foundation, hosting Tamara Dull, Director of Emerging Technologies at SAS Institute.

The webinar will discuss ODPi’s recent 2017 Preview: The Year of Enterprise-wide Production Hadoop and explore DataOps at Scale and the considerations businesses need to make as they move Apache Hadoop and Big Data out of Proof of Concepts (POC)s and into enterprise-wide production, hybrid deployments.

Register for the webinar here.

As a sneak peek to the webinar, we sat down with Mertic to learn a little more about production Hadoop needs.

Why is it that the deployment and management techniques that work in limited production may not scale when you go enterprise wide?

IT policies kick in as you move from Mode 2 IT — which tends to focus on fast moving, experimental projects such as Hadoop deployments — to Mode 1 IT — which controls stable, enterprise wide deployments of software. Mode 1 IT has to consider both the enterprise security and access requirements, but also data regulations that impact how a tool is used. On top of that, cost and efficiency come into play, as Mode 1 IT is cost conscious.

What are some of the step-change DataOps requirements that come when you take Hadoop into enterprise-wide production? 

Integrating into Mode 1 IT’s existing toolset is the biggest requirement. Mode 1 IT doesn’t want to manage tools it’s not familiar with, nor those it doesn’t feel it can integrating into the existing management tools the enterprise is already using. The more Hadoop uniformly fits into the existing devops patterns – the more successful it will be.

Register for the webinar now.

The Evolution of the Standard COTS Server in Modern Data Centers

Standardization on x86 commercial off-the-shelf (COTS) servers within the data center has been a movement for some time because the architecture offers versatility, cost-savings, easier integrations, more attractive maintenance and management profiles, and, overall, a lower total cost of ownership than a proprietary hardware approach. But there are new requirements that are driving data center server choices these days, namely the need to support carrier virtualization, programmability, and the massive data sets that come with machine learning and advanced, real-time analytics.

Network function virtualization (NFV) and software-defined networking (SDN) in particular have started to take hold in the data center in real ways, and the underlying hardware layer has become abstracted from the intelligent software running above.

Read more at SDxCentral

How to Get Docker Shipyard Up and Running with a Single Command

If you’re looking for a user friendly Docker GUI, you can’t go wrong with Shipyard. Learn how one command can get this web-based tool ready to manage your containers. 

If you’re using Docker to create and deploy containers, then you probably know the management of those containers can get a bit unwieldy after a while; this is especially true for larger deployments with numerous images and containers. One way to avoid the stress of larger-scale Docker usage is by way of a web-based GUI.

The idea of installing a GUI to manage your Docker containers might concern you, but fear not—with one command, you can get Shipyard up and running and ready to manage your containers.

Read more at Tech Republic

Why Git Is Worth the Learning Curve

Over the last decade, distributed version control systems, like Git, have gained popularity and are regarded as the most important development tools by developers. Although the learning curve can pose a challenge, developers told us that Git enhances their ability to work together and ship faster, suggesting that managers have a real incentive to help their teams over the initial hill imposed by the transition to Git.

With the full history of the repository stored on each developer’s machine, using Git makes commits, merges and other commands much faster, even enabling developers to work offline. Upgrading your source code management solution to a distributed version control system is the first step toward building a flexible working environment that can support modern development teams, but moving away from legacy systems and tools can be a daunting prospect.

Read more at DZone