SShortSingh.
Back to feed

CIT Students Explore AWS Lambda and IAM in Cloud-Native Workshop Session 2

0
·1 views

The Department of Computing at Coimbatore Institute of Technology held the second session of a hands-on Cloud-Native Systems and Applied AI Integration workshop on 15 September 2026. The session was led by Mr. Santhosh NC, Lead Infrastructure Consultant at Thoughtworks, Coimbatore, and targeted M.Sc. AI and ML students from the Five Year Integrated Programme. Participants deepened their understanding of EC2, practised moving datasets from Kaggle through EC2 to S3, and were introduced to serverless computing using AWS Lambda. The session also covered IAM roles for secure permission management and used CloudWatch Logs to monitor and debug Lambda function executions. The workshop was coordinated by faculty members Dr. M. Sujithra, Dr. K. E. Hemapriya, and Dr. R. Sudha, under the deanship of Dr. K. Umamaheswari.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingHacker News ·

Developer explains AI tool calling using just 40 lines of plain JavaScript

A developer has published a concise tutorial demonstrating how AI tool calling works using only 40 lines of vanilla JavaScript, with no external libraries required. The lesson, dated September 15, 2026, is part of a series hosted on the Buttercup platform. Tool calling is a key AI capability that allows language models to invoke external functions or APIs to complete tasks. The tutorial aims to demystify the concept by breaking it down into minimal, readable code. The post was shared on Hacker News, where it attracted early attention from the developer community.

0
ProgrammingDEV Community ·

Poja Uses Naming Conventions to Auto-Wire AWS Infrastructure for Spring Boot Apps

Spring Boot developers already rely on conventions like package placement and classpath scanning to wire application internals, but AWS infrastructure — queues, retries, permissions, and routing — typically still requires manual configuration. This gap means a simple requirement like async processing translates into a complex set of infrastructure decisions that developers must declare separately from their application code. Poja, a framework built on top of Spring Boot, extends the convention-over-configuration principle to cloud infrastructure by inferring SQS queues, dead-letter queues, and visibility timeouts from just two developer-defined values in the event class. Developers need only extend a base event class, name the consumer service after the event, and place both in expected packages — Poja resolves the wiring through string concatenation and calculated timeouts. The approach aims to eliminate the split between application logic and infrastructure declaration by treating AWS resource configuration as a derivable convention rather than an explicit task.

0
ProgrammingDEV Community ·

Charts.css, ProvChart, FSCSS: Three CSS-native charting tools without JS libraries

Three open-source tools — Charts.css, ProvChart, and FSCSS (st-core) — offer ways to render charts without shipping heavyweight JavaScript chart libraries, which typically add 40–150 KB to page load. Charts.css converts semantic HTML tables into visual charts using CSS classes, making it well-suited for accessible, content-driven pages like blogs and static sites. ProvChart compiles JSON data into scoped HTML, CSS, or SVG at build time, targeting performance-sensitive pages where first-paint speed and zero chart-runtime hydration are priorities. FSCSS (st-core) uses a dedicated .fscss syntax that compiles to native CSS, designed for design systems and component libraries shared across multiple frameworks. The three tools are not interchangeable but complementary, and organizations may use all three depending on whether charts appear in documentation, API-fed dashboards, or shared UI kits.

0
ProgrammingDEV Community ·

Microsoft Document Intelligence SDK Turns Scanned PDFs Into Structured Data for AI Pipelines

Microsoft's Document Intelligence SDK, formerly known as Form Recognizer, is a core but often overlooked component in AI document processing pipelines. The SDK offers two main clients: one for running document analysis and another for managing custom-trained models. It supports prebuilt models for common document types such as invoices, receipts, and IDs, as well as custom extraction models trained on user-labeled data. A classifier layer can route documents of unknown type to the appropriate model, making it practical for real-world pipelines that handle mixed document formats. The SDK can convert scanned PDFs into structured markdown, preserving headings and tables, which makes it particularly useful for retrieval-augmented generation applications.