Posts

CASE STUDY: MUREX | All NEW in Murex

1. Murex MX.3 Overview Click Here to Read More 2. CASE STUDY: Murex SAFe helps Murex power up Devops to accelerate value with continuous delivery: AGILE in MX.3  Click Here to Read More 3. CASE STUDY: Murex MX.3 With AWS: Click Here to Read More 4. Taking Murex MX.3 To Cloud  Click Here to Read More 5. Leveraging Murex MX.3 on Cloud  Click Here to Read More

Capital Market: Basic Terms

Capital Market: Basic Terms What is an Expiration Date (Derivatives) An expiration date in derivatives is the last day that a derivative, such as options or futures, is valid. On or before this day, investors will have already decided what to do with their expiring position. Before an option expires, its owners can choose to exercise the option, close the position to realize their profit or loss, or let the contract expire worthless. What is a Delivery Date A delivery date is the final date by which the underlying commodity for a futures or forward contract must be delivered for the terms of the contract to be fulfilled. What is Maturity Date The maturity date is the date on which the principal amount of a note, draft, acceptance bond or another debt instrument becomes due and is repaid to the investor and interest payments stop. It is also the termination or due date on which an installment loan must be paid in full. What is Settlement Date The settlement date is th...

Excel Basics to Macros - Complete Guide

Excel Macro to Find Row and delete it on the match of “Data” in Column Sub Delete() Dim lRow As Long On Error Resume Next lRow = Application.WorksheetFunction.Match(10, Range("A1:A200"), 0) On Error GoTo 0 If lRow > 0 Then         Sheet1.Rows(lRow).Delete Shift:=xlShiftUp End If End Sub

What is Block chain ?

Blockchain The Blockchain is a secure transaction ledger database​ that is shared by all parties participating in an established, distributed network of computers. It records and stores every transaction or exchange of data that occurs in the network, essentially eliminating the need for trusted and centralized third parties. It enables entities (companies, individuals, sensors) to exchange and/or share data and information in a distributed and secure way, enabling anonymity of these entities. Credentials Objectives Learn about Blockchain technology and its application​ across various industries Describe the differences between traditional databases and distributed ledger technology Understand core Blockchain concepts​ such as consensus, transaction processing, state databases and cryptography Explain core Blockchain values​ such as transparency, auditability, efficiency and real time data Understand how Blockchain has evolved​ from cryptocurrencies like Bitcoin to larg...

How to disable indexing or directory browsing ?

To disable indexing or directory browsing you need to follow the steps:   Create a .htaccess file with the following: Options -Indexes

Problem playing hotstar videos in Ubuntu

Play directly in Firefox/Google Chrome In your browser, Open  https://www.hlsplayer.net/  and select M3U8 player (if not selected already) Now we have to get the url to paste it in the input box. First, get id from video page. Say your video page is  http://www.hotstar.com/sports/cricket/india-vs-australia-day-4/2001805383 , id is 2001805383 Open  http://getcdn.hotstar.com/AVS/besc?action=GetCDN&asJson=Y&channel=TABLET&id=123&type=VOD  . (Replace 123 with your actual video page id. Here it is 2001805383) In the json response, get the value of src. This is the url.  Ex : It will be something  like .

How to install Tomcat on Ubuntu

How to install Tomcat on Ubuntu and Integrate with Eclipse search for tomcat.  $ sudo apt-cache search tomcat Install tomcat admin and tomcat  $ sudo apt-get install tomcat7-admin $ sudo apt-get install tomcat7 $ sudo /etc/init.d/tomcat7 start $ sudo /etc/init.d/tomcat7 stop $ sudo /etc/init.d/tomcat7 restart Check for tomcat status sudo service tomcat7 status Open Eclipse:  Add Server and select path till     /usr/lib/tomcat7