Skip to content
View victorDeveloper0821's full-sized avatar

Block or report victorDeveloper0821

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Spring-boot-template Spring-boot-template Public template

    Demo Swagger API example here

    Java

  2. Spring boot sample schema.sql Spring boot sample schema.sql
    1
    DROP table IF EXISTS todo;
    2
    
                  
    3
    CREATE TABLE todo (
    4
    	todo_id varchar(36) primary key,
    5
    	title varchar(20) default 'unKnown',
  3. Node.js Beginner Notes Node.js Beginner Notes
    1
    // read .env to get config in node.js express
    2
    
                  
    3
    const path = require('path');
    4
    const dotEnv = require('dotenv');
    5
    
                  
  4. sample for spring boot data.sql sample for spring boot data.sql
    1
    Insert into todo (todo_id,title,description,start_date,due_date,finished) values ('c4b45418-2a8c-48f7-aea9-b3f0bbc31138','unknown','unknown description','2020-10-05','2020-10-07','f');
    2
    Insert into todo (todo_id,title,description,start_date,due_date,finished) values ('ec36ef4a-6ec5-401e-a18f-a140c917dac1','unknown1','unknown description1','2020-10-05','2020-10-07','f');
    3
    Insert into todo (todo_id,title,description,start_date,due_date,finished) values ('d323a41b-8149-43c7-bc59-13cafbc3548f','unknown2','unknown description2','2020-10-05','2020-10-07','f');
    4
    Insert into todo (todo_id,title,description,start_date,due_date,finished) values ('234420a9-0e0d-4fe6-833e-0e2f32711a97','unknown3','unknown description3','2020-10-05','2020-10-07','f');
    5
    Insert into todo (todo_id,title,description,start_date,due_date,finished) values ('2d281ecf-1d99-4bd2-b716-e6513cb113eb','unknown4','unknown description4','2020-10-05','2020-10-07','f');
  5. handon-py-data-analysis handon-py-data-analysis Public

    python hand on experience repository

    Jupyter Notebook