Skip to content
View sylbru's full-sized avatar
🎻
🎻
Block or Report

Block or report sylbru

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. is-elm-dead is-elm-dead Public

    Static single-page website answering the common question ”Is Elm dead?”

    HTML 14 2

  2. random-playlist random-playlist Public

    Random M3U playlist generation (with silences).

    Python 1 1

  3. metrornorme metrornorme Public

    Simple metronome as a web app. WARNING: it currently misses the main feature of a metronome, which is to produce a *steady* beat.

    Vue

  4. advent-of-code-2021 advent-of-code-2021 Public

    My AoC 2021 solutions in Haskell (34 stars)

    Haskell

  5. Elm detector (bookmarklet) Elm detector (bookmarklet)
    1
    javascript:(async function(){let elmDetected;if(typeof window.Elm==="object"){elmDetected=true}else{let scriptTags=document.scripts;let scriptIsElm=script=>script.match(/throw (new )?Error\([\'\"]https:\/\/github\.com\/elm\/core\/blob\/1\.0\.0\/hints\//);for(scriptTag of scriptTags){let scriptContents;if(!scriptTag.src){scriptContents=scriptTag.textContent}else{await fetch(scriptTag.src).then(response=>response.text()).then(text=>scriptContents=text).catch(err=>{console.error(err); scriptContents=null;})}if(scriptContents===null){continue;}if(scriptIsElm(scriptContents)){elmDetected=true;break}}}if(elmDetected){alert("%F0%9F%8C%B3 Yep, seems to be an Elm app! \\o/ %F0%9F%8C%B3")}else{alert("Nope, doesn%E2%80%99t seem to be Elm (but I might be wrong).")}})();