Skip to content
View gatanaso's full-sized avatar
🤓
Working on client projects
🤓
Working on client projects
Block or Report

Block or report gatanaso

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

  1. multiselect-combo-box multiselect-combo-box Public

    A multi select combo box web component based on Polymer and the vaadin-combo-box

    JavaScript 49 39

  2. multiselect-combo-box-flow multiselect-combo-box-flow Public

    Multi-select-combo-box component for Vaadin

    Java 30 25

  3. time-field time-field Public

    A time field Web Component based on Polymer 3

    HTML 4 1

  4. helsinki-js-fav helsinki-js-fav Public

    An example web component built for the Helsinki JS Meetup.

    HTML

  5. todo-platform todo-platform Public

    A simple todo Vaadin Platform application

    Java

  6. JShell http client example JShell http client example
    1
    import java.net.http.*;
    2
    var client = HttpClient.newHttpClient();
    3
    var uri = new URI("https://riimusolutions.com");
    4
    var request = HttpRequest.newBuilder().uri(uri).build();
    5
    var response = client.send(request, HttpResponse.BodyHandlers.ofString());