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 has four distinct cycles as corporate, domain engineering, application
engineering and component engineering investment cycle. Economic function
having five different functions as Net Present Value, Payback Value, Average
Return on Book Value, Internal Rate of Return, Profitability Index. Cost
factors which specifies what aspects of reuse decision we want to consider. Reuse
organization- the organizational structure has some impact on how costs are
determined, charged, and accounted for. Scope where some models consider a
short-term decision whereas others consider a long-term investment cycle. Some
cost models neglect integration costs. Some cost models fail to take into
account the discount rate of resources and so on. There are variety of viewpoints involved in
software reuse initiatives like corporate executives, the producer staff, the
consumer staff, library managers, and component providers. A generic software
reuse model can be classified as Variety of investment cycles, Variety of cost
factors, Variety of economic functions, Variety of viewpoints, Variety of
hypotheses. Variety of investment cycles involve four different cycles as Corporate
level decides Whether to introduce reuse in the practice of software
development, Domain engineering decides whether to initiate a domain
analysis/domain engineering initiative, Application engineering decides whether
to introduce reuse practices for development project, Component engineering
decides whether it is worthwhile to develop a specific component to serve a
group of project teams. Variety of cost factors include investment Cycle,
denoted by Y, measured in number of years, typically ranging between 3 and 5,
discount Rate, denoted by d, is an abstract quantity, that typically ranges
between 0.10 and 0.20. It reflects the time value of money, investment Costs, denoted by IC, and measured in
person months because most costs that arise can best be quantified as personnel
effort, episodic Benefits, at year y, for 1 <= y <= Y , denoted by B(y),
and measured in person months, episodic Costs, at year y, for 1 <= y <= Y
, denoted by C(y), and measured in person months. Variety of economic function
include Net Present Value, denoted by N P V, measured in person months, Return
on Investment, denoted by ROI. ROI recognizes that investments involve risks,
Profitability Index, denoted by PI. This quantity allocates the potential
profit with respect to the investment cost. An investment is worthwhile
whenever P I exceed 1. Internal Rate of Return, denoted by IRR, and defined as
the value of d that makes the net present value zero. Payback Value, denoted by
P B and defined as the shortest investment cycle that makes the net present
value non-negative. Average Rate of Return, denoted by ARR. It prorates the
profitability index by the number of years in the investment cycle. Variety of
viewpoint includes Component Engineering Viewpoint where We are deal with here
is whether or not to develop a reusable asset to satisfy a tentatively
specified set of requirements. Application Engineering Viewpoint where we deal
whether or not to adopt reuse in a given development project. Domain
Engineering Viewpoint where we deal whether or not to initiate a domain
engineering effort in a tentatively specified application domain. Corporate
Viewpoint where the investment decision we deal with is whether or not to
initiate a corporate software reuse program. Variety of hypotheses includes
Non-Linear Cost Effects, Integration Costs, Quantifying Quality Gains, Code
Inflation. In automated support, the proposed has two main functions. In
archival function, the purpose of this function is to keep track of costs and
benefits as they arise. In analytical function, the purpose of this function is
analyze investment cycles by producing any combinations of functions. There are
various existing cost models. The model proposed by Ganey and Cruickshank
combines domain engineering costs and application engineering costs in a single
equation, it does not take into account considerations and assumes that the
number of applications that make up the domain engineering effort is
predetermined. Kain proposes a return on investment model that is especially
geared towards ob ject oriented programming (where reusable assets are objects
at various levels of abstraction). There are various other models.
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
Friday, September 27, 2019
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 are still devoted towards solving accidental problem but now the time has come to address essential complexity. Essential complexity include conformity, changeability, flexibility, invisibility. In conformity, the challenge is to run new software on a system where other software systems were running. Changeability makes software dependent on the technological advancement of its surroundings. Because software is invisible, it becomes very difficult to sketch the clear idea of how the final product looks or perform. The development of high level languages like Fortran, C, C++ have solved the accidental difficulties to a great extent. There is no one silver bullet but a series of innovations could lead to a significant improvement. Ada language, object-oriented programming, artificial intelligence could play vital role to achieve those improvements and are hopes for the silver. Building expert systems is not an easy task but systems like graphical programming, program verification, automatic programming play vital role in software development. As large number of software engineers are involved in software development, large number is developed daily. It leads to an attack on conceptual essence and sometime it is more reliable to buy the already built software rather than developing the new one. There is difference between good designers and great designers. There is as much as tenfold difference between an ordinary designer and great one so they should be treated well and provided with higher status.
Saturday, May 18, 2019
elasticsearch - Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME.
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, open cmd type echo %JAVA_HOME% ,if it shows the path entered previously while creating new variable then its ok. If everything is all right upto this point, go to the folder when the files of elasticsearch is located through cmd (for eg have my folder on G: drive so my path looks like
G:\elasticsearch\bin> ). Finally, enter elasticsearch-service.bat install.
If you see output as shown below then your installation has been successful.
G:\elasticsearch\bin>elasticsearch-service.bat install
Installing service : "elasticsearch-service-x64"
Using JAVA_HOME (64-bit): "C:\Program Files\Java\jdk-12.0.1"
The service 'elasticsearch-service-x64' has been installed.
To run elasticsearch service, again enter given command entering into the bin of your elasticsearch folder as shown below:
G:\elasticsearch\bin>elasticsearch-service.bat manager
Running this command will display a window as shown in figure below:
Click "Start" button to start the service. Wait for few seconds or a minute, then open browser and type the given URL: http://localhost:9200/ , you can the output as shown below if everything is fine.
Now, open cmd type echo %JAVA_HOME% ,if it shows the path entered previously while creating new variable then its ok. If everything is all right upto this point, go to the folder when the files of elasticsearch is located through cmd (for eg have my folder on G: drive so my path looks like
G:\elasticsearch\bin> ). Finally, enter elasticsearch-service.bat install.
If you see output as shown below then your installation has been successful.
G:\elasticsearch\bin>elasticsearch-service.bat install
Installing service : "elasticsearch-service-x64"
Using JAVA_HOME (64-bit): "C:\Program Files\Java\jdk-12.0.1"
The service 'elasticsearch-service-x64' has been installed.
To run elasticsearch service, again enter given command entering into the bin of your elasticsearch folder as shown below:
G:\elasticsearch\bin>elasticsearch-service.bat manager
Running this command will display a window as shown in figure below:
Click "Start" button to start the service. Wait for few seconds or a minute, then open browser and type the given URL: http://localhost:9200/ , you can the output as shown below if everything is fine.
The elastic service can also be run through windows services. Search for services on search box on windows 10 and click on it to open services window. Then search for "Elasticsearch" and right click on it and select "Start". Again, wait for few seconds and go to http://localhost:9200/ to check if service is running or not.
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 fans obviously finds it difficult to digest. MI has won four out of their five IPL finals, all coming against Dhoni (three against CSK and one against Rising Pune Supergaint).
In this IPL 2019, MI completely dominated CSK whether in league matches or qualifier. Infact, MI were only able to beat CSK at their home not only once but twice, one in league match and another in qualifier. So, MI reached final with three wins against CSK and at the same time CSK reached final with three loses against MI. But all CSK fans were hoping that CSK can't loose four match against MI in a single season, and CSK may win the final and guess what CSK almost won the final but that last ball wicket left CSK fans with nothing but heartbreak making it fifth final loss. This loss was difficult to digest than the last four finals which CSK lost because it was so near yet so far. CSK lost just by one run. The tragedy of 2017 repeated, the only difference being it was RPS at the receiving end in 2017 and this time it was CSK.
The 2019 IPL final was actually full of drama, mistakes being committed by both team. And as MSD said at post match presentation, it was like both teams were passing trophy to one another during match by committing mistakes and allowing the opposition to make come back in the game. But CSK made more mistakes than MI did and hence paid huge price for it by rewarding trophy to MI. There were many turning points for CSK. Many says the run out of MSD or the run out of Watson but I personally feel the turning point was the wicket of Faf du Plessis. Having known that the middle order has been completely exposed this season, he should have batted long. Though CSK were in a good position at the time fall of his wicket but he was hitting the ball very well. At the same time the upcoming batsmen had been struggling throughout the season except MSD, and MSD was obviously not going to win you matches every time. But none of us thought that MSD inning would end with a run out. It was infact first run out for MSD in IPL after 2012. So nothing was going in favour of CSK except three dropped catches of Watson to keep the hope of CSK alive till the last over in the night of final. But even Watson could not take CSK over the winning line and his fabulous inning came to an end with only two balls remaining and requiring four to win. Shardul Thakur managed only two runs loosing his wickets in the ball. He was playing his only third match this season so it was not easy for him as well. I feel Jadeja could have been sent to bat before Dwayne Bravo because he had been good with the bat this season and Bravo had rarely got any chance to bat and as a result Bravo scored 15 runs of 15 balls when the required rate was almost above 11. Also, I think Imran Tahir should have been brought little earlier to bowl and should have been allowed to complete his 4 overs quota as was leading wicket taker for CSK, infact ended as leading wicket taker of this season. But now, none of these arguments matter because the fact remains that CSK lost 2019 IPL final by 1 run.
At last as a CSK fan, the only good thing about the final was Thala saying "Hopefully I will return" next year for CSK because it is difficult to imagine CSK without him and IPL without CSK.
Monday, February 11, 2019
Easily migrate a Django DB from SQLite to MySQL.
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 mysqlclient file according to bits of python.
In my case, my python is 32 bits so I have installed the given file.
Step 2:
Now open django project and click on the terminal tab as shown in figure below (with red a mark):
Then copy the file download in step 1 to the folder of your django project (path marked by blue pen in figure above).
Step 3:
Run the given command:
pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Here, the bold words are filename of the mysqlclient library so it may varies depending on which file did you download from the website. So use the file name of downloaded file in place of bold words in the command.
Finally, your install is successful.
Your output will be something like this:
(venv) G:\Programming\dj6>pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Processing g:\programming\dj6\mysqlclient-1.4.2-cp37-cp37m-win32.whl
Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.4.2
Here is the video for above process...
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 mysqlclient file according to bits of python.
In my case, my python is 32 bits so I have installed the given file.
Step 2:
Now open django project and click on the terminal tab as shown in figure below (with red a mark):
Then copy the file download in step 1 to the folder of your django project (path marked by blue pen in figure above).
Step 3:
Run the given command:
pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Here, the bold words are filename of the mysqlclient library so it may varies depending on which file did you download from the website. So use the file name of downloaded file in place of bold words in the command.
Finally, your install is successful.
Your output will be something like this:
(venv) G:\Programming\dj6>pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Processing g:\programming\dj6\mysqlclient-1.4.2-cp37-cp37m-win32.whl
Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.4.2
Step 4:
Open the setting.py file and change the section
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } }
into
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'your database name', 'USER': 'your username', 'PASSWORD': 'your password', 'HOST': 'localhost', 'PORT': '3306', } }
Step 5:
Use command in terminal of your django project:
python manage.py makemigrations
If it works then it is good but if it results in errors then follow the given below steps.
Step 6:
Alter the username and password of your MYSQL database server.
Open your MYSQL command line (search for mysql in search box and you can see this option). This write the given query:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'your_new_password';
Warning: Don't forget the semicolon(;) at the end of query;
Step 7:
Search for services in search box of windows 10 and open it. In newly opened window search for MYSQL80 and click on it. Then click on Restart option on the left side of window.
Finally again use the command below in terminal of your django project:
python manage.py makemigrations
python manage.py migrate
Wait for sometime for migrating to complete.
Following above steps will do the job.
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 mysqlclient file according to bits of python.
In my case, my python is 32 bits so I have installed the given file.
Step 2:
Now open django project and click on the terminal tab as shown in figure below (with red a mark):
Then copy the file download in step 1 to the folder of your django project (path marked by blue pen in figure above).
Step 3:
Run the given command:
pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Here, the bold words are filename of the mysqlclient library so it may varies depending on which file did you download from the website. So use the file name of downloaded file in place of bold words in the command.
Finally, your install is successful.
Your output will be something like this:
(venv) G:\Programming\dj6>pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Processing g:\programming\dj6\mysqlclient-1.4.2-cp37-cp37m-win32.whl
Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.4.2
Here is the video for above process...
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 mysqlclient file according to bits of python.
In my case, my python is 32 bits so I have installed the given file.
Step 2:
Now open django project and click on the terminal tab as shown in figure below (with red a mark):
Then copy the file download in step 1 to the folder of your django project (path marked by blue pen in figure above).
Step 3:
Run the given command:
pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Here, the bold words are filename of the mysqlclient library so it may varies depending on which file did you download from the website. So use the file name of downloaded file in place of bold words in the command.
Finally, your install is successful.
Your output will be something like this:
(venv) G:\Programming\dj6>pip install mysqlclient-1.4.2-cp37-cp37m-win32.whl
Processing g:\programming\dj6\mysqlclient-1.4.2-cp37-cp37m-win32.whl
Installing collected packages: mysqlclient
Successfully installed mysqlclient-1.4.2
The above helps to install mysqlclient in pycharm. If you want to install in python directly then simply download the file as in step 1 and open command prompt and navigate to the folder where the downloaded file is available. After that, run the command as shown in step 3. This will successfully finish your installation process.
Here is the video for above process...