Skip to content
View daryl-sf's full-sized avatar

Block or report daryl-sf

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. JS function that will curl a server ... JS function that will curl a server asynchronously for each element in an array ([1,2,3] = 3) and log out the request/response times
    1
        time_namelookup:  %{time_namelookup}\n
    2
           time_connect:  %{time_connect}\n
    3
        time_appconnect:  %{time_appconnect}\n
    4
       time_pretransfer:  %{time_pretransfer}\n
    5
          time_redirect:  %{time_redirect}\n
  2. Quick and Dirty interest calc Quick and Dirty interest calc
    1
    const interestCalc = (init, rate, years, verbose) => {
    2
      if (!verbose) {
    3
        const fv = init * (1 + rate) ** years;
    4
        console.log(`Total: £${fv.toFixed(2)}. Total Earned: £${(fv - init).toFixed(2)}`);
    5
        return;
  3. falling-sand falling-sand Public

    JavaScript

  4. ai-playground ai-playground Public

    HTML

  5. ticker ticker Public

    A lightweight terminal stock ticker that shows real-time price data, position performance, and a sparkline chart directly in your shell.

    JavaScript 1