Archives
- By thread 3676
-
By date
- June 2021 10
- July 2021 6
- August 2021 20
- September 2021 21
- October 2021 48
- November 2021 40
- December 2021 23
- January 2022 46
- February 2022 80
- March 2022 109
- April 2022 100
- May 2022 97
- June 2022 105
- July 2022 82
- August 2022 95
- September 2022 103
- October 2022 117
- November 2022 115
- December 2022 102
- January 2023 88
- February 2023 90
- March 2023 116
- April 2023 97
- May 2023 159
- June 2023 145
- July 2023 120
- August 2023 90
- September 2023 102
- October 2023 106
- November 2023 100
- December 2023 74
- January 2024 75
- February 2024 75
- March 2024 78
- April 2024 74
- May 2024 108
- June 2024 98
- July 2024 116
- August 2024 134
- September 2024 130
- October 2024 141
- November 2024 98
-
How could generative AI and automation technologies transform work in America?
On Point
In-demand careers and skills
by "McKinsey On Point" <publishing@email.mckinsey.com> - 12:55 - 21 Aug 2023 -
The CEO life cycle
From starting strong to sending it forward Brought to you by Liz Hilton Segel, chief client officer and managing partner, global industry practices, & Homayoun Hatami, managing partner, global client capabilities
New from McKinsey & Company
Every chapter of the CEO journey comes with a unique set of challenges—and opportunities. Whether you’re a senior executive who aspires to the top job or you’re a celebrated CEO who’s preparing to pass the baton to a successor, check out this series of McKinsey Quarterly articles from senior partners Carolyn Dewar, Scott Keller, Vikram Malhotra, and Kurt Strovink for high-impact leadership advice. Then dive into lessons from the world’s best CEOs, and bookmark The McKinsey guide to excelling as a CEO for the latest insights on topics that should be at the top of your agenda.
ACHIEVING CEO EXCELLENCE
Bookmark The McKinsey guide to excelling as a CEO for expert insights and advice on topics that should be at the top of your CEO agenda, including gen AI, digital transformations, the changing talent landscape, growth and resilience, the net-zero transition, DEI, and more.
— Edited by Eleni Kostopoulos, managing editor, New York
This email contains information about McKinsey’s research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to our McKinsey Quarterly alert list.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey & Company" <publishing@email.mckinsey.com> - 06:12 - 20 Aug 2023 -
The week in charts
The Week in Charts
Ukrainians relocate to neighboring countries, inflation concerns, and more Share these insights
Did you enjoy this newsletter? Forward it to colleagues and friends so they can subscribe too. Was this issue forwarded to you? Sign up for it and sample our 40+ other free email subscriptions here.
This email contains information about McKinsey's research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to The Week in Charts newsletter.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Week in Charts" <publishing@email.mckinsey.com> - 03:56 - 19 Aug 2023 -
EP73: Cheat sheet of different databases in cloud services
EP73: Cheat sheet of different databases in cloud services
This week’s system design refresher: Top 6 Load Balancing Algorithms Every Developer Should Know (Youtube video) Cheat sheet of different databases in cloud services HTTPS, SSL Handshake, and Data Encryption Explained to Kids How does Chrome work? The 2023 State of the API Report is here! (Sponsored) View in browser This week’s system design refresher:
Top 6 Load Balancing Algorithms Every Developer Should Know (Youtube video)
Cheat sheet of different databases in cloud services
HTTPS, SSL Handshake, and Data Encryption Explained to Kids
How does Chrome work?
The 2023 State of the API Report is here! (Sponsored)
For the fifth year, the State of the API is the world's largest and most comprehensive survey and report on APIs. More than 40,000 developers and API professionals have shared their thoughts on development priorities, their API tools, and where they see APIs going.
Top 6 Load Balancing Algorithms Every Developer Should Know
Static Algorithms
1. Round robin
The client requests are sent to different service instances in sequential order. The services are usually required to be stateless.
2. Sticky round-robin
This is an improvement of the round-robin algorithm. If Alice’s first request goes to service A, the following requests go to service A as well.
3. Weighted round-robin
The admin can specify the weight for each service. The ones with a higher weight handle more requests than others.
4. Hash
This algorithm applies a hash function on the incoming requests’ IP or URL. The requests are routed to relevant instances based on the hash function result.Dynamic Algorithms
5. Least connections
A new request is sent to the service instance with the least concurrent connections.
6. Least response time
A new request is sent to the service instance with the fastest response time.
A nice cheat sheet of different databases in cloud services
Choosing the right database for your project is a complex task. The multitude of database options, each suited to distinct use cases, can quickly lead to decision fatigue.
We hope this cheat sheet provides high level direction to pinpoint the right service that aligns with your project's needs and avoid potential pitfalls.
Note: Google has limited documentation for their database use cases. Even though we did our best to look at what was available and arrived at the best option, some of the entries may be not accurate.
Over to you: Which database have you used in the past, and for what use cases?Latest articles
If you’re not a subscriber, here’s what you missed this month.
"I Was Under Leveled!" — Avoiding the Tragedy of Making Only $500k a Year
Network Protocols behind Server Push, Online Gaming, and Emails
To receive all the full articles and support ByteByteGo, consider subscribing:
HTTPS, SSL Handshake, and Data Encryption Explained to Kids
HTTPS: Safeguards your data from eavesdroppers and breaches. Understand how encryption and digital certificates create an impregnable shield.
SSL Handshake: Behind the Scenes — Witness the cryptographic protocols that establish a secure connection. Experience the intricate exchange of keys and negotiation.
Secure Data Transmission: Navigating the Tunnel — Journey through the encrypted tunnel forged by HTTPS. Learn how your information travels while shielded from cyber threats.
HTML's Role: Peek into HTML's role in structuring the web. Uncover how hyperlinks and content come together seamlessly. And why is it called HYPER TEXT.
Over to you: In this ever-evolving digital landscape, what emerging technologies do you foresee shaping the future of cybersecurity or the web?How does Chrome work?
The diagram below shows the architecture of a modern browser. It is based on our understanding of “Inside look at modern web browser” published by the chrome team.
There are in general 4 processes: browser process, renderer process, GPU process, and plugin process.
Browser process controls address bar, bookmarks, back and forward buttons, etc.
Renderer process controls anything inside of the tab where a website is displayed.
GPU process handles GPU tasks.
Plugin process controls the plugins used by the websites.
The browser process coordinates with other processes.
When Chrome runs on powerful hardware, it may split each service in the browser process into different threads, as the diagram below shows. This is called Servicification.
Now let’s go through the steps when we enter a URL in Chrome.
Step 1: The user enters a URL into the browser. This is handled by the UI thread.
Step 2: When the user hits enter, the UI thread initiates a network call to get the site content.
Steps 3-4: The network thread goes through appropriate network protocols and retrieves the content.
Step 5: When the network thread receives responses, it looks at the first few bytes of the stream. If it is an HTML file, it is passed to the renderer process by the browser process.
Steps 6-9: An IPC is sent from the browser process to the renderer process to commit the navigation. A data pipe is established between the network thread and the renderer process so that the renderer can receive data. Once the browser process hears confirmation that the commit has happened in the renderer process, the navigation is complete and the document loading phase begins.Over to you: Why does Chrome assign each tab a renderer process?
Latest articles
Here are the latest articles you may have missed:
To receive all the full articles and support ByteByteGo, consider subscribing:
Like Comment Restack © 2023 ByteByteGo
548 Market Street PMB 72296, San Francisco, CA 94104
Unsubscribe
by "ByteByteGo" <bytebytego@substack.com> - 11:35 - 19 Aug 2023 -
The CFO’s guide to digitizing the finance function
Capture the AI potential Brought to you by Liz Hilton Segel, chief client officer and managing partner, global industry practices, & Homayoun Hatami, managing partner, global client capabilities
The CFO’s guide to digitizing the finance function
A company’s digital core is increasingly becoming the purview of the CFO, who must work in lockstep with the CEO to help lead the kind of digital- and AI-transformation efforts that many organizations today are pursuing. A flurry of enticing trending technologies—from Web3 to cloud computing to generative AI—carry with them great promise for improving process efficiencies and unlocking significant value, but for many of today’s finance leaders, achieving these results remains elusive.
Half a decade ago, as finance functions increasingly explored the promising benefits of automation and artificial intelligence, Ishaan Seth and the coauthors of this McKinsey classic article challenged CFOs to consider three key actions as they moved to a digital finance operating model: understand which activities should be automated to deliver the most value, rethink processes around the technology to unleash its full potential, and manage the disruption that will inevitably result from these changes.
Today’s finance leaders will help define how companies use tomorrow’s leading technologies. To help ensure success for you and your people, read our 2018 classic “Bots, algorithms, and the future of the finance function.”The CFO of the future In the face of volatility, CFOs—and their organizations—adapt
Share these insights
Did you enjoy this newsletter? Forward it to colleagues and friends so they can subscribe too. Was this issue forwarded to you? Sign up for it and sample our 40+ other free email subscriptions here.
This email contains information about McKinsey's research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to our McKinsey Classics newsletter.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Classics" <publishing@email.mckinsey.com> - 11:21 - 19 Aug 2023 -
Electrification for two-wheelers, the recipe for Asia’s success story, building a closer relationship to the planet, and more: The Daily Read weekender
This week's highlights Brought to you by Liz Hilton Segel, chief client officer and managing partner, global industry practices, & Homayoun Hatami, managing partner, global client capabilities
QUOTE OF THE DAY
chart of the day
Ready to unwind?
—Edited by Joyce Yoo, editor, New York
Share these insights
Did you enjoy this newsletter? Forward it to colleagues and friends so they can subscribe too. Was this issue forwarded to you? Sign up for it and sample our 40+ other free email subscriptions here.
This email contains information about McKinsey's research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to our McKinsey Global Institute alert list.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Daily Read" <publishing@email.mckinsey.com> - 06:25 - 18 Aug 2023 -
How to Choose a Message Queue? Kafka vs. RabbitMQ
How to Choose a Message Queue? Kafka vs. RabbitMQ
In the last issue, we discussed the benefits of using a message queue. Then we went through the history of message queue products. It seems that nowadays Kafka is the go-to product when we need to use a message queue in a project. However, it's not always the best choice when we consider specific requirements. Open in app or online This is a sneak peek of today’s paid newsletter for our premium subscribers. Get access to this issue and all future issues - by subscribing today.
Latest articles
If you’re not a subscriber, here’s what you missed this month.
"I Was Under Leveled!" — Avoiding the Tragedy of Making Only $500k a Year
Network Protocols behind Server Push, Online Gaming, and Emails
To receive all the full articles and support ByteByteGo, consider subscribing:
In the last issue, we discussed the benefits of using a message queue. Then we went through the history of message queue products. It seems that nowadays Kafka is the go-to product when we need to use a message queue in a project. However, it's not always the best choice when we consider specific requirements.
Database-Backed Queue
Let’s use our Starbucks example again. The two most important requirements are:
Asynchronous processing so the cashier can take the next order without waiting.
Persistence so customers’ orders are not missed if there is a problem.
Message ordering doesn’t matter much here because the coffee makers often make batches of the same drink. Scalability is not as important either since queues are restricted to each Starbucks location.
The Starbucks queues can be implemented in a database table. The diagram below shows how it works:
When the cashier takes an order, a new order is created in the database-backed queue. The cashier can then take another order while the coffee maker picks up new orders in batches. Once an order is complete, the coffee maker marks it done in the database. The customer then picks up their coffee at the counter.
A housekeeping job can run at the end of each day to delete complete orders (that is, those with the “DONE status).
For Starbucks’ use case, a simple database queue meets the requirements without needing Kafka. An order table with CRUD (Create-Read-Update-Delete) operations works fine.
Redis-Backed Queue
A database-backed message queue still requires development work to create the queue table and read/write from it. For a small startup on a budget that already uses Redis for caching, Redis can also serve as the message queue.
There are 3 ways to use Redis as a message queue:
Pub/Sub
List
Stream
The diagram below shows how they work.
Pub/Sub is convenient but has some delivery restrictions. The consumer subscribes to a key and receives the data when a producer publishes data to the same key. The restriction is that the data is delivered at most once. If a consumer was down and didn’t receive the published data, that data is lost. Also, the data is not persisted on disk. If Redis goes down, all Pub/Sub data is lost. Pub/Sub is suitable for metrics monitoring where some data loss is acceptable.
The List data structure in Redis can construct a FIFO (First-In-First-Out) queue. The consumer uses BLPOP to wait for messages in blocking mode, so a timeout should be applied. Consumers waiting on the same List form a consumer group where each message is consumed by only one consumer. As a Redis data structure, List can be persisted to disk.
Stream solves the restrictions of the above two methods. Consumers choose where to read messages from - “$” for new messages, “<id>” for a specific message id, or “0-0” for reading from the start.
In summary, database-backed and Redis-backed message queues are easy to maintain. If they can't satisfy our needs, dedicated message queue products are better. We'll compare two popular options next.
RabbitMQ vs. Kafka
For large companies that need reliable, scalable, and maintainable systems, evaluate message queue products on the following:
Functionality
Performance
Scalability
Ecosystem
The diagram below compares two typical message queue products: RabbitMQ and Kafka.
How They Work
RabbitMQ works like a messaging middleware - it pushes messages to consumers then deletes them upon acknowledgment. This avoids message pileups which RabbitMQ sees as problematic.
Kafka was originally built for massive log processing. It retains messages until expiration and lets consumers pull messages at their own pace.
Languages and APIs
RabbitMQ is written in Erlang which makes modifying the core code challenging. However, it offers very rich client API and library support.
Kafka uses Scala and Java but also has client libraries and APIs for popular languages like Python, Ruby, and Node.js.
Performance and Scalability
RabbitMQ handles tens of thousands of messages per second. Even on better hardware, throughput doesn’t go much higher.
Kafka can handle millions of messages per second with high scalability.
Ecosystem
Many modern big data and streaming applications integrate Kafka by default. This makes it a natural fit for these use cases.
Message Queue Use Cases
Now that we’ve covered the features of different message queues, let’s look at some examples of how to choose the right product.
Log Processing and Analysis
For an eCommerce site with services like shopping cart, orders, and payments, we need to analyze logs to investigate customer orders.
The diagram below shows a typical architecture uses the “ELK” stack:
ElasticSearch - indexes logs for full-text search
LogStash - log collection agent
Kibana - UI for search and visualizing logs
Kafka - distributed message queue
Keep reading with a 7-day free trial
Subscribe to
ByteByteGo Newsletterto keep reading this post and get 7 days of free access to the full post archives.A subscription gets you:
An extra deep dive on Thursdays Full archive Many expense it with team's learning budget Like Comment Restack © 2023 ByteByteGo
548 Market Street PMB 72296, San Francisco, CA 94104
Unsubscribe
by "ByteByteGo" <bytebytego@substack.com> - 12:50 - 17 Aug 2023 -
Forward Thinking on the recipe for Asia’s success story with Justin Yifu Lin
Start from what you have New from McKinsey Global Institute
Forward Thinking on the recipe for Asia’s success story with Justin Yifu Lin
Start from what you have Prefer audio? Listen to the podcast, and explore past episodes of the Forward Thinking podcast. Subscribe via Google Podcasts, Apple Podcasts, Spotify, Stitcher, or Amazon Music.
This email contains information about McKinsey's research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to our McKinsey Global Institute alert list.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Global Institute" <publishing@email.mckinsey.com> - 12:39 - 17 Aug 2023 -
Participate in our Capture the Flag Challenge happening 22 - 23 August
Schneider Electric
Boost your skills in cybersecurity!Schneider Electric is organising a jeopardy-style Capture The Flag (CTF) competition at Operational Technology Cybersecurity Expert Panel (OTCEP) Forum 2023 , and we would like to invite you to join!
Day 1: 22 August, 09:00 - 16:00 SGT
Day 2: 23 August, 09:00 SGT - 13:00 SGT
There will be some challenges on ICS/OT, Reverse Engineering, Thick Client, Mobile Application, and so on. These challenges range in difficulty from intermediate to expert level.
Anyone can participate but if you have some basic understanding of networking, programming or Linux command line, this competition is for you!
Secure your spot now and experience the thrill of creative problem-solving by registering now!Ace the challenge and be rewarded!Complete the CTF challenges and rise up the scoreboard. Exciting prizes await for top 3 leaders of the scoreboard!
(Up to $5,950 SGD worth of prizes)+ Lifecycle Services From energy and sustainability consulting to optimizing the life cycle of your assets, we have services to meet your business needs. Schneider Electric
46 Rungrojthanakul Building. 1st, 10th, 11th Floor, Ratchadapisek Road. Huaykwang
Bangkok - 10310, Thailand
Phone +662 617 5555© 2023 Schneider Electric. All Rights Reserved. Schneider Electric is a trademark and the property of Schneider Electric SE, its subsidiaries and affiliated companies. All other trademarks are the property of their respective owners.
by "Schneider Electric" <reply@se.com> - 04:02 - 17 Aug 2023 -
Feria de Seguridad ESS+ Attendees list 2023
Dear Exhibitors,
Feria de Seguridad ESS+ 2023 - attendees list is available now at a discounted price.
Could you let me know if you want to receive the Attendee List by emails?
You can use this list for your booth invitation, pre-show marketing campaigns, and appointment setting. Easy tracking, quick response, global reach, targeted marketing, ROI, email fosters long-term relationships, and increased sales.
Interested — just reply back as “Send Counts, Cost"
Regards,
Adrian Gomez
(Events & Tradeshow Specialist)
by "Adrian Gomez" <adrian.gomez@globistictec.com> - 10:30 - 16 Aug 2023 -
Optimize Fleet Efficiency with Advanced RPM Monitoring
Optimize Fleet Efficiency with Advanced RPM Monitoring
The deeper unfoldings of our RPM monitoring approach and its impact on operational efficiency and vehicle performance.The deeper unfoldings of our RPM monitoring approach and its impact on operational efficiency and vehicle performance.
Find out what makes our software stand out from the crowd
Customizable RPM Threshold
Empower fleet managers with the flexibility to set specific RPM limits or ranges based on individual preferences, vehicle types, or driving conditions.
Real-Time Insights at Fingertips
Access real-time RPM data for every vehicle in the fleet, right from your fleet management software.
Insightful Reports and Instant Alerts
Harness RPM Monitoring to steer fleet towards success with proactive decisions, real-time alerts, and customizable reports for proven performance enhancements.
Empower your clients with precision-powered RPM Monitoring
Uffizio Technologies Pvt. Ltd., 4th Floor, Metropolis, Opp. S.T Workshop, Valsad, Gujarat, 396001, India
by "Sunny Thakur" <sunny.thakur@uffizio.com> - 08:00 - 16 Aug 2023 -
Your best customer may be the one you already have
Re:think
Companies can grow with existing customers
ON EXPERIENCE-LED GROWTH
Focusing on existing customers to unlock growth
Harald FanderlMany established companies grappling with competition focus on new customer acquisition to drive growth. But, in fact, focusing on existing customers can better optimize the current business and lay the foundation for future growth.
Experience-led growth, a strategy anchored around the goal of creating great customer satisfaction, also leads to better employee satisfaction and performance. Why?
There are several reasons: if companies focus on customers and their experiences, they make them happier, and because customer journeys go across various silos in organizations, employees can collaborate more and employee satisfaction increases as a result. Higher customer satisfaction and employee performance translates into better financial results and unlocks growth. To make up for the loss of one existing customer, companies have to acquire three new customers. And 80 percent of the value creation achieved by successful growth companies comes from their core business—namely, generating new revenue from existing customers.
Creating a harmonized, seamless customer journey for existing customers can cost significantly less than acquiring new customers. Customers who are more satisfied typically have fewer questions and therefore cost less to maintain, and the likelihood of retaining satisfied customers is 20 to 30 percent higher than if customers are less satisfied. Our research shows that over time, leaders who focus on customer experience achieve not only higher shareholder returns but also up to two times higher revenue growth than those whose customers are not as happy.
This is more critical now than ever because incumbent companies are increasingly reaching a saturation phase. Growth is really slowing down for some, so doubling down on customer orientation can be a great source of finding adjacent areas to grow into. Also, with competition and new solutions being generated from start-ups at a fast pace, it’s important for incumbents to rethink their business models. Focusing more on existing customers is one way to unlock untapped potential.“To make up for the loss of one existing customer, companies have to acquire three new customers.”
One experience-led growth tactic that is working really well these days is for companies to set up a win room that brings together all the important departments in an organization to drive customer acquisition, retention, and operational excellence. With clients in energy, insurance, telecom, and more, we have been successful in establishing experience-led growth as a theme, creating complete transparency between different groups and a better shared understanding of the metrics that drive retention, cross-selling, and growth because they’re in a win room together.
At one energy company in Europe, there were eight or nine floors with roughly 100 people responsible for different parts of the customer acquisition journey all scattered around in a building. We put them all together on one floor. When employees would walk onto this floor each day, they would look up and see numbers with the sales targets of the day, week, month, and year. They could see how they were performing as a complete team. With that information, the analytics team, the marketing team, and the digital team were able to overachieve their sales targets. This led to 20 to 30 percent greater growth beyond their already high ambitions. Financial performance, customer satisfaction, and employee satisfaction measurements over two years showed that all of them were up. It demonstrates what can be achieved with pragmatic approaches across all sectors and industries.
Another important element for successful experience-led growth is ambitious company leadership. It starts in the executive suite, where an engaged CEO can lead everyone to join forces. It’s not just the sales guy delivering the sales numbers; operations plays an important role too. Depending on the company structure, other lines of business need to be brought in as well. Having alignment in top management about how to activate a customer-led approach is absolutely crucial.
The final critical part of effective customer-centric growth is measurement. It’s not only important to measure customer satisfaction or the net promoter score (a metric for customer success) but to prioritize customer journeys. Then you can get to a place where you can predict customer satisfaction through analytics, by anticipating which segments will delight which customers and help retain them, or encourage them to buy more.
Most important, leaders need to be open in their organizations about their transformational journeys. Invite employees in, help them to overcome their mindset blockers, and encourage them to learn new skills. Don’t just say, “Be more customer oriented.” Identify skill gaps and encourage employees to tackle experience-led growth as part of their career development. There’s a strong positive company cultural dimension in bringing people together around their most important asset, the customer.ABOUT THE AUTHOR
MORE FROM THIS AUTHOR
UP NEXTRobin Riedel on the future of drone delivery
Delivery by drone has been touted as the next big thing, but it seems to be always on the cusp of a breakthrough. Today, start-ups, big retailers, and others are garnering investment, working through issues with regulators, and gaining more customer acceptance. Widespread drone delivery may be just around the corner.
This email contains information about McKinsey’s research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to our McKinsey Quarterly alert list.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Quarterly" <publishing@email.mckinsey.com> - 02:29 - 16 Aug 2023 -
CRYPTO FOREX EXPERT TRADERS AND FINANCIAL INVESTMENT MANAGERS
Hello,
I'm Rebecca Williams a professional FOREX, CRYPTO and essential COMMODITY trader and MENTOR with a huge opportunity for investors with guaranteed ROI(Return on Investment) over a short and long term investment period.
I offer you endless opportunities of earning massive huge income from the comfort of your home without having to do any task through bitcoin mining and forex trading.
You can earn as much as $100,000 to $1,000,000 or more weekly either by mentorship or portfolio management depending on your investment capital.
Let me know if you’re interested in investing in our company platform.
Reply me accordingly through our email ( teamexpertcrypto.traders@gmail.com) for immediate and proper follow up .Thanks for giving me the audience.
Best Regards,
Rebecca Williams
Portfolio Manager/Trade (financial expert)
Email:teamexpertcrypto.traders@gmail.com
Telegram Channel: https//t.me/Crpto_Expert_Trader01
by "REBECCA WILLIAMS" <info@nycthings.com> - 07:35 - 16 Aug 2023 -
Join me on Thursday for Troubleshooting Applications and back end performance with APM 360 Webinar
Hi MD,
It's Liam Hurrell, Manager of Customer Training at New Relic University, here. Are you ready to revolutionise your application monitoring and troubleshooting practices with our latest offering, New Relic APM 360? If so, you can register for the free online workshop that I'll be hosting on Thursday, 17th August at 10 am BST / 11 am CEST.
APM 360 allows you to get a unified view of critical telemetry data across your stack and development lifecycle. Prevent issues before they escalate and troubleshoot faster with integrated infrastructure monitoring, error user impact analysis, and distributed tracing. In this 90-minute workshop, I’ll show you how New Relic APM 360 can help eliminate blind spots with guided workflows.
You can find the full agenda on the registration page here. While we recommend attending the hands-on workshop live, you can also register to receive the recording.
Hope to see you then,
Liam HurrellManager, Customer TrainingNew Relic
This email was sent to info@learn.odoo.com as a result of subscribing or providing consent to receive marketing communications from New Relic. You can tailor your email preferences at any time here.Privacy Policy © 2008-23 New Relic, Inc. All rights reserved
by "Liam Hurrell, New Relic" <emeamarketing@newrelic.com> - 05:37 - 15 Aug 2023 -
ข้อ จำกัด ของคลาวด์? พบกับเครือข่ายของเอดจ์
Schneider Electric
วิดีโอที่ต้องดูสำหรับผู้ให้บริการโซลูชันด้านไอทีวิดีโอสั้นๆ ของเราที่ชื่อ IT Happens จะดูว่าไม่มีอะไรแน่นอนใน IT เลย แต่สามารถเป็นได้ด้วยข้อเสนอ APC ของ Schneider Electric และโซลูชัน
EcoStruxure™การจัดการระยะไกลสามารถนำไปสู่ผลกำไรผู้ให้บริการโซลูชันด้านไอทีบางรายเสนอบริการด้านพลังงานที่มีการจัดการ แต่ยังคงเหลืออะไรทิ้งไว้อีกมากมาย การสัมมนาผ่านเว็บนี้แสดงให้เห็นถึงคุณค่าที่เป็นไปได้ที่คุณสามารถปลดล็อกได้สำหรับตัวคุณเองและลูกค้าของคุณEdge ช่วยเติมเต็มระบบคลาวด์แอปพลิเคชันที่สำคัญต่อธุรกิจต้องการทรัพยากรที่แตกต่างกันที่เอดจ์ ซึ่งข้อมูลจำเป็นต้องได้รับการประมวลผลให้ใกล้เคียงกับตำแหน่งที่ใช้และสร้างขึ้นต้องการการอัปเดตอุตสาหกรรมล่าสุดเพื่อก้าวนำหน้าคู่แข่งหรือไม่?ลงทะเบียนสำหรับ mySchneider IT Solutions Partner Program ที่ได้รับรางวัล+ Lifecycle Services From energy and sustainability consulting to optimizing the life cycle of your assets, we have services to meet your business needs. Schneider Electric
46 Rungrojthanakul Building. 1st, 10th, 11th Floor, Ratchadapisek Road. Huaykwang
Bangkok - 10310, Thailand
Phone +662 617 5555© 2023 Schneider Electric, All Rights Reserved. Schneider Electric trademarks are owned by Schneider Electric or its affiliated companies in the United States and other countries. All other trademarks are property of their respective owners.
by "APC by Schneider Electric" <reply@se.com> - 11:00 - 14 Aug 2023 -
เตรียมธุรกิจของคุณให้พร้อมสำหรับการเปิดเผยข้อมูล ESG
Schneider Electric
Sustainability Reporting ToolboxESG: เปลี่ยนความต้องการให้กลายเป็นโอกาสยินดีต้อนรับสู่ยุคของการรายงาน ESG!ในปัจจุบันหลายองค์กรทั่วโลกได้หันมาปฏิบัติ ตามกฎระเบียบการเปิดเผยฟุตพริ้นท์ ด้านสิ่งแวดล้อม สังคม และธรรมาภิบาล (ESG) กันเป็นจำนวนมาก และมีจำนวนเพิ่มขึ้นอย่างรวดเร็ว รวมทั้งในเอเชียแปซิฟิกก็เช่นกัน ขณะเดียวกัน สินทรัพย์ด้าน ESG กำลังจะมีมูลค่าเกิน 50 ล้านล้านดอลลาร์ภายในปี 2568 ซึ่งคิดเป็นมูลค่ามากกว่าหนึ่งในสามของสินทรัพย์ทั่วโลกที่อยู่ภายใต้การจัดการ ดังนั้นแรงกดดันที่มาจากนักลงทุนเรื่องการรายงานการริเริ่มโครงการด้าน ESG ก็จะมีมากขึ้น แม้ข้อบังคับเหล่านี้จะมาพร้อมกับความท้าทาย แต่ก็ถือเป็นโอกาสด้วยเช่นกันกลับสู่จุดเริ่มต้นเหตุใด ESG จึงมีความสำคัญต่อองค์กรของคุณ เกิดอะไรขึ้นกับการกำหนดมาตรฐานแนวทางการรายงานขององค์กร เราควรให้ความใส่ใจกับงานส่วนใด พบคำตอบได้ทันทีในคู่มือของเราถอดรหัสไปยังรายงาน ESG<divstyle="overflow-wrap: break-word; word-wrap: break-word; word-break: break-all;"> การลงทุน ESG ให้ประโยชน์ถึงสองเท่า: ทั้งโอกาสที่จะสร้างสิ่งที่ดีให้ต่อโลกที่มาพร้อมกับผลประโยชน์ทางธุรกิจ เพียงปฏิบัติตาม 3 ขั้นตอนนี้ เพื่อความก้าวหน้าในยุคใหม่:- ทำการประเมินสาระสำคัญ
- ดำเนินการสำรวจและรวบรวมข้อมูล
- เลือกกรอบการรายงาน ESG ที่เหมาะสม
หากคุณกำลังมองหาแหล่งข้อมูลที่ถูกต้อง ที่ปรึกษาด้านทรัพยากรบนคลาวด์และการขับเคลื่อนด้วย AI เราพร้อมดูแลคุณด้วย:เฟรมเวิร์คที่ตรงกับทั่วโลกการวิเคราะห์ข้อมูล ESGพัฒนาการทำงานภายในองค์กรการสื่อสารที่ชัดเจน+ Lifecycle Services From energy and sustainability consulting to optimizing the life cycle of your assets, we have services to meet your business needs. Schneider Electric
46 Rungrojthanakul Building. 1st, 10th, 11th Floor, Ratchadapisek Road. Huaykwang
Bangkok - 10310, Thailand
Phone +662 617 5555© 2023 Schneider Electric, All Rights Reserved. Schneider Electric trademarks are owned by Schneider Electric or its affiliated companies in the United States and other countries. All other trademarks are property of their respective owners.
by "Schneider Electric" <reply@se.com> - 10:02 - 14 Aug 2023 -
Know how parts inventory management is a game changer across multiple industries
Know how parts inventory management is a game changer across multiple industries
Explore how strategic fleet parts inventory management keeps vehicles on the road and businesses on the path to success.Explore how strategic fleet parts inventory management keeps vehicles on the road and businesses on the path to success.
Use Cases
Fleet Maintenance
Overcoming delayed repairs due to stockouts with real-time inventory tracking.
Heavy Machinery
Surpassing unplanned downtime with categorization feature for optimal spare parts management.
Discuss your use-case to get your business growing
Uffizio Technologies Pvt. Ltd., 4th Floor, Metropolis, Opp. S.T Workshop, Valsad, Gujarat, 396001, India
by "Sunny Thakur" <sunny.thakur@uffizio.com> - 08:00 - 14 Aug 2023 -
A leader’s quick-start guide to generative AI
You’ve bot this Brought to you by Liz Hilton Segel, chief client officer and managing partner, global industry practices, & Homayoun Hatami, managing partner, global client capabilities
The sheer speed with which generative AI (gen AI) has entered organizations has taken leaders by surprise. It took years for mainstream AI to reach some degree of maturity; in 2022, adoption had more than doubled since 2017, but the proportion of organizations using AI has plateaued between 50 and 60 percent for the past few years. By contrast, one gen AI tool alone reached one million users in just five days. Given the technology’s breakneck pace of evolution and adoption, companies can’t predict just where it will take them, but its business uses already abound. Whether you want to kick off a long-overdue digital transformation or jump-start an underperforming business unit, you may need to incorporate gen AI as an essential component. We’ve collected a wealth of strategies to help you get started.
The title of our latest research report, The state of AI in 2023: Generative AI’s breakout year, says it all. This year’s McKinsey Global Survey confirms the explosive growth of gen AI tools. Many of these tools are less than a year old, yet a third of our survey respondents say that their organizations already use gen AI in at least one business function; high performers deploy it in multiple business functions. But only about a fifth of companies have risk policies in place for gen AI, and these tend to center on intellectual property protection. “The real trap is that companies look at the risk too narrowly,” says McKinsey senior partner Alexander Sukharevsky. “There is a significant range of risks—social, humanitarian, sustainability—that companies need to pay attention to as well.” Businesses need to be “deliberate, structured, and holistic” in considering gen AI’s risks and opportunities, he suggests.
That’s the percentage of hours worked today that could be automated by 2030 with the addition of gen AI, according to new research led by McKinsey senior partners Kweilin Ellingrud and Oliva White and colleagues. Without gen AI, that figure would be 21.5 percent. The jury is out on whether gen AI may cause job losses, but historically, technological advances fuel employment and economic growth despite short-term disruptions. “The biggest impact for knowledge workers that we can state with certainty is that generative AI is likely to significantly change their mix of work activities,” note the McKinsey researchers.
That’s McKinsey senior partner Steve Reis and colleagues on how gen AI is transforming marketing and sales. For example, a gen AI algorithm could identify previously overlooked customer segments, with a gen AI tool drafting tailored content—such as social media posts and landing pages—for those segments. Most industries as well as functions stand to benefit from gen AI: software development could improve productivity, the fashion sector may bring products to market faster, and healthcare could organize and structure heavy volumes of unstructured data.
“It’s doing the kinds of stuff that we would not expect software to do,” says Wharton School professor Ethan Mollick about the unanticipated powers of gen AI. “It literally can write code for you. It can literally do reports for you. It can pass the bar exam.” (A gen AI model did that, performing as well or better than humans on the test.) But at its current stage, the technology may not always be reliable or consistent. In a conversation with McKinsey partner Michael Chui, Mollick suggests that an effective response to this is to treat gen AI as one would treat humans—by accepting that humans sometimes make mistakes and behave illogically. “It absolutely makes stuff up. It hallucinates. We don’t know the full principles, but that would be my starting point: thinking about it like a person.”
Our annual summer reading guide from leaders and editors is one of our most popular features—and this year, among the top books on the list is The Age of AI: And Our Human Future, whose authors assert in the preface that “the technology is changing human thought, knowledge, perception, and reality.” For a respite from technology, you may want to try fiction and poetry. For example, our readers highly recommend Trust, a Pulitzer Prize–winning novel centered on Wall Street in the 1920s, and McKinsey global managing partner Bob Sternfels favors Collected Poems of Robert Service, a volume left to him by his maternal grandfather: “He loved the old West and would recite these to me on car rides as a kid.”
Lead with intelligence, human and artificial.
— Edited by Rama Ramaswami, senior editor, New York
Share these insights
Did you enjoy this newsletter? Forward it to colleagues and friends so they can subscribe too. Was this issue forwarded to you? Sign up for it and sample our 40+ other free email subscriptions here.
This email contains information about McKinsey’s research, insights, services, or events. By opening our emails or clicking on links, you agree to our use of cookies and web tracking technology. For more information on how we use and protect your information, please review our privacy policy.
You received this email because you subscribed to the Leading Off newsletter.
Copyright © 2023 | McKinsey & Company, 3 World Trade Center, 175 Greenwich Street, New York, NY 10007
by "McKinsey Leading Off" <publishing@email.mckinsey.com> - 02:55 - 14 Aug 2023 -
You’re invited to the latest DevCon workshop: How To Build a Smart Queue Management System
You’re invited to the latest DevCon workshop: How To Build a Smart Queue Management System
Learn about Smart Queue Management SystemsHow To Build a Smart Queue Management System Step by Step? From Zero to Hero.
September 5, 2023; 7PM-8PM IST
Register now Md Abul,
Join us for a tutorial on how to create an intelligent retail queue management system using the OpenVINO™ toolkit and YOLOv8. By the end of the presentation, you'll have the knowledge and resources to build your own solution.
What you’ll learn:
- Step-by-step easy-to-follow Jupyter Notebook tutorial
- Real-time detection and tracking of people for efficient queue management and staffing optimization
- Optimized for multi-model workloads across various Intel processors
- Where to find resources; open-source code, dataset, videos, and a blog available on GitHub for easy customization and extension to your specific needs
Register today Adrian Boguszewski
AI Software Evangelist, Intel
Adrian, an OpenVINO developer evangelist, is frequently a speaker at data science conferences, enjoys working with big data and creating solutions for big companies in Poland.Anisha Udayakumar
AI Software Evangelist, Intel
Anisha is an AI Evangelist at Intel with a passion for the OpenVINO™ toolkit. She is a member of an innovation team that leverages cutting-edge technologies such as AI, Augmented Reality, Virtual Reality, Robotics, and XR to build rapid prototypes and vision-based retail solutions.On-Demand DevCon Workshops
OpenVINO 2023.0 – See What’s New
Harness Generative AI Acceleration with OpenVINO™ toolkit
Beyond the Continuum: The Importance of Quantization in Deep Learning
If you forward this email, your contact information will appear in any auto-populated form connected to links in this email.
This was sent to info@learn.odoo.com because you are subscribed to Webinars. To view and manage your marketing-related email preferences with Intel, please click here.
© 2023 Intel Corporation
Intel Corporation, 2200 Mission College Blvd., M/S RNB4-145, Santa Clara, CA 95054 USA. www.intel.com
Privacy | Cookies | *Trademarks | Unsubscribe | Manage Preferences
by "Intel Developer Zone" <intel.developer.zone@plan.intel.com> - 12:32 - 14 Aug 2023 -
EP72: OAuth 2.0 Explained With Simple Terms
EP72: OAuth 2.0 Explained With Simple Terms
This week’s system design refresher: Git Merge vs. Rebase vs. Squash Commit (Youtube video) OAuth 2.0 Explained With Simple Terms Top 4 Forms of Authentication Mechanisms Uber Tech Stack - CI/CD Leadership Styles Around The World Introducing New Relic Interactive Application Security Testing (IAST)(Sponsored) Open in app or online This week’s system design refresher:
Git Merge vs. Rebase vs. Squash Commit (Youtube video)
OAuth 2.0 Explained With Simple Terms
Top 4 Forms of Authentication Mechanisms
Uber Tech Stack - CI/CD
Leadership Styles Around The World
Introducing New Relic Interactive Application Security Testing (IAST)(Sponsored)
New Relic Interactive Application Security Testing (IAST) is now in public preview! Engineers, DevOps, and security teams can now find, fix, and verify high-risk vulnerabilities early and accurately to build more secure applications—and ship code faster.
Git Merge vs. Rebase vs. Squash Commit
Oauth 2.0 Explained With Simple Terms
OAuth 2.0 is a powerful and secure framework that allows different applications to securely interact with each other on behalf of users without sharing sensitive credentials.
The entities involved in OAuth are the User, the Server, and the Identity Provider (IDP).
What Can an OAuth Token Do?
When you use OAuth, you get an OAuth token that represents your identity and permissions. This token can do a few important things:
Single Sign-On (SSO): With an OAuth token, you can log into multiple services or apps using just one login, making life easier and safer.
Authorization Across Systems: The OAuth token allows you to share your authorization or access rights across various systems, so you don't have to log in separately everywhere.
Accessing User Profile: Apps with an OAuth token can access certain parts of your user profile that you allow, but they won't see everything.
Remember, OAuth 2.0 is all about keeping you and your data safe while making your online experiences seamless and hassle-free across different applications and services.
Over to you: Imagine you have a magical power to grant one wish to OAuth 2.0. What would that be? Maybe your suggestions actually lead to OAuth 3.Latest articles
If you’re not a paid subscriber, here’s what you missed this month.
"I Was Under Leveled!" — Avoiding the Tragedy of Making Only $500k a Year
Network Protocols behind Server Push, Online Gaming, and Emails
To receive all the full articles and support ByteByteGo, consider subscribing:
Top 4 Forms of Authentication Mechanisms
SSH Keys:
Cryptographic keys are used to access remote systems and servers securelyOAuth Tokens:
Tokens that provide limited access to user data on third-party applicationsSSL Certificates:
Digital certificates ensure secure and encrypted communication between servers and clientsCredentials:
User authentication information is used to verify and grant access to various systems and services
Over to you: How do you manage those security keys? Is it a good idea to put them in a GitHub repository?
Guest post by Govardhana Miriyala Kannaiah.
Uber Tech Stack - CI/CD
Uber is one of the most innovative companies in the engineering field. Let’s take a look at their CI/CD tech stacks.
Note: This post is based on research on Uber engineering blogs. If you spot any inaccuracies, please let us know.
Project planning: JIRA
Backend services: Spring Boot to develop their backend services. And to make things even faster, they've created a nifty configuration system called Flipr that allows for speedy configuration releases.
Code issues: They developed NullAway to tackle NullPointer problems and NEAL to lint the code. Plus, they built Piranha to clean out-dated feature flags.
Repository: They believe in Monorepo. It uses Bazel on a large scale.
Testing: They use SLATE to manage short-lived testing environments and rely on Shadower for load testing by replaying production traffic. They even developed Ballast to ensure a smooth user experience.
Experiment platform: it is based on deep learning and they've generously open-sourced parts of it, like Pyro.
Build: Uber packages their services into containers using uBuild. It's their go-to tool, powered by Buildkite, for all the packaging tasks.
Deploying applications: Netflix Spinnaker. It's their trusted tool for getting things into production smoothly and efficiently.
Monitoring: Uber built their own monitoring systems. They use the uMetric platform, built on Cassandra, to keep things consistent.
Special tooling: Uber relies on Peloton for capacity planning, scheduling, and operations. Crane builds a multi-cloud infrastructure to optimize costs. And with uAct and the OnCall dashboard, they've got event tracing and on-call duty management covered.
Have you ever used any of Uber's tech stack for CI/CD? What are your thoughts on their CI/CD setup?Leadership Styles Around The World
Different leadership styles can be profoundly influenced by cultural differences. Do you agree with the diagram?
Credit: ‘When cultures collide’ book by Richard D. Lewis
Latest articles
Here are the latest articles you may have missed:
To receive all the full articles and support ByteByteGo, consider subscribing:
Like Comment Restack © 2023 ByteByteGo
548 Market Street PMB 72296, San Francisco, CA 94104
Unsubscribe
by "ByteByteGo" <bytebytego@substack.com> - 11:35 - 12 Aug 2023