Skip to content
View L-A's full-sized avatar

Organizations

@hackquebec

Block or report L-A

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. Javascript linked list class Javascript linked list class
    1
    class LinkedList {
    2
      constructor(initialElement) {
    3
        this.length = 1;
    4
        this.head = initialElement;
    5
        this.head.next = this.head;
  2. Übersicht widget to display Spotify'... Übersicht widget to display Spotify's currently playing track when there's one.
    1
    import { run, styled } from "uebersicht";
    2
    
                  
    3
    const refreshFrequency = 500;
    4
    const size = 80;
    5
    const Sep = "⎖"; // Ideally, this is never a character in a song title!