...
AITB International Conference, 2019
Kathmandu, Nepal
My Youtube Channel
Please Subscribe
Flag of Nepal
Built in OpenGL
World Covid-19 Data Visualization
Choropleth map
Word Cloud in Python
With masked image
Thursday, July 2, 2020
Monday, April 20, 2020
Saturday, April 11, 2020
Thursday, April 2, 2020
Wednesday, April 1, 2020
Monday, March 30, 2020
10 best websites to get free online courses from udemy, lynda, bitdegree and so on
1.
https://tutsgalaxy.net/category/tutorials/
2.
https://tricksinfo.net/
3.
https://www.learningcrux.com
4.
https://freecourselab.com
(adsbygoogle = window.adsbygoogle || []).push({});
5.
https://courseforfree.com
6.
https://freetutorialsus.org
7.
https://courseclub.me
8.
https://coursecatalog.us
(adsbygoogle...
Friday, September 27, 2019
Summary on “An integrated cost model for software reuse”

Today, complex, high quality computer based-systems must be
built in a very short time period. This results in an organized approach to
reuse. Sometime the potential gains from reusing specifications may be greater
than reusing code component because code contains low level details. There are
various features distinguishing between different cost models. Investment cycle
which...
Summary of NO silver bullet

There are two types of complexity in software development
process. They are essence and accidents complexity. Essence complexity are
inherent in the nature of the software whereas accident complexity is such,
that today attend its production but that are not inherent. Accidental
complexity arises due to hardware constraints, awkward programming languages.
Most of the programmers...
Saturday, May 18, 2019
elasticsearch - Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME.
(adsbygoogle = window.adsbygoogle || []).push({});
First of all make sure java jdk is installed on your system. Then go to environment variables of your system. Add new variable called "JAVA_HOME" and add variable value as the path where jdk is installed on your system (eg: C:\Program Files\Java\jdk-12.0.1) and then press ok as shown in figure below:
Now,...
Monday, May 13, 2019
The fifth final heartbreak for CSK

Having played ten seasons of IPL, CSK holds impressive records of qualifying into the playoffs every time, reaching into final eight out of ten times. But at the same time it holds scary record of loosing most of the finals it reached. CSK now have lost 5 out of 8 IPL finals having won only 3 of them, most importantly three lose came against Mumbai Indians which CSK...
Monday, February 11, 2019
Easily migrate a Django DB from SQLite to MySQL.
(adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-3834444403093222", enable_page_level_ads: true });
Step1:
(adsbygoogle = window.adsbygoogle || []).push({});
Go to https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient to download mysqlclient library and download the version which suits your python version....
pip install mysqlclient error fixed. 100% working solution...
Step1:
Go to https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient to download mysqlclient library and download the version which suits your python version. To check whether your installed python is 32/64 bits, simply search for python in search box in windows 10.
Warning: Though your pc is 64 bits, the python on your pc may be of 32 bits so download the...
Tuesday, December 18, 2018
Medical store management system with visualization of data (using visual C#.NET and MYSQL)
Send your query regarding this project through email...
How to make a simple picture gallery using lightbox library in web?
HTML code
<!DOCTYPE html>
<html>
<head>
<title>PicGallery</title>
<link rel="stylesheet" type="text/css" href="css/picgallery.css">
<link rel="stylesheet" type="text/css" href="css/lightbox.min.css">
<script type="text/javascript" src="js/lightbox-plus-jquery.min.js"></script>
</head>
<body>
...
Friday, December 7, 2018
Design simple yet attractive log in form using HTML and CSS.
HTML code
<!DOCTYPE html>
<html>
<head>
<title>Feedback form</title>
<link rel="stylesheet" type="text/css" href="css/feedbackform.css">
</head>
<body>
<h3>Send your feedback...</h3>
<div class=blurform>
<div class="form1">
<form action="" method="get">
<br><br><label...
Design Home page of facebook using HTML and CSS.
HTML code:
<!DOCTYPE html>
<html>
<head>
<title>facebook</title>
<link rel="stylesheet" type="text/css" href="css/facebook.css">
</head>
<body>
<div class="topbar">
<div class="facebookfont">
<p>facebook</p>
</div>
<div class="email">
<form action="" method="get">
...
Draw the pattern.
Program code (in c++)
#include<iostream>
using namespace std;
int main()
{
int a[10]={0,1,2,3,4,5,6,7,8,9};
for(int i=1;i<=5;i++)
{
for(int p=1;p<=5-i;p++)
{
cout<<" ";
}
...
Find smallest positive integer in an array.
Write a function:
function solution(A);
that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in A.
For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5.
Given A = [1, 2, 3], the function should return 4.
Given A = [−1, −3], the function should return...