Overview – Shishir Kant Singh https://shishirkant.com Jada Sir जाड़ा सर :) Sat, 23 May 2020 05:59:54 +0000 en-US hourly 1 https://wordpress.org/?v=6.9 https://shishirkant.com/wp-content/uploads/2020/05/cropped-shishir-32x32.jpg Overview – Shishir Kant Singh https://shishirkant.com 32 32 187312365 Digital Marketing – Overview https://shishirkant.com/digital-marketing-overview/?utm_source=rss&utm_medium=rss&utm_campaign=digital-marketing-overview Sat, 23 May 2020 05:59:51 +0000 http://shishirkant.com/?p=543 The use of digital channels to strengthen customer loyalty has received surprisingly little attention, despite the obvious opportunities for using these channels to keep in touch and serve customers cost-effectively. It seems like the concept of “digital marketing” has been used more operationally, while the theoretical understanding and comprehensive approach of how and why to use different digital channels are still developing. The various medias used that promote Digital Marketing are :

Digital marketing is a term that has been around for quite some time, but hasn’t been very well defined, encompassing things like banner advertising, search engine optimization (SEO) and pay per click. Yet, this is too narrow of a definition.

Digital marketing uses the Internet and information technology to extend and improve traditional marketing functions.” This is a broad definition, concerning all of the traditional 4 P’s, and both customer acquisition and retention.

Other terms like “interactive marketing and “e-marketing” are close to digital marketing, but neither of them are defined very precisely.

Advertising Guru’s Coviello, Milley and Marcolin have defined digital marketing as “using the Internet and other interactive technologies to create and mediate dialogue between the firm and identified customers.” They also consider digital marketing as a subset of e-commerce. In their view, more than creating discrete transactions, digital marketing is focused on managing continuous IT-enabled relationships with customers by creating dialogue and interactivity.

The world of digital media is changing at a phenomenal pace. Its constantly evolving technologies, and the way people are using them, are transforming not just how we access our information, but how we interact and communicate with one another on a global scale. It’s also changing the way we choose and buy our products and services. People are embracing digital technology to communicate in ways that would have been inconceivable just a few short years ago.

Digital Marketing revolves around four things:

Digital Marketing Tutorial: Online Course

Social Media : Interact with your customer base using social sites like Facebook and twitter. Use it as a support channel, Launchpad for new products , announce discount and exclusive coupons to drive sales

SEO: SEO or Search engine optimization is a technique that allows a site to get more traffic from search engines like Google, Microsoft, Yahoo etc. It is divided in two categories, off page SEO and on page SEO

Content Marketing: The goal of Content marketing is to retain and attract customers by consistently creating valuable and relevant content with the intention to engage targeted audience in order to drive profitable customer action. Content marketing is valuable for companies as information people find online impacts their purchase decision.

Advertising: Online Advertising has multitude of benefits over traditional advertising and the chief difference is targeting.Most of the online marketing platforms accept banner/text/rich media ad formats which are billed in three ways CPM (Cost for Thousand) , CPL (Cost per lead) and CPC (Cost per Click). In CPM, the advertiser pays for each 1000 ad views that the ad gets, while CPC is the amount of money that is paid by advertiser to search engines for a single click on its advertisement that brings one visitor to its website. For every click the advertiser pays to search engines and online publishers. Another form of advertising is Cost Per Lead, in which the advertiser pays for an explicit sign up from an interested consumer who is interested in the advertiser’s offer

]]>
543
Python Overview https://shishirkant.com/python-overview/?utm_source=rss&utm_medium=rss&utm_campaign=python-overview Fri, 15 May 2020 10:23:37 +0000 http://shishirkant.com/?p=217 Python Overview

Python is a general-purpose high-level programming language. It is an open source language, released under a GPL-compatible license. Python Software Foundation (PSF), a non-profit organization, holds the copyright of Python.

Guido Van Rossum conceived Python in the late 1980s. It was released in 1991 at Centrum Wiskunde & Informatica (CWI) in the Netherlands as a successor to the ABC language. He named this language after a popular comedy show called ‘Monty Python’s Flying Circus’ (and not after Python-the snake).

In the last few years, its popularity has increased immensely. According to stackoverflow.com’s recent survey, Python is in the top ten Most Popular Technologies in 2018.

Python Version History:

Currently, PSF supports two versions, Python 2.x & Python 3.x. Python 2.0 was released in October 2000 and includes a large number of features. PSF continues to support version Python 2 because a large body of existing code could not be forward ported to Python 3. So, they will support Python 2 until 2020.

Python 3.0 was released on December 3rd, 2008. It was designed to rectify certain flaws in earlier version. This version is not completely backward-compatible with previous versions. However, many of its major features have since been back-ported to the Python 2.6.x and 2.7.x version series. Releases of Python 3 include 2 to 3 utilities to facilitate the automation of translation of Python 2 code to Python 3.

All the tutorials and examples in this website use Python 3.7.0

The following table lists all the important versions history of Python:

VersionRelease DateImportant Features
Python 0.9.0February 1991– Classes with inheritance exception handling
– Functions
– Modules
Python 1.0January 1994– Functional programming tools (lambda, map, filter and reduce).
– Support for complex numbers.
– Functions with keyword arguments
Python 2.0
Python 2.7.0 – Current version Python 2.7.15 – Current sub-version
October 2000 July 2010 May 2018– List comprehension.
– Cycle-detecting garbage collector.
– Support for Unicode.
– Unification of data types and classes
Python 3 Python 3.6 Python 3.6.5December 2008 December 2016 March 2018– Backward incompatible.
– print keyword changed to print() function
– raw_input() function depreciate
– Unified str/Unicode types.
– Utilities for automatic conversion of Pytthon 2.x code
Python 3.7.0 – Current VersionMay 2018– New C API for thread-local storage
– Built-in breakpoint()
– Data classes
– Context variables

Python Features:

  • Python is an interpreter-based language, which allows execution of one instruction at a time.
  • Extensive basic data types are supported e.g. numbers (floating point, complex, and unlimited-length long integers), strings (both ASCII and Unicode), lists, and dictionaries.
  • Variables can be strongly typed as well as dynamic typed.
  • Supports object-oriented programming concepts such as class, inheritance, objects, module, namespace etc.
  • Cleaner exception handling support.
  • Supports automatic memory management.

Python Advantages

  • Python provides enhanced readability. For that purpose, uniform indents are used to delimit blocks of statements instead of curly brackets, like in many languages such as C, C++ and Java.
  • Python is free and distributed as open-source software. A large programming community is actively involved in the development and support of Python libraries for various applications such as web frameworks, mathematical computing and data science.
  • Python is a cross-platform language. It works equally on different OS platforms like Windows, Linux, Mac OSX etc. Hence Python applications can be easily ported across OS platforms.
  • Python supports multiple programming paradigms including imperative, procedural, object-oriented and functional programming styles.
  • Python is an extensible language. Additional functionality (other than what is provided in the core language) can be made available through modules and packages written in other languages (C, C++, Java etc)
  • A standard DB-API for database connectivity has been defined in Python. It can be enabled using any data source (Oracle, MySQL, SQLite etc.) as a backend to the Python program for storage, retrieval and processing of data.
  • Standard distribution of Python contains the Tkinter GUI toolkit, which is the implementation of popular GUI library called Tcl/Tk. An attractive GUI can be constructed using Tkinter. Many other GUI libraries like Qt, GTK, WxWidgets etc. are also ported to Python.
  • Python can be integrated with other popular programming technologies like C, C++, Java, ActiveX and CORBA.

Python Application Types

Even though Python started as a general-purpose programming language with no particular application as its focus, over last few years it has emerged as the language of choice for developers in some application areas. Some important applications of Python are summarized below:

Data Science

Python experienced a recent emergence in popularity charts mainly because of its Data science libraries. Huge amount of data is being generated today by web applications, mobile applications and other devices. Companies need business insights from this data.

Today Python has become the language of choice for data scientists. Python libraries like NumPy, Pandas and Matplotlib are extensively used in the process of data analysis, including the collection, processing and cleansing of data sets, applying mathematical algorithms and generating visualizations for the benefit of users. Commercial and community Python distributions by third-parties such as Anaconda and ActiveState provide all the essential libraries required for data science.

Machine Learning

This is another key application area of Python. Python libraries such as Scikit-learn, Tensorflow and NLTK are widely used for the prediction of trends like customer satisfaction, projected values of stocks etc. Some of the real-world applications of machine learning include medical diagnosis, statistical arbitrage, basket analysis, sales prediction etc.

Web Development

This is another application area in which Python is becoming popular. Web application framework libraries like django, Pyramid, Flask etc. make it very easy to develop and deploy simple as well as complex web applications. These frameworks are used extensively by various IT companies. Dropbox for example uses django as a backend to store and, synchronize local folders.

Most of the web servers today are compatible with WSGI (Web Server Gateway Interface) – a specification for the universal interface between Python web frameworks and web servers. All leading web servers such as Apache, IIS, Nginxetc can now host Python web applications. Google’s App Engine hosts web applications built with almost all Python web frameworks.

Image Processing

The OpenCV library is commonly used for face detection and gesture recognition. OpenCV is a C++ library, but has been ported to Python. Because of the rapid development of this feature, Python is a very popular choice from image processing.

Game Development

Python is a popular choice for game developers. The PyGame library is extensively used for building games for desktop as well as for mobile platforms. PyGame applications can be installed on Android too.

Embedded Systems and IoT

Another important area of Python application is in embedded systems. Raspberry Pi is a very popular yet a low-cost single-board computer. It is being extensively used in automation products, robotics, IoT, and kiosk applications. Popular microcontrollers like Arduino are used in many IoT products and are being programmed with Python. A lightweight version of Python called Micropython has been developed especially for microcontrollers. A special Micropython-compatible controller called PyBoard has also been developed.

Android Apps

Although Android apps are predominantly developed using Android SDK, which is similar to Java, Python can also be used to develop Android apps. Python’s Kivy library has all the functionalities required for a mobile application.

Automated Jobs

Python is extremely useful and widely used for automating CRON (Command Run ON) jobs. Certain tasks like backups, defined in Python scripts can be scheduled to be invoked automatically by the operating system scheduler to be executed at predefined times.

Python is embedded as a scripting language in many popular software products. This is similar to VBA used for writing macros in Excel, PowerPoint, etc. Python API is integrated with Maya, PaintShop Pro, etc.

Rapid Development Tool

Standard distribution of Python as developed by Rossum and maintained by Python Software Foundation is called CPython which is a reference implementation. Its alternative implementations – Jython the JRE implementation of Python and IronPython – the .NET implementation, interact seamlessly with Java and C#, respectively. For example Jython can use all Java libraries such as Swing etc. So the development time can be minimized by using simpler Python syntaxes and Java libraries for prototyping the software product.

]]>
217