79588654

Date: 2025-04-23 12:51:35
Score: 2.5
Natty:
Report link

Replace this line:

document.getElementById("demo").innerText = "Score:", score;

with this:

document.getElementById("demo").innerText = "Score: " + score;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: chandan kumar

79588647

Date: 2025-04-23 12:47:34
Score: 1
Natty:
Report link

I ended up with generic solution in which I decompose seconds (or whatever I have initially) and then do what I want with result parts.

function sequentialDivision(number, dividers) {
    const divisionResults = [];
    let remains = number;
    for (const divider of dividers) {
        divisionResults.push(Math.floor(remains / divider));
        remains = Math.floor(remains % divider);
    }

    return divisionResults;
}

function secondsToHoursMinutesSeconds(totalSeconds) {
    const [hours, minutes, seconds] = sequentialDivision(totalSeconds, [3600, 60, 1]);
    return {
        hours, 
        minutes,
        seconds,
    };
}

function secondsToHhMmSs(totalSeconds) {
    return sequentialDivision(totalSeconds, [3600, 60, 1])
        .map(s => s.toString().padStart(2,"0"))
        .join(":");
}

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Elgik

79588640

Date: 2025-04-23 12:44:33
Score: 0.5
Natty:
Report link

you’re not pulling in the C++ standard library

if you're on macOS, do this :

clang++ Hello.cpp -o hello
./hello

or if you’ve installed GCC via homebrew, do this :

g++-13 Hello.cpp -o hello
./hello
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bilal El Mahdaoui

79588636

Date: 2025-04-23 12:41:32
Score: 3
Natty:
Report link

Maxpe apps me error java security cert. cert path validator Exception trust anchor for certification path no found

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gana Tripura

79588635

Date: 2025-04-23 12:40:32
Score: 0.5
Natty:
Report link

Change this line in your javascript :

document.getElementById("demo").innerText = "Score: " + score;

to this :

document.getElementById("demo").innerText = `Score: ${score}`;

or use template literal :

document.getElementById("demo").innerText = "Score: " + score;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bilal El Mahdaoui

79588632

Date: 2025-04-23 12:39:31
Score: 1
Natty:
Report link

The problem is this line document.getElementById("demo").innerText = "Score:", score; Change it to a template literal like this: document.getElementById("demo").innerText = `Score: ${score}`;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David

79588625

Date: 2025-04-23 12:35:30
Score: 3
Natty:
Report link

Sometimes it's esier to prepare text in advance manually. You can do it with any of the bunch of online-tools (e.g. this online text-formatter)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vladimir Kudinov

79588623

Date: 2025-04-23 12:34:30
Score: 0.5
Natty:
Report link

As of 2025, you should be able to use sklearn on NVIDIA GPUs with a one-line code change to your jupyter notebook:

%load_ext cuml.accel

This uses the cuML library (part of RAPIDS framework) to use the GPU. The rest of the sklearn code should remain the same.

References:

An example Google Colab notebook

cuML Installation

blog post with CPU/GPU performance comparisons

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Divyansh Gupta

79588619

Date: 2025-04-23 12:29:29
Score: 0.5
Natty:
Report link

I've setup Credential Manager through Firebase and the steps that helped me solve similar issues in the past were:

  1. Make sure you're signed into your Google account on the device you're testing
  2. Make sure that you've added your signing certificate fingerprints in the Firebase Project settings (you have to use SHA-1, SHA-256 doesn't work)
  3. Make sure that in the Google Cloude Console, under APIs & Services > Credentials > OAuth 2.0 Client IDs the appropriate clients have been added and that the fingerprints match (in case of using Firebase, the clients will be named "Android client for com.example.appId (auto created by Google Service)".

The code is rarely the issue (I can't spot anything wrong with the code you provided), but it's easy to mess up the setup.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Karol Wasowski

79588617

Date: 2025-04-23 12:28:28
Score: 4
Natty:
Report link

I just realized that the problem was with how I was substituting img src's with beautifulsoup, my bad. But as a general tip when using weasyprint in Python, errors are usually related to incorrect path's relative to the base_url. Have a good day ;)

Reasons:
  • Blacklisted phrase (1): good day
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luís Felipe Araujo de Oliveira

79588616

Date: 2025-04-23 12:27:28
Score: 1
Natty:
Report link

The error code says that your h2-version does not match the version of the database that you are trying to load.

You need to use the same h2-version with which the database (the *.db file) has been created to load this file again. So have a look in the dependencies of your working application to find the exact version of the used h2-dependency.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mr__Steel

79588610

Date: 2025-04-23 12:21:26
Score: 2.5
Natty:
Report link
  data: Theme.of(context).copyWith(
            colorScheme: const ColorScheme.light(),
          ),

works in my case because I want to change background to white

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bhatti Shb

79588600

Date: 2025-04-23 12:14:25
Score: 1.5
Natty:
Report link

I too had this same question and just figured it out.

The route is just coming from the [Route("[controller]")] line. It uses the class name of the controller minus the word "Controller". So, since the name of the class is "WeatherForecastController", the route becomes /WeatherForecast.

If you would change the class name in the line underneath of the main route to WeatherForecast2Controller, your route would become /WeatherForecast2.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Norman Marks

79588590

Date: 2025-04-23 12:09:23
Score: 2
Natty:
Report link

Ok I find a way to do it using the maskImage and linearGradient (thanks to this post: Using CSS, can you apply a gradient mask to fade to the background over text?)

Here's my new loginPage.js:

import { Box, Flex, Image, Card } from "@chakra-ui/react";
export default function LoginPage() {
  return (
    <Flex
      paddingX={0}
      marginX={0}
      width={"100%"}
      justifyContent={"space-between"}
    >
      <Box>
        <Box maskImage="linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));">
          <Image src="./img/bordeaux.png"></Image>
        </Box>
      </Box>

      <Flex direction={"column"} justifyContent={"space-evenly"}>
        <Card.Root>
          <Card.Header />
        </Card.Root>
        <Card.Root>
          <Card.Header />
        </Card.Root>
      </Flex>
    </Flex>
  );
}
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gormec

79588588

Date: 2025-04-23 12:08:23
Score: 4
Natty:
Report link

Technically not possible and (currently) not planned: https://github.com/angular/angular/issues/60950

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: tris

79588583

Date: 2025-04-23 12:06:22
Score: 5.5
Natty: 6.5
Report link

Can we get the work items tab details beside the Commits as well, what changes we need to make to the script to get those.?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: chandu

79588578

Date: 2025-04-23 12:05:21
Score: 4.5
Natty: 5
Report link

Ho una pagina di Salento vacanza in cui ho un iframe; quando clicco su un pulsante, non si apre!

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Salento Vacanza

79588571

Date: 2025-04-23 12:04:21
Score: 1
Natty:
Report link

I used the sx prop on Tabs, with the css classes for Tabs and Tab. In MUI 7.0.2.

<Tabs
  sx={{
    "& .MuiTabs-root: {
      minHeight: 44,
      height: 44,
    },
    "& .MuiTab-root: {
      minHeight: 44,
      height: 44,
    },
  }}
 >

From the CSS classes documentation: https://mui.com/material-ui/api/tabs/#classes

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cwiedel

79588565

Date: 2025-04-23 12:02:20
Score: 1.5
Natty:
Report link

Just small change:-

@Override public Intent registerReceiver(@Nullable BroadcastReceiver receiver, IntentFilter filter) { if (Build.VERSION.SDK_INT >= 34 && getApplicationInfo().targetSdkVersion >= 34) { return super.registerReceiver(receiver, filter, android.content.Context.RECEIVER_EXPORTED);

} else {
    Intent intent = super.registerReceiver(receiver, filter);
    return intent;
}

}

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Override
  • Low reputation (1):
Posted by: Monil Raycha

79588557

Date: 2025-04-23 12:00:20
Score: 1
Natty:
Report link

or as simple as this:

Enum eRGBcolor
 color_Red = 0
 color_Green = 1
 color_Blue = 2
End Enum
Function PartRGB(RGBcolor As eRGBcolor, ByVal ColorValue&) As Long
  PartRGB = (ColorValue \ 256 ^ RGBcolor) Mod 256
End Function
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stephan Dardaganidis

79588555

Date: 2025-04-23 11:58:19
Score: 2.5
Natty:
Report link

You can try writing the query like this:

SELECT Table_one.Name, Table_two.weight FROM Table_one JOIN Table_two on Table_one.identifier == table_two.identifier

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saba Iqbal

79588554

Date: 2025-04-23 11:58:19
Score: 1
Natty:
Report link

I am not really sure what you are trying to achieve (yes, low latency but what is the project about and why do you start with off-heap management?)

Take a look at Quarkus+Vert.x which is already super fast and saves a lot of memory - you can even step up the game by native compilation. If you still need to improve things, use specialized libraries like Eclipse Collections. It it a highly optimized Java collections library with even more types, primitive collections.

I used this combination several times to create high performant low latency applications.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mr__Steel

79588551

Date: 2025-04-23 11:57:18
Score: 0.5
Natty:
Report link
for (int col = 0; col < 21; col++){
    if(col==0)
        System.out.printf("%4s","");
   else System.out.printf("%4s", col);
}

Replace the second for-loop with the above code, and it will work.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: VijayD

79588544

Date: 2025-04-23 11:54:17
Score: 2.5
Natty:
Report link

I remember facing a similar problem! The strftime function doesn’t add leading zeros for years before 1000, so for the year "33", it just outputs "33" instead of "0033". The problem becomes more obvious when you try to parse the string back using strptime, because the %Y format expects a 4-digit year.

The datetime module in Python generally expects years to be at least 4 digits long, and doesn’t add zeros for years less than 1000.

You can manually add leading zeros to the year to avoid the parsing issue and ensure consistency. For example:

import datetime
old_date = datetime.date(year=33, month=3, day=28)
formatted_date = old_date.strftime("%Y-%m-%d")
padded_date = f"{int(formatted_date[:4]):04d}{formatted_date[4:]}"

This ensures the year is always 4 digits, and you can safely parse it later.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar problem
  • Low reputation (1):
Posted by: Viktor Sbruev

79588539

Date: 2025-04-23 11:51:17
Score: 1.5
Natty:
Report link

Detail matters.

In an attempt to keep this brief, I glossed over the fact MyFormView contains another view component. This is fine, but it happens to be a form, and it's rendering before `@using(Html.BeginUmbracoForm <MyApp.SecondaryFormController ...` is closed.

This results in a form within a form which is invalid HTML and just breaks things.

Refactoring so the form isn't rendered within another form fixes the issue.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: monkeySeeMonkeyDo

79588534

Date: 2025-04-23 11:47:15
Score: 10.5 🚩
Natty: 4
Report link

did you find the solution? i have the same error atboost/libs/model/model.cpp:1185: Incorrect model file descriptor

Reasons:
  • RegEx Blacklisted phrase (3): did you find the solution
  • RegEx Blacklisted phrase (1): i have the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the solution
  • Low reputation (1):
Posted by: Khadijah-kharif

79588528

Date: 2025-04-23 11:45:14
Score: 1.5
Natty:
Report link

You can also just compute a diff and then just check if it is still in range

let a = 3.0;
let b = 2.9999999999;
let diff = a - b;
assert_eq!(diff < 0.000001, diff > -0.000001);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29599701

79588521

Date: 2025-04-23 11:40:13
Score: 4
Natty: 4
Report link

apparently there is no way, or the developers here are not experienced enough

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: eeeMan

79588515

Date: 2025-04-23 11:38:12
Score: 2
Natty:
Report link

Instead of NativeModules.SettingsManager.settings.AppleLocale, it should be NativeModules.SettingsManager.getConstants().settings.AppleLocale in newer versions of React Native.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Syed Zawwar Ahmed

79588513

Date: 2025-04-23 11:37:11
Score: 3.5
Natty:
Report link

The formidable codes should be inside the socket.on scope

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Bosco

79588512

Date: 2025-04-23 11:37:11
Score: 0.5
Natty:
Report link

distutils used by setuptools to replace the stdlib distutils with setuptools' bundled distutils library

You can check the source distutils code here

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79588511

Date: 2025-04-23 11:37:11
Score: 0.5
Natty:
Report link

I just found this old question when trying to solve the same issue myself. The answer is:

<l-rectangle class-name="pulse" ...

That passes the className argument to the leaflet constructor which creates the element.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Guy G

79588507

Date: 2025-04-23 11:36:11
Score: 2.5
Natty:
Report link

This is caused by the implementation of .strftime() in the C library in Linux omitting any leading zeros from %Y and %G. The related issue in CPython's issue tracker is here.

Thanks to jonrsharpe's comment for the answer, and highlighting this section of the documentation:

"The full set of format codes supported varies across platforms, because Python calls the platform C library’s strftime() function, and platform variations are common."

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Melipone

79588502

Date: 2025-04-23 11:33:10
Score: 3.5
Natty:
Report link

same issue with me as i commented the line;

reg.fit(x, y) # :))

you must have to add the fit as it predicts on the basis of given data in form of x and y (supervised learning)

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: VS_Devl

79588495

Date: 2025-04-23 11:29:09
Score: 1
Natty:
Report link

CREATE DATABASE IF NOT EXISTS db_CAJANO_04;

USE db_CAJANO_04;

CREATE TABLE tbl_MARRY_04 (

id INT AUTO_INCREMENT PRIMARY KEY,

username VARBINARY(255),

secret_data VARBINARY(255)

);

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thalia Cajano

79588483

Date: 2025-04-23 11:25:08
Score: 3
Natty:
Report link

Eventually, I discovered that my exact case was covered in the docs for kamal: https://kamal-deploy.org/docs/configuration/builder-examples/ under "Using build secrets for new images".

It worked

Reasons:
  • Whitelisted phrase (-1): It worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pål Simen Ellingsen

79588478

Date: 2025-04-23 11:23:07
Score: 1.5
Natty:
Report link

db.[collection].find({ _id: {$gte: ObjectId(Math.floor(Date.now() / 1000) - 14 * 24 * 60 * 60)}})

db.[коллекция].find({ _id: {$gte: ObjectId(Math.floor(Date.now() / 1000) - 14 * 24 * 60 * 60)}})

sudo -u postgres psql ALTER SYSTEM SET track_commit_timestamp = on; \q

select * from [таблица] WHERE pg_xact_commit_timestamp(xmin) >= NOW() - INTERVAL '2 weeks';

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: drobzhik

79588474

Date: 2025-04-23 11:21:07
Score: 2
Natty:
Report link

The algorithm works by progressively improving an estimate of the shortest path between every pair of vertices by considering each vertex as a possible intermediate step on the path. It would be wrong since now you are iterating through all source node for all intermediary node for all target node instead.

However even if you mess up the order of loops it will run correctly if you repeat it 3 times.
Refer to this paper for the proof of that : https://arxiv.org/abs/1904.01210

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: BarcaBoy109

79588468

Date: 2025-04-23 11:19:06
Score: 1
Natty:
Report link
mport pandas as pd
import numpy as np

data = {
    'feature1':np.random.randint(1,100,100),
    'feature2':np.random.rand(100)*10,
    'Target':np.random.randint(50,150,100)
}

df = pd.DataFrame(data)

df
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Roshan

79588462

Date: 2025-04-23 11:14:05
Score: 1.5
Natty:
Report link

You can mock the pipe:

import { MockPipe } from 'ng-mocks';
export const MockDatePipe = MockPipe(DatePipe);

And then import the MockDatePipe in the providers-array.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wim van der Veen

79588459

Date: 2025-04-23 11:12:04
Score: 0.5
Natty:
Report link

Try to place script into .sh file and start it like

variables:
  var1: ${var1}

release:
  stage: release
  script:
    - ./echo-files.sh
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79588453

Date: 2025-04-23 11:09:04
Score: 2
Natty:
Report link

I find a bit funny that nobody used recursive solution, which can fit one line as well

size_t strlen_rec(const char*str) {
  return *str ? 1+strlen_rec(str+1) : 0;
}

but its not tail case recursive, so stackoverflow is guaranteed

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Владимир GhostV

79588431

Date: 2025-04-23 10:58:00
Score: 0.5
Natty:
Report link

There is a solution for that.

Indeed jobs are run on separated session.

The problem, that you cannot pass parameters to the stored procedure (while they are kept in other session). i.e. whether you add in a temporary table and do rollback at the end.

For that solution - any call to the special stored procedure (that calls the job) won't be interfered by any transactions.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Eitan

79588388

Date: 2025-04-23 10:35:55
Score: 3.5
Natty:
Report link

i dont understand any of what you just typed

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fs.

79588387

Date: 2025-04-23 10:35:54
Score: 4
Natty: 7.5
Report link

what if there would be an if-else statement in the ontouch method. the first if clause would return false and while this (same) touch event the if clause switches onto the else clause (while the same touch). but the else clause returns true.

here is my question. the touch event first returns false in the if clause. the else clause returns true, but within the same touch event. is this possible, same touch event, but different return values (switching to the else clause)?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): what if the
  • Low reputation (1):
Posted by: Maximilian Notar

79588386

Date: 2025-04-23 10:34:54
Score: 1
Natty:
Report link

use placeholder, than label

your code:

    label = {Text(text = if (value.isEmpty()) stringResource(id = R.string.name" else "")}

wright code:

placeholder = {Text(text = if (value.isEmpty()) stringResource(id = R.string.name" else "")}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Имя Фамилия

79588382

Date: 2025-04-23 10:32:53
Score: 1
Natty:
Report link

@mrbarletta was misinformed back in 2021

SalesAgility never removed the YUI library in version 7.11.6 of SuiteCRM
YUI v2 is available on every page of SuiteCRM current version 7.14.6

As for your question:

popups are opened in SuiteCRM with the global function open_popup
which has this signature (apologies for missing type information)

function open_popup(module_name, width, height, initial_filter, close_popup, hide_clear_button, popup_request_data, popup_mode, create, metadata)

This will open a popup search window
You can also open your very own custom windows with this function

SUGAR.util.openWindow

signature (no type information):
SUGAR.util.openWindow(URL, windowName, windowFeatures);

As for ajax
SuiteCRM uses jQuery for this
I would recommend you look at https://api.jquery.com/jQuery.ajax/

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @was
  • Low reputation (1):
Posted by: Web Wizard

79588376

Date: 2025-04-23 10:31:53
Score: 2.5
Natty:
Report link

The correct answer is to use the environment variable QSG_RHI_BACKEND=opengl instead of QT_QUICK_BACKEND=opengl

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Edward

79588352

Date: 2025-04-23 10:12:49
Score: 1.5
Natty:
Report link

I ran into a similar problem and I used window.getComputedStyle(domElement) which takes into account the sx properties set.

Then you can do the appropriate style checks as needed.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: William Jarvis

79588347

Date: 2025-04-23 10:10:48
Score: 2
Natty:
Report link

I faced this issue when playing with scaling of AKS. I tryed many things: removing cookies, hard reloads. Restarting of PC.

I did logout from Azure portal and this is fix my issue.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alex Ink

79588336

Date: 2025-04-23 10:05:47
Score: 1.5
Natty:
Report link

I see what the issue is. The problem is , its a mismatched structure of the profile. Google doesnt return a login or bio by default. This exists more in Github profile responses so thats why ur code fails. This would work..

async signIn({ user, account, profile }) {try {const { name, email, image } = user; const id = profile.sub; //this is the correct field from Google

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Theo thecoder

79588335

Date: 2025-04-23 10:05:47
Score: 3.5
Natty:
Report link

Installing apps from unknown sources in a work profile managed by an EMM is restricted by Android’s security policies, particularly for work profiles. You will need to deploy your app as LOB via Managed Google play. For more info and steps, check out this guide: https://learn.microsoft.com/en-us/intune/intune-service/apps/apps-add-android-for-work#managed-google-play-private-lob-apps

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md Mudassir

79588326

Date: 2025-04-23 09:57:45
Score: 2
Natty:
Report link

In addition to Chris Martin's answer, it is also used to cache values. This is used in GenericForeignKey(well, CheckFieldDefaultMixin.set_cached_value)

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bazzan

79588323

Date: 2025-04-23 09:56:45
Score: 1.5
Natty:
Report link

Possible reasons: • seed.js does not exist in your project folder. • You’re in the wrong directory in the terminal. • File is named differently (e.g., Seed.js instead of seed.js), and file names are case-sensitive in some environments.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Marko Balažic

79588322

Date: 2025-04-23 09:56:45
Score: 4
Natty:
Report link

Administrator rights were needed. I re-installed the extension and it works!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dfensdev

79588316

Date: 2025-04-23 09:54:43
Score: 7 🚩
Natty: 5.5
Report link

how to do this step?

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Jason Zhang

79588293

Date: 2025-04-23 09:49:41
Score: 0.5
Natty:
Report link

Here are some steps to check the generation of the .cs file:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: KBaker

79588292

Date: 2025-04-23 09:49:41
Score: 0.5
Natty:
Report link

Ah yes, the classic CSS torture device — where the table scrolls for eternity and the text just whispers, ‘I used to wrap... once.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>The Scrollening</title>
  <style>
    .scroll-container {
      width: 300px;
      overflow-x: auto;
      border: 1px solid #999;
      white-space: nowrap;
    }

    table {
      border-collapse: collapse;
      min-width: 600px; 
    }

    th, td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: left;
    }

    .wrap-me-please {
      max-width: 150px;
      white-space: normal; 
      word-wrap: break-word; 
    }
  </style>
</head>
<body>
  <div class="scroll-container">
    <table>
      <tr>
        <th>ID</th>
        <th class="wrap-me-please">Long Column That Just Wants to Wrap But Is Doomed to Stretch Forever</th>
        <th>Date</th>
      </tr>
      <tr>
        <td>1</td>
        <td class="wrap-me-please">
          This text is long, like a StackOverflow answer with 3 edits and a war in the comments.
        </td>
        <td>2025-04-23</td>
      </tr>
    </table>
  </div>
</body>
</html>
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SULMAN KHAN

79588283

Date: 2025-04-23 09:43:39
Score: 2
Natty:
Report link

This part of the documentation should help: https://github.com/awslabs/mountpoint-s3/blob/main/doc/CONFIGURATION.md#region-detection

You can override Mountpoint's automatic bucket region detection with the --region command-line argument or AWS_REGION environment variable.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Renan

79588282

Date: 2025-04-23 09:43:39
Score: 2
Natty:
Report link

Yes, Excel-DNA v 1.8.0 works fine with .NET 8.0.

You do need the ".NET Desktop Runtime" to be installed, but I'd expect a clear message if that is not the case.

Are you trying a simple add-in, or does your project have additional dependencies?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Govert

79588276

Date: 2025-04-23 09:42:38
Score: 4.5
Natty: 4.5
Report link

Have a look at prettier-plugin-multiline-arrays.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: millokeller

79588264

Date: 2025-04-23 09:36:36
Score: 0.5
Natty:
Report link

After hours of searching and refusing to edit the pipeline in the portal for what is meant to be automated configuration, it looks to be a permissions issue.

In my config, I have a pipeline used for the automate building of the environment (and subsequent pipelines) running in the context of the 'Project Build Service' account.

When running the script used in the pipeline for config locally, in the context of my user account, it creates the pipeline without issues and attaches the Default agent pool for YAML as 'Azure Pipelines' (As wanted). However, running the same script in the context of the 'Project Build Service' account, it does not apply this setting. Therefore, it's a permissions issue that annoyingly gives you a silent error instead of failing.

To fix:

  1. Navigate to 'Project Settings > Agent Pools > Azure Pipelines (Your pool) > Security'

  2. Under 'User permissions', click 'Add'

  3. Select the account your automated process is running in the context of. In my case, this is the Project Build Service account.

  4. Assign them role of 'User'.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: bobwood

79588262

Date: 2025-04-23 09:34:36
Score: 1.5
Natty:
Report link

{ "mode_name": "Punjab Turbo MOD", "version": "v1.20.1", "settings": { "fps_unlock": 120, "graphics_quality": "Smooth", "shadows": false, "anti_aliasing": false, "gpu_acceleration": true, "ram_cleaner": true, "network_optimizer": true, "touch_response_boost": true, "thermal_management": true }, "auto_apply": true }

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: King Boss

79588260

Date: 2025-04-23 09:33:35
Score: 5
Natty:
Report link

Is the following example what you are looking for?

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is the
  • High reputation (-1):
Posted by: Musab Dogan

79588256

Date: 2025-04-23 09:30:34
Score: 3
Natty:
Report link

Load a prefixes.ttl file with only prefixes, and they will be remembered as namespaces

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vladimir Alexiev

79588251

Date: 2025-04-23 09:27:34
Score: 1.5
Natty:
Report link

ABOVE he/she is right!!!!
You can configure your rule statement in your WAF web ACL to Inspect the Header and set your Header field name to Host and finally specify a Match Type to a regex pattern.

FIRST you want to create a regex pattern so that if anyone hits your site with ip waf will block it.

open waf > (on left side) regex pattern sets > create regex > put name , description and region... NOW under Regular expressions copy this pattern given below :
^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$

this pattern will match the all ip address.

NOW create a go to rule > add rules > add my own rules > put rule name > select regular rule > statement inspect > choose Single header > in header feild name write = host > match type = matches patten from regex patten set > under regex pattern set choose u r regex. then set Action to BLOCK > add rule....
NOW hit u r website with IP wether it is global accelarator IP , ELB IP or any IP depending on u r archeticture.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: atul bhandari

79588240

Date: 2025-04-23 09:18:32
Score: 0.5
Natty:
Report link

i think you're filtering based on something not directly a property or want to evaluate the whole object (like a string or name after ForEach-Object), you must use the scriptblock form:

Get-ChildItem | ForEach-Object Name | Where-Object { $_ -match '\.(txt|md)$' }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arian Fm

79588237

Date: 2025-04-23 09:17:31
Score: 1
Natty:
Report link

Based on the snippets you've shared I suggest using max-width and word-wrap directly on the td

like this :

td:nth-child(3) {
  max-width: 200px;
  white-space: normal;   
  word-wrap: break-word;
  overflow-wrap: break-word;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammed Abdessetar Elyagoubi

79588236

Date: 2025-04-23 09:14:31
Score: 2.5
Natty:
Report link

It cost O(nlogn) to build a AVL Tree
and O(n) to build a binary heap using sink-based heap construction

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sebastian YU

79588231

Date: 2025-04-23 09:12:30
Score: 3
Natty:
Report link

Perhaps you can have a look at the suggestion alternative at https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/How-to-find-the-size-of-a-BIM-360-project.html

Currently there is no API to check the same

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Moturi George

79588228

Date: 2025-04-23 09:10:29
Score: 2.5
Natty:
Report link

Just wrap them in a <div style={{ display: 'flex' }}>. That way, at least your elements will be aligned, even if your life choices aren’t. If it still doesn't work, blame CSS — it's the emotional support scapegoat of the frontend world.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SULMAN KHAN

79588227

Date: 2025-04-23 09:10:29
Score: 1.5
Natty:
Report link

thx, i already solve this problem:

django_heroku.settings(locals()) # geodjango=True

if 'DATABASE_URL' in os.environ:
    DATABASES = {
    'default': dj_database_url.config(conn_max_age=500)
    }
    DATABASES['default']['ENGINE'] = 'django.contrib.gis.db.backends.postgis'

else:
    print("Postgres URL not found, using local")
    DATABASES = {
        'default': {
            "ENGINE": "django.contrib.gis.db.backends.postgis",
            "HOST": os.environ.get("HOST"),
            "NAME": os.environ.get("NAME"),
            "PASSWORD": os.environ.get("POSTGRES_PASS"),
            "PORT": os.environ.get("PORT"),
            "USER": os.environ.get("POSTGRES_USER"),
        }
    }
Reasons:
  • Blacklisted phrase (1): thx
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bartosz Goodman

79588220

Date: 2025-04-23 09:08:29
Score: 4.5
Natty:
Report link

you can refer below documents for your requirement.
*
Doc 1: https://learn.microsoft.com/en-us/linkedin/
Doc 2: https://learn.microsoft.com/en-us/linkedin/shared/authentication/authentication*

Thanks

Harish

if my answer solves your problem then Kindly accepts this as solution and upvote as well.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): upvote
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Harish KM

79588215

Date: 2025-04-23 09:04:28
Score: 0.5
Natty:
Report link

I had the same problem. I compiled it with a larger settings.tex file for packages etc. . It does not compile. An error occured.

I first compiled it with few settings, after that I compiled it with \input{settings.tex}. Now it works fine.

Don't know why is is a problem to compile it at first with settings.tex

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: finn2409

79588213

Date: 2025-04-23 09:04:28
Score: 0.5
Natty:
Report link

Try to use isoformat() and then parse using fromisoformat()

d = datetime.date(33, 3, 28)
s = d.isoformat()
parsed = datetime.date.fromisoformat(s)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79588205

Date: 2025-04-23 08:58:26
Score: 0.5
Natty:
Report link

You can also use the \Z escape sequence with a regular LIKE statement:

SELECT * FROM Customer WHERE Name LIKE '%\Z%'

Interestingly, this returns different results than using RLIKE '[[:cntrl:]]+'. I'm not sure why.

See here for more details.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: neoncube

79588197

Date: 2025-04-23 08:50:24
Score: 1.5
Natty:
Report link

If your component has a Form tag without an action attribute the Razor renderer is trying to set the action to the current route. But since you are using static rendering the HtmlNavigationManager isn't initialized, which is used to set the route of the action attribute. You can prevent this by setting the action attribute yourself, maybe a # is enough (haven't tried that myself)

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Guido Neele

79588189

Date: 2025-04-23 08:46:23
Score: 4.5
Natty: 5.5
Report link

I am currently facing an issue with my Dell Precision 5431 laptop (i7-10850H) running Windows 11 (version 24H2). Despite enabling Virtualization Technology (VT-x) in the BIOS, it is detected as disabled by software like LeoMoon CPU-V.​

​Here are the steps I have already tried to resolve the issue:​

​ ​

​Verified that VT-x and VT-d are enabled in the BIOS.​

​ ​

​Disabled Hyper-V and ensured it is turned off via PowerShell.​

​ ​

​Checked and updated the BIOS to the latest version( V1.30)

​ ​

​Verified that security software is not blocking VT-x.​

​ ​

​Confirmed that Memory Integrity in Core Isolation settings is turned off.​

​ ​

​Ran Intel Processor Identification Utility, which shows the CPU supports VT-x.​

​ ​

​However, the problem persists, and VT-x remains unavailable for virtual machine applications.​

​I would greatly appreciate any guidance or solutions from the community. Has anyone else encountered and resolved a similar issue?​

​Thank you for your support!​

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I have already tried
  • RegEx Blacklisted phrase (1.5): resolved a similar issue?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: said pro

79588179

Date: 2025-04-23 08:43:22
Score: 0.5
Natty:
Report link

reinstall werkzeug package worked for me

pip uninstall werkzeug
pip install werkzeug
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bsel

79588170

Date: 2025-04-23 08:38:20
Score: 3
Natty:
Report link

Thanks a lot it works for me. Very strange that this isn't in the Mongo DB examples

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pavel Mostovoy

79588166

Date: 2025-04-23 08:36:19
Score: 1.5
Natty:
Report link

The solution, it seems, is to add uses:

trigger: none

resources:
  repositories:
    - repository: WikiGit
      type: git
      name: [Project name].wiki

jobs:
  - job:
    uses: # This will not checkout the repo to the agent, but will add the repo to the agent PAT
      repositories:
        - WikiGit
    steps:
      - script: |
          az devops wiki show --wiki "[Project name].wiki" --verbose
          az devops wiki page create --path NewPage --wiki "[Project name].wiki" --comment "added a new page" --content "# New Wiki Page Created!" --verbose
        env:
          AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)

Thanks to this Visual Sudio Developer Community answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mike

79588158

Date: 2025-04-23 08:34:18
Score: 9
Natty: 7
Report link

I also encountered a similar problem, Google seems to compare the Query State before the execution with the Report State after the execution, causing the test to fail. Did you solve this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: simon

79588147

Date: 2025-04-23 08:29:17
Score: 2.5
Natty:
Report link

if i get a file, for instance, .php and change it's extension to .png will also change it's mime type?

No! The MIME type depends on the file content not just the file name or extension.

so changing the file extension does not change the actual MIME type.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: FaTaK

79588137

Date: 2025-04-23 08:21:15
Score: 0.5
Natty:
Report link

In case you want to install NuGet (or any other dependencies) as well as the software and suppress the prompt, use the following command:

Install-Package software.msi -ForceBootstrap
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Safwan

79588136

Date: 2025-04-23 08:21:14
Score: 4
Natty: 5.5
Report link

Thanks for your post, both question and answer! Would you be so kind as to explain more of your setup (the NuGet packages or any other dependencies you are using), or even better, share the solution files for this simple example?
I really appreciate any help you can provide.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): any help
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Lucas Elia

79588134

Date: 2025-04-23 08:20:14
Score: 4.5
Natty:
Report link

The configuration is correct. Only the test needs to capture the cookie.

https://github.com/spring-projects/spring-security/issues/16969

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: BLCK

79588131

Date: 2025-04-23 08:18:12
Score: 11 🚩
Natty: 5.5
Report link

did you managed to resolve it?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: user22239955

79588116

Date: 2025-04-23 08:04:09
Score: 2
Natty:
Report link

I was able to test this on my tenant, and I was able to reproduce this behavior, I have forwarded this feedback but, I would also request that you share this feedback here as well.
https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4.
Thank you for bringing this up.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: pauline mbabu

79588115

Date: 2025-04-23 08:04:09
Score: 4
Natty:
Report link

There is LCC https://github.com/saman-pasha/lcc which compiles c semantics from lisp syntax

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Saman H. Pasha

79588112

Date: 2025-04-23 08:02:08
Score: 1
Natty:
Report link

You can also use VLOOKUP. As I understood the question, you could use this formula in Sheet1 'U' column:

Put this in sheet1 column U (I assumed data is starting from 2.row, so I put it there and dragged down to 5.row) rearrange formula for your ranges.

=VLOOKUP(B2;Sheet2!$E$2:$S$5;15;FALSE)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jelovac Maglaj

79588109

Date: 2025-04-23 08:01:08
Score: 1.5
Natty:
Report link

Install the transformers, Datasets, and evaluate libraries to run this,

pip install datasets evaluate transformers[sentencepiece]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vidzshan

79588093

Date: 2025-04-23 07:54:06
Score: 1.5
Natty:
Report link

Beasties package added a fix for this https://github.com/danielroe/beasties/releases/tag/v0.3.3.

If using npm:

//  package.json
"overrides": {
    "beasties": "^0.3.3"
}

for pnpm:

"pnpm": {
    "overrides": {
        "beasties": "^0.3.3"
    }
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Enea Jahollari

79588080

Date: 2025-04-23 07:43:03
Score: 2
Natty:
Report link

working for me:

UPDATE mytable
SET date2 = strftime('%Y-%m-%d %H:%M:%f', 'now', 'localtime', '+' || (rowid * 0.001) || ' seconds');
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jirrka

79588064

Date: 2025-04-23 07:35:01
Score: 0.5
Natty:
Report link

Bulletproof way to determine Internet Explorer. Tested extensively via BrowserStack. Supports minification.

var isIE = (function(window, IEmap) {

        if (typeof window == 'object' && window && window.window == window && typeof window.document == 'object') {

            var is_default_IE11 = !!(window.msCrypto && !document.currentScript); 

            /* 
                Conditional compilation is a special comment syntax that executes in IE only. Regular browsers, and IE11** interpret them as normal comments.
                `@_jscript_version` is an IE-specific conditional constant. 
                **If the `documentMode` is changed, IE11 reports `@_jscript_version` as "11", and "is_default_IE11" returns `false`. (Yep, textbook Microsoft) 
                Shoutout to https://stackoverflow.com/users/5807141/j-j for the overlooked comment on msCrypto: which is only defined in IE11 as IE11 doc mode.
                NOTE: window.msCrypto check is future-proofed by also checking for the non-existence of `document.currentScript`.
                Sources: https://developer.mozilla.org/en-US/docs/Web/API/Window/crypto , https://stackoverflow.com/questions/21825157/internet-explorer-11-detection
            */

            var jscript_version = Number( new Function("/*@cc_on return @_jscript_version; @*\/")() ) || (is_default_IE11 ? 11 : undefined);

            // Workaround Test for Windows Service Pack Update (IE6 / 7). Document mode wasnt introduced until IE8, so this check works fine.
            if (jscript_version === 5.7 && !window.XMLHttpRequest) { jscript_version = 5.6 }
            if (!jscript_version) { return false }

            var envir = { 
                'jscript': jscript_version, 'mode': document.documentMode, 'is_default_IE11': is_default_IE11, 
                'browser': (IEmap[String(jscript_version)] || jscript_version)
            };

            envir[envir.browser] = (envir.browser == envir.mode); // Make sure if we're screening for IE.x as IE.x that its running as that with same doc mode

            return envir;
        } else {
            return false;
        }

    })(window, {'5': 5, '5.5': 5.5, '5.6': 6, '5.7': 7, '5.8': 8, '9': 9, '10': 10, '11': 11}); // `@_jscript_version` mapped to IE browser versions.
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashraile

79588063

Date: 2025-04-23 07:33:01
Score: 3.5
Natty:
Report link

I had a similar issue and solved by updating Notepad++ first and then the plugin.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luca Francescon

79588059

Date: 2025-04-23 07:32:00
Score: 1.5
Natty:
Report link

Please enable debug logs (Help - Diagnostic Tools - Debug Log Settings...) for the following category

org.jetbrains.plugins.gitlab:trace

Then please reproduce the issue and share the entire logs folder zipped as per https://intellij-support.jetbrains.com/hc/en-us/articles/207241085-Locating-IDE-log-files

and reach out to our support team.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dino Letic

79588049

Date: 2025-04-23 07:24:58
Score: 1
Natty:
Report link

I think the problem lies here.

"signing_key": "5mEzn9C-I28UtwOjZJtFoob0sAAFZ95GbZkqj4y3i0I" <= this is a random signing_key made up by me not something that was given to me

You need to provide a valid signature.

If you didn’t receive a webhook signing key for an OAuth 2.0 application you’ve previously created or need to retrieve one because you lost it, then contact [email protected].

Reference: https://developer.calendly.com/api-docs/4c305798a61d3-webhook-signatures

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Monil Bhavsar

79588038

Date: 2025-04-23 07:19:57
Score: 5
Natty: 5
Report link

can some one fix this issue on my website https://mmjnewsnetwork.com/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can some one fix this is
  • Low reputation (1):
Posted by: Hassan Raza

79588033

Date: 2025-04-23 07:17:56
Score: 1
Natty:
Report link

I'd use formula numeric and "IN"

CASE WHEN {your field} IN ('123','999') THEN 1 ELSE 0 END

With the condition of "equal to 1"

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sundance.101

79588031

Date: 2025-04-23 07:16:55
Score: 2
Natty:
Report link

no one mentioned that if you mistakenly clicked "Don't trust" when connecting iphone to mac, you will definitely get this error?... replugin and hit trust instead will solve it.. at least in my case

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
Posted by: MartianMartian