Memoization of recursive calls on separate lines

I am attempting to solve Leetcode problem 70 by first trying to visualize the tree and then implement the solution. The tree is simple in that the left branch is a single step and the second branch is a double step.

For n = 3, the tree would be;

      /  
     /    
    1      2
   /     /
  1   2  1
 /
1

Giving 1,1,1, 1,2 and 2,1 for a total of 3. I came up with a non-memoized solution which uses two recursive ‘branch’ calls

var climbStairs = function(n) {
  let dfs = (combination) => {
    let steps = combination.reduce((prev, curr) => prev + curr, 0)

    if (steps === n) {
      output.push(combination)
      return
    }

    if (steps > n) {
      return
    }

    dfs([...combination, 1])
    dfs([...combination, 2])
  }

  let output = []
  dfs([])
  return output.length
};

This works, but times out for larger numbers as expected. So I have two questions;

  1. Is it possible to have a memoized version of my attempt above? (i.e. when the recursive branch calls are on separate lines)

  2. All other solutions on the site use a variation of fibonacci; dfs(step + 1) + dfs(step + 2). I don’t quite understand why the two recursive calls should be added in this example problem. What is the ‘give away’ that adding the two recursive calls is the way to go rather than branching on different lines?

Cannot call an external file when running javascript in firefox

I’m trying to run this in my index.html :

<script>
var stockfish = new Worker('./js/stockfish.js');

stockfish.addEventListener('message', function (e) {
  console.log(e.data);
});
 
stockfish.postMessage('uci');
</script>

But I get the following error :
Security error: content located at file:///D:/ChessComparator/index.html cannot load data from file:///D:/ChessComparator/js/stockfish.js.
I cannot run web workers on chrome and I can’t think of another browser to test this on.

How can I access an object property inside the object while inside a function in the property without a getter?(javascript)

I have this code where I want all my code to be inside one main object without exeptions:

var inputs = [];

var Ivh = {
  addInput: (input, display, message, regex) => {
    inputs.push([input, display, message, regex, input.value]);
  }
}

yet this wouldn’t work:


var Ivh = {
  inputs: [],
  addInput: (input, display, message, regex) => {
    inputs.push([input, display, message, regex, input.value]);
  }
}

How would I convert the inputs variable into a property for Ivh? I tried finding ways to access an object’s property from inside the object with getters and this but none of them would work. ie.(this wouldn’t allow me to call the Ivh’s addInput function and getters don’t take arguments)

Cannot access property of JSON in VueJS using a loop index

My VueJS running app displays activity data from Strava, grouped together by week, over a 20-week period. The difficulty that I’m having is that the object from my API appears, but I cannot access each property.

These are the relevant excerpts from the SFC.

DATA

weekly_total_data will grow as the weeks progress

data() {
        {
            return {
            activity_weeks: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],
            weekly_total_data:
               [{"week_number":3,"total_distance":39877.6,"total_moving_time":11841},
                {"week_number":2,"total_distance":58596.4,"total_moving_time":18719},     
                {"week_number":1,"total_distance":41347.5,"total_moving_time":12796}]
            }
        }
    }

FUNCTION

Acccessing the data

    matchWeeklyTotals(){
        var x = this.weekly_total_data
        console.log(x)
        return x
      }
    },

TEMPLATE

Looping through the weeks, getting an index for each week, and then using that to display the appropriate data for the week

<div v-for="(week, week_index) in this.activity_weeks" v-bind:value="week._id">
   <div class="container max-w-xl mx-auto">
       <h2 class="text-2xl">Week {{week}}: {{ (matchWeeklyTotals()[week_index])}}</h2>
   </div>
</div>

As it stands, I can display the object, but when I do matchWeeklyTotals()[week_index][total_distance], as an example, it fails.
I have also tried variations of JSON.parse.

Any help to access the total_distance and total_moving_time appreciated.

Updating a element works in Chrome but not in Safari

I’m trying to update a progress bar from within in async function. The following snippet of code works for me in Chrome but not in Safari:

<!DOCTYPE html>
<html>

<body>
  <progress id="progressBar" value="40" max="100"></progress>
  <script>
    (async () => {
      const progressBar = document.getElementById("progressBar");
      for (let i = 0; i <= 100; i++) {
        progressBar.value = i;
        await new Promise(resolve => setTimeout(resolve, 100)); // sleep for 0.1s
      }
    })();
  </script>
</body>

</html>

In chrome, the progress bar gets updated every 0.1s as expected.

In Safari, the progress bar doesn’t get updated (the loop executes, and we can even see that the value of progressBar is being updated by printing console.log(progressBar.value), but that change doesn’t get reflected in the UI).

I’m using an M1 Macbook Pro with Safari Version 16.4 (18615.1.26.11.23).

How to pass a token which my api uses as header in appscript?

So i am getting trouble in passing the token which my api uses as header, I tried in postman api works fine, Its an internal api.

Whereas when it come to code which is present in appscript it works fine with open apis but when I try to use my own internal api it throws error as :

Exception: Request failed for https://api.rupeek.com returned code 401. Truncated server response: {“message”:”Bad authentication”}

sharing the appscript code below :

 function onOpen() {
  var ui = SpreadsheetApp.getUi();
  ui.createMenu('Custom Rupeek Menu')
      .addItem('Get Ref ID','displayrefid')
      .addToUi();
}
 

// function to call Rupeek API
function callrpkAPI(rpk) {
  
  // Call the Rupeek api

  var url = 'api url';
  var response = UrlFetchApp.fetch(url, token);
  var token = {
    "method": "get",
    "headers": {
      "Authorization": "MY JWT token passing here ",
      "Accept": "application/json",
    },
    "contentType": "application/json",
    "body": "phone",
};

  
  // Parse the JSON reply
  var json = response.getContentText();
  return JSON.parse(json);
  
}
 
 
function displayrefid() {
  
  // pick up the search term from the Google Sheet
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getActiveSheet();
  
  var ref = sheet.getRange(4,2).getValue();
  
  var id = callrpkAPI(ref);
  
  var results = id["results"];
  
  var output = []
  // clear any previous content
  sheet.getRange(15,1).clearContent();
  
  // paste in the values
  sheet.getRange(15,1).setValues(sortedOutput);
  
}

Please let me know if you guys get the solution for this stuck in this for last 2 days.

So i am getting trouble in passing the token which my api uses as header, I tried in postman api works fine, Its an internal api.

Whereas when it come to code which is present in appscript it works fine with open apis but when I try to use my own internal api it throws error as :

Exception: Request failed for https://api.rupeek.com returned code 401. Truncated server response: {“message”:”Bad authentication”}

How can I add a delay to make sure these text animations only trigger at the end of my loader screen?

I’m working in Webflow and have a screen loader that has a 4 second duration on first homepage visit and a 2 second duration on subsequent visits. I want my text to animate once that loader screen is complete but I’m not sure how to have the delay know to do 4 or 2 seconds.

I tried adding a delay to each animation but that just applies to the animation itself each time it appears on the screen since they’re set to automatically reset when out of the viewport. I think the question I’m trying to ask is, is there a way to listen for when the loader takes 4s vs 2s and let the text animate accordingly?

Here’s the text animation JS:

<script>
window.addEventListener("DOMContentLoaded", (event) => {
  // Split text into spans
  let typeSplit = new SplitType("[text-split]", {
    types: "words, chars",
    tagName: "span"
  });

  // Link timelines to scroll position
  function createScrollTrigger(triggerElement, timeline) {
    // Reset tl when scroll out of view past bottom of screen
    ScrollTrigger.create({
      trigger: triggerElement,
      start: "top bottom",
      onLeaveBack: () => {
        timeline.progress(0);
        timeline.pause();
      }
    });
    // Play tl when scrolled into view (60% from top of screen)
    ScrollTrigger.create({
      trigger: triggerElement,
      start: "top 60%",
      onEnter: () => timeline.play()
    });
  }

  $("[words-slide-up]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".word"), { opacity: 0, yPercent: 100, duration: 0.5, ease: "back.out(2)", stagger: { amount: 0.5 } });
    createScrollTrigger($(this), tl);
  });

  $("[words-rotate-in]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.set($(this).find(".word"), { transformPerspective: 1000 });
    tl.from($(this).find(".word"), { rotationX: -90, duration: 0.6, ease: "power2.out", stagger: { amount: 0.6 } });
    createScrollTrigger($(this), tl);
  });

  $("[words-slide-from-right]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".word"), { opacity: 0, x: "1em", duration: 0.6, ease: "power2.out", stagger: { amount: 0.2 } });
    createScrollTrigger($(this), tl);
  });

  $("[letters-slide-up]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".char"), { yPercent: 100, duration: 0.2, ease: "power1.out", stagger: { amount: 0.6 } });
    createScrollTrigger($(this), tl);
  });

  $("[letters-slide-down]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".char"), { yPercent: -120, duration: 0.3, ease: "power1.out", stagger: { amount: 0.7 } });
    createScrollTrigger($(this), tl);
  });

  $("[letters-fade-in]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".char"), { opacity: 0, duration: 0.2, ease: "power1.out", stagger: { amount: 0.8 } });
    createScrollTrigger($(this), tl);
  });

  $("[letters-fade-in-random]").each(function (index) {
    let tl = gsap.timeline({ paused: true });
    tl.from($(this).find(".char"), { opacity: 0, duration: 0.05, ease: "power1.out", stagger: { amount: 0.4, from: "random" } });
    createScrollTrigger($(this), tl);
  });

  $("[scrub-each-word]").each(function (index) {
    let tl = gsap.timeline({
      scrollTrigger: {
        trigger: $(this),
        start: "top 90%",
        end: "top center",
        scrub: true
      }
    });
    tl.from($(this).find(".word"), { opacity: 0.2, duration: 0.2, ease: "power1.out", stagger: { each: 0.4 } });
  });

  // Avoid flash of unstyled content
  gsap.set("[text-split]", { opacity: 1 });
});
</script>

And here’s the page loader script:

<script>
// variables
let customEase =
  "M0,0,C0,0,0.13,0.34,0.238,0.442,0.305,0.506,0.322,0.514,0.396,0.54,0.478,0.568,0.468,0.56,0.522,0.584,0.572,0.606,0.61,0.719,0.714,0.826,0.798,0.912,1,1,1,1";
let counter = {
  value: 0
};
let loaderDuration = 4;

// If not a first time visit in this tab
if (sessionStorage.getItem("visited") !== null) {
  loaderDuration = 2;
  counter = {
    value: 75
  };
}
sessionStorage.setItem("visited", "true");

function updateLoaderText() {
  let progress = Math.round(counter.value);
  $(".loader_number").text(progress);
}
function endLoaderAnimation() {
  $(".trigger").click();
}

let tl = gsap.timeline({
  onComplete: endLoaderAnimation
});
tl.to(counter, {
  value: 100,
  onUpdate: updateLoaderText,
  duration: loaderDuration,
  ease: CustomEase.create("custom", customEase)
});
tl.to(".loader_progress", {
    width: "100%",
    duration: loaderDuration,
    ease: CustomEase.create("custom", customEase)
}, 0);
</script>

How to resize a chip tag of material UI

const useStyles = makeStyles({
    chipRoot: {
        color: '#BEBEBE',
        borderColor: '#BEBEBE',
        "& .MuiChip-icon": {
            order: 2, // the label has a default order of 0, so this icon goes after the label
            marginRight: "10px", // add some space between icon and text
            cursor: "pointer",
            display: 'none'
        },
        "&:hover": {
            color: '#30223E',
            borderColor: '#30223E',
            backgroundColor: "#E6ECFF !important",
            "& .MuiChip-icon": {
                display: 'inline',
                color: '#30223E',
            }
        }
    }
});

I am using Chips tag of material UI. And I am wrapping all the chip in a div and on hover I am showing and hiding the copy Icon but the problem I facing is when any chip comes near to a div on hover it flickers.

How to put percentage to a pie with chartjs?

Create a project in React and add these dependencies:

enter image description hereยด

enter image description here

The hover of the diagram works, but I want the percentage to appear in each section so that it can be downloaded, what options do I add, I already tried with datalabels and tooltip, but it doesn’t work for me.

This is my diagram:

<Pie ref={chart} data={dataDiagram} options={} />

I already tried many things but it doesn’t work.

Chart JS line graph displaying as blank canvas upon render

I’m using Chart JS to try and add a graph into my web app. I’ve included the <script></script> directly into my template (using Django MVT framework) and I’m trying to render the HTML into Chrome but the chart isn’t showing, even though the code is an almost direct copy from the Chart JS website’s “getting started” section (which works fine!).

The data is coming from the back-end properly because I can see it with chrome dev tools, however the canvas is just a blank square.

I’ve seen about a dozen videos and guides online where people use the same code and their graphs are working. Other Stack threads don’t help either as they are either to do with refreshing data or thread never got closed, so stuck on what’s going on.

Things I’ve tried:

  • Tried setting dates to strings instead to see if that makes a difference, nope.
  • Tried moving the CDN placement in my code, no difference.
  • Setting “beginAtZero: false”

Been playing spot the difference for a couple of days with no success. The only thing I can possibly think is it’s something to do with the options for the line graph… no idea where to begin though as documentation seems incomplete. Here are screenshots of the “getting started” code working and my own code not working.

failed attempt
success with default code

Why the error runs – Uncaught SyntaxError: The requested module ‘/src/router/index.js’ does not provide an export named ‘default’ at main.js vue?

At vite vue runs the error – Why the error runs – Uncaught SyntaxError: The requested module ‘/src/router/index.js’ does not provide an export named ‘default’ at main.js vue ? What is wrong ?

https://stackblitz.com/edit/vue3-vite-starter-ywq59j?file=package.json,src%2Fcomponents%2FFooter.vue,src%2Fcomponents%2FHeader.vue,src%2Fcomponents%2FMain.vue,src%2Fcomponents%2FNotMain.vue,src%2Fviews%2FHome.vue,src%2Fviews%2FShops.vue,src%2FApp.vue,src%2Fmain.js,public%2Ffavicon.ico

// main.js

import { createApp } from 'vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap/dist/js/bootstrap.js'
import App from './App.vue'
import router from './router'

const app = createApp(App)

app.use(router)

app.mount('#app')

How do I fix my to make the drop down menu appears?

Here is my code below. I also have a trigger from spreadsheet on open but that doesn’t seem to work since the menu never shows up. I think something is missing but I can’t point out what.

Can someone please help?


function onOpen(){
  doc = DocumentApp.getActiveDocument();
  var menudrop = SpreadsheetApp.getUi();
  menudrop.createMenu('Refresh Reports');
  menudrop.createMenu.addItem('Refresh CO', 'copyClearPasteAUDashboard','combinedLive');
  menudrop.createAddonMenu.addItem('Refresh SW', 'copyClearPasteSWDashboard','combinedLive')
  menudrop.addToUi();
}

My tag doesn’t working on my WordPress site

I have a wordpress site on my own. i am trying to use in meta refresh tag like this:

 <meta http-equiv="refresh" content="0;URL='tel:+somenumber'" />

but it doesnt work when i inspect my online webpage in head its http-equiv lost like:

<meta content="4; URL='tel:somenumber'"/>

when i try to edit as html and insert again

 <meta http-equiv="refresh" content="0;URL='tel:+somenumber'" />

it works. How can i fix this? I am using Head & Footer Extension for WordPress.

meta http-equiv refresh doesnt working on my wordpress site.