Skip to main content

Smart Campuses

Developed Smart Campus Management System, It is registered in Finland; Smart Campus is an all-in-one complete Education Management System to manage schools and colleges activities. Smart
campuses are the AG Consultraining Pvt Ltd. Product
.§  Role of Responsibilities:
·         Developed front end website architecture.
·         Designed user interactions on web pages.
·         Developed back web applications.
·         Create servers and databases
·         Designed and integrate APIs.
·         Use curl & rest APIs.
·         Customized product for every deployment
·         Webcam,  QR Code & Barcode Scanning device Integration
·         Managed data of more 5000 plus students
·         Give Support if any issue occurs
·         Use Cron Job for automatic Report
·         Integrate SMS API & Email Configuration
·         Use of Google Doc to read
ü  Modules Developed
·         Dynamic Business Intelligent Base JavaScript Dashboard
·         Core
·         Academic Module
·         Student & Online Registration integrated with different website
·         Fees (Bank & cash in Hand)
·         Accounts Module
·         Transport Module
·         Library Management
·         Inventory Management
·          HR & Payroll
·         Result Management System
·         Quality Enhancement cell Management
·         Super Admin Portal
·         System Activity Log
·         Other Module
o   Student / Teacher / Parent Portal
o   Donor & Parent Module
ü  Technology:
·         AngularJS 1.3 & 1.6, PHP Codeigniter, Ajax, JQuery, HTML,CSS & JavaScript etc
Database MySQL

Comments

Popular posts from this blog

Python Program to Make a Simple Calculator

In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user. Simple Calculator by Making Functions # Add Function for addition def add(x,y): return x+y # Subtraction Function def subtract(x,y): return x-y # Multiplication Function def multiply(x,y): return x*y # Division Function def divide(x,y): return x/y print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user something like scanf in C language check =input("Enter choice(1/2/3/4):") num1 = int(input("Enter first number:")) num2 = int(input("Enter second number:")) if check=="1": print(num1," + ",num2," = ",add(num1,num2)) elif check=="2": print(num1," - ",num2," = ",subtract(num1,num2)) elif check=...