Skip to main content

Revolution of technologies

Our scientists has discovered everything in there biggest versions in the beginning.

Example: Memory Storage

Once an item is discovered, we were moving in the direction of fine tuning it. Eventually there sizes also get reduced in all the way. i.e) hardware and software components or physical and logical components.

In Coimbatore, A science museum is there (G.D Naidu museum). There you can see, most of the electric and electronic materials starting stage to current versions. 

This will inspire all the people who want to become an inventor.

-
Guna Anban G


தமிழாக்கம்

நமது அறிவியல் அறிஞர்களின் அனைத்து கண்டுபிடிப்புகளும் முதலில் பெரியனவாகவே இருந்தன.

எடுத்துக்காட்டுக்கு தகவல் சேமிக்கப்படும் தொழில்நுட்பத்தை சொல்லலாம்.

ஒவ்வொரு தொழில்நுட்ப கட்டமைப்புகளும் அவற்றின் திறன் மேம்படும் பொருட்டு மெருகேற்றப்படும். அதனாலேயே பொதுவாக அனைத்து கண்டுபிடிப்புகளும் காலப்போக்கில் சிறியனவாக மாற்றம் பெறுகின்றன. இதில் சிறியனவாக என்பதன் பொருள், உருவத்திலும், வடிவத்திலும், உள் மற்றும் வெளி கட்டமைப்புகளும் ஆகும்.

கோயம்புத்தூரில் (இந்திய நாட்டில் தமிழ்நாடு மாநிலத்தில் ஒரு மாவட்டம்) அறிவியல் அருங்காட்சியகம் ஒன்று அமைக்கப்பட்டுள்ளது (G.D Naidu அருங்காட்சியகம்). அங்கே அனைத்து வகையான மின்சார மற்றும் மின்னணு துறைகளின் தொடக்கம் முதல் தற்போது வரையிலான கண்டுபிடிப்புகள் வைக்கப் பெற்றுள்ளன.

அறிவியல் அறிஞர்கள் ஆக ஊக்கம் வேண்டும் என்று நினைப்பவர்கள் இங்கே சென்று பயன்பெறலாம்.

நன்றி,
குண அன்பன்

Comments

Popular posts from this blog

AWS - EC2 Instance Start / Stop using AWS Lambda Python

Steps to Setup Lambda to Start / Stop EC2 instances: 1) Create a Lambda Function with 'Author from scratch' and with Function name 'ecStartInstance' and Runtime 'Python 3.8' 2) Choose new role with basic Lambda permission 3) Create policy using IAM role 4) Click on JSON Editor option and update EC2 instance policy json and click on 'Review Policy' JSON: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents" ], "Resource": "arn:aws:logs:*:*:*" }, { "Effect": "Allow", "Action": [ "ec2:Start*", "ec2:Stop*" ], "Resource": "*" } ] } 5) Give name ...

NASA's EMIT - Mineral dust investigator

Installing Postgres using Docker Container - Ubuntu 18.04

 Step1: Install Docker using Ubuntu Terminal Command: sudo apt install docker.io Step 2: Check docker is available command: docker Step 3: Check Docker Service is up and running. command: sudo service docker status Step 4: Pull latest postgres into docker command: docker pull postgres Step 5: check docker image is available cmd: docker images Step 6: Run the docker postgres image and validate container started running. cmd: sudo docker run --name psql-ultra -e POSTGRES_PASSWORD=master -d postgres sudo docker ps Note: postgres port 5432 and ubuntu 5432 tcp port has to get update. So normal -p command with docker won't work. Hope this helps!