Posts

QRCODE Using Docker

 Alright — you want to run a PHP website on Oracle 10g Personal Edition inside Docker, publish it to Docker Hub , and later pull and run it again. Since Oracle 10g is very old (2003 era) and not officially distributed via Docker, you can’t just docker pull oracle:10g . You’ll have to manually install it inside a base image and commit that as your own custom image. Here’s a step-by-step plan: 1. Prepare your files You will need: Oracle 10g installer (Personal Edition) — usually a .zip or .tar.gz from old Oracle media (must be licensed to you). PHP website code . Dockerfile to build your environment. ⚠️ Oracle licensing terms mean you can’t make this image public with the database pre-installed — so you can either: Keep it private on Docker Hub , or Make a base image without Oracle and install at runtime. 2. Create a Dockerfile Here’s an example Dockerfile that: Uses Oracle Linux as a base (10g runs best on it). Installs required package...

githubs

Repositories Refer :  https://github.com/git-guides for help -------------------------------------------------------------------------------------------------------------------------------- https://github.com/TANSCHEC : rmc.tnsche@gmail.com https://github.com/Yazh24 :    aurmc2024@gmail.com https://github.com/aurmc2018 aurmc2018@gmail.com

#1 Proposal for e-Hub Systems at TANSCHE

Proposal for e_Hub Server Systems at TANSCHE 🏛️ Tamil Nadu State Council for Higher Education (TANSCHE) Date:  [15-07-2025] To:  The Vice-Chairman Subject:  Comprehensive Proposal for Establishing a Centralized Digital e-Hub at TANSCHE 📘 Executive Summary As part of TANSCHE’s commitment to digital innovation, this proposal outlines the establishment of a centralized  e-Hub  to strengthen digital communication, content hosting, and data delivery infrastructure. The e-Hub will consist of a  dedicated Web Server ,  Uninterruptible Power Supply (UPS) ,  high-speed Internet with Static IP , and a fully equipped  server room  to ensure security, uptime, and reliability. This infrastructure will support TANSCHE’s mission to communicate effectively with over  1.7 million students , faculty members, and affiliated universities by hosting its own website, academic platforms, and digital services. 🎯 Objectives Enable...

E-HUB PROPOSAL

 Here’s a comparison of entry-level to mid-range server configurations from Dell , HP (HPE) , and Lenovo as of 2025, commonly used in educational institutions, research centers, and small to medium enterprises. These are rack and tower server models, which are popular in institutional settings. ✅ 1. Dell EMC PowerEdge Servers Model PowerEdge T550 (Tower) / R550 (Rack) Processor Dual Intel Xeon Silver/Gold 3rd Gen (up to 32 cores per CPU) RAM Up to 1 TB DDR4 ECC RDIMM Storage Up to 8 x 3.5” SAS/SATA or 10 x 2.5” SSDs (Hot-plug) RAID PERC H755 RAID Controller Network Dual Port 1GbE LOM (Optional 10GbE) Expansion 6 PCIe Gen4 slots Power Redundant 750W PSU Remote Mgmt iDRAC9 with Lifecycle Controller ✅ 2. HPE ProLiant Servers Model ProLiant ML350 Gen11 (Tower) / DL380 Gen11 (Rack) Processor Dual Intel Xeon Scalable Gen4 (up to 60 cores per CPU) RAM Up to 2 TB DDR5 ECC Storage Up to 12 x LFF or 24 x SFF drives (NVMe/SAS...

Bloom's Analyzer

Project Proposal to build an AI-Based Bloom's Taxonomy Knowledge Level Analyzer for Question Papers , covering all your requested points: Project Proposal AI-Based Bloom’s Taxonomy Knowledge Level Analyzer for Question Papers 1. Introduction to Bloom’s Taxonomy Bloom’s Taxonomy is a widely accepted hierarchical classification of educational learning objectives. Developed by Benjamin Bloom in 1956 and revised in 2001, it categorizes cognitive skills into six ascending levels: Remembering – Recall facts and basic concepts Understanding – Explain ideas or concepts Applying – Use information in new situations Analyzing – Draw connections among ideas Evaluating – Justify a stand or decision Creating – Produce new or original work This taxonomy aids educators in designing questions that evaluate different depths of knowledge and cognitive ability. 2. Need for an AI-Based Analyzer for Question Paper Setters In traditional educational assessment, facult...

For Discussion

To: Vice-Chairman, TANSCHE Subject: Proposal for Setting Up an e-Hub with Web Server, UPS, and High-Speed Internet 📌 Objective: To establish a centralized e-Hub at TANSCHE that will act as a digital backbone for hosting, communication, and content delivery across all affiliated institutions, enabling direct engagement with students, faculty, and stakeholders. 🌐 Vision: TANSCHE aims to lead digital transformation in higher education through innovative, accessible, and real-time communication tools. The proposed e-Hub will allow TANSCHE to: Host its own official website and digital services Manage internal and external communication systems Run web applications for students, staff, and universities Store and deliver academic data securely 🏗️ Infrastructure Components: 1. Web Server Purpose: Host TANSCHE’s website, student services portal, and academic tools Configuration: CPU: Intel Xeon or AMD EPYC (12+ cores) RAM: 64 GB DDR4 ECC Storage: 5...

Python, Flask, MYSQL - Basics - Demo

 Here's a step-by-step guide to set up MySQL using XAMPP , create a database, and run your Flask + SQLAlchemy app using the .env -based setup. ✅ Step 1: Install and Run XAMPP Download XAMPP from https://www.apachefriends.org/index.html . Install XAMPP on your system. Open the XAMPP Control Panel . Start Apache and MySQL modules. Green indicators mean they are running. ✅ Step 2: Open phpMyAdmin & Create Database Go to your browser and open: http://localhost/phpmyadmin Click on Databases tab. In the "Create database" field, type: phd (or your DB name). Click Create . Done! Your MySQL DB is ready. ✅ Step 3: Create .env File in Flask Project In your Flask project directory, create a file named .env : DB_USERNAME=root DB_PASSWORD= DB_HOST=localhost DB_PORT=3306 DB_NAME=phd XAMPP default MySQL username is root Password is usually empty (set it in phpMyAdmin if you want) ✅ Step 4: Install Required Python Package...