Skip to content
View renaudfv's full-sized avatar
☀️
☀️

Highlights

  • Pro
Block or Report

Block or report renaudfv

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. Processing sketch on how to synchron... Processing sketch on how to synchronously ping devices
    1
    import java.net.*;
    2
    
                  
    3
    void setup() {}
    4
    
                  
    5
    void draw() {
  2. Processing sketch to send HTTP Get R... Processing sketch to send HTTP Get Requests
    1
    import java.net.http.*;
    2
    import java.net.URI;
    3
    import java.net.http.HttpResponse.BodyHandlers;
    4
    
                  
    5
    void sendReq() {
  3. Processing config file loader and UI Processing config file loader and UI
    1
    import controlP5.*;
    2
    
                  
    3
    SettingsManager sm;
    4
    ControlP5 cp5;
    5
    
                  
  4. Processing logger using java util lo... Processing logger using java util logging lib
    1
    import java.util.logging.*;
    2
    import java.util.Date;
    3
    
                  
    4
    // Main logger
    5
    Logger LOGGER = Logger.getLogger("");