Form of Internet-based computing that provides shared computer processing resources and data to computers and other devices on demand
POPULARITY
Qumulo and Cisco Launch Bridge-to-Cloud Architecture to Help Enterprises Beat the Flash Crunch at Cisco Live 2026 By Doug Green “Capacity extends to the cloud instantly. Users and applications never know that the systems have been extended into the cloud.” At Cisco Live 2026, Doug Green spoke with Brandon Whitelaw of Qumulo about the company's new Bridge-to-Cloud architecture with Cisco, a solution designed to help enterprises respond to one of the most urgent infrastructure challenges of the AI era: fast-growing data workloads, constrained flash supply, longer hardware lead times and rising demand for high-performance storage. Qumulo describes itself as an accelerated data company. In the podcast, Whitelaw explains that Qumulo helps organizations store and manage mission-critical file and object data across data centers, edge environments and the major public clouds. The goal is to unify those datasets into a consistent, AI-enabled data fabric that can support both today's high-performance applications and tomorrow's AI pipelines. Qumulo's customers include autonomous driving companies, media and entertainment organizations, special effects shops, sports broadcasters, life sciences organizations, genomic research teams, hospitals, public sector agencies and government entities. The common thread is data: large, high-capacity, high-performance datasets that must be available, protected and ready for use. The Cisco announcement focuses on Cloud Native Qumulo Enterprise combined with Cisco Unified Computing System through Qumulo's Cloud Data Fabric. The solution is designed to let enterprises extend file workloads from on-premises Cisco UCS infrastructure into the cloud without forcing a disruptive migration, application refactoring or a rebuild of existing workflows. For enterprise IT teams, the problem is practical. AI infrastructure demand is reshaping the market for memory and NVMe systems, creating pressure on traditional capacity planning. Instead of waiting months for new hardware or overprovisioning all-flash systems, Qumulo and Cisco are offering a bridge: keep trusted on-premises infrastructure in place while extending selected workloads into the cloud as needed. Whitelaw says the architecture gives enterprises a way to free up on-premises infrastructure for the most critical applications, while using cloud capacity to handle growth, burst demand and AI-readiness. The result is a hybrid model that is not simply about cloud migration. It is about operational flexibility. The solution also positions enterprise data for AI and analytics. Qumulo says CNQ Enterprise includes Cloud Data Fabric and NeuralProtect and can run on Cisco UCS on-premises as well as across AWS, Azure, Google Cloud and Oracle Cloud Infrastructure. The architecture is intended to make enterprise datasets available for AI pipelines into services such as Microsoft AI Foundry, AWS Bedrock and Google Vertex AI. For Cisco partners, service providers and enterprise IT teams, the message from the podcast is clear: hybrid cloud is becoming a pressure-release valve for data infrastructure. The Bridge-to-Cloud model offers a way to gain capacity relief, preserve application continuity, support elastic scale and prepare data for AI without forcing customers into a disruptive replatforming project. Qumulo CNQ Enterprise is available now for deployment on Cisco UCS on-premises infrastructure and across AWS, Azure, Google Cloud and OCI. It is also available through Cisco for simplified enterprise procurement. Qumulo is exhibiting at booth 4018 at Cisco Live 2026 in Las Vegas. Learn more at: https://qumulo.com/product/cisco/
In Elixir Wizards S15E04, Charles Suggs and Emma Whamond are joined by Somtochi Onyekwere, a software engineer at Fly.io and contributor to the Corrosion distributed database project, to talk about distributed systems, infrastructure resilience, and the growing fragility of centralized cloud platforms. We discuss what recent outages across major providers reveal about modern infrastructure and why more teams are starting to rethink assumptions around reliability, failover, and system design. Somtochi explains how Fly.io approaches geographic distribution, eventual consistency, and replication across nodes, along with the trade-offs that come with building systems this way. The conversation explores CRDTs (Conflict-free Replicated Data Types), consensus, split-brain prevention, and what actually happens when distributed systems fail in production. We also talk about testing strategies, rollback planning, property-based testing tools, and how teams can reduce blast radius when things inevitably go wrong. Along the way, we discuss AI infrastructure, sandboxing AI agents, and how newer workloads may add pressure to already centralized systems. The episode closes with practical advice for developers who want to build more resilient applications without over-complicating their architecture. Topics Discussed in this Episode: Corrosion and distributed database replication Centralized cloud fragility and recent outage patterns Distributed systems versus traditional cloud architectures Multi-region deployment strategies for Phoenix applications CRDTs and conflict resolution in distributed systems Eventual consistency versus strict consistency tradeoffs Consensus, leader election, and split-brain prevention Testing failover and recovery scenarios Property-based testing and Antithesis Rollback planning for database schema migrations Reducing blast radius through system isolation Health checks and blue-green deployment strategies Fly Proxy request routing and replay behavior Cross-region synchronization and replication challenges Single points of failure inside “redundant” systems Backup restoration testing and disaster recovery planning Network partitions and failure handling in production Infrastructure monitoring and operational visibility AI infrastructure workloads and operational strain Sandboxing and securing AI agents Sprites and AI workflows at Fly.io Latency improvements from geographic distribution Distributed systems tradeoffs in real-world environments Transitive dependency failures across cloud providers Practical resilience strategies for modern engineering teams Links Mentioned: https://fly.io https://github.com/superfly/corrosion https://docs.gitops.weaveworks.org/ FluxCD https://fluxcd.io/ Fly.io Stateful Sandbox Environments https://sprites.dev/ Cloudflare Workers AI Inference Platform https://www.cloudflare.com/products/workers-ai/ “An AI Agent Just Destroyed Our Production Data. It Confessed in Writing” Twitter post from PocketOS founder: https://x.com/lifeof_jer/status/2048103471019434248 Oct 2025 AWS Outage https://www.theguardian.com/technology/2025/oct/24/amazon-reveals-cause-of-aws-outage Dec 2025 Cloudflare Outage https://www.theguardian.com/technology/2025/dec/05/another-cloudflare-outage-takes-down-websites-linkedin-zoom July 2025 Crowdstrike Outage https://www.ibm.com/think/news/recent-crowdstrike-outage-what-you-should-know March 2026 Stryker Cyber Attack https://www.stryker.com/us/en/about/news/2026/a-message-to-our-customers-03-2026.html https://aws.amazon.com/ https://cloud.google.com/ https://azure.microsoft.com/en-us https://fly.io/docs/elixir/ CRDTs!! https://smartlogic.io/podcast/elixir-wizards/s13-e03-local-first-liveview-svelte-pwa/ https://antithesis.com/docs/resources/property_based_testing/ https://hex.pm/packages/proper
In Season 15 episode 2, Elixir Wizards Sundi Myint and Charles Suggs chat with Micah Cooper to talk about distributed systems, data replication, and what it actually looks like to build these ideas in Elixir. Micah shares his journey from Ruby to Elixir and walks us through Visor, a library he's building based on the Viewstamps replication algorithm. Inspired by systems like TigerBeetle, Visor explores how you can replicate state across nodes using GenServers, giving you fault tolerance and recovery without relying entirely on traditional database patterns. We talk about the difference between distributed systems and data replication, where things tend to get misunderstood, and what changes when you start thinking about state this way. The conversation also touches on event sourcing, tradeoffs in system design, and how Elixir's distributed model makes some of these concepts more approachable than you might expect. Along the way, we talk about building for curiosity, experimenting with new ideas, and how projects like this push the ecosystem forward. Topics discussed in this episode: Building Visor and working with the Viewstamps replication model Replicating GenServer state across nodes Distributed systems vs. data replication Lessons from TigerBeetle and financial system design Event sourcing challenges and tradeoffs Rethinking database-first architectures Snapshotting, recovery, and fault tolerance The role of Elixir's distributed model Experimentation, learning, and building for curiosity Links mentioned: Micah's GitHub https://github.com/mrmicahcooper Micah's GitLab https://gitlab.com/mrmicahcooper The Visor repository: https://gitlab.com/mrmicahcooper/visor Visor Hex Package https://hex.pm/packages/visor Ruby on Rails https://rubyonrails.org/ Phoenix LiveView Framework https://www.phoenixframework.org/ Zig Programming Language https://ziglang.org/ TigerBeetle https://tigerbeetle.com/ TigerBeetle internal docs https://github.com/tigerbeetle/tigerbeetle/tree/main/docs/internals The BEAM https://www.erlang-solutions.com/blog/the-beam-erlangs-virtual-machine/ GenServer https://hexdocs.pm/elixir/GenServer.html Apache Kafka https://github.com/apache/kafka RabbitMQ https://www.rabbitmq.com/ Redpanda https://www.redpanda.com/ SQL https://www.ibm.com/think/topics/structured-query-language Kubernetes https://kubernetes.io/ YAML https://yaml.org/ Nomad Workload Orchestrator https://developer.hashicorp.com/nomad Flutter https://flutter.dev/ Commanded https://hexdocs.pm/commanded/Commanded.html Go Programming Language https://go.dev/ Clojure Programming Language https://clojure.org/ Nebulex https://hexdocs.pm/nebulex/Nebulex.html Mnesia https://www.erlang.org/doc/apps/mnesia/mnesia.html Cachex https://hexdocs.pm/cachex/Cachex.html libgraph https://hexdocs.pm/libgraph/Graph.html Horde https://hexdocs.pm/horde/Horde.Registry.html NocFree split keyboard https://www.nocfree.com/ Micah's LinkedIn https://www.linkedin.com/in/micah-cooper-4a737560/
What if building a distributed SQL engine meant rethinking everything about how query execution works at scale? In this episode, Benjamin sits down with Nikita, Senior Software Engineer at Cloudflare, to explore how R2 SQL leverages object storage and distributed computing to power analytics across 300 global locations, why backward compatibility becomes critical when you can't control infrastructure rollouts, and the key strategies for handling joins and adaptive query execution in a stateless, point-to-point network architecture. Whether you're designing distributed systems or curious about how Cloudflare processes petabytes of data, this conversation reveals the real-world engineering challenges and innovations shaping the future of cloud data platforms.
AI is rewriting the rules of code review and CodeRabbit is leading the charge. In this featured episode of Screaming in the Cloud, Harjot Gill shares with Corey Quinn how his team built the most-installed AI app on GitHub and GitLab, nailed positive unit economics, and turned code review into a powerful guardrail for the AI era.Show Highlights(0:00) Entrepreneurial Journey and Code Rabbit's Origin (3:06) The Broken Nature of Code Reviews (5:47) Developer Feedback and the Future of Code Review (9:50) AI-Generated Code and the Code Review Burden (11:46) Traditional Tools vs. AI in Code Review (13:41) Keeping Up with State-of-the-Art Models (16:16) Cloud Architecture and Google Cloud Run(18:21) Context Engineering for Large Codebases (20:52) Taming LLMs and Balancing Feedback (22:30) Business Model and Open Source Strategy About Harjot Gill Harjot is the CEO of CodeRabbit, a leading AI-first developer tools company. LinksHarjot on LinkedIn: https://www.linkedin.com/in/harjotsgill/SponsorCodeRabbit: https://coderabbit.link/corey
In this episode of the Data Science Salon Podcast, we sit down with Kalpan Dharamshi, VP at JP Morgan Chase, and a leader in Machine Learning and Cloud Architecture. Kalpan shares his journey from cloud architecture to AI-driven compliance solutions and how his work is transforming decision-making processes in the FinTech industry. Kalpan's focus on Agentic AI—autonomous systems that can handle compliance, risk management, and real-time decision-making—has reshaped the way financial institutions manage compliance. He discusses how large language models (LLMs) and AI agents can automate and scale compliance procedures, making them proactive, accurate, and cost-effective. Key Highlights: -Agentic AI in FinTech: How Agentic AI is automating continuous monitoring and compliance in the financial services industry. -Machine Learning for Compliance: How AI can interpret unstructured data and ensure real-time policy adherence in highly dynamic industries. -The Future of AI in Decision-Making: Kalpan's vision for the future of AI-driven decision-making and automated risk management. -Make sure to catch Kalpan at the https://appliedaisummit.org/ for free
The physical world is becoming digital—and it requires fundamentally different technical architecture than traditional IT systems. Bernd Groß leads technical leaders through the evolution from enterprise software to industrial IoT, where real-time data from 30,000 wind turbines and millisecond-level decision-making define system requirements. As co-founder and CEO of Cumulocity, Bernd has navigated one of tech's most complex domains: connecting industrial hardware through standardized platforms. His journey from Nokia's early cloud computing initiatives to building Germany's leading IoT platform offers unique insights on technical leadership in physical-digital convergence. Technical leaders will gain valuable perspectives on: •
In this episode of the PowerShell Podcast, we chat with Shannon Eldridge-Kuehn, a seasoned technologist whose career spans from spinning vinyl as a DJ to leading cloud and FinOps consulting. Shannon shares her unique journey into tech, driven by curiosity and a desire to record her DJ sets, which ultimately led to a successful career in cloud infrastructure, Azure, platform engineering, and FinOps. We explore Shannon's transition into IT without a traditional tech background, her time at Microsoft, and her current work in FinOps. She discusses the challenges of cloud adoption, navigating imposter syndrome, and why strong communication skills are just as critical as technical ones. This episode is a masterclass in resilience, career evolution, and staying curious. Topics covered: Breaking into tech via DJing Early career lessons from help desk roles and hands-on troubleshooting Cloud migration challenges and avoiding costly lift-and-shift mistakes FinOps fundamentals and practical cost governance tips Finding your “superpower” and overcoming imposter syndrome The value of public speaking and active listening in career growth Hosting customer conversations with empathy and technical confidence Real-life DJ gear disasters and live demo blunders Notable quote: “Imposter syndrome is real—but the thing you're worried about is what everyone else is worried about too.” Guest Bio & Links: Shannon Eldridge-Kuehn is a Principal Solutions Architect at AHEAD with a unique blend of technical depth and strong communication roots. A University of Nebraska–Lincoln graduate in Communication Studies with a minor in English, she began her journey into tech through DJing and audio troubleshooting, which sparked a passion for problem-solving. Over time, she progressed from help desk roles into advanced infrastructure and cloud engineering, with experience spanning Windows systems, VMware, Exchange, Office 365, and Azure. Her career includes roles at Microsoft and 10th Magnitude, where her love for cloud truly flourished. Shannon leverages her background in public speaking and writing to bridge the gap between business needs and technical solutions. Check out PDQ: https://pdq.com/podcast Connect with Andrew: https://andrewpla.tech/links Shannon's Blog: https://www.shankuehn.io/ https://x.com/shankuehn https://www.linkedin.com/in/shannonkuehn/ https://github.com/sbkuehn The PowerShell Podcast on YouTube: https://youtu.be/gF4LW8Mz2eU
Unlock the power of generative AI for cloud architecture! In this vBrownBag episode, Alex Kearns demonstrates how to build a well-architected review crew using agentic AI, AWS Bedrock, and open-source tools. Learn to automate AWS Well-Architected Framework reviews, leverage knowledge bases, and see a live demo analyzing CloudFormation templates. Whether you're a cloud consultant or developer, discover practical ways to scale best practices and save time with GenAI. #cloud #AWS #AI #GenerativeAI #WellArchitected #vBrownBag #CloudComputing #DevOps Chapters: 00:00 – Introduction & Guest Welcom 04:00 – Alex's Cloud & AI Journey 17:00 – Building the GenAI Review Crew 34:00 – Live Demo: Automated Well-Architected Review 53:00 – Q&A & Future of AI in Cloud Architecture Resources:
Host Charlotte Roberts engages with Adarsh Mahesan Shyna, Lead Project Leader for Data Engineering & Architecture Strategy at Nordea; Dhany Saputra, Head of Data Science, AI, and Cloud Architecture at Micropower Group; and Charanya Thangaraj, Service Area Manager for Data Access Services at Volvo Buses. The discussion explores how data is driving innovation across finance, manufacturing, and mobility. Learn how these leaders implement scalable architectures and use advanced analytics to fuel smarter, faster business decisions in today's digital economy.
Mark Tinderholt joins us to talk through practical cloud decision-making, why he prefers Terraform in multi-cloud setups, and the realities of working with Azure policies, Bicep, ARM templates, and more.Mark is an experienced technologist whose journey began in application development, spanning web and client-server applications to sophisticated distributed systems and microservices. Along this path, he developed deep expertise in automation and DevOps, leading diverse project teams and guiding organizations through strategic, operational, and pre-sales leadership roles. Currently, Mark holds a hands-on engineering position at Microsoft, contributing directly to the Microsoft Azure platform.Beyond his professional work, Mark shares his passion for cloud computing through his YouTube channel, "The Azure Terraformer." He is also the author of "Mastering Terraform," a practical, multi-cloud guide to Cloud Architecture and Infrastructure-as-Code covering AWS, Azure, and Google Cloud, and has created the Udemy course "Terraform 101.”
Can AI be used to control cloud expenses? Host Mitch Ashley is joined by DoiT's Eduardo Mota and Weaviate's Jobi George on this episode of DevOps Dialogues, for a conversation on how companies can manage their cloud expenditures in the context of GenAI tool utilization and strategize reinvestment for growth. Their discussion covers: The intricate cost relationship between cloud architecture and GenAI, highlighting the importance of expert partnerships in developing effective AI solutions Utilizing data as a competitive advantage, from leveraging existing datasets to enhancing them through transformations or graph database conversions A comparative analysis of RAG (Retrievable Augmented Generation) versus Agents in reducing hallucinations and costs while optimizing efficiency Evaluating ROI for AI-driven projects, considering aspects like end-user payment, competitive differentiation, and operational efficiencies The role of managed services in the initial stages of cloud transition, and advanced strategies such as fine-tuning, distillation, or quantizing a model for growth
In episode 68, Ronald and Jan chat with Nicolas Braga from Essent about how a major service outage, caused by a surge in traffic during the Ukraine war and rising energy prices, led to a full rethinking of Essent's cloud architecture. Nicolas explains how they shifted their strategy to increase team ownership and why they chose AWS Lambda over Kubernetes. He highlights Lambda's advantages, such as auto-scaling, cost-efficiency, and simplified management, which allows Essent to innovate faster without worrying about infrastructure complexity. The episode explores how these changes align with Essent's goal to become a leading energy tech company.Stuur ons een bericht.
The transition to cloud computing by federal agencies has highlighted the importance of security, especially as sensitive federal assets are now in hybrid environments. This week on Feds At the Edge, leaders from federal and commercial sectors focus on improving security within the complex cloud environment. When code is written with the cloud in mind, applications can be moved easily, updates can be mastered, and systems architects can leverage many aspects of the cloud that are missed with an old “lift and shift” approach. Dave Hinchman, Director, Information Technology and Cybersecurity for US GAO, coined an aphorism, “Documentation is easy, implementation is hard.” Tune in on your favorite podcasting platform as participants discuss how to leverage cloud-native code and avoid the mishaps that plagued others.
When you hear a name like “Jamf,” you aren't likely to think of cloud architecture, but for Levi McCormick, it's his bread and butter. On this Summer Replay of Screaming in the Cloud, Corey and Levi chat about how Jamf's business approach benefits both their clients and their development team. Levi gives his take on the relationship between software development and personal ownership, how he gamified learning for young engineers, the economic challenges presented to professionals trying to break into the cloud, and how AWS can improve its rollout of new products. Seeing as Levi McCormick is now Jamf's Director of Engineering, those insights have seemingly paid dividends! You can check out this blast from the past (as well as Corey's usual wit and hot takes) right now!Show Highlights(0:00) Intro to the episode(0:58) Panoptica sponsor read(1:49) Levi's role as a Cloud Architect(2:41) The history of Jamf and the services they provide(5:58) Breaking down the cloud for customers(8:18) Services, development, and ownership(11:44) Identity and assumed roles in software engineering(14:41) The woes of mismanagement in the field(17:03) Pantoptica sponsor read(17:26) Explaining the Cloud Resume Challenge(20:11) Hesitancy to take the challenge wider(21:26) Economic barriers for young engineers(26:00) Thoughts on reInvent 2021(28:45) What's ahead for Levi McCormick(29:33) Where you can find LeviAbout LeviLevi's passion lies in helping others learn to cloud better.Links ReferencedJamf: https://www.jamf.comTwitter: https://twitter.com/levi_mccormickOriginal Episode: https://www.lastweekinaws.com/podcast/screaming-in-the-cloud/an-enterprise-level-view-of-cloud-architecture-with-levi-mccormick/SponsorPanoptica: https://www.panoptica.app/
Three Technical Account Managers (TAMs) from DoiT share real-life stories about overspending on cloud and managing cloud commitment drawdowns, with practical lessons and strategies for optimizing your own cloud costs.
edX ✨I build courses: https://insight.paiml.com/d69
edX ✨I build courses: https://insight.paiml.com/d69
Episode SummaryCorey is joined by William Collins, Alkira's head cloud architect, to discuss the obstacles and possibilities of cloud networking. They discuss the evolution, challenges, and necessity of cloud networking, highlighting why this fundamental part of cloud design often goes unrecognized yet truly deserves attention. From William's early days of cloud skepticism to the incredible influence of services such as AWS Transit Gateway, William shares his experiences and insights into how network planning can make a big difference in cloud installations in this episode of Screaming in the Cloud.Show Notes:About William Collins:William Collins is a principal cloud architect at Alkira, where he plays a pivotal role in evangelizing the company's vision, building customer relationships, and leading thought in the network, security, and automation spaces within the cloud ecosystem. With a rich background in enterprise technology across financial services and healthcare, including a significant tenure as Director of Cloud Architecture at Humana, William has made substantial contributions to cloud adoption and network modernization. Beyond his professional pursuits, William is passionate about content creation, hosting The Cloud Gambit Podcast, and teaching as a LinkedIn Learning Instructor. His expertise spans automation, cloud computing, and network engineering. An advocate for continuous learning and innovation, William's outside interests include woodworking, playing ice hockey, and guitar. While his insights are influential, they reflect his personal views and not those of his employer.Show Highlights: (00:00) Introduction(03:24) William Collins shares his initial skepticism towards cloud computing (07:28) The evolution of cloud networking(13:50) The role of upfront planning in cloud network deployment to avoid scalability and complexity issues.(21:10) The shift from complicated, manual network setups to simple, effective cloud systems .(24:13) William uses Netflix's network design as an example of how cloud networking powers seamless user experiences (27:44) The future of cloud networking and the ongoing need for innovation(30:23) Closing remarks Links:Alkira's Website: https://www.alkira.com/The Cloud Gambit Podcast: https://www.thecloudgambit.com/William Collins on X (Twitter) https://twitter.com/WCollins502AWS Transit Gateway https://aws.amazon.com/transit-gateway/William Collins on LinkedIn: https://www.linkedin.com/in/william-collins-
In this episode we are looking at the challenges AI technology faces when it comes to becoming, and then remaining sustainable.The benefits of AI are unquestionable: from improved medical assistance and increased efficiency in the workplace, to autonomous transportation and next-level gaming experiences. But the more expansive the abilities of AI become, the more data storage that's required. That data storage uses a lot of energy. In fact, it has been predicted that AI servers could be using more energy than a country the size of the Netherlands by 2030. For HPE Chief Technologist, Matt Armstrong-Barnes, the rate at which AI has grown in recent years has had an environmental impact, and he believes that's down to people rushing into training large language models without thinking about longevity, or the need for future change. And that, in turn, has led to data being stored that is no longer needed. The sustainability issue is something that is also a main focus of Arti Garg, Lead Sustainability & Edge Architect in the office of the CTO at Hewlett Packard Enterprise. Like Matt, Arti has kept a keen eye on the exponential growth of AI data storage and the effect that is having on the environment, and agrees that the key to a more sustainable future is in how we train models. However, whilst training models well is important, the tech itself is a key component in more efficient AI. Shar Narasimhan is the director of product marketing for NVIDIA's data center GPU portfolio. He believes that a combination of openly available model optimisations and chipsets, CPUs, GPUs and intelligent data centers optimised for AI is a key piece of the puzzle in avoiding energy wastage, and making AI more sustainable all round.Sources and statistics cited in this episode:Global AI market prediction - https://www.statista.com/statistics/1365145/artificial-intelligence-market-size/#:~:text=Global%20artificial%20intelligence%20market%20size%202021%2D2030&text=According%20to%20Next%20Move%20Strategy,nearly%20two%20trillion%20U.S.%20dollars.AI could use as much energy as a small country report - https://www.cell.com/joule/fulltext/S2542-4351(23)00365-3?_returnURL=https%3A%2F%2Flinkinghub.elsevier.com%2Fretrieve%2Fpii%2FS2542435123003653%3Fshowall%3DtrueIndustry responsible for 14% of earth's emissions - https://www.emerald.com/insight/content/doi/10.1108/JICES-11-2021-0106/full/htmlNumber of AI startups - https://tracxn.com/d/explore/artificial-intelligence-startups-in-united-states/__8hhT66RA16YeZhW3QByF6cGkAjrM6ertfKJuKbQIiJg/companiesAI model energy use increase - https://openai.com/research/ai-and-computeEuropean Parliament report into AI energy usage - https://www.europarl.europa.eu/RegData/etudes/STUD/2021/662906/IPOL_STU(2021)662906_EN.pdf
To return more value from cloud, it's essential to optimize its infrastructure. Intel's Josh Hilliker has thoughts on how you can do that with optimization—and policy-as-code, as well as effective governance.
Implementing Generative AI requires re-evaluating all aspects of cloud architecture to ensure that it is optimized to return value to the business.
In this episode, Woody is joined by Deepika Nath, Director of Infrastructure and Cloud Architecture at Kyndryl.Deepika has a passion for using technology to create differentiated customer outcomes. In this episode, she dives into hybridity and the concept of the middle cloud, a concept that emphasizes the importance of networking and connectivity in hybrid cloud architectures, highlighting the middle cloud's ability to bring greater flexibility to various workloads. She highlights the criticality of avoiding a one-size-fits-all strategy and instead, leveraging versatile options, exemplifying how a customized strategy carries such immense value in the cloud industry.Deepika's LinkedIn: https://www.linkedin.com/in/deepikanath/ About Altitude and Host Woody: https://aviatrix.com/altitude/ Timestamped Overview:00:00 Intro00:36 Deepika's background & the widespread impact of cloud technology on various aspects of our lives02:33 Hybrid cloud, the prevalence of cloud-native workloads and the challenges of developing hybrid applications05:09 The complexities of managing hybrid cloud solutions and the need for effective, consistent management07:17 The concept of the "middle cloud" 16:30 Alternative approaches to middle cloud 17:40 The capabilities of the middle cloud 20:37 Deepika's thoughts on Aviatrix, achieving simplification23:24 Why the middle cloud is important
Moving to the cloud is nothing new — but doing it efficiently is still tough. Brantley Richbourg is the Principal Technical Consultant of Cloud Networking at AHEAD, and it's his job to help companies navigate their journey to the cloud. On this episode, he describes some of the reasons companies are looking to make the move and the challenges they face along the way. Plus he explains where and how generative AI is playing a role and why innovation might not be the driving force behind customer decision making. Tune in to learn:What is Ahead? (1:32)Finally solving the problems with moving to the cloud (5:40)Integrating cloud systems and hybrid clouds (11:30)The role of generative AI (16:35)Why the cloud is not about saving money (30:00)How Ahead is working with clients (36:15)How to win at sales (38:38)The timeline for adopting new infrastructure (44:20)Predicting the next big thing (50:00)Mentions:Brantley's first appearance on IT Visionaries--Did you know that less than half of IT leaders feel their network infrastructure is ready to make the best use of emerging technologies? Zayo, a leading global communications infrastructure provider, empowers some of the world's most innovative companies to take advantage of next generation technologies with the help of reliable, resilient network infrastructure. Read their research paper, IT Confidential, to gain valuable insights from IT leaders. Mission.org is a media studio producing content for world-class clients. Learn more at mission.org.
Bad data costs organisations an average of USD$12.9 million annually. Major Transport Infrastructure Victoria worked to overcome this by established data reliability with a multi-cloud transformation journey that changed both behavious and systems. Saher Junaid discusses. Saher Junaid, Assistant Director, Digital Safety Systems, Major Transport Infrastructure Authority. This episode of the Public Sector Podcast is brought to you by AWS. Digital transformation can be daunting. AWS Partners can help customers by transforming technical and security challenges into solutions. See the power of public service in the cloud. Read AWS Partner Innovator stories today. For more great insights head to www.PublicSectorNetwork.co
In this episode, Katoria Henry, a multi-award winning cloud security and technical resilience expert, discusses the importance of building a resilient cloud architecture.Katoria covers the key concepts of cloud resilience, the challenges of building resilient cloud architectures, and best practices for overcoming these challenges.Katoria also shares her personal experiences working with organizations to help them build resilient cloud architectures. She provides practical advice on how to design, deploy, and manage microservices-based applications in a way that minimizes the risk of outages and data breaches.Whether you're a cloud architect, developer, or security professional, this video is essential viewing for anyone who wants to build resilient cloud applications.Listen to this episode to learn:- What is cloud resilience?- The challenges of building resilient cloud architectures and how to overcome them.- Practical advice on how to design, deploy, and manage microservices-based applications in a way that minimizes the risk of outages and data breaches.Get a discount on StationX cybersecurity courses here: https://www.stationx.net/cyberlifecloud resilience, microservices, cloud architecture, cloud security, data breaches, outagesSupport this podcast at — https://redcircle.com/cyber-life/donations
Technovation with Peter High (CIO, CTO, CDO, CXO Interviews)
778: In this episode, Rackspace Technology's President of Private Cloud, Brian Lillie, speaks about the keys to successful cloud adoption and the benefits of a multi-cloud architecture. Throughout this conversation, we dive into Rackspace's business, explore Brian's purview within Private Cloud, and discuss the shared and differing responsibilities with his counterpart in Public Cloud. Brian explains how having a CIO background has been advantageous to him when partnering with the current CIO and the IT organization. With a breadth of experience across companies, disciplines, and industries, Brian shares insights into his thoughtful leadership style shaped by his core values, walks us through his career path, and talks about the impact that both his military experience and his pursuit of higher education has had on his professional career. Finally, Brian covers the advantages of having technologists on a board of directors, looks ahead at the latest trends in technology, and reflects on the secrets to his career success.
Technovation with Peter High (CIO, CTO, CDO, CXO Interviews)
778: In this episode, Rackspace Technology's President of Private Cloud, Brian Lillie, speaks about the keys to successful cloud adoption and the benefits of a multi-cloud architecture. Throughout this conversation, we dive into Rackspace's business, explore Brian's purview within Private Cloud, and discuss the shared and differing responsibilities with his counterpart in Public Cloud. Brian explains how having a CIO background has been advantageous to him when partnering with the current CIO and the IT organization. With a breadth of experience across companies, disciplines, and industries, Brian shares insights into his thoughtful leadership style shaped by his core values, walks us through his career path, and talks about the impact that both his military experience and his pursuit of higher education has had on his professional career. Finally, Brian covers the advantages of having technologists on a board of directors, looks ahead at the latest trends in technology, and reflects on the secrets to his career success.
In the final part of Thomas Erl's interview with David Linthicum (best-selling author of "An Insider's Guide to Cloud Computing"), we address the state of Artificial Intelligence (AI) systems being created for and used in clouds. David shares his experience with Cloud AI and reveals how he sees Cloud AI evolving in the future. Hosted on Acast. See acast.com/privacy for more information.
Cybersecurity has moved from a luxury to a necessity for pretty much every business. But still, many organizations are operating in a reactive rather than a proactive fashion when it comes to securing their networks. Adam Burke, VP Sales & Partnerships, Quest Technology Management, explains why this is and how to change your mindset and operate in a more secure fashion. Tune in to learn:What is Quest Technology? (1:45)The security needed to work in the cloud (5:10)Recommendations for organizations to address potential security concerns (11:45)Finding the right person to protect your infrastructure (19:30)How to choose the right third-party to help with cybersecurity (22:30)How Adam got his tech chops (25:55)The impact of AI in tracking cybersecurity activity (32:20)How fast Quest can help a customer in need (39:20)The benefits of military service for a tech professional (41:00)–Zayo's future-ready network and tailored connectivity solutions enable some of the world's most innovative companies to connect what's next for their business. Exceptional end-user experiences and better business outcomes demand one thing – a strong, healthy network. How's your network health? There's one way to find out – take Zayo's Network Health Check now. https://zayo.is/3ztMpIuMission.org is a media studio producing content for world-class clients. Learn more at mission.org.
In the second part of a three-part discussion with Thomas Erl and cloud computing visionary, David Linthicum, we delve into how we can leverage multicloud to create federated cloud applications that are distributed across multiple clouds, each providing an environment optimal for a given part of the application (as also documented in David's new book "An Insider's Guide to Cloud Computing"). Hosted on Acast. See acast.com/privacy for more information.
Sporo się dzieje w temacie AI, ale nie zapomnieliśmy o clodzie! W najnowszym odcinku razem z Wojtkiem Dąbrowskim (Head of Cloud Architecture) z DTiQ rozmawiamy między innymi o tym, czym jest cloud native, jaka jest rola Head of Cloud Architecture w zespole developmentu oraz czy początkujący developerzy powinni od razu uczyć się clouda?
As multicloud continues to become a greater reality for many organizations, so does the potential architectural complexity it can bring along with it. In this first part of a three-part podcast series dedicated to the future of cloud architecture, author Thomas Erl and industry thought leader David Linthicum do a deep-dive to explore the meta cloud (or "metacloud") architectural model that David recently documented in his powerful new book "An Insider's Guide to Cloud Computing". As David explains, establishing a metacloud will introduce a critical abstraction layer that will provide centralized controls for the management, operations and security of multiple cloud environments. Hosted on Acast. See acast.com/privacy for more information.
Unlock the Mystery of Cloud Computing: Discover Its Incredible Benefits! In this Video, InfosecTrain will be hosting a “Cloud Computing Expert Masterclass” with certified experts, in order to help you unlock the mystery of cloud computing and its incredible benefits! If you're looking to learn more about the benefits of cloud computing, then this event is definitely for you! In this Masterclass, you'll get to hear from top experts on the topic, and explore the various benefits of cloud computing. From simplified management to improved security, this Masterclass has it all! Thank you for watching this video, For more details or free demo with our expert write into us at sales@infosectrain.com ➡️ Agenda for the Webinar ✑ Day-1
The cloud infrastructure and platform services (CIPS) market consists of standardized, highly automated offerings in which infrastructure resources such as compute, networking, and storage are complemented by integrated platform services (managed application, database, and functions as-a-service offerings).Gartner predicts that by 2027, more than 50% of enterprises will use industry cloud platforms to accelerate their business initiatives. Industry cloud platforms enable a shift from generic solutions to platforms designed to fit the specifics of the user's industry.In the race to the cloud, organisations are discovering for themselves just how 'not simple' things are in the cloud. The near ease at which organisations can now connect to the cloud and acquire the resources they need to run the business also introduced new challenges including security, scalability, compatibility and interoperability, and compliance. And like creatures of habit, businesses want to be able to customise the cloud to suit their business objectives – further introducing complexity and additional costs.In this PodChats for FutureCIO, we are joined by Matthew Swinbourne, CTO Cloud Architecture for APAC at NetApp, to walk us through we can turn this growing cloud complexity into a competitive advantage1. How have cloud architectures changed since 2020? What is/are driving this change?2. When viewed from the perspective of operations and business, is there (among C-suite and operation leaders) an understanding of how this complexity will hit back on the organisation in general? a. Who is best qualified to lead organisations out of this complexity?3. What is the role of the CTO?4. Why should CTOs care about how complex cloud architectures have/are become/becoming?a. How should CTOs work with CIOs to realise the business goals? 5. How can the CIO work with business and operations leaders ensure user buy-in and adoption of applications and processes?6. Drawing from the NetApp study on complexity, what are your recommendations given your role as CTO?7. How should leadership navigate the web of emerging technologies without losing sight of business goals and objectives?8. AI – what have we achieved so far?9. Single pane of glass – are we there yet?
We dive back into bringing guests onto the show focusing on real problems with real people on the ground. In this episode, we are joined by Hecber Cordova, Director of Cloud Security at RBC. He shares insights around growth into DevSecOps, developing empathy with your engineering teams, creating cloud patterns, paved paths, and building secure architectures from the ground up. If you're interested in hearing from someone who has built strong security cultures in large institutions this is an episode to listen to!Links mentioned on the show:https://cloudseclist.com/https://cloudsecurityforum.slack.com
In the episode, Jim talks to Head of Software Innovation at Veloce Energy, Arila Barnes. Arila has extensive experience in enterprise software and product management. She is an expert in edge computing and IoT solutions. Jim and Arila discuss edge/IoT computing, multi-cloud deployments, Machine2Machine Zero Trust, Observability in the cloud and much more.Listen to other Navigating the Cloud Journey episodes here.
This interview was recorded for the GOTO Book Club.gotopia.tech/bookclubRead the full transcription of the interview hereEmily Freeman - Head of DevOps Product Marketing, Head of Community Engagement at AWS & Co-Editor of "97 Things Every Cloud Engineer Should Know"Nathen Harvey - Developer Advocate at Google Cloud and Co-Editor of "97 Things Every Cloud Engineer Should Know"Chris Williams - Cloud Therapist at World Wide TechnologyDESCRIPTIONMigrating to the cloud has become a "sine qua non" these days. The compact articles in 97 Things Every Cloud Engineer Should Know inspect the entirety of cloud computing, including fundamentals, architecture and migration. You'll go through security and compliance, operations and reliability and software development. And examine networking, organizational culture, and more.Find out the story behind the benefits of curating such a community-driven book from the co-editors Emily Freeman, head of DevOps product marketing at AWS, Nathen Harvey, developer advocate at Google Cloud, and Chris Williams, cloud therapist and principal cloud solutions architect for World Wide Technologies.The interview is based on Emily's & Nathen's co-edited book "97 Things Every Cloud Engineer Should Know"RECOMMENDED BOOKSEmily Freeman & Nathen Harvey • 97 Things Every Cloud Engineer Should KnowEmily Freeman • DevOps For DummiesMartin Kleppmann • Designing Data-Intensive ApplicationsEmil Stolarsky & Jaime Woo • 97 Things Every SRE Should KnowKevlin Henney & Trisha Gee • 97 Things Every Java Programmer Should KnowKevlin Henney • 97 Things Every Programmer Should KnowHenney & Monson-Haefel • 97 Things Every Software Architect Should KnowKasun Indrasiri & Danesh Kuruppu • gRPC: Up and RunningTwitterLinkedInFacebookLooking for a unique learning experience?Attend the next GOTO conference near you! Get your ticket: gotopia.techSUBSCRIBE TO OUR YOUTUBE CHANNEL - new videos posted almost daily
Cloud architects have long wished for more flexibility in how memory is provisioned in servers, and CXL is finally delivering on a decade of promises. In this episode of Utilizing Tech, Stephen Foskett and Craig Rodgers talk to Dan Ernst of Microsoft, who is deeply involved in bringing CXL-attached memory to fruition within Azure. Dan was previously involved in the Gen-Z effort, and feels that CXL picks up the baton and brings valuable real-world benefits to cloud server architecture. Memory has a bigger impact on overall IT platforms than many are aware, and is already the costliest component in large servers. Per Amdahl's Law, it makes sense to look for cost savings in memory. And this is doubly the case because DIMMs only come in certain sizes so memory is usually over-specified. CXL memory modules cost a bit more than a DIMM, but this is offset by efficient right-sizing, and CXL is already cheaper than 3D stacked DIMMs. Hosts: Stephen Foskett: https://www.twitter.com/SFoskett Craig Rodgers: https://www.twitter.com/CraigRodgersms Guest Host: Dan Ernst, Principal Architect working on Future Azure Cloud Systems, Microsoft Azure https://www.linkedin.com/in/danernst/ Follow Gestalt IT and Utilizing Tech Website: https://www.UtilizingTech.com/ Website: https://www.GestaltIT.com/ Twitter: https://www.twitter.com/GestaltIT LinkedIn: https://www.linkedin.com/company/1789 Tags: #CXL #DIMMs #Azure #UtilizingCXL @Microsoft @Azure
Jeff Fritz is an experienced developer, technical educator, and PM on the .NET team at Microsoft. He founded The Live Coders team on Twitch, and regularly livestreams builds of websites and fun applications. You can follow Jeff for more .NET, .NET Core, and Visual Studio content on Twitch and Twitter at @csharpfritz. Topics of Discussion: [2:41] Jeff talks about surviving the .com bomb and his background as a longtime web developer and technical educator. [3:57] What have been some of the recent developments that Jeff and his team are most excited about at Microsoft? [5:45] Jeff talks about how the application has been growing and how he's had some bumps in the road. [7:40] How to make video clips searchable and discoverable on the web. [12:12] What made Jeff go for MySQL instead of serverless Azure SQL? [18:01] What's the duration of the journey from the first line of code to enterprise patterns? [21:09] As we grow applications, we need to figure out a better way to show people what happens when you make a mistake, and to help them through the growth. [27:13] How do you know what's going to happen at a certain level of production? [22:48] Does Jeff really believe we're going to end up at Kubernetes? [32:27] Re-architecting your database architecture. Mentioned in this Episode: Architect Tips — New video podcast! Azure DevOps Clear Measure (Sponsor) .NET DevOps for Azure: A Developer's Guide to DevOps Architecture the Right Way, by Jeffrey Palermo — Available on Amazon! Jeffrey Palermo's YouTube Jeffrey Palermo's Twitter — Follow to stay informed about future events! Programming with Palermo programming@palermo.network Jeff on Twitch KlipTok Fritz's Tech Tips and Chatter Want to Learn More? Visit AzureDevOps.Show for show notes and additional episodes.
In this episode of the Virtual Coffee with Ashish edition, we spoke with Kat Traxler (Kat's Linkedin) about the skillset, certification and knowledge base required to become a cloud security architect in 2023. Episode ShowNotes, Links and Transcript on Cloud Security Podcast: www.cloudsecuritypodcast.tv Host Twitter: Ashish Rajan (@hashishrajan) Guest Twitter: Kat Traxler (Kat's Linkedin) Podcast Twitter - @CloudSecPod @CloudSecureNews If you want to watch videos of this LIVE STREAMED episode and past episodes - Check out our other Cloud Security Social Channels: - Cloud Security News - Cloud Security Academy Spotify TimeStamp for Interview Questions (00:00) Ashish's Intro to the Episode (02:28) https://snyk.io/csp (02:46) A bit about Kat (05:35) What does a security architect do? (06:46 )The difference in the Cloud Security Architect role (11:08) The building blocks of building an application in AWS (13:41) Are there DMZs in Cloud Architecture? (15:54) Cybercriminal and Cloud exploitation (19:04) How to keep with rapid changes in cloud? (20:08) AWS pre:invent update (21:39) Why is IAM important in Cloud? (25:03) Do cloud security architects need to know coding and automation? (27:38) How important are certifications? (31:49) Getting in cloud security with no experience (33:41) What are important skills for architect? (35:33) SANS certifications for Cloud Security Architects (37:04) How important is ist to have multi cloud knowledge (40:44) Frameworks to build cloud architecture (42:59) Do you need to know software development? (44:19) Roadmap to become a cloud security architect (45:32) What is the most difficult thing related to architecture? (49:32) The Fun Section
Welcome to Episode 127 Main Topic Microservices “Simpler” code? Easily scalable? “Complex” deployment? What are they? Why build like that? How do you interact with a microservice? Pros/Cons ? Service Discovery Consul / etcd / Zookeeper https://www.consul.io/ https://etcd.io/ https://zookeeper.apache.org/ What? Why? Service Mesh? Consul / Istio / Linkerd https://developer.hashicorp.com/consul/docs/connect https://istio.io/ https://linkerd.io/ https://en.wikipedia.org/wiki/Switched_Multi-megabit_Data_Service https://en.wikipedia.org/wiki/Frame_Relay https://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode https://en.wikipedia.org/wiki/Software-defined_networking What? Why? *kinda like* SMDS / Frame Relay / ATM / SDN “Free” mTLS and encryption !!! Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast OR https://twitch.tv/IronSysadminPodcast Discord Community: https://discord.gg/wmxvQ4c2H6 Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org Find us on Twitter, and Facebook! https://www.facebook.com/ironsysadmin https://www.twitter.com/ironsysadmin Subscribe wherever you find podcasts! And don't forget about our patreon! https://patreon.com/ironsysadmin Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Since 1990, the global rates of extreme poverty have gone from around 40% to around 10%, and ending World Poverty entirely by 2030 is one of the UN's Key Sustainable Development Goals, announced in 2015. However, progress is slowing, and 710 million people around the world still live in extreme poverty - currently earning below $1.90 per day. So how can technology help? In this episode, we'll be meeting some of the people and organisations aiming to eradicate poverty through the use of technology.The power of connectivityOne of the most important ways in which rural economies can grow and become more efficient and productive is to get access to communications technology. Isabelle Mauro is the Head of Information, Communications & Technology (ICT) Industries at the World Economic Forum. The WEF is the world body bringing together the public and private sectors, and has been pushing for greater co-operation between the public sector and telecoms providers to work on lifting developing communities out of hunger and poverty. The results speak for themselves: Research suggests a 10% improvement in mobile connectivity can add 1.5% to a country's GDP. The challenge is to provide a financial incentive for companies and Governments to reach out to poorer areas where the business case for connection might not be so obvious.Harnessing complex skills and technology for unconnected communitiesOne of the firms leading the charge to bring rural communities into the digital age is Hewlett Packard Enterprise. Brian Tippens is their Head of sustainability, and has been working closely with WEF and partners around the world to enable remote and disconnected communities to take advantage of HPE's experience in data and connectivity - particularly in encouraging skills sharing and industrial expertise among NGOs and other bodies. At the core of their philanthropic ambitions, however, is to allow and enable local communities to help provide their own solutions to their own problems, encouraging long-term, sustainable and useful programs of change to emerge.Getting educatedOne of the ways in which communities can be enabled to develop their own long-term solutions is through education and upskilling the population to take advantage of the opportunities offered by technology. Leading that charge is the Micro:bit Educational Foundation, which provides expandable, programmable micro-computers to schools around the world, alongside locally-led educational programs and learning resources. Gareth Stockdale is the organisations CEO and tells us that the democratisation of technology through enabling local participation is key to lifting people out of poverty, providing pathways to future skilled careers, and to enabling self-sufficiency among remote or impoverished communities. Whether it's educating children or upskilling adults to make the most of opportunities in their community and work in collaboration with international organisations, there's plenty being done to help end world poverty by 2030. Will it be enough? Time will tell. But the appetite seems to be real for long-lasting change.Key takeaways: Even small improvements to digital connectivity can have a lasting impact on local and national economic growth and resilience. Most people have the potential to get connected, and doing so can drastically improve lives in remote communities. The best way to lift the world out of poverty is through public-private partnerships which enable and upskill communities to create their own solutions and take long-term advantage of new technologies. Western organisations have a responsibility not to parachute in solutions, but to work on the ground with communities to enable them to make best use of the technology on offer, through collaboration and education. Links and resources:The UN Sustainable Development GoalsThe World Economic Forum's Edison AllianceTech Impact 2030 - How HPE is driving positive change through technologyThe micro:bit Educational FoundationThe impact of digital technology usage on economic growth in Africa - from the Elsevier Public Health Emergency CollectionBrian Tippens on LinkedInIsabelle Mauro on LinkedInGareth Stockdale on LinkedIn
The Azure cloud platform is more than 200 products and cloud services designed to help you bring new solutions to life—to solve today's challenges and create the future. Build, run, and manage applications across multiple clouds, on-premises, and at the edge, with the tools and frameworks of your choice. Dynamics 365 runs on the Azure cloud service, and today's cloud architecture expert, Tony Begum, highlights why that's valuable and what that means to all you Biz Apps innovators out there! Episode TopicsAzure and Dynamics are different products, so how are they important to each other?When it comes to our competitors, do you think Azure + D365 separates us? If so, how?How does IoT play a part in the Azure + D365 story? What are some good nuggets to know?How can partners tell a better together story with Azure + D365? Useful Resources:Azure + DynamicsAzure + Customer EngagementDynamics Field Service + IoT + Azure About Tony BegumTony Begum brings over 25yrs of experience building enterprise solutions ranging from his first ISP startup in 1994 to putting in the most remote VoIP system in in the world in Perdo Bay Alaska. He has over 25 industry cloud technical certifications from AWS, Salesforce, and Microsoft. His current role is developing our new business architecture service for Microsoft to help our customers realize their digital transformation more rapidly. Tony brings a wealth of knowledge and experience with over 20 years of business application value selling. Tony has also held positions at IBM and Cisco where he acquired in-depth knowledge of Cloud Architecture, Customer Service, Business Architecture, and B2B Commerce. Connect with Tony here - Tony Begum | LinkedIn We'd love to hear from you:Don't hesitate to reach out with any questions, comments, suggestions or feedback! We'd love to hear from you. Send your hosts an email at digestibledynamics@microsoft.comDiscover and follow other Microsoft podcasts at microsoft.com/podcasts Hosted on Acast. See acast.com/privacy for more information.
In this podcast, Tara Griffin, Director of Strategic Solution Sales at Genesys describes the flexibility multi-cloud architecture brings to businesses, allowing them to tailor their infrastructure, deployment and management models to fit their business.
This is the Internet Report, where we uncover what's working and what's breaking on the Internet—and why. On this week's episode, we cover a widespread T-Mobile outage that took down its cellular network for several hours and elicited a rare condemnation from the FCC. The culprit, according to the carrier, was a fiber cut—highlighting the need for redundancy and resiliency in the nation's cellular networks. We also cover an issue with What's App's privacy settings that sent users scrambling to Twitter, as well as a recent move by Russia to “un-ban” the messenger app, Telegram. Then, stay tuned as we go one-on-one with Jason Black, the Head of Global Network Infrastructure at Uber Technologies, to discuss how Uber approaches its cloud architecture.
Ken and his companies began developing software applications in 1980 before the PC as we know it existed. Getting involved in the Internet very early on (1994), Ken developed the 1st Internet site for MLS data in 1995 and begin local marketing in 1995 as well (long before the market was ready for it). Kens & his companies have developed a number of high end applications. These include very high end mapping and database solutions reviewed by the FBI and Homeland Security, presentations at Nation Association of REALTORS technology and conventions events and participating as 1 of 50 Microsoft Partners from around the world in New York City for the rollout of his mobile running on the Pocket PC. His was one of the very first high end mobile apps running at that time. Most recently Ken has been involved in Online Marketing, starting with developing a very high-end Cloud Architecture for a large database and video platform and progressing to his current endeavors Impact Marketing Group and Publisher of the Impact Magazine along with Ken McArthur. http://www.theimpactmagazine.org Seth Greene is a 6 Time Best Selling Author, Nationally Recognized Direct Response Marketing Expert, and the only back to back to back GKIC Dan Kennedy Marketer of the Year Nominee. To Get a FREE Copy of Seth's new book Podcast Marketing Magic, and access to a Live Podcast Marketing Training Conference Call go to http://www.UltimateMarketingMagician.com Learn more about your ad choices. Visit megaphone.fm/adchoices
This week Graham Smith joins us to talk about the PeopleSoft Cloud Architecture, the future of PeopleSoft and how the PeopleSoft Administrator role is changing. Show Notes SQL Server/Windows @ 3:00 Reaction to Changes in PeopleSoft @ 8:00 PeopleSoft Cloud Architecture @ 12:00 Why the PCA? @ 30:30 Graham's Predictions about PeopleSoft @ 35:00 How the PS Admin role is changing @ 43:30
This week Graham Smith joins us to talk about the PeopleSoft Cloud Architecture, the future of PeopleSoft and how the PeopleSoft Administrator role is changing. Show Notes SQL Server/Windows @ 3:00 Reaction to Changes in PeopleSoft @ 8:00 PeopleSoft Cloud Architecture @ 12:00 Why the PCA? @ 30:30 Graham's Predictions about PeopleSoft @ 35:00 How the PS Admin role is changing @ 43:30