tangdiforx /
iOSPalette
Objective-C version of Google Palette algorithm in Java.A tool to extract the main color of an image.
Loading repository data…
dfneves19 / repository
The objective of this project is to implement a REST service, using the Quarkus JAVA framework, returning a value from the labseq sequence.
This project implements a REST service to calculate the labseq sequence (l(n)) using Quarkus for the backend and an Angular frontend. The solution also includes Docker setup for both backend and frontend.
n = 0 => l(0) = 0
n = 1 => l(1) = 1
n = 2 => l(2) = 0
n = 3 => l(3) = 1
n > 3 => l(n) = l(n-4) + l(n-3)
l(100000) returns in under 10 seconds.{n}: non-negative integer{
"n": 20,
"value": "129"
}
"n must be a positive integer"
cd backend
mvn clean install
mvn quarkus:dev
http://localhost:8080/labseq/{n}cd frontend
npm install
ng serve
http://localhost:4200From the main folder run:
docker-compose up --build
Quarkus OpenAPI describes /labseq/{n} and it is available at:
http://localhost:8080/q/swagger-ui/
To run all backend tests:
cd backend
mvn test
To generate coverage report using JaCoCo:
mvn jacoco:report
target/site/jacoco/index.htmlSelected from shared topics, language and repository description—not editorial ratings.
tangdiforx /
Objective-C version of Google Palette algorithm in Java.A tool to extract the main color of an image.
urbancamo /
The objective of the Java API for KML is to provide Java interfaces for easy access to KML (Keyhole Markup Language) data.
john-difool /
cocos2d for Android is a framework for building 2D games, demos and other graphical/interactive applications. It is based on the cocos2d-iphone design: it uses the same API, but instead of using objective-c, it uses java.
The reliable web app pattern is a set of objectives to help your web application converge on the cloud. This repo contains a reference implementation of a reliable web application for Java.
StuartLab /
MiNA (Mitochondrial Network Analysis) is a project aimed at making the analysis and characterization of mitochondrial network morphology more accurate, faster, and objective. This project currently consists of a set of Python scripts (and JAVA for the user interface) for the Fiji distribution of ImageJ.
mayurisamanta /
The main objective of this project is to cater the needs of the passenger who are traveling from one point to another. This project have contains essential modules like Customer and Administrator. User can book / reserved his ticket one day before.