Friday, November 14, 2025

🤖 AI Tools and Technologies [14-Nov-2025]

 

🤖 AI Tools and Technologies

Generative AI & Large Language Models

  • GPT-5.1 Released by OpenAI - November 12 rollout introduces Instant and Thinking modes with adaptive reasoning, personalized personalities, and warmer conversational tone for faster and more flexible responses.
  • MAKER Achieves Million-Step LLM Reasoning - Cognizant breakthrough demonstrates how distributed AI agents across millions of steps can achieve unprecedented reasoning reliability and near-zero error rates.
  • Dragon Hatchling AI Architecture - Novel LLM architecture modeled after human brain structure proposed as potential bridge toward AGI development.

AI Development Tools & Frameworks

Video & Media Creation AI

  • Velvet Platform Launch - End-to-end AI video generation platform launched on Product Hunt (Nov 13); create professional videos in 1 minute using Sora, Runway, and other advanced models.
  • Sora 2 Video API - Complete API guide and free alternatives now available for Sora 2 advanced video generation capabilities.
  • Marble by World Labs - Frontier multimodal world model enabling high-fidelity, persistent 3D world creation from text/images.

AI Music/Song Creation Tools

  • AI Song Reaches Billboard #1 - AI-generated music tracks now dominating commercial charts; Udio music creation tool demonstrated capability to compete with human artists.
  • Udio Music Generation Improvements - Latest Udio updates showcase enhanced sound quality and improved model variations for music creation.

Image Generation & Computer Vision

AI Safety & Ethics

AI Governance & Regulation

Free AI/ML Training & Certification

AI Observability & Monitoring

Wednesday, November 12, 2025

🤖 AI Tools and Technologies [12-Nov-2025]

 

🤖 AI Tools and Technologies

Generative AI & Large Language Models

AI Video/Audio/Media Creation Tools

AI Chatbot/Agents Tools

  • OpenAI Agent Builder & ChatKit - Revolutionary feature enabling fully embedded AI agents in user context, moving beyond traditional workflows.
  • D-ID AI Agents Platform - Create lifelike AI agents with conversational avatars, intelligent agents, and real-time video for digital interactions.
  • AI Agents in Customer Service - 2025 Forrester study shows AI agents cut call handle time by 120 seconds while delivering ROI value.

AI Safety & Ethics

AI Development Tools & Frameworks



Tuesday, November 11, 2025

💡 TRIZ INNOVATION METHODOLOGY [11-Nov-2025]

 

💡 TRIZ INNOVATION METHODOLOGY

TRIZ Principles & Theory

  • TRIZ 40 Principles Documentation - Theory of Inventive Problem Solving (TRIZ), developed by Genrich Altshuller, offers structured approach to systematic innovation and creative problem-solving.
  • TRIZ Applied to Feng Shui Design - Real-world application demonstrates TRIZ as system for recognizing recurrent solution patterns across diverse domains beyond engineering.

TRIZ AI & Automation

  • TRIZ Blockchain Innovation ICP Caffeine AI - ICP Caffeine AI integration demonstrates TRIZ-inspired innovation in blockchain, with token value surge of 45% to $5.20 driven by expanded prompt capabilities (Nov 2025).
  • FBS & TRIZ in Value Co-Creation - Academic research applies Function-Behavior-Structure (FBS) and TRIZ methodologies to systematic design optimization for value co-creation systems.

TRIZ Tools & Problem-Solving Applications

TRIZ Pedagogy & Training

Monday, November 10, 2025

💡 TRIZ Innovation Methodology [10-Nov-2025]

💡 TRIZ Innovation Methodology

📚 TRIZ Principles & Theory

🤖 TRIZ AI & Automation

🛠️ TRIZ Tools & Software

📖 Innovation Case Studies


📌 Key Insights & Highlights

🧠 Innovation Through Constraint: TRIZ + AI integration is emerging as a powerful combination for enterprise problem-solving, with real applications in manufacturing and beyond. The Theory of Constraints combined with AI chatbots represents a new frontier in structured innovation.

Saturday, November 8, 2025

Configure New SAS Drive

Configure New SAS Drive

https://www.linux.com/learn/intro-to-linux/2017/3/how-format-storage-devices-linux
https://www.certdepot.net/rhel7-create-delete-partitions/


https://askubuntu.com/questions/154180/how-to-mount-a-new-drive-on-startup

First of all your /dev/sdb isn't partitioned. I am assuming this is the disk you want to mount.

WARNING: THIS WILL DESTROY ANY DATA ON YOUR TARGET DISK


Run sudo fdisk /dev/sdb
  1. Press O and press Enter (creates a new table)
  2. Press N and press Enter (creates a new partition)
  3. Press P and press Enter (makes a primary partition)
  4. Then press 1 and press Enter (creates it as the 1st partition)
  5. Finally, press W (this will write any changes to disk)

Okay now you have a partition, now you need a filesystem.
  1. Run sudo mkfs.ext4 /dev/sdb1
  2. Now you can add it to fstab
    You need to add it to /etc/fstab use your favourite text editor
    Be careful with this file as it can quite easily cause your system not to boot.
    Add a line for the drive, the format would look like this.
    This assumes the partition is formatted as ext4 as per mkfs above
    #device        mountpoint             fstype    options  dump   fsck
    
    /dev/sdb1    /home/yourname/mydata    ext4    defaults    0    1
    

Then on the next reboot it will auto mount.

Simple steps to make kernel module

## Steps to create kernel module

1. Prepare source file in *.c, eg. simplemodule.c
2. Prepare Makefile for compile the source file, type "echo obj-m := simplemodule.o > Makefile"
3. Compile execution, "make -C /lib/modules/`uname -r`/build M=$PWD modules
4. Load module, "insmod ./simplemodule.ko"
5. Remove module, "rmmod simplemodule"
6. Check on the kernel module loaded and remove messages, "dmesg | tail"

Saturday, April 11, 2020

Listing files in full path (Linux)




Listing makefile in full path into a list via git ls-files
git ls-files | grep Makefile | tee makelist.txt