Systems | Development | Analytics | API | Testing

Building a REST API with AWS Gateway and Python

AWS Gateway is a powerful tool for building APIs that scale to meet the demands of modern web and mobile applications. With AWS Gateway, you can create RESTful APIs that expose your data and business logic to developers who can then build rich, interactive applications that consume your API. REST API is an industry standard for building scalable, distributed web applications. With AWS Gateway, you can easily build a REST API that supports both GET and POST methods, as well as complex query parameters.

Manufacturing Data Ingestion into Snowflake

Accessing data from the manufacturing shop floor is one of the key topics of interest with the majority of cloud platform vendors due to the pace of Industry 4.0 adoption. Industry 4.0, also known as the Fourth Industrial Revolution, refers to the emerging trend of technological transformation in manufacturing and related industries.

11 Predictions Data Experts Have for the Year Ahead

It’s 2023 and with the new year comes an opportunity to drive innovation, growth, and digital transformation with data in the face of ongoing economic turbulence. If Snowflake’s report, How to Win in Today’s Data Economy is any indication, data-driven organizations are poised to emerge as the winners of the year with 77% Data Economy Leaders, which is only 6% of those surveyed, experiencing annual revenue growth versus 36% of Data Economy Laggards, the lowest-performing survey group.

Building a RESTful API with AWS Lambda and Express

AWS Lambda is a serverless computing service provided by Amazon Web Services (AWS) that allows you to run code without provisioning or managing servers. Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Together, AWS Lambda and Node.js can be used to create a RESTful API that can be triggered by events such as an HTTP request.

Data Driven Marketing: Small Businesses' Ticket to the Top

According to the U.S. Small Business Administration’s Office of Advocacy, small businesses account for approximately 99.9% of all businesses. That’s a massive chunk of the U.S. economy. While they are high in number, the issues they face are relatively higher, too. Nearly 35% of small business owners report ‌that they aren’t generating any profits, with inflation being the biggest of their worries.

How to launch a modern analytics strategy

We’ve established that we’re living in the defining decade of data. Data underpins the seismic technology shifts of the past few years, transforming the way we buy, work, make business decisions, even value our companies. As ThoughtSpot’s co-founder Ajeet Singh said, “Once in a generation, the opportunities to create a legacy increase massively. It happens when truly tectonic shifts happen in the ecosystem. We’re living through one of those times.”

DevSecOps Benefits & Challenges

DevSecOps is about ensuring security throughout the software cycle. While it offers many benefits, it also has its own challenges that you must understand. Performing AST (Application Security Testing) is a common and effective way to find vulnerabilities and weaknesses in an application and make it resistant to security threats. Traditionally, AST has been performed at the end of the software/application development process, more like an afterthought.

Continual + Hightouch: The AI for CX Upgrade

With inflation and other disruptive market dynamics massively impacting consumer behavior, is it any surprise that personalization tops the list of strategic actions for CMOs in 2023? Yep, people tend to stick around when digital products and experiences fulfill their personal needs quickly and accurately. And topping the list of powerful tools for personalization? Machine learning and AI, of course, from product recommendations to targeted offers based on digital customer and behavioral data.

Calling Ruby Methods in C: Avoid Memory Leaks

Memory leaks are a pain for gem users. They are hard to track and can lead to expensive infrastructure costs. Memory leaks within a C extension are even worse. You'll see a lot of tools and articles about finding leaks in Ruby. However, you don't have the same access to internals in C. A naive usage of rb_funcall can cause memory leaks: it's much better to use rb_protect instead. So, if you are a C extension writer, please read on for the sake of developers who will use your gem. Let's get started!