Leonardo Sartori (@sartorileonardo)
  • Stars
    star
    20
  • Global Rank 623,302 (Top 22 %)
  • Followers 43
  • Following 98
  • Registered almost 10 years ago
  • Most used languages
    Java
    44.4 %
    Python
    22.2 %
    SQL
    11.1 %
    JavaScript
    11.1 %
    TypeScript
    11.1 %
  • Location 🇧🇷 Brazil
  • Country Total Rank 15,366
  • Country Ranking
    SQL
    8
    Java
    1,449
    Python
    9,098

Top repositories

1

spring-boot-demo

Spring Boot Demo is agroups from technologies that can use with spring boot.
Java
8
star
2

CRUD-REST-auto-with-WSO2-Data-Services-Server

The WSO2 Data Services Server simplifies service-oriented architecture development efforts by providing an easy-to-use platform for integrating data stores, creating composite data views, and hosting data services. It supports access to secure and managed data through federated data stores, data service transactions, and data transformation and validation using an agile, agile and developer-friendly development approach. Provides federation support by combining data from multiple sources in single response or resource and also supports nested queries between data sources. More product information WSO2 DSS at: https://docs.wso2.com/display/DSS322/Downloading+the+Product In this experiment a CRUD was created using WSO2 DSS + MySQL Database. In a few minutes it is possible to create the CRUD BeckEnd with the tool. It follows step by step for the development of the experience: Note: Verify that the Oracle 7 Java environment variables are preconfigured (JAVA_HOME). 1- Download WSO2 DSS and unpack. 2- Copy a JDBC MySql lib (mysql-connector-java-5.1.40.zip) into the "repository / components / lib" path of the WSO2 DSS tool. 2- Run the "wso2server.sh" file in the "/ bin" directory if the OS is Linux or "wso2server.bat" for Windows OS. 3- Create a Database in MySQL as Script "Script_Create_Database.sql". 4- If the tool was successfully executed, it will display something like: "[2017-04-03 11: 08: 15,957] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL: https://10.0.0.104:9443/carbon/" 5- Access this address through the Chrome browser or Firefox and enter the default user and password "admin". 6- Add the link in the security exception if the browser asks for it. 7- Access the menu path Settings> Datasources> Add Datasources. 8- Fill in the form with the data: > Datasource Type: RDBMS > Name: control_product_db > Database Engine: MySQL > Driver: com.mysql.jdbc.Driver > URL: jdbc: mysql: // localhost: 3306 / control_product_db > User Name: <bank user> > Password: <bank password> 9- Click the "Test Connection" button, if the tool shows the message "Connection is healthy", you have done everything correctly and the tool already has a connection to the DB; 10- Access the Main> Generate menu path and fill in the data: > Carbon Datasource (s): control_product_db > Database Name: control_product_db 11- Click the "Next" button. 12- Soon the tool will display the table where CRUD will be carried out, keep the "product" table marked and click "Next". In Service Generation, select the option of "Single Service", that is a service for CRUD of all the table, since we only have the table product. 13- Fill in the data with: > Data Service Namespace: ProductService > Data Service Name: ProductService 14- Click "Next" 15- The tool will return the information: "Following Service (s) are Deployed Sucessfully" ProductService. 16- Click "Finish" and after 30 seconds, access the Main> Services> List menu, where you will see ProductService created. 17- Clicking the "Try this service" option, the tool will open a new tab in the browser with a graphical interface (FrontEnd) with the options of: > Delete_product_operation > Insert_product_operation > Select_all_product_operation > Select_with_key_product_operation > Update_product_operation 18- After choosing the insert operation for example, you must complete the values ​​inside the XML tags, such as the insert option: ====================================================================== ============ <Body> <P: insert_product_operation xmlns: p = "ProductService"> <! - Exactly 1 occurrence -> <P: product_name> Pen </ p: product_name> <! - Exactly 1 occurrence -> <P: product_price> 1.00 </ p: product_price> <! - Exactly 1 occurrence -> <P: product_description> BIC pen </ p: product_description> <! - Exactly 1 occurrence -> <P: product_amount> 1 </ p: product_amount> <! - Exactly 1 occurrence -> <P: product_date_created> 2017-04-03 </ p: product_date_created> <! - Exactly 1 occurrence -> <P: is_active> 1 </ p: is_active> <! - Exactly 1 occurrence -> <P: is_created> 1 </ p: is_created> </ P: insert_product_operation> </ Body> ====================================================================== ================ 19- After filling the data in the XML interface, you must click the "Send" button to perform the operation. 20- Finish !!! To download the CRUD WSO2 DSS + MySQL from this lab, go to: https://goo.gl/PqL2zm
SQL
2
star
3

Migration-data-from-MySQL-to-PostgreSQL-with-Pentaho-PDI-Kettle

This project is a laboratory in which MySQL Data Migration for PostgreSQL with Pentaho PDI (Kettle) was performed. All the steps in the Tutorial are available in Readme and the transformation is available for Download.
2
star
4

Support-ChatBot

Este projeto trata do desenvolvimento de um software open source do tipo ChatBot
Python
1
star
5

CRUD-Student-Spring-Boot-REST-FrontEnd

This project is the front end of the project https://github.com/leonardogt4/CRUD-Student-Spring-Boot-REST-BackEnd
TypeScript
1
star
6

MyShoppingList-App-Phonegap

Designing a simple hybrid mobile App, the App has the functions Add / List / Remove items from the shopping list.
1
star
7

CRUD-Java-JPA-Hibernate-Maven-Postgres.

This is a model of the sample Java application Java JPA, Hibernate, Maven and PostgreSQL DBMS.
Java
1
star
8

CRUD-Java-Hibernate-GenericDAO-Maven-PostgreSQL

This is a model of the sample Java application with JPA, Hibernate, GenericDAO, Maven and PostgreSQL DBMS. By using DAO in a generic way it is possible to gain time for project development and to improve the use of code. The Java version used in the project is 1.7.
Java
1
star
9

Fluig-Totvs

Este repositório contém projetos e componentes desenvolvidos para plataforma Fluig a partir da versão 1.5, tais como Workflow, Formulário Web e Datasets.
JavaScript
1
star
10

CRUD-Employee-Python-with-MySQL

Application developed in version 3.5 of Python. The function of this application is to perform an employee CRUD with the data storage in the MySQL DBMS. Note: To create this project was necessary to install the library "pymysql", follow the installation below: $ # X.X is the desired PyMySQL version (e.g. 0.5 or 0.6). $ Curl -L https://github.com/PyMySQL/PyMySQL/tarball/pymysql-0.5 | Tar xz $ Cd PyMySQL * $ Python setup.py install $ # The folder PyMySQL * can be safely removed now. It is also mandatory to have MySQL installed, in my case I used MySQL version 5.7.18 for Linux.
Python
1
star
11

Java-Consuming-API-Json-Weather

This is a simple consumption project of an API with weather data called Open Weather Map. Open Weather Map is an open API for developers to facilitate the incorporation of weather information into a variety of applications including web and mobile applications, insurance, advertising, agriculture, sports, and more. In this project the API was used passing as an acronym parameter of the country and city the system returns a JSON String with the data: - Latitude and longitude; - Weather forecast; - Air humidity; - Air pressure; - Wind speed; - Minimum temperature; - Maximum temperature; - Visibility; - Among other data; Java 1.7 was used to develop the project. The project dependencies (LIBs) are in the "pom.xml" file and are managed by Maven. To test run the "TestJsonApi.java" class and provide country and city data with the JOptionPane data entry dialog boxes.
Java
1
star