Ever wondered how many programs start automatically with your Windows ?. How these programs slow down your PC, use Sysinternals AutoRuns utility to inspect your registry.
Introduction to Artificial Intelligence & Generative AI What is Artificial Intelligence? AI refers to machines or systems designed to simulate human intelligence. Uses algorithms to process data and make decisions. Encompasses areas like machine learning, natural language processing. Key Types of AI Narrow AI (Weak AI): Task-specific systems (e.g., Siri, chatbots). General AI (Strong AI): Hypothetical machines with human-like reasoning. Superintelligent AI: AI that surpasses human intelligence (future possibility). What is Generative AI? Generative AI creates new content, such as images, text, or music. Uses advanced machine learning techniques like neural networks. Examples: DALL·E (images), GPT (text), and AIVA (music composition). How Does Generative AI Work? Trains on large datasets (e.g., images, text). Learns patterns, structures, and features in data. Generates original content based on learned patterns. A...
This simple script will show the total memory, free memory and percentage of memory used. Have tested it on Ubuntu 14/16 but will work on CentOS as well #!/bin/bash freemem=$(($(free -m |grep "buffers/cache:"|awk '{print $4}'))) totalmem=$(($(free -m |awk 'NR==2 {print $2}'))) usage=$(($totalmem-$freemem)) echo "Memory used: $usage" echo "Total memory: $totalmem" usage=$(($usage*100 / $totalmem)) echo "Usage percentage: $usage" echo "Free memory: $freemem" echo "$TIMESTAMP $totalmem $usage $freemem"
Comments