Giter Site home page Giter Site logo

byc3230 / back-end Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ibm-call-for-code-2020/back-end

0.0 0.0 0.0 1.93 MB

Back-end of Team Ithaca in IBM Call-For-Code Global 2020

Python 0.46% HTML 3.18% CSS 15.89% JavaScript 80.45% C++ 0.02%

back-end's Introduction

Back-end

Back-end of Team Ithaca in IBM Call-For-Code Global 2020

System Architecture

alt text

Carbon Tax Bot Url (Front-End using AI and Blockchain)

https://ibm.pinot.studio/chat

IBM Watson Assistant Apply (IBM Service)

https://web-chat.global.assistant.watson.cloud.ibm.com/preview.html?region=au-syd&integrationID=ade5378b-18c8-4579-9e3c-a1d1e756dc86&serviceInstanceID=45e4a82e-f647-4a5c-866b-69fae0086057

IoT Device Technology

  • Development Environment : Arduino IDE
  • Iot Device Board : Arduino UNO R3
  • Co Measure Sensor : MQ-7

Clayton BlockChain Block Explorer Url

https://baobab.scope.klaytn.com/account/0xa87C2C7C63d407D9f7A9b634aF75378FB6D2Aab1?tabId=txList

Web Platform Url (The Carbon Tax Web Platform)

https://co2bot.run.goorm.io/

DB Table Schema

-- User Information
CREATE TABLE USER_INFO (
Idx bigint(20) unsigned NOT NULL AUTO_INCREMENT,
Userid varchar(50) NOT NULL,
UserType varchar(20) NOT NULL,
UserName varchar(50) DEFAULT NULL,
Continent varchar(50) DEFAULT NULL,
Country varchar(50) DEFAULT NULL,
PRIMARY KEY (Idx)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

-- Carbon Emission Log
CREATE TABLE CARBON_LOG (
Idx bigint(20) unsigned NOT NULL AUTO_INCREMENT,
Userid varchar(32) NOT NULL,
Amount int(11) NOT NULL,
Insert_Dt datetime DEFAULT NULL,
PRIMARY KEY (Idx)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8;

-- Penalty Issue From Government
CREATE TABLE PENALTY_INFO (
Idx bigint(20) unsigned NOT NULL AUTO_INCREMENT,
Userid varchar(50) NOT NULL,
Insert_Dt datetime DEFAULT NULL,
Remarks varchar(50) DEFAULT NULL,
PRIMARY KEY (Idx)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

back-end's People

Contributors

byc3230 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.