Daily Diary Report

Follow me on GitHub

28-05-2020

I have done C2SMS application is connected with remote mysql database.


26-05-2020

I have found new DATAGENIT API for message setup.


24-05-2020

SMS4INDIA API is not working,some type of errors are occur.Then i am search for new api.


22-05-2020

I have done connectivity with database.Now student result management system is built.


19-05-2020

I have done connectivity with all pages in php.


18-05-2020

I have done create class page, manage class page in php.


16-05-2020

I have dome create subject page,manage subject page, add subject combination page,manage subject combination page.


15-05-2020

I have done admin login page,student login page,Add student page,manage student page.


11-05-2020

I have done main page of website in php.


09-05-2020

I have done the calling and sms part using calling api,sms api and cloud platform.


07-05-2020

I have read about exotel calling api.

calling api


06-05-2020

I have read the concept of heroku cloud platform.

Heroku

Heroku-cli


04-05-2020

I have used new sms api sms4india and created a python program for built sms gateway.

sms4india


03-05-2020

I have created student detail system in python with database.


30-04-2020

I have setup all the requirement for kannel.


29-04-2020

I have read the concept of kannel 1.4.5 user guide and i have read the previous gd disccusion on kannel. Kannel


28-04-2020

I have search different calling api for our project.


26-04-2020

I did not find gsm modem then i find twilio api to send the message using python program.


25-04-2020

I have done database connectivity with frontend.


24-04-2020

I have prepared project report.


22-04-2020

I have designed frontend of the project .


20-04-2020

I tried my project on sms gateway by using java. I followed this link:

link

I have installed some pre-requisites. i.e.

Eclipse IDE for Java

Java SE Development Kit

SMS Gateway.

I made a java program named Java_sms_httprequest.java. When i run the program then http server connection is establish and msg is send to virtually. But it is saying if you want to send sms message actually, you need to install a GSM modem connection


19-04-2020

Today ,i have participated in All india placement webiner online meeting and also tried some different aptitude papers on the basis of link provided by them.

link


17-04-2020

I linked the login and Registration file together.


16-04-2020

I learned to do database connectivity with Python.


14-04-2020

I understood the calling library and sms library in python.


12-04-2020

I am trying to make backend from Django.


11-04-2020

  • I Designed Registration page in which have many options such as:
    1. Student name
    2. Uni.roll no
    3. Branch
    4. Contact no
    5. Email ID

10-04-2020

I have read the concept of UI design of projects. I have watched videoes related to Automatically send a text SMS to your Missed call.


09-04-2020

Create sms gateway server

All things are install only error is coming in configuration.


08-04-2020

Sorting

Using this - ### ls | sort -V we are get natural order.


07-04-2020

GNU Social

I have read the concept of GNU Social. I Registrated. This may also include making out separare groups on GNU Social for different society which would make the discussion look better to all.


05-04-2020

Test Web Conferencing

I enrolled in test web conferencing. link


03-04-2020

I installed Python,phpmyadmin,mysql,Django again.


01-04-2020

Again install Kali-linux

My operating system was corrupted.So i installed the OS again.


30-03-2020

I am doing a course of Node.js from Udemy.com


28-03-2020

I read another concepts of SMS Gateway server

link

link

link


27-03-2020

Setup

I set up web server & PhpMyadmin. Some error was coming.


25-03-2020

Create Your Own SMS Gateway Server

link


22-03-2020

I am doing a course of projects in Laravel from Udemy.com


18-03-2020

I set up Apache2,phpmyadmin.


16-03-2020

I read the concept of Database and SQL. Link


14-03-2020

I have read the concepts of sms gateway link link


13-03-2020

Vim Thread

I have read the concept of Vim link


12-03-2020

Image processing

I have read the concept of Image processing. Link

Link

Link


09-03-2020

Combine Images & Colour Changed

I have completed task multiple image combine into single image using this command

convert 1.jpg 2.jpg 3.jpg -append result-new.jpg (vertically combine image)

convert 1.jpg 2.jpg 3.jpg +append result-new.jpg (horizontally combine image)

I have changed the colour of image using this command

### convert 1.jpg -fuzz 20%% -transparent black 2.png ### convert gip4.gif -fill blue -opaque black abc.gif


07-03-2020

Seminar

I have given seminar on Github pages, Jekyll-Themes and discuss on your project.


06-03-2020

Solved Jekyll-Theme Problem

First of all fork it. Then go to config.yml and change the baseurl as you wish.


05-03-2020

Project related

I have revised the django and some topic of project.


04-03-2020

Project Related

I have read about http server.


03-03-2020

Github pages

I have completed all blogs on Github Pages. This is very easy task. First of all,we have to go to the README.md . Then we have to edit it.


02-03-2020

Project Synopsis

I have completed the synopsis of our project.


01-03-2020

setting up Jekyll Theme step by step

I have created jekyll theme with the help of following link.

Link1

Link2

Link3 This is my github page- Github


28-02-2020

Setting up SMS Gateway

link

Understanding project related concepts:

Setting up an SMS Gateway

1 Introduction

2 Ingredients

2.1 Server

2.2 Cellphone Interface

3 Getting Started

3.1 Installing and configuring

3.2 Sending messages

4 Pitfalls and oddities

4.1 Duplicates

4.2 libmysql.so

5 Security

5.1 Basic security

5.2 Consider your users’ privacy

6 Uses for an SMS gateway


27-02-2020

SMS over HTTP

I have prepare project synopsis of SMS over HTTP.

Keypoints of synopsis

  1. INTRODUCTION SMS over HTTP is a Mobile technology that allows you to request and receive information from your student account on your mobile phone via short message service (SMS).
    • How SMS Works
  • Data Minning in SMS

2.OBJECTIVES

1.To make an Auto Display system over SMS.

2.To display HTTP interface to fetch details.

3.To use AI to generate reports.

3.FEASIBILITY STUDY

4.LITERATURE REVIEW

5.METHODOLOGY & pROBLEM FORMULATION

6.REQUIREMENT ANALYSIS

7.FUTURE SCOPE

  1. This project will be very effective for future use. 2.This project will be useful not only in academics but in many fields like medicals, airlines, any booking systems etc.

  2. REFERENCES


21-02-2020

SoftwareCarpentery Bash Script

I have read the concept software carpentry script.

It has made me clear number of unix shell concept.

Unix Shell


19-02-2020

How to remove last three line from multiple files?

Script.sh

#!/bin/bash

for f in *.txt

do

#tail command display the last 3 line and sed is used for delete the last line of the file

tail -3 $f sed -i ‘$d’ $f sed -i ‘$d’ $f sed -i ‘$d’ $f ;

done


18-02-2020

How to change multiple file extension?

Script.sh

#!/bin/bash

srcpath=$1

dstpath=$2

echo $srcpath #print source directory name

echo $dstpath #print destination directory name

mkdir -p “$dstpath” #Make a directory

cp -r $srcpath/* $dstpath #Copy source file into destination file

for srcpath #check the source directory

do

for files in $(ls $dstpath/.); #check the all file with in destination directory

do

echo $(mv -v $files ${files%.*}.txt) #remove the extension into another extension

done

done


10-02-2020

How to mysql install from command line step by step

Today I have Finished Install the mysql.

Install the MySQL database server package. You can use the Yum tool to install MySQL on Oracle Linux: sudo apt install mariadb-server

Start the MySQL service: sudo service mysql start

Launch the MySQL Command-Line Client: mysql -u root -p The -p option is needed only if a root password is defined for MySQL. Enter the password when prompted.

Create a user (for example, amc2) and a strong password: mysql> create user ‘amc2’ identified by ‘amc2’;

To restrict the access to a machine (for example, to localhost for a user) create the user as follows:

mysql> create user ‘amc2’@’localhost’ identified by ‘amc2’;

Create the database (for example, amc2) and grant all access to the user, for example, amc2 as follows:

mysql> create database amc2;

mysql> grant all on amc2.* to ‘amc2’;

Configure your MySQL installation to handle large BLOB entries, such as MSI binaries. To handle BLOB entries, edit the my.cnf file. You can find the my.cnf file in one of the following locations:

/etc/my.cnf

/etc/mysql/my.cnf

$MYSQL_HOME/my.cnf

[datadir]/my.cnf

Set the options max_allowed_packet and innodb_log_file-size in the [mysqld] section to the values shown: [mysqld] max_allowed_packet=300M innodb_log_file_size=768M


05-02-2020

Install Django


04-02-2020

Python in 90 Minutes

I have read the concept of python.

PYTHON


03-02-2020

Python

Today I have learnt the Array,Loops,If-else,Functions,Inheritance.

Python Tutorial


02-02-2020

Python begining

Today I have starting learnt to python and I have learnt the Basic Syntax,Varriable Types,Basic operators from this link.

Python Tutorial


01-02-2020

Today I Understand Linux command,script,shortcuts etc.


29-1-2020 — 31-01-2020

How to install the kali linux 2020.1 step by step

Kali-Linux