Skip to content
View samuelstein's full-sized avatar
👨‍💻
👨‍💻

Block or report samuelstein

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. cli-checkin-alf.io cli-checkin-alf.io Public

    commandline app to be used for check-in people via the great alf.io ticket reservation system

    Java 1

  2. html2pdf html2pdf Public

    converts a webpage to a pdf representation

    Java

  3. Deserialize generic list with gson Deserialize generic list with gson
    1
    Type listType = new TypeToken<ArrayList<YourClass>>(){}.getType();
    2
    List<YourClass> yourClassList = new Gson().fromJson(jsonArray, listType);
  4. HTTP Requests with Selenium HTTP Requests with Selenium
    1
    public ResponseEntity<String> doJsonRequest(HttpMethod httpMethod, String path, Object body) throws URISyntaxException {
    2
        RestTemplate restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory());
    3
    
                  
    4
        HttpHeaders headers = new HttpHeaders();
    5
        headers.setContentType(MediaType.APPLICATION_JSON);
  5. Cookbook Self-Hosting Directus 9 Hea... Cookbook Self-Hosting Directus 9 Headless CMS
    1
    # Cookbook: Self-Hosting Directus 9 Headless CMS
    2
    
                  
    3
    ## Assumption
    4
    - Ubuntu 22.04 LTS
    5
    - PostgreSQL
  6. micro-frontends-poc micro-frontends-poc Public

    client-side integration of independent components at runtime

    JavaScript