ALMUC

ALMUC ALMUC is organized by ALMUC (Application Lifecycle Management User Community). ALMUC is a voluntary and non-profit technology agnostic group.

AI Conference 2025 is organized by Application Lifecycle Management User Community (ALMUC). ALMUC is a charter established in TechNation. ALMUC is a vendor-neutral community group awhich voids promoting or endorsing specific products or services from particular vendors. We meet regularly in Kuala Lumpur, Malaysia. AI Conference 2025 is one of the most remarkable events that bring together organiza

tions from various sectors including governmental, non-governmental, private, international and bilateral organizations under one roof, thereby serving as the platform to share knowledge and experience of AI from the industry experts such as Microsoft Most Valuable Professional awardees. AI Conference 2025 provides the most comprehensive technical education on AI . The speakers at AI Conference 2025 will arm you with essential knowledge to through presentations and demonstrations. Why attend AI Conference 2025? AI Conference 2025 is the premiere conference and exposition for AI in Malaysia.

1) Get Refreshed: Best practices, roadmaps, code samples, and more from Microsoft Most Valuable Professionals and industry experts.

2) Get Connected: Collaborative seminar and networking with Microsoft Most Valuable Professionals and industry experts.

3) Get Skills: Seminar for implementing new and important Microsoft Application Lifecycle Management functionality.

4) Get more out of various AI technologies: Technical know-how you want and need for your current technology investment, or for new AI capabilities that you want to adopt.

5) Get innovative for your company and your customers: Techniques, strategies, and tools for reducing IT and business complexity inside the organization and across your business network through AI. Who should attend AI Conference 2025?
• CIOs • CTOs • CEOs • Directors • Strategy Directors • IT Directors • Heads of Business Development • Product Managers • Project Managers • QA Managers • Business Analysts • Business Development Managers • VPs of Technology • Software Architects • Senior Software Developers

From Idea to Impact:  How Growing Businesses Scale with AzureYou don’t need a massive IT team, long development cycles, ...
03/06/2026

From Idea to Impact: How Growing Businesses Scale with Azure

You don’t need a massive IT team, long development cycles, complex tools or a big upfront investment to start delivering value with AI. Read the eBook From Idea to Impact: How Growing Businesses Scale with Azure to: See real-world success stories featuring businesses that are bringing their AI ideas to fruition. Learn how to ship AI with the team you already have....

You don’t need a massive IT team, long development cycles, complex tools or a big upfront investment to start delivering value with AI. Read the eBook From Idea to Impact: How Growing Business…

Becoming an AI-First Firm  in Financial ServicesFor most financial services firms, cloud migration is key to driving the...
03/06/2026

Becoming an AI-First Firm in Financial Services

For most financial services firms, cloud migration is key to driving the next phase of AI transformation. Move to Microsoft for Financial Services for a transparent, secure, AI-ready data platform with built-in regulatory alignment. Read Becoming an AI-First Firm in Financial Services to learn how to migrate to the Microsoft Cloud in five practical phases. You’ll discover how to: Accelerate AI adoption, innovation and business value with the secure, compliant Microsoft Cloud Adoption Framework....

For most financial services firms, cloud migration is key to driving the next phase of AI transformation. Move to Microsoft for Financial Services for a transparent, secure, AI-ready data platform …

Update one product row in PostgreSQL using SQLAlchemyThis blog articlet explains the uploaded Python script update_produ...
01/06/2026

Update one product row in PostgreSQL using SQLAlchemy

This blog articlet explains the uploaded Python script update_product.py and includes the relevant code for every section. It is written as a code blog / technical report: code first, explanation immediately after. Overview (What the script does) The script updates exactly one row in the PostgreSQL “products” table using SQLAlchemy Core. You provide the primary key value via --id and one or more column assignments via repeated --set column=value arguments....

https://chanmingman.wordpress.com/2026/06/02/update-one-product-row-in-postgresql-using-sqlalchemy/

This blog articlet explains the uploaded Python script update_product.py and includes the relevant code for every section. It is written as a code blog / technical report: code first, explanation i…

Creating Multiple Group Folders with PythonThis blog article explains a simple Python script that automatically creates ...
30/05/2026

Creating Multiple Group Folders with Python

This blog article explains a simple Python script that automatically creates multiple group folders inside a target directory. The script is useful for organizing coursework, projects, or team-based files where standardized folder names are needed. Purpose of the Script The script prompts the user for a folder path and the number of groups required. It then creates folders named group1, group2, group3, and so on inside the specified directory....

This blog article explains a simple Python script that automatically creates multiple group folders inside a target directory. The script is useful for organizing coursework, projects, or team-base…

CTO May 2026 articles and resourcesThese are the good reads found in this month. To Succeed with AI, You’ve Got to Nail ...
29/05/2026

CTO May 2026 articles and resources

These are the good reads found in this month. To Succeed with AI, You’ve Got to Nail the Basics Satisfying Customers, Both Internal and External Focus on Process Act on Fact (and Measure the Right Stuff) The AI governance imperative you can’t afford to ignore Governing blind The governance bottleneck Observing output is not enough This exec offers 4 ways to be a successful innovator in the age of agentic AI…...

These are the good reads found in this month. To Succeed with AI, You’ve Got to Nail the Basics Satisfying Customers, Both Internal and External Focus on Process Act on Fact (and Measure the Right …

Reading Data from PostgreSQL Using SQLAlchemy (Python)Working with relational databases is a fundamental task in backend...
27/05/2026

Reading Data from PostgreSQL Using SQLAlchemy (Python)

Working with relational databases is a fundamental task in backend and data-driven Python applications. This blog explains a Python script named read_products.py, which demonstrates how to read data from a PostgreSQL database using SQLAlchemy. The script is designed in a clean, modular way and supports:• Reading one product by primary key• Reading multiple products with a limit• Safe session handling and error management…...

https://chanmingman.wordpress.com/2026/05/27/reading-data-from-postgresql-using-sqlalchemy-python/

Working with relational databases is a fundamental task in backend and data-driven Python applications. This blog explains a Python script named read_products.py, which demonstrates how to read dat…

Insert into Customer Database with SQLAlchemy PythonThis blog article walks through a practical Python example that uses...
23/05/2026

Insert into Customer Database with SQLAlchemy Python

This blog article walks through a practical Python example that uses SQLAlchemy ORM to define a Customer table and insert records into a PostgreSQL database. 1. Overview of the Script The script demonstrates how to:- Connect to a PostgreSQL database using SQLAlchemy- Define a database model using ORM- Insert a new customer record safely and cleanly 2. Database Setup and Engine Creation…...

This blog article walks through a practical Python example that uses SQLAlchemy ORM to define a Customer table and insert records into a PostgreSQL database. 1. Overview of the Script The script de…

Quick-Select Sort in C++ Code Explained Section by SectionThis blog article explains the Quick Sort program by placing t...
21/05/2026

Quick-Select Sort in C++ Code Explained Section by Section

This blog article explains the Quick Sort program by placing the relevant C++ code directly inside each explanation section. Every part of the code is shown and explained. Nothing is omitted. 1. Header Files and Namespace using namespace std; The iostream header is used for console output with cout. The vector header allows dynamic arrays. The std namespace removes the need to prefix standard library components with std::....

This blog article explains the Quick Sort program by placing the relevant C++ code directly inside each explanation section. Every part of the code is shown and explained. Nothing is omitted. 1. He…

Visualizing Heap Sort Step by Step with a Tree View (C++)Heap Sort is often taught as an array-based algorithm, which ca...
21/05/2026

Visualizing Heap Sort Step by Step with a Tree View (C++)

Heap Sort is often taught as an array-based algorithm, which can make it feel abstract and hard to visualize. The C++ program in heapsort_tree_steps.cpp takes a different approach: it prints every step of Heap Sort and visualizes the heap as a tree after each operation. This makes the algorithm much easier to understand, especially for students or anyone learning data structures....

Heap Sort is often taught as an array-based algorithm, which can make it feel abstract and hard to visualize. The C++ program in heapsort_tree_steps.cpp takes a different approach: it prints every …

11/05/2026

🚀 FUSION CRM: TAKE FULL CONTROL OF YOUR SALES PIPELINE! 🚀
Are you ready to supercharge your sales team and close deals faster than ever? Fusion CRM, developed by K365labs, is your all-in-one sales command center—designed to help you capture leads, manage relationships, and drive revenue with complete visibility and control.

🔥 [WHY FUSION CRM IS YOUR SALES GAME-CHANGER]

📊 All-in-One Sales Management
Manage leads, contacts, accounts, and opportunities seamlessly in one centralized platform.

⚡ Smarter Pipelines, Faster Closures
Track every stage of your deals and move prospects through your pipeline with precision and speed.

📈 Real-Time Insights & Forecasting
Make confident decisions with powerful dashboards, reports, and revenue forecasts at your fingertips.

For inquiries, demos, or collaborations, you can reach out to our team:
🌐 Website: www.k365labs.com
📧 Email: [email protected]
📞 Phone: +6019-5579123

Address

21-1, Jalan 3/93, Off Jalan Lombong, Taman Miharja
Kuala Lumpur
55200

Alerts

Be the first to know and let us send you an email when ALMUC posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Shortcuts

Featured

Share