Code Monkey home page Code Monkey logo

medkit's Introduction

MedKit

MedKit

File Structure

Directory Name Content
src/ Data Tools
src/DataExtraction/ Data Extraction tools
src/DataExtraction/cpp/ Data Analyser
src/DataExtraction/cpp/compressor/ Data compressor
src/DataExtraction/cpp/symptoms_syntax_finder/ Data analysis tools and classifier
src/DataExtraction/cpp/symptoms_syntax_finder/database/ Parsed data files
src/DataExtraction/cpp/symptoms_syntax_finder/DataFiles/ Raw unparsed data
src/DataExtraction/javascript/ Symptoms crawler
src/DataExtraction/python/ Data links extractor
src/DataExtraction/shell/ Data extractor
userinterface/ User interface
userinterface/images/ All images go here
userinterface/javascript-ui/ Scripts for UI
userinterface/pages/ UI pages
userinterface/scss Precompiled CSS
userinterface/stylesheet Compiled CSS

Run Application

Install Node.js, Node Package Manager and Electron

	$ sudo apt update
	$ sudo apt install nodejs
	$ sudo apt install npm
	$ sudo npm install -g electron

Clone the repository

	$ git clone https://github.com/Nerd-Inc/MedKit.git/
	$ cd MedKit
	$ npm start

Want to Contribute?

All contributions are welcomed and highly appreciated. If you will like to be a contributor to this project, take a few minutes to read the Code of Conduct. Also, you should configure your code editor/IDE to use 4 tabs of indention. Variables names should be descriptive and should be follow the code style of the language. Example:

JavaScript

   var additionInClosure = function (argumentOne){
	   // function name should tell what the function does
	   // variable names are camel case
	   return function (argumentTwo){
		   return console.log(argumentOne + argumentTwo);
	   }
   }

C++

   void read_and_show_content_of_file(string filename) {
		ifstream read_file(filename.c_str());
		std::string file_line;
		// variable name should be descriptive and word delimiter is an underscore
		while(getline(read_file, file_line)){
			std::cout << file_line << std::endl;
		}
	}

medkit's People

Contributors

sherlockwisdom avatar collinsnji avatar code3hr avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.