I try to open the npm start file on my Windows OS computer and nothing happens [closed]

The service requires determining and fixing an issue preventing a cryptocurrency website from starting up, particularly while executing the ‘npm start’ command on Windows. Additionally, the website requires continuous troubleshooting and maintenance service. Note that the issue might be related to the website’s code or its functionality. The website is not yet hosted and the service does not involve hosting it. There’s a necessity to examine the provided site files.

I try to open the npm start file on my Windows OS computer and nothing happens, but on my friend’s MacOs computer everything works!

Nothing happening all

Select multiple options in dropdown list and add to url

I would like that I can choose brand 1 and brand 2 and brand 3.
Is it possible that I can choose multipe options from a dropdown list without pressing “strg”? Just by clicking? Like a checkbox listed as a dropdown menu? And that the option values are just joined in the url: brand1,2,3

<form action="" method="GET" id="myForm">
    <select name="channel" id="0" onChange="changeURL()">
        <option value="" selected disabled>Choose Channel</option>
        <option value="facebook-ads">Facebook ads</option>
        <option value="instagram-ads">Instagram ads</option>
    </select>
    <select name="brand" id="1" onChange="changeURL()">
        <option value="" selected disabled>Choose Brand</option>
        <option value="brand-1">brand 1</option>
        <option value="brand-2">brand 2</option>
        <option value="brand-3">brand 3</option>
    </select>
</form>
<p id="test"></p>
<script>
// Initialize the filters array
var filters = [];

// Initialize filters with any pre-selected values on page load
document.addEventListener("DOMContentLoaded", function() {
    // Get all select elements
    var selects = document.querySelectorAll('select');
    
    // Initialize the filters array with the correct size
    filters = new Array(selects.length).fill("");
    
    // Check for any pre-selected options
    selects.forEach(function(select) {
        if (select.selectedIndex > 0) { // If something is selected (not the disabled option)
            filters[select.id] = select.value;
        }
    });
    
    // Update URL on initial load
    changeURL();
});

function changeURL() {
    var yourUrl = "https://yourdomain.com"; // Base URL
    var queryParams = [];
    
    // Update the current changed value
    var selects = document.querySelectorAll('select');
    selects.forEach(function(select) {
        filters[select.id] = select.value;
    });
    
    // Build query parameters, only including valid values
    selects.forEach(function(select) {
        var paramName = select.name;
        var paramValue = filters[select.id];
        
        // Only add to URL if there's a valid value
        if (paramValue && paramValue !== "" && paramValue !== "undefined") {
            queryParams.push(paramName + "=" + paramValue);
        }
    });
    
    // Add the query string if we have parameters
    if (queryParams.length > 0) {
        yourUrl += "?" + queryParams.join("&");
    }
    
    // Display the result
    document.getElementById("test").innerHTML = yourUrl;
}
</script>

Thank you in advance for your help!

I do not understand why in Django Rest Framework, my serializer do not serialize the file I gave it

I do not understand why in Django Rest Framework, my serializer do not serialize the file I gave it

I do a request like this in my Vue.js file:

  const formData = new FormData();
  formData.append("file", file.value);
  formData.append("amount_pages", "" + 12);

  try {
    const response = await fetch(BACKEND_URL, {
      method: "POST",
      body: formData,
    });
  } catch (e: any) {
    console.error(e);
  }

On a view like that in my Django/DRF app:

from rest_framework import generics, serializers

class MySerializer(serializers.Serializer):
    file = serializers.FileField(required=True)
    amount_pages = serializers.IntegerField()

    class Meta:
        fields = [
            "file",
            "amount_pages",
        ]

class MyView(generics.CreateAPIView):
    def post(self, request, *args, **kwargs):
        serializer = MySerializer(data=request.data)
        print(request.data)  # <QueryDict: {'file': [<TemporaryUploadedFile: part1.pdf (application/pdf)>], 'amount_pages': ['12']}>
        print(serializer.data) # {'file': None, 'amount_pages': 12}

I have already took a look at other issues but have not found any answers.

Next.js how to handle root with dynamic route [locale] (Localization)

I have a problem or I want some idea/solution how should I approach this.

My structure of my Next.js project is this -> App/[locale] -> and here I handle different locales /cs, /da, /de etc. etc…But my problem is I DONT have a ROOT page.js and layout.js. And the “Main” page only works with defined locale which is correct! But how should I handle root page and layout? I thought of using a redirect based on user‘s defined language of browser (and of course I have a default locale). But Is it good for SEO etc..?
I have a middleware.js:

import { NextResponse } from "next/server";

const SUPPORTED_LOCALES = ['cs', 'sk', 'da', 'de'];
const DEFAULT_LOCALE = 'cs';

function detectLocale(acceptLanguage) {
  if (!acceptLanguage) return DEFAULT_LOCALE;
  
  const languages = acceptLanguage.split(',');
  for (const lang of languages) {
    const [code] = lang.split(';')[0].toLowerCase().split('-');
    if (SUPPORTED_LOCALES.includes(code)) {
      return code;
    }
  }
  return DEFAULT_LOCALE;
}

export function middleware(req) {
  const url = req.nextUrl.clone();
  const { pathname } = url;

  if (pathname === '/') {
    const locale = detectLocale(req.headers.get('accept-language'));
    url.pathname = `/${locale}`;
    return NextResponse.redirect(url);
  }

I also had an idea to make a main page without the locale and user could just click on language he wants to be in. (www.domain.eu) and there he could redirect for the language he wants.

Is there a better option or is one of this approaches correct?

Is there a function to preserve the formatting when using apps script to input data from Google Sheets to Google Slides?

I am using Google Apps script to input data from Google Sheets to Google Slides. I am want the value and the formatting shown in Google Sheets to transfer over to Google Slides. For example: Placeholder {{A4}} shows -20 in red. The value -20 is transferring over but I can’t get the script to preserve the red color. {{A7}} shows +40 in green but it will not show in green in google slides. I have tried multiple scripts (loaded in the Variable google sheet file). One example is the script below. Is there any way to make this happen? The two files I have been using are also attached.

Variable Google Sheet file
Google Slides file

function updateTemplate() {
  const presentationID = "1tDFPYHd-U1mp5h5tC0VRkXciSS4wfCKA6FS9TmlseDg";
  const presentation = SlidesApp.openById("1tDFPYHd-U1mp5h5tC0VRkXciSS4wfCKA6FS9TmlseDg");
  const values = SpreadsheetApp.getActive().getDataRange().getValues();
  const slides = presentation.getSlides();

  let placeholderMap = {};

  slides.forEach((slide, slideIndex) => {
    const shapes = slide.getShapes();
    shapes.forEach((shape, shapeIndex) => {
      if (shape.getShapeType() === SlidesApp.ShapeType.TEXT_BOX && shape.getText) {
        const text = shape.getText().asString();
        values.forEach(([placeholder, value]) => {
          if (text.includes(placeholder)) {
            if (!placeholderMap[placeholder]) {
              placeholderMap[placeholder] = [];
            }
            placeholderMap[placeholder].push({ slideIndex, shapeIndex, originalText: text });
          }
        });
      }
    });
  });

  // Replace the placeholders
  values.forEach(([placeholder, value]) => {
    presentation.replaceAllText(placeholder, value.toString());
  });

  // Store the placeholder map as JSON in Script Properties
  PropertiesService.getScriptProperties().setProperty("placeholderMap", JSON.stringify(placeholderMap));
  Logger.log("Template updated and placeholder map saved.");
}

`

I’m still confused about coverage part of each and every line of the react code , how can i cover this lines?

How to make coverage of the uncovered lines with jest test in react, for example

**setShow && setShow(false)**; and one more scenario which I faced as uncovered 
and this type of scenarios   **if (fieldSelectOptions?.[0]?.options?.[0] && 'parentFormId' in fieldSelectOptions?.[0]?.options?.[0]) {** in this some cases i need optional check if i remove then the lines are getting covered otherwise it is not getting covered what should we do with this 

Why does my chrome extension only work when I inspect the popup?

I am currently writing up a chrome extension using JavaScript that should in theory run in the background, but I’m having some trouble getting it to. I wanted to create an extension to help me focus, since I get distracted easily. So I set up a system in which any user can input any URL, and it will take this value and add it to a list of banned URLs, which gets stored locally using chrome.storage. Then, whenever a tab is updated, which is measured using chrome.tabs.onUpdated, it checks the URL of every tab, if the URL is in the set of banned URLs, the tab gets closed. The full script is

document.addEventListener('DOMContentLoaded', () => {
    /* URL Data from the extension UI (HTML file) */
    /* -> InterfaceType: Buttons */
    const confirmAddButton = document.getElementById("confirmAddButton"); // Confirm add url from 'urlToAdd' textbox
    const confirmRemoveButton = document.getElementById("confirmRemoveButton"); // Confirm remove url from 'urlToRemove' textbox
    /* -> InterfaceType: Textboxes */
    const urlToAdd = document.getElementById("urlToAdd"); // User inputted url to be added to the list of banned urls.
    const urlToRemove = document.getElementById("urlToRemove"); // User inputted url to be added to the list of banned urls.

    /* Clear Everything from a particular storage key */
    /* -> InterfaceType: Buttons*/
    const clearAllUrls = document.getElementById("clearAllUrls"); // Removes all data from the storage key 'urlKey'

    /* Display*/
    const display = document.getElementById("display"); // The display

    // When confirmAddButton is clicked:
    confirmAddButton.addEventListener('click', () => {
        // Get all data from 'urlKey' storage
        chrome.storage.local.get(['urlKey']).then((result) => {
            let bannedUrlsList = result.urlKey // Assign result to temporary list
            // Checks to see if the urlToAdd is already in the list of bannedUrls &0>
            if (bannedUrlsList.includes(urlToAdd.value) == false) { // >&0: If it is not, add it to the list
                bannedUrlsList = bannedUrlsList.concat(urlToAdd.value) // Add urlToAdd.value to the temporary list
                // set the 'urlKey' storage to the temporary list which has the added url in it
                chrome.storage.local.set({'urlKey': bannedUrlsList}).then(() => {
                    display.innerHTML = `${urlToAdd.value} was added to the list of banned urls`
                })
            } else { // >&0: Else, alert the user that the url is already in the list
                display.innerHTML = `${urlToAdd.value} is already in the list`
            }
        })
    });

    // When clearAllUrls is clicked:
    clearAllUrls.addEventListener('click', () => {
        chrome.storage.local.set({'urlKey': []}).then(() => {
            display.innerHTML = `The list of banned urls has been completely wiped`
        })
    });

    // Function checks all tabs to make sure they aren't banned, closes them if they are
    function isValidTab() {
        // Get all the open tabs from chrome
        chrome.tabs.query({windowId: chrome.windows.WINDOW_ID_CURRENT}, (tabs) => {
            for (let i = 0 /*i starts at zero*/; i < tabs.length /*i must be less than the numbe of tabs*/; i++ /*increments by one each iteration*/) {
                const currentTabUrl = tabs[i].url; //For each tab, assign the tabs URL to a value 'currentTabUrl'
                // Get the list of banned URLs from the 'urlKey' storage
                chrome.storage.local.get(['urlKey']).then((result) => {
                    let bannedUrlsList = result.urlKey // Assign result to temporary list
                    // If the list of banned urls contains the url of the current tab, close the tab, else, leave it be
                    if (bannedUrlsList.includes(currentTabUrl)) {
                        chrome.tabs.remove(tabs[i].id) // Closes the current tab
                        display.innerHTML = `${currentTabUrl} was closed`
                    } else {
                        _ = 1 // Do nothing
                    }
                })
            }
        })
    };

    // Every time a tab is updated or changed, or a new tab is created, close all banned tabs
    chrome.tabs.onUpdated.addListener(() => {
        isValidTab()
    });
}); 

This is all well and good, but for some reason, this code only works when the console is open. For example, lets say I add the URL https://www.derivative-calculator.net/ to the list of banned URLs list. If I were to now open that website, nothing would happen, reloading does nothing, it’s as if the extension wasn’t there. However, if I inspect the extension, and reload the tab, both it and the console close immediately. This is not what I want to happen, the extension should run without the console needing to be open.

I’ve tried removing every reference to the console from the code, I’ve placed comments everywhere so that I know exactly what and where everything is, I referred to the list of banned URLs directly from the storage key, and I’ve restarted from scratch 3 times, yet still the same problem persists. I’ve set the code to be a service worker in the manifest.json file, and all the permissions for the chrome APIs are in the manifest.json as well.

{
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": [
        "service_worker": "Code.js"
    ]
}

If the extension didn’t work at all, that would just mean that my code doesn’t work, but my code does work when the console is open, and only when it’s open. I have no clue what is causing this, so any help is appreciated.

Pass an HTML Attribute to another HTML Attribute onClick

I am using ng-repeat to display a list of items in the page.
One of the columns allows user to select a choice, and then click on “Save” button.

However, at the controller-function, I am unable to retrieve the user’s choice.
Is there any feasible manner to retrieve the selected check-box?
For e.g. passing the selected-check-box value in the ng-click function as a parameter.

Please let me know any best feasible approach.
Thank you.

A user can select from Checkbox (or drop-down): Bike or Car
enter image description here

Generating HMAC-SHA256 Token in JavaScript to Match PHP Output

I am trying to call an API written in PHP that generates a token using the following method:

base64_encode(hash_hmac("sha256", "<api-key>", "<email>:<gmdate('y-m-d H')>"))

In JavaScript (Node.js), I attempted to generate the same token with this code:

import crypto from "crypto";

function generateToken(apiKey, email) {
  const timestamp = new Date().toISOString().slice(0, 13).replace("T", " ");
  const data = `${email}:${timestamp}`;

  const hash = crypto.createHmac("sha256", apiKey).update(data).digest("hex");
  return Buffer.from(hash).toString("base64");
}

// Example usage
const apiKey = "your-api-key";
const email = "[email protected]";
const token = generateToken(apiKey, email);

console.log(token);

However, the output of this function does not match the token generated by the PHP code, and I am unable to authenticate the API request.

Highcharts – Average Time to Complete

I am trying to create a line chart that captures average time to complete durations, grouped by month. On the y-axis I need to measure the time to complete and the x-axis should display the month. The data looks like the following,

  var vals = [
    { x: "Jan/2025", y: "5 16:00:00" },
    { x: "Feb/2025", y: "23 17:00:00" },
    { x: "Mar/2025", y: "41 23:13:20" },
  ]

The time values translate “41 23:13:20” -> 41 Days, 23 Hours, 13 minutes, 20 seconds

I’ve been trying to convert to milliseconds for plotting the values, but the big numbers are being rounded when translated to scientific notion. Ideally the y-axis would display a range dynamically rendering to encapsulate the provided plotted values.

Any advice is greatly appreciated.

https://jsfiddle.net/tfischer7103/4opLc7uz/27/

How to insert a character from a virtual keyboard into the focused window using Tauri and pure JS?

I’m building a virtual keyboard using Tauri and pure JavaScript. My application is already set up, but I want to insert the character from the virtual keyboard into the focused window when a key is clicked. The issue is that when clicking on a key, the character should only be inserted into the window that currently has focus. However, it seems that the focus might be the issue. Does Tauri or Rust offer a way to handle this focus management?

For reference, the github repo: https://github.com/wilfreud/virtual-keyboard-desktop-test

PS: I have no knowedlge of Rust, but I pick things up pretty quickly and I’m not afraid of googling things if needed. And I’ve been using chatgpt.

  • Temporary copy to clipboard feature

  • using js event.preventDefault()

How to prevent content from hiding under the iOS Safari search bar? [duplicate]

I added a button on the bottom right corner of the screen, looks well on all browsers except IOS Safari, the search bar is over the button, It looks good on google mobile browser though. I came across a website where they managed to place the button over the search bar, but I can’t figure out how.

Here is my css:

@tailwind base;
@tailwind components;
@tailwind utilities;

#root {
  width: 100vw;
  height: 100vh;
}

body {
  margin: 0;
}

html, body {
  overscroll-behavior: none; /* Prevent the bounce effect on mobile */
  -webkit-text-size-adjust: none; /* Disable automatic text resizing */
  min-height: 100%; 
  -webkit-overflow-scrolling: none;
}

and this is the CSS Tailwind style for the button:

className="absolute bottom-6 right-6 w-14 h-14 
rounded-full bg-[#0c0c0d] flex items-center 
justify-center shadow-lg z-50 cursor-pointer 
text-white transition-transform hover:bg-[#535151] 
hover:scale-105"

Navigation in chrome/firefox extension

I’ve been working on my extension YTDownloaderNew, and in the ytm-content-script.js, I’m using this code to detect when the user navigates to a YouTube Music playlist:

navigation.addEventListener('navigate', () => {
    if (window.location.href.includes("music.youtube.com/playlist")) {
        playlistLoaded();
    }
});

It works perfectly fine in Edge and Chrome, but for some reason, it doesn’t seem to work in Firefox. Is there a different event or method I can use for Firefox to achieve the same result?

I tried to intercept the popstate method, but it didn’t really get me anywhere. I also went through the documentation on mozilla website, but I couldn’t find anything useful there.

JavaScript duplicates , explain pls

This is a really dumb question, but please help me understand this line of code
if (freq[char]). What does it mean? How variable can be in an array without the push() method?

function removeDupl(arg) {
    var answer = "";
    var freq = [];


    for (i = 0; i < arg.length; i++) {
        let char = arg[i]

        if (freq[char]) {       <------- What does it mean ? what condition is that?
            freq[char]++
            console.log("Duplicate:"+ char)

        } else {
            freq[char] = 1

            answer = answer + char
            console.log("not a duplicate:"+char)
        }

    }

    return answer;

}