Categorias
great stuff

Get code-level application performance management insights

APM+ Transforming The Way .NET & Java Developers Optimize Application Performance. Providing more than any traditional application performance management solution

Fonte: Get code-level application performance management insights

Categorias
great stuff

The career advice I wish I had at 25 | Shane Rodgers | LinkedIn

A career is a marathon, not a sprint

Most success comes from repetition, not new things

Deprioritise your career when your kids are young

If you have skills, commitment and passion, careers tend to take care of themselves.

You can also miss the chance to learn. Children teach you a lot more than you teach them. They give you a second chance to see the world for the first time through their eyes.

Never work for horrible bastards

Life is way too short to tolerate really bad bosses. If you find yourself working for one, unless you are desperate or starving, start looking for a new job. Immediately. Then sack the bad boss. By leaving.

In the workforce, always act like you are 35

Recognise that staff are people with finite emotional capacity

Never sacrifice personal ethics for a work reason

Crucial to workplace happiness is value alignment. If you work somewhere that compromises your personal ethics and values, get out of there as quickly as you can. Good people will be unnerved by things that don’t feel right. If it doesn’t feel right, it probably isn’t. Bad things only manifest when good people don’t take a stand.

 

 

Fonte: The career advice I wish I had at 25 | Shane Rodgers | LinkedIn

Categorias
great stuff

16 ferramentas gratuitas e não óbvias para turbinar a gestão de TI | Renê Abrileri Chiari | LinkedIn

16 ferramentas gratuitas e não óbvias para turbinar a gestão de TI Nov 19, 2015656 views43 Likes10 CommentsShare on LinkedInShare on FacebookShare on Twitter A escolha de uma ferramentas para gestão de serviços de TI é sempre baseada em referências. Seja no quadrante mágico do Gartner, nas pesquisas no Google ou na indicação de outros profissionais. E ai chegamos sempre no mesmo grupo de ferramentas que possuem a ‘filosofia’ ITSM.  Nenhuma delas é completa. E você só vai ouvir esse discurso de um represen

Fonte: 16 ferramentas gratuitas e não óbvias para turbinar a gestão de TI | Renê Abrileri Chiari | LinkedIn

Categorias
great stuff

Introduction to Microservices | NGINX

Check this out: Introduction to Microservices | NGINX www.nginx.com/blog/introduction-to-microservices/ Sent from my iPad

Categorias
great stuff

Virtustream Storage Cloud

Check this out: Virtustream Storage Cloud www.virtustream.com/cloud-iaas/virtustream-storage-cloud Sent from my iPad

Categorias
great stuff

Facebook Did It, Slack Did It, Telegram Did It Too: Chatbots for the Enterprise – DZone Integration

Check this out: Facebook Did It, Slack Did It, Telegram Did It Too: Chatbots for the Enterprise – DZone Integration dzone.com/articles/facebook-did-it-slack-did-it-telegram-did-it-too-h?utm_content=bufferee2a5&utm_medium=social&utm_source=linkedin.com&utm_campaign=buffer Sent from my iPad

Categorias
great stuff

O que escutei de um head do Google e hoje tenho que viver na prática » NeoAssist Blog

Pessoas de alto potencial só ficam em algum lugar na combinação de três elementos: Perspectiva (aonde posso chegar) x Aprendizado (estou me desenvolvendo?) x Relação (admiro meu chefe? meus colegas?). blog.neoassist.com/o-que-escutei-de-um-head-do-google/ Sent from my iPad

Categorias
great stuff

Google Thinks You’re Ready to Converse with Computers

www.technologyreview.com/s/601530/google-thinks-youre-ready-to-converse-with-computers/?utm_campaign=socialflow&utm_source=facebook&utm_medium=post Sent from my iPad

Categorias
great stuff

Forrester names Microsoft Azure a leader in Big Data Hadoop Cloud Solutions

Check this out: Forrester names Microsoft Azure a leader in Big Data Hadoop Cloud Solutions azure.microsoft.com/en-us/blog/forrester-names-microsoft-azure-a-leader-in-big-data-hadoop-cloud-solutions/ Sent from my iPad

Categorias
great stuff

Beyond Jenkins: 7 devops tools

Check this out: Beyond Jenkins: 7 devops tools www.techworld.com.au/article/600150/beyond-jenkins-7-devops-tools/ Sent from my iPad

Categorias
great stuff

What is software product management?

Check this out: What is software product management? t.co/u4IpwxzhPY Sent from my iPad

Categorias
great stuff

A Swarm of Sparks

 

 

At WorldSense we build predictors for the best links you could add in your content by creating large language models from the World Wide Web. In the open source world, no tool is better suited for that kind of mass (hyper)text analysis than Apache Spark, and I wanted to share how we set it up and run it on the cloud, so you can give it a try.

Web scale computing has never been so easy

Spark is a distributed system, and as any similar system, it has a somewhat demanding configuration. There is a plethora of ways of running Spark, but I will try to describe the one that I think offers the best trade-off nowadays: a standalone cluster running (mostly) on bare-bones Amazon EC2 spot instances configured using the newest Docker orchestrations tools.

Before we start, let us double check what we need:

  • The hardware, in the form of some machines in the cloud.
  • The software, Apache Spark, installed in each of them.
  • An abstraction layer to create a cluster from those machines.
  • Some coordination point through which all of this come to life.

We will move backwards through this list, as it makes it easier to present the different systems involved. We allocate our machines with Docker Machine, using thevery latest docker engine version, which contains all the functionality we need. Let us start with a very small machine:

We will use that machine for Consul, an atomic distributed key-value store,inspired by Google’s chubby. Consul will be responsible for keeping track of who is part of our cluster, among other things. Installing it is trivial, sincesomeone on the internet already packed it as a Docker container for us:

This takes a few minutes to start, but you should only really need to do that once per cluster¹. Every time you bring the cluster up you can point to that same Consul instance, and keeping a t2.nano running will cost you less than five bucks an year.

Now we can instantiate the cluster’s master machine. The core responsibility of this machine is coordinating the workers. It will be both the Spark master machine and the manager for our Docker Swarm, the system responsible for presenting the machines and containers as a cluster.

There are a few interesting things going on here. First, we used some shell-fu to find the IP address of our Consul machine inside the Amazon network. Then we fed that to the swarm-discovery and cluster-store options so Docker can keep track of the nodes in our cluster and the network layout of the containers running in each of them. With the configs in place, we proceeded to create a m4.large machine, and labeled it as our master. We now have a fully functional 1-machine cluster, and can run jobs on it. Just point to the Docker Swarm manager and treat it as a regular Docker daemon.

To install Spark on our cluster, we will use Docker Compose, another tool from the Docker family. With Compose we can describe how to install and configure a set of containers. Starting from scratch is easy, but we will take a shortcut by using an existing image, gettyimages/spark, and only focus on the configuration part. Here is the result, which you should save in a docker-compose.yml file in the local directory.

There are a lot of knobs in Spark, and they can all be controlled through that file. You can even customize the spark distribution itself using aDockerfile and custom base images, as we do at WorldSense to get Scala 2.11 and a lot of heavy libraries². In this example, we are doing the bare minimal, which is just opening the operational ports to the world, plus the spark internal ports to the rest of the cluster (the expose directive).

Also note the parts of the config referring to the overlay network. The default network is where all services defined in the config file will run, which means they can communicate with each other using the container name as the target hostname. The swarm scheduler will decide for us on which machine each container goes, respecting the constraints we have put in place. In our config file, we have one that pins the master service in the master machine (which is not very powerful) and another which keeps the workers outside that machine. Let us try bringing up the master:

So far we have bootstrapped out architecture with Consul, defined our cluster with Docker Swarm and delineated our spark installation with Docker Compose. The last remaining step is to add the bulk of the machines which will do the heavy work.

The worker machines should be more powerful, and you don’t have to care too much about the stability of the individual instances. These properties make workers a perfect candidate for Amazon EC2 spot instances. They often cost less than one forth of the price of a reserved machine, a bargain you can’t get elsewhere. Let us bring a few of them up, using docker-machine³ and the very helpful gnu parallel⁴ script.

You now have over 300 cores available in your cluster, for less than a dollar an hour. Last month in WorldSense we used a similar cluster to process over 2 billion web pages from the common crawl repository over a few days. For now, let us bring up everything and compute the value of pi:

In a more realistic scenario one would use something like rsync to push locally developed jars in the master machine, and then use docker volume support to expose those to the driver. That is how we do it in WorldSense⁵.

I think this is a powerful setup, with the great advantage that it is also easy to debug and replicate locally. I can simply change a bit the flags⁶ in these scripts to get virtually the same environment in my laptop. This flexibility has been helpful countless times.

Many companies offer hosted solutions for running code in Spark, and I highly recommend giving them a try. In our case, we had both budget restrictions and flexibility requirements that forced us into a custom deployment. It hasn’t come without its costs, but we are sure having some fun.

Ah, talking about costs, do not forget to bring your cluster down!

 

 


 

 

Footnotes

  1. The need for serialized creation of the cluster-store should improve at some point.
  2. Spark runs jobs in its workers jvm, and sometimes it is really hard to avoid jar-hell when you have some library version in your code and the spark workers already have a different version. For some cases, the only solution is to modify the pom.xml that generates the workers jar itself, and we have done that to fix incompatibilities with logback, dropwizard, and jackson, among others. If you find yourself in the same position, don’t be afraid to try that. It works.
  3. Machine allocation with docker-machine is very simple, but not super reliable. I often have some slaves that do not install correctly, and I simply kill them in a shell loop checking for the success of docker-machine env.
  4. GNU Parallel requires a citation, and I have to say that I do it happily. Before the advent of docker swarm, most of the setup we used was powered by GNU Parallel alone :-).
    O. Tange (2011): GNU Parallel — The Command-Line Power Tool,
    ;login: The USENIX Magazine, February 2011:42–47.
  5. By splitting our jars in rarely-changed dependencies and our own code, most of the time running fresh code in the cluster is just a matter of uploading a couple of megabytes.
  6. In my laptop, I need the following changes: DRIVER_OPTIONS= — driver virtualbox, NET_ETH=eth1 and KEYSTORE_IP=$(docker-machine ip keystore).

 

Categorias
great stuff

https www gartner com doc reprints id=1-36UFTCZ&ct=160517&st=sb

https://www.gartner.com/doc/reprints?id=1-36UFTCZ&ct=160517&st=sb

Categorias
great stuff

Product teams for hardware products

Check this out: Product teams for hardware products buff.ly/27j9nNM Sent from my iPad

Categorias
great stuff

Live From The Field

infocus.emc.com/william_schmarzo/the-thinking-part-of-thinking-like-a-data-scientist/?cmp=soc-cor-glbl-us-sprinklr-LINKEDIN_COMPANY-Big%20Data-EMC-463427831 Sent from my iPhone

Categorias
great stuff

7 hábitos de pessoas altamente eficazes

startse.infomoney.com.br/portal/2016/05/06/19111/7-habitos-de-pessoas-altamente-eficazes/ Sent from my iPad

Categorias
great stuff

(4) Isabelle Daigle’s answer to How does Elon Musk run his notoriously efficient meetings? – Quora

Fonte: (4) Isabelle Daigle’s answer to How does Elon Musk run his notoriously efficient meetings? – Quora

Categorias
great stuff

How I reduced 48% of my cloud cost by using Google Cloud preemptible instances

www.agileandart.com/2016/05/04/how-i-reduced-my-cloud-cost-using-google-cloud/ Sent from my iPhone

Categorias
great stuff

Google Cloud Platform: The smart person’s guide – TechRepublic

This comprehensive guide covers the history of Google Cloud Platform, the products and services it offers, and where it fits in the overall cloud market.

Fonte: Google Cloud Platform: The smart person’s guide – TechRepublic

Categorias
great stuff

2015science-salary-survey

www.oreilly.com/data/free/files/2015-data-science-salary-survey.pdf Sent from my iPhone

Categorias
great stuff

Vaga para Cientista de Dados na Appus!

www.linkedin.com/pulse/vaga-para-cientista-de-dados-na-appus-deli-matsuo?trk=v-feed Sent from my iPhone

Categorias
great stuff

How to build cloud-specific automations in a DevOps pipeline

techbeacon.com/how-build-devops-pipeline-multi-cloud-app-deployment#.Vx5eLyR14Jg.linkedin Sent from my iPad

Categorias
great stuff

Openstack April-2016-User-Survey-Report

www.openstack.org/assets/survey/April-2016-User-Survey-Report.pdf Sent from my iPhone

Categorias
great stuff

Computer Science Unplugged

csunplugged.org/ Sent from my iPad

Categorias
great stuff

Intel Migrates 17,000 VMware VM’s to OpenStack with Astonishing Results

https://www.linkedin.com/pulse/intel-migrates-17000-vmware-vms-openstack-astonishing-ken-proulx
The highlights of the Intel report include:
$21 million in cost savings (to date) 

Virtual server provisioning was reduced from 90 days to 30 minutes (yes, you did read that correctly)

90% reduction in provisioning service tickets

90% reduction in developer wait time for infrastructure

Delivery of self-service automation of server, storage and network provisioning

Enablement of Agile Methodologies, DevOps, and Continuous Integration / Continuous Deployment (CI/CD) and dramatically reduction in time-to-market for applications
They are on the path to achieving these benefits.
 IT resource reduction – by removing 2,750 VM’s through shifting standalone databases to their Database as a Service offering, and by reducing their VM footprint through Phase II migration, consolidation and leases.

Manual intervention – IN the 2014 calendar year, hosting fielded 8,400 manual service requests accounting for approximately 190,000 hours spent awaiting fulfillment. Through rollout of their OpenStack control plane architecture in 2015 and the Phase II importation of legacy instance metadata, Intel IT foresees achieving its goal of 80% of routine service requests being fulfilled instantly and through automation. By the end of 2016, with Phase III, Intel IT intends to hit a 90% goal.

Accelerated time to market – OpenStack, by virtue of being an open source project, yields direct control over the capabilities that business demands and is forward leaning in terms of application / service development, delivery, and operations. Factors which weigh heavily in favor of OpenStack included it being geared toward Agile Methodologies, DevOps, and Continuous Integration / Continuous Deployment (CI/CD).

Automation – It is in this regard that open source community roots of OpenStack really pay dividends for Intel IT in terms of being an open automation platform defined by its API’s. The Intel IT hosting team is able to leverage the same toolchain used by the OpenStack community for developing, buildings, validating, and deploying its data center operating system. This translates directly into enhancing the velocity with which Intel IT are able to deliver as well as the overall quality and efficiency with which they run the environment at scale.

Optimized Hybrid Cloud – 2016 goal is for Intel IT Hosting to automate public and private cloud utilization so that applications move to the optimal cloud based on business needs and workload requirements. Through OpenStack as well as through its Cloud Foundry based Paas offering, Intel IT is increasing productivity of its users, enabling it to extend the value of private cloud to additional groups and usages, thereby supporting its technology roadmap for utilizing hybrid (private-public) clouds to further increase scalability and cost efficiency.

Datacenter Best Practices – through experience gained from this transformation, Intel IT Hosting best practices with software defined infrastructure are shared with Intel Corporations’ customers and the OpenStack community.

Capability vs. Budget – with all of the efficiency benefits, time to market advantages, computer utilization increases, and automated operations, Intel expects to see tremendous capability improvements at lower costs.

Categorias
great stuff

17 Predictions About The Future Of Big Data Everyone Should Read | Bernard Marr | LinkedIn

Almost everyone can agree that big data has taken the business world by storm, but what’s next?  Will data continue to grow?  What technologies will develop around it? Or will big data become a relic as quickly as the next trend — cognitive technology? fast data? — appears on the horizon.  Let’s look at some of the predictions from the foremost experts in the field, and how likely they are to come to pass.Data volumes will continue to grow. There’s absolutely no question that we will continue generating

  1. Data volumes will continue to grow. There’s absolutely no question that we will continue generating larger and larger volumes of data, especially considering that the number of handheld devices and Internet-connected devices is expected to grow exponentially.
  2. Ways to analyse data will improve. While SQL is still the standard, Spark is emerging as a complementary tool for analysis and will continue to grow, according to Ovum.
  3. More tools for analysis (without the analyst) will emerge. Microsoftand Salesforce both recently announced features to let non-coders create apps to view business data.
  4. Prescriptive analytics will be built in to business analytics software. IDC predicts that half of all business analytics software will include the intelligence where it’s needed by 2020.
  5. In addition, real-time streaming insights into data will be the hallmarks of data winners going forward, according to Forrester. Users will want to be able to use data to make decisions in real time with programs like Kafka and Spark.
  6. Machine learning is a top strategic trend for 2016, according toGartner. And Ovum predicts that machine learning will be a necessary element for data preparation and predictive analysis in businesses moving forward.
  7. Big data will face huge challenges around privacy, especially with the new privacy regulation by the European Union. Companies will be forced to address the ‘elephant in the room’ around their privacy controls and procedures. Gartner predicts that by 2018, 50% of business ethics violations will be related to data.
  8. More companies will appoint a chief data officer. Forrester believes the CDO will see a rise in prominence — in the short term. But certain types of businesses and even generational differences will see less need for them in the future.
  9. “Autonomous agents and things” will continue to be a huge trend, according to Gartner, including robots, autonomous vehicles, virtual personal assistants, and smart advisers.
  10. Big data staffing shortages will expand from analysts and scientists to include architects and experts in data management according to IDC.
  11. But the big data talent crunch may ease as companies employ new tactics. The International Institute for Analytics predicts that companies will use recruiting and internal training to get their personnel problems solved.
  12. The data-as-a-service business model is on the horizon. Forrestersuggests that after IBM’s acquisition of The Weather Channel, more businesses will attempt to monetize their data.
  13. Algorithm markets will also emerge. Forrester surmises that businesses will quickly learn that they can purchase algorithms rather than program them and add their own data. Existing services like Algorithmia, Data Xu, and Kaggle can be expected to grow and multiply.
  14. Cognitive technology will be the new buzzword. For many businesses, the link between cognitive computing and analytics will become synonymous in much the same way that businesses now see similarities between analytics and big data.
  15. “All companies are data businesses now,” according to Forrester. More companies will attempt to drive value and revenue from their data.
  16. Businesses using data will see $430 billion in productivity benefitsover their competition not using data by 2020, according to IIA.
  17. “Fast data” and “actionable data” will replace big data, according tosome experts. The argument is that big isn’t necessarily better when it comes to data, and that businesses don’t use a fraction of the data they have access too. Instead, the idea suggests companies should focus on asking the right questions and making use of the data they have — big or otherwise.

Only time will tell which of these predictions will come to pass and which will merely pass into obscurity. But the important takeaway, I believe, is that big data is only going to get bigger, and those companies that ignore it will be left further and further behind.

As always, let me know your thoughts on the topic, please share them in the comments below.

Thank you for reading my post. Here at LinkedIn and at Forbes I regularly write about management, technology and Big Data. If you would like to read my future posts then please click ‘Follow‘ and feel free to also connect via Twitter, Facebook, Slideshare, and The Advanced Performance Institute.

You might also be interested in my brand new books:

 

 

 

Fonte: 17 Predictions About The Future Of Big Data Everyone Should Read | Bernard Marr | LinkedIn

Categorias
great stuff

The “one” picture that sums the future of software

809f121e-6575-420a-ac83-b500f6262be4-original

 

Fonte: 809f121e-6575-420a-ac83-b500f6262be4-original.jpeg (1471×1026)

Categorias
great stuff

A Visual Introduction to Machine Learning

www.r2d3.us/visual-intro-to-machine-learning-part-1/ Sent from my iPad

Categorias
great stuff

Docker Misconceptions

Docker has hit the systems scene with great fanfare. It’s a very exciting advancement for systems, but there are some key misunderstandings around it.

https://valdhaus.co/writings/docker-misconceptions/

Categorias
great stuff

A Netflix está disponível em 190 países e…

A Netflix está disponível em 190 países, e manter o serviço funcionando sem problemas e de forma eficiente com tantos clientes é uma tarefa difícil.

Categorias
great stuff

Google’s aggressive new bid to move ahead in the cloud

Google will trot out cloud computing chief Diane Greene and a raft of new features at its global user conference starting Wednesday, in an effort to catch up to Amazon and Microsoft.

Fonte: Google’s aggressive new bid to move ahead in the cloud

Categorias
great stuff

DreamHost replaces VMware SDN with open source for big savings

OpenStack code developed by spin-out company nets 70% capex, 40% opex cuts

Fonte: DreamHost replaces VMware SDN with open source for big savings

Categorias
great stuff

A história épico do Êxodo do Dropbox Do Império Amazon Cloud | WIRED

Half-a-billion people stored files on Dropbox. Well, sort of. Really, the files were in Amazon’s cloud. Until Dropbox built its own. And threw the switch.

Fonte: A história épico do Êxodo do Dropbox Do Império Amazon Cloud | WIRED

Categorias
great stuff

Petabytes on a budget: How to build cheap cloud storage

Fonte: Petabytes on a budget: How to build cheap cloud storage

Categorias
great stuff

Netflix: Cassandra @ Netflix — Building a House of Cards on a Solid Foundation – YouTube

Categorias
great stuff

What is the optimal algorithm for the game 2048?

Fonte: What is the optimal algorithm for the game 2048?

Categorias
great stuff

Big Data as a Service: the Next Big Thing? – OpenMind

Through Big Data as a Service (BDaaS), small to medium businesses (SMBs) can have the benefit of Big Data without the exorbitant expense of a full-time staff member.

Fonte: Big Data as a Service: the Next Big Thing? – OpenMind

Categorias
great stuff

Citrix Netscaler: LAB com VXLAN (balanceando em 3 DCs, mesma rede privada!) – Netadm : Netadm

www.netadm.com.br/citrix-netscaler-lab-com-vxlan-balanceando-em-3-dcs-mesma-rede-privada/ Sent from my iPhone

Categorias
great stuff

Tsuna’s blog: How long does it take to make a context switch?

How long does it take to make a context switch?

Fonte: Tsuna’s blog: How long does it take to make a context switch?

Categorias
great stuff

Advantages of Cloud Computing: 5 Benefits

Check this out:
Advantages of Cloud Computing: 5 Benefits

http://buff.ly/1JeP5a4

Categorias
great stuff

rsync.net: ZFS Replication to the cloud is finally here—and it’s fast

rsync.net: ZFS Replication to the cloud is finally here—and it’s fast

From Cloud Computing, a Flipboard magazine by Francis Reyes

As friendly of an online advertisement as you’ll find.In mid-August, the first commercially available ZFS cloud replication target…

Read it on Flipboard

Read it on arstechnica.com

Sent from my iPad

Categorias
great stuff

Public cloud vs. on-premises, which is more secure?

Public cloud vs. on-premises, which is more secure?

From Cloud Computing, a Flipboard topic

Which is more secure: the public cloud or on-premises infrastructure? “Is it more secure to run in the cloud or more secure to run in my data…

Read it on Flipboard

Read it on networkworld.com

Sent from my iPad

Categorias
great stuff

8 surprising facts about real Docker adoption – Datadog

With thousands of companies using Datadog to track their infrastructure, we can see software trends emerging in real time. Today we’re excited to share what we can see about true Docker adoption—no hype, just the facts.

Fonte: 8 surprising facts about real Docker adoption – Datadog

Categorias
great stuff

Classe C x CLA | QuatroRodas

Conflito de classes: tecnicamente empatados em preço, C180 e CLA200 são as portas de entrada na Mercedes-Benz

Fonte: Classe C x CLA | QuatroRodas

Categorias
great stuff

Introduction to Microservices | NGINX

Microservices are currently getting a lot of attention. This blog post is the first in a 7-part series about designing, building, & deploying microservices

Fonte: Introduction to Microservices | NGINX

Categorias
great stuff

The Employer Playbook for Hiring Technology Talent | MIT Technology Review

2015-09-18-Tech-Hire_EmployerPlaybookFonte: The Employer Playbook for Hiring Technology Talent | MIT Technology Review

Categorias
great stuff

Article: Measuring cloud performance just got easier and better

Check out this story on Flipboard!

Measuring cloud performance just got easier and better

From Cloud Computing, a Flipboard topic

In February 2015, Google Cloud Platform and 30+ industry leaders and researchers launched PerfKit Benchmarker (PKB). PKB is an open source cloud…

Read it on Flipboard

Read it on googlecloudplatform.blogspot.com

Sent from my iPad

Categorias
great stuff

Article: Linux Performance Analysis in 60,000 Milliseconds

Check out this story on Flipboard!

Linux Performance Analysis in 60,000 Milliseconds

From Hacker News on Flipboard

You login to a Linux server with a performance issue: what do you check in the first minute? At Netflix we have a massive EC2 Linux cloud, and…

Read it on Flipboard

Read it on techblog.netflix.com

Sent from my iPad

Categorias
great stuff

Article: Google Cloud Vision API changes the way applications understand images

Check out this story on Flipboard!

Google Cloud Vision API changes the way applications understand images

From Hacker News on Flipboard

Have you ever wondered how Google Photos helps you find all your favorite dog photos? With today’s release of Google Cloud Vision API, developers can…

Read it on Flipboard

Read it on googlecloudplatform.blogspot.com

Sent from my iPad

Categorias
great stuff

Article: Raspberry Pi microSD card performance comparison – 2015

Check out this story on Flipboard!

Raspberry Pi microSD card performance comparison – 2015

From Hacker News on Flipboard

In my experience, one of the highest-impact upgrades you can perform to increase Raspberry Pi performance is to buy the fastest possible microSD…

Read it on Flipboard

Read it on midwesternmac.com

Sent from my iPad