top of page
About Me

Experienced .NET Core / Full stack Developer, embracing SOLID design principles, with 8+ years of experience in Web API, MVC, Azure, OpenID/OAuth, Microsoft SQL Server/MySQL, Angular/React, Azure, AWS, CI/CD Pipelines, Hangfire, Redis and a strong foundation in Test-Driven Development (TDD). Recognized for staying abreast of emerging technologies. Eager to contribute leadership, innovation, and technical expertise in a dynamic role.
Search
VB code to Unprotect Excel Sheet
Sub PasswordBreaker() ‘Breaks worksheet password protection. Dim i As Integer, j As Integer, k As Integer Dim l As Integer, m...
Jino Shaji
Jan 20, 20151 min read
2 views
0 comments
Program to Create an investment report.
“””Program: investment.py Author: JINO SHAJI Compute an investment report. 1. The inputs are starting investment amount ...
Jino Shaji
Jan 19, 20152 min read
2 views
0 comments
Python Program To check Weather the number is palindrome or not
# Python Program To check Weather the number is palindrome or not # Author : JINO SHAJI num=int(input(“Enter a Number : “)) i=1...
Jino Shaji
Jan 18, 20151 min read
1 view
0 comments
Quotation in Python,Comments in Python…
Quotation in Python: Python accepts single (‘), double (“) and triple (”’ or “””‘) quotes to denote string literals, as long as the same...
Jino Shaji
Jan 17, 20151 min read
1 view
0 comments
Multi-‐Line Statements in Python
Statements in Python typically end with a new line. Python does, however, allow the use of the line continuation character (\) to denote...
Jino Shaji
Jan 17, 20151 min read
1 view
0 comments
Python Program to Add Two Numbers
Source Code to Add Two Numbers #Program to add two numbers num1 and num2 #Author : Jino Shaji num1 = input('Enter first number: ') num2...
Jino Shaji
Jan 11, 20151 min read
0 views
0 comments
Python Identifiers,Reserved Words,Lines and Indentation
Python Identifiers A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier...
Jino Shaji
Jan 11, 20152 min read
8 views
0 comments
Computer Programming Concepts
Computer programs are the collection of instructions that tells a computer how to interact with the user,interact with the computer...
Jino Shaji
Jan 11, 20152 min read
0 views
0 comments
Basic Programming Tips
Tip #1: Avoid confusion by programming in small steps Novice programmers frequently attempt too much at once with their programs. This...
Jino Shaji
Jan 10, 20152 min read
0 views
0 comments
Python Environment Variables:
Python Environment Variables: Here are important environment variables, which can be recognized by Python: Variable Description...
Jino Shaji
Jan 9, 20151 min read
4 views
0 comments
Python Environment
Before we start writing our Python programs, let’s understand how to set up our Python environment. Python is available on a wide variety...
Jino Shaji
Jan 8, 20153 min read
2 views
0 comments
Naming Rules in Python
•Names are case sensitive and cannot start with a number. They can contain letters, numbers, and underscores. bob Bob _bob _2_bob_ ...
Jino Shaji
Jan 7, 20151 min read
4 views
0 comments
Comments used in Python
•Start comments with # – the rest of line is ignored. •Can include a “documentation string” as the first line of any new function or...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Multiple Assignment,String Operations,Printing with Python
Multiple Assignment •You can also assign to multiple names at the same time. • >>> x, y = 2, 3 >>> x 2 >>> y 3 String Operations •We can...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Python Assignment 1
A. INSTALLING AND RUNNING PYTHON You can use Python on your own computer or in this lab. If you want to work on your own system, install...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Python and Types
Python determines the data types in a program automatically. “Dynamic Typing” But Python’s not casual about types, it enforces them...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Basic Datatypes of Python
Basic Datatypes of Python •Integers (default for numbers) z = 5 / 2 # Answer is 2, integer division. •Floats x = 3.456 •Strings Can...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Sample Code of Python
Look at a sample of code Of Python… x = 34 – 23 # A comment. y = “Hello” # Another one. z = 3.45 if z == 3.45 or y...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Learning Python
Learning Python Unfortunately, we won’t have time to cover all of Python in class; so, we’re just going to go over highlights. –You’ll...
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Installing Python
Installing Python •Python is installed on the PCs in 156. •Python for Win/Mac/Unix/Linux is available from http://www.python.org....
Jino Shaji
Jan 7, 20151 min read
0 views
0 comments
Blog: Blog2
bottom of page