Copyright © infotec016 . Powered by Blogger.

Monday, December 9, 2019

Compiler Design - Definitions


Lexical analysis Lexical analyzer reads the source program character by character and returns the tokens of the source program. The tokens represent pattern of characters which have the same meaning such as identifiers, operators, numbers and etc. Syntax analysis Syntax analyzer re-combine the tokens and create a graphical representation of the syntactic structure (syntax tree). In addition to that,...

Thursday, December 5, 2019

BST - Binary Search Tree


For any node x,     the keys in left sub tree of x are at most x.key and     the keys in right sub tree of x are at least x.key. Here the fisrt is BST but in the second 11 should not be in the left side of 10. Binary Search Tree Property  ...

Wednesday, November 27, 2019

Machine - learning methods


Classification learning classification learning is supervised.(Predicting a discrete class) label is provided with actual outcome. Association learning detecting association between features. it can be applied if no class is specified and any kind of structure is considered as "interesting". Clustering Finding group of items that are similar. It is unsupervised Numeric prediction Variant of...

Saturday, November 23, 2019

Wednesday, November 13, 2019

NLP- Natural Language Processing


Natural Language Processing is the technology used to aid computers to understand the human’s natural language. Different level of analysis for natural language Prosody: Deals with rhythm and intuition of the language Phonology: Examined the sound that are combined to from language Morphology: Concern with the components that make up words  Syntax: Studies the rules for combining words into...

Tuesday, November 12, 2019

Red Black Tree


Rules Self-balancing Binary Search Tree The node color can be either red or black (It is possible to have all black nodes but impossible to have all red nodes) The root node must be black There is no two red adjacent nodes (It will not have a parent and a child node in red color) NULL node is always black Every path from root to NULL node should have the same number of black nodes Insertion If...

Sunday, November 10, 2019

Saturday, November 9, 2019

Git Commands


To find git version >> git --version Initialize a new repository and push >> git init <repo_name> Create your files to upload  to the repository created in your machine To see the status.. It will show the modified files in the directory >> git status To add the file >> git add <file_name> To commit >> git commit -m "leave your commit message here" To...

Tuesday, July 23, 2019

Friday, July 19, 2019

Friday, April 5, 2019

Maven Repository


Maven repository is a directory that contained packaged JAR files.  Maven searches for dependencies in the repositories. It searches for dependencies first in the local repository which is located in the local system created by maven when you run any maven command. The directory is named as .m2 by default. Second, It searches for maven central repository which is located in the web created by...

Tuesday, February 26, 2019

HL7 - Intro


HL-7 is an international standard used to exchange medical records between healthcare systems. It is introduced by Health level 7 international which is an non profit organization. Health Level Seven refers to the seventh level(Application Layer) of OSI Model(Open System Interconnection). It specifies communication contents and exchange formats on the 7th layer on OSI. Application layer addresses...

Monday, February 25, 2019

HL-7 Version 2 Message Structure


Message Message is the smallest transferable unit in hl7 and is composed of segments. It begins with the message header Segment(MSH) and is identified by the message type and the initiating event (trigger event). Segments  Segments are a way of grouping of items...

Sunday, February 24, 2019

Handling HAPI Test Panel


What is HAPI Test Panel HAPI Test Panel is a full featured HL7 message editor, used to send and receive HL7 messages. Install TestPanel Download hapi-testpanel-2.0.1-linux.tar.bz2 from here Extract the download to your perfect location In Ubuntu, run the testpanel.sh...

Saturday, February 23, 2019

Hl7 Simple Java Client


HL7 Sender Java Code package hl7sender; import ca.uhn.hl7v2.DefaultHapiContext; import ca.uhn.hl7v2.HapiContext; import ca.uhn.hl7v2.app.Connection; import ca.uhn.hl7v2.app.Initiator; import ca.uhn.hl7v2.model.Message; import ca.uhn.hl7v2.parser.Parser; public class hl7sender {    public static void main(String[] args) { final int PORT_NUMBER = 9014; // In HAPI, almost all things...

Friday, February 22, 2019

Hl7 Java Client with Tls


HL7 Sender Java Code package hl7senderwithTls; import ca.uhn.hl7v2.DefaultHapiContext; import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.HapiContext; import ca.uhn.hl7v2.app.Connection; import ca.uhn.hl7v2.app.Initiator; import ca.uhn.hl7v2.hoh.sockets.CustomCertificateTlsSocketFactory; import ca.uhn.hl7v2.hoh.util.HapiSocketTlsFactoryWrapper; import ca.uhn.hl7v2.hoh.util.KeystoreUtils; import...