79380507

Date: 2025-01-23 09:44:14
Score: 2.5
Natty:
Report link

A hard refresh worked for me, that is, Ctrl + Shift + R.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NILANCHAL

79380497

Date: 2025-01-23 09:40:13
Score: 13.5 🚩
Natty: 4
Report link

I'm facing the same issue. Could you guide me how did you solve it ? update_pixbuf_cache

What happens is my build runs, and halts at this point where it searches for a specific folder under rootfs but I believe that folder is not getting created under rootfs.

pdate_pixbuf_cache: 11: cannot create /ssd/ES18/hlos_dev/apps/apps_proc/poky/build/tmp-glibc/work/sa8775-joynext-linux/early-ramdisk-image/1.0-r0/rootfs/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/../loaders.cache: Directory nonexistent

Reasons:
  • Blacklisted phrase (1): how did you solve it
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): Could you guide me how
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it ?
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mohammed hamza

79380492

Date: 2025-01-23 09:38:12
Score: 0.5
Natty:
Report link

I run into the same symptoms, where the remaining 350 GB of space was consumed in a matter of a few minutes. Consumed by temporary files creates by PostgreSQL.

However, this appeared to be an caused by an infinite loop in our data structure. In a hierarchical structure, where one record, had foreign key referring to a primary key of a record in the same table (in our case an organizational structure). One of the records was pointing to itself, which caused an infinite loop, and also the query to running infinite.

When running in this scenario, the data got nicely cleaned up when shutting down PostgreSQL. My experience is, under normal circumstances, that these file space claimed by PostgreSQL is certainly not that extreme, but it is clearly related to the complexity and size of the data required being queried for.

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

79380490

Date: 2025-01-23 09:38:12
Score: 0.5
Natty:
Report link

here are simple steps

  1. Export XML: Use the to_xml() function as usual.
  2. Post-Process: Open the file, replace / with xsi:nil="true", and save it.
  3. Output: The updated XML will correctly show <data_grafic xsi:nil="true" />

Unfortunately, the to_xml() method in pandas does not currently support directly adding attributes like xsi:nil="true" for null values. However, you can achieve your desired result by post-processing the XML output. After exporting the DataFrame to XML, modify the output string to replace empty elements with the desired format:

import pandas as pd

# Example DataFrame
data = {'col1': [1, None], 'col2': [None, 4]}
df = pd.DataFrame(data)

# Export to XML
xml_output = df.to_xml(
    'df.xml',
    root_name='dataroot',
    row_name='Anexa_1I',
    namespaces={
        "xsd": "http://www.w3.org/2001/XMLSchema",
        "xsi": "http://www.w3.org/2001/XMLSchema-instance",
    },
    prefix="",
    xml_declaration=False,
    index=False,
    pretty_print=True,
)

# Post-process XML file to add `xsi:nil="true"` for null values
with open('df.xml', 'r') as file:
    xml_content = file.read()

# Replace self-closing empty elements with xsi:nil="true"
updated_xml = xml_content.replace('/>', ' xsi:nil="true" />')

# Save the updated XML
with open('df.xml', 'w') as file:
    file.write(updated_xml)

print("XML updated with xsi:nil='true' for null values.")

Even we have different blogs that can be referred for further help- https://techlusion.io/insight/

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Techlusion

79380484

Date: 2025-01-23 09:36:10
Score: 4
Natty:
Report link

npm install --save-dev @ant-design/v5-patch-for-react-19

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Дмитрий Жиденко

79380481

Date: 2025-01-23 09:35:10
Score: 1
Natty:
Report link

I just came across this situation where I needed a clockwise full 360 degree rotation and to solve it I did this:

@keyframes logomove {
  0% {transform: rotate(-360deg);}
}

did the trick for me.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andie

79380472

Date: 2025-01-23 09:30:09
Score: 1.5
Natty:
Report link

In the current version of Powerpoint (Powerpoint 2021, version 16.0), this is not possible. The only way to replace this is to delete the old one, insert a new one, then define the settings for that video again.

Looking at the replies at the MS forum, this volunteer says it's the simplest solution. It can also be done using Visual Basic, but that's clearly not for the people who have never used VB. So it's basically the only solution to delete it, then add the new one. https://answers.microsoft.com/en-us/msoffice/forum/all/how-do-i-replace-one-video-with-another-video-in/49878e93-4d72-47a7-8f53-a17d1b4739e9

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

79380455

Date: 2025-01-23 09:24:08
Score: 2.5
Natty:
Report link

I am having different solution here, for your reference: Visual Studio Code: 1.96.2 (user setup) OS: Windows_NT x64 10.0.22631

Allign Panel --> Centre

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

79380444

Date: 2025-01-23 09:19:07
Score: 2
Natty:
Report link

if you have an admin account with Exchange Permission you can use this cmdlet :

get-MailboxCalendarConfiguration -Identity mailboxIdentity |select-object WorkingHours*

https://learn.microsoft.com/en-us/powershell/module/exchange/get-mailboxcalendarconfiguration?view=exchange-ps

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: trisdev75

79380438

Date: 2025-01-23 09:17:06
Score: 2.5
Natty:
Report link

To get the folders based on the containerId, you will need to run the API found at the URL below to get the top folders and use the same to get sub folders.

Top Folder API - https://aps.autodesk.com/en/docs/data/v2/reference/http/hubs-hub_id-projects-project_id-topFolders-GET/

Sub Folders API - https://aps.autodesk.com/en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-GET/

Note that containerId is same as the project id without the b.

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

79380435

Date: 2025-01-23 09:15:05
Score: 3
Natty:
Report link

If you want to create a multi-step from I would suggest you to use https://www.formity.app/

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martí Serra Molina

79380430

Date: 2025-01-23 09:14:04
Score: 5.5
Natty: 6.5
Report link

He intentado todo para resolver el problema, y no me funciona nada. Por favor ayuda!!

Reasons:
  • Blacklisted phrase (2): ayuda
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel

79380426

Date: 2025-01-23 09:12:03
Score: 0.5
Natty:
Report link

Using standard SSD nowadays makes (almost) no difference between using disk

On my app, clearing (and warming up) cache on shm is 0.1s faster.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: magnetik

79380422

Date: 2025-01-23 09:11:01
Score: 7.5 🚩
Natty:
Report link
same issue please help me out with this [enter image description here][1]


[enter image description here][2]
  [1]: https://i.sstatic.net/Istby6Wk.png
  [2]: https://i.sstatic.net/0kuZrAcC.png
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
    alias(libs.plugins.kotlinMultiplatform)
    alias(libs.plugins.androidApplication)
    alias(libs.plugins.jetbrainsCompose)
    alias(libs.plugins.compose.compiler)
    alias(libs.plugins.jetbrains.kotlin.serialization)
    alias(libs.plugins.ksp)
    alias(libs.plugins.room)
    id("dev.icerock.mobile.multiplatform-resources") version "0.23.0"
}

kotlin {
    androidTarget {
        @OptIn(ExperimentalKotlinGradlePluginApi::class)
        compilerOptions {
            jvmTarget.set(JvmTarget.JVM_11)
        }
    }

    listOf(
        iosX64(),
        iosArm64(),
        iosSimulatorArm64()
    ).forEach { iosTarget ->`
        iosTarget.binaries.framework {
            baseName = "ComposeApp"
            isStatic = true
        }
    }
    ksp {
        arg("room.schemaLocation", "${projectDir}/schemas")
    }
 //   ksp { arg("room.schemaLocation","${projectDir}/schemas") }

//
//    room {
//        schemaDirectory("$projectDir/schemas")
//    }

//    tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach {
//        if (name != "kspCommonMainKotlinMetadata" ) {
//            dependsOn("kspCommonMainKotlinMetadata")
//        }
//    }
    sourceSets {


        androidMain.dependencies {

            implementation(compose.preview)
            implementation(libs.androidx.activity.compose)
            implementation(libs.koin.android)
            implementation(libs.koin.androidx.compose)
            implementation(libs.ktor.client.okhttp)
            implementation("io.ktor:ktor-serialization-gson:2.3.4")
            implementation("dev.icerock.moko:resources:0.23.0")
         }
        commonMain.dependencies {

            implementation("androidx.core:core-ktx:1.15.0")
            implementation("dev.icerock.moko:resources:0.23.0")
            implementation(compose.runtime)
            implementation(compose.foundation)
            implementation(compose.material3)
            implementation(compose.ui)
            //    implementation("io.ktor:ktor-serialization-gson:2.2.0")
            //   implementation("com.google.code.gson:gson:2.10.1")
            implementation(libs.ktor.client.core.v2xx)
            implementation(libs.ktor.client.content.negotiation.v2xx)
            implementation(compose.components.resources)
            implementation(compose.components.uiToolingPreview)
            implementation(libs.androidx.lifecycle.viewmodel)
            implementation(libs.androidx.lifecycle.runtime.compose)
            implementation(libs.androidx.lifecycle.viewmodel)
            implementation(libs.androidx.lifecycle.runtime.compose)
            implementation(libs.jetbrains.compose.navigation)
            implementation(libs.kotlinx.serialization.json)
            implementation(libs.androidx.room.runtime)
            implementation(libs.sqlite.bundled)
            implementation(libs.koin.compose)
            implementation(libs.koin.compose.viewmodel)
            api(libs.koin.core)
            implementation(libs.bundles.ktor)
            implementation(libs.bundles.coil)
            // implementation("io.github.microutils:kotlin-logging-jvm:2.1.21")


        }

        nativeMain.dependencies {
            implementation(libs.ktor.client.darwin)
            implementation(compose.ui)

        }

        dependencies {
            ksp(libs.androidx.room.compiler)
         }
    }
}


android {
    namespace = " "
    compileSdk = libs.versions.android.compileSdk.get().toInt()

    defaultConfig {
        applicationId = " "
        minSdk = libs.versions.android.minSdk.get().toInt()
        targetSdk = libs.versions.android.targetSdk.get().toInt()
        versionCode = 1
        versionName = "1.0"
    }

    buildTypes {
        getByName("release") {
            isMinifyEnabled = false
        }

    }



    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_11
        targetCompatibility = JavaVersion.VERSION_11
            //  isCoreLibraryDesugaringEnabled=true
     }

}

dependencies {

    add("kspAndroid", libs.androidx.room.compiler)
    add("kspIosSimulatorArm64", libs.androidx.room.compiler)
    add("kspIosX64", libs.androidx.room.compiler)
    add("kspIosArm64", libs.androidx.room.compiler)
   add("kspCommonMainMetadata", libs.androidx.room.compiler)

    implementation(libs.androidx.runtime.livedata)
    implementation(libs.androidx.media3.common.ktx)
    implementation(libs.androidx.ui.android)
    implementation(libs.androidx.bluetooth)
    debugImplementation(compose.uiTooling)
    coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")

}public actual object BluetoothDeviceDbConstructor : RoomDatabaseConstructor<BluetoothDeviceDatabase>
    {
  actual override fun initialize(): BluetoothDeviceDatabase =
      `in`.janitri.hospitals.janitriforhospitals.bluetooth.`data`.BluetoothDeviceDatabase_Impl()
}
@Suppress("NO_ACTUAL_FOR_EXPECT")
expect object BluetoothDeviceDbConstructor :RoomDatabaseConstructor<BluetoothDeviceDatabase>{
    override fun initialize(): BluetoothDeviceDatabase
}
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (2): help me out
  • RegEx Blacklisted phrase (1): same issue
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jass manak FaN

79380414

Date: 2025-01-23 09:09:00
Score: 2
Natty:
Report link

I have 2 beacons nearby, and the manufacturer indicates their UUID are:

beacon uuid: fda50693-a4e2-4fb1-afcf-c6eb07647825

by using the direct Android API, I can constantly(every seconds) see the beacon mac and scanRecord via:

ScanCallback leScanCallback =
    new ScanCallback() {
        @Override
        public void onScanResult(int callbackType, ScanResult result) {
            super.onScanResult(callbackType, result);
            // scanned result data bytes sample:onScanResult-> deviceName: R24110120, rssi: -52, 
            // deviceMacAddress: 52:0A:24:11:00:78, 
            //scanRecord: 0201061aff4c000215fda50693a4e24fb1afcfc6eb0764782500010002d80a0952323431313031323011160318520a24110078000100020603e864000000
        }
};
var bluetoothLeScanner = BluetoothAdapter.getDefaultAdapter().getBluetoothLeScanner();
var bluetoothLeScanner = BluetoothAdapter.getDefaultAdapter().getBluetoothLeScanner();
            ScanSettings settings = new ScanSettings.Builder().build();
            ScanFilter scanFilter = new ScanFilter.Builder().build();
            ArrayList<ScanFilter> scanFilters = new ArrayList<>();
            scanFilters.add(scanFilter);
            bluetoothLeScanner.startScan(scanFilters, settings, leScanCallback);

while if I choose the library for scanning:

beaconManager = BeaconManager.getInstanceForApplication(this);
// To detect proprietary beacons, you must add a line like below corresponding to yo
// type.  Do a web search for "setBeaconLayout" to get the proper expression.
beaconManager.getBeaconParsers().add(new BeaconParser().
        setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
beaconManager.addMonitorNotifier(new MonitorNotifier() {
    @Override
    public void didEnterRegion(Region region) {
        var regionLogStr = String.format("didEnterRegion: %s", region.toString());
        Log.i(TAG, "onScanResult - I just saw an beacon for the first time! - " + re
    }
    @Override
    public void didExitRegion(Region region) {
        Log.i(TAG, "onScanResult - I no longer see an beacon");
    }
    @Override
    public void didDetermineStateForRegion(int state, Region region) {
        Log.i(TAG, "onScanResult - I have just switched from seeing/not seeing beaco
    }
});
beaconManager.startMonitoring(new Region("myMonitoringUniqueId", null, null, null));

I could never have any of that callback: didEnterRegion hit, only the didDetermineStateForRegion get called when app just started.

what could be wrong here?

Reasons:
  • Blacklisted phrase (1): what could be
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Shawn

79380413

Date: 2025-01-23 09:09:00
Score: 1.5
Natty:
Report link

How to disable external CSS in browser for testing?

The easiest way is one of the below, or both, according to your personal preference:

  1. Temporarily comment out the tag that links the stylesheet in your HTML by putting it between <!-- and -->.
    This is done automatically by some IDE's like Codium, when you press CTRL+/ while the cursor is on the line of the tag.
  2. Make use of extensions like uBlock Origin and blocking the url's of the css file(s) you want to eliminate for your testing.
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Tripple Moon

79380411

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

In my case the Interceptor ate the body. I have reimplemented the logging like this https://www.danvega.dev/blog/spring-boot-rest-client-logging and now it works

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

79380395

Date: 2025-01-23 09:03:56
Score: 5
Natty: 5.5
Report link

How can I get the total time ?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: chimvip

79380391

Date: 2025-01-23 09:00:54
Score: 6 🚩
Natty:
Report link

I'm having the same issue. I'm trying to troubleshoot it, and I did a search and there are some things that talk about this, hopefully it will help you too.

https://github.com/clauderic/dnd-kit/issues/921

https://github.com/clauderic/dnd-kit/issues/833

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: user29328393

79380390

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

The Web API (which spotipy uses) can't access the local network. Only devices that are already connected to an account.

However, some Spotify speakers allow you to reconnect to them if you were the last one to use them. Even outside the network. Check the Web API Reference to see if your Chromecast is listed as a device.

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

79380388

Date: 2025-01-23 08:58:53
Score: 2
Natty:
Report link

follow this: https://learn.microsoft.com/en-us/answers/questions/712472/c-parse-soap-response-for-elements-and-attribute-v

var faultElement = responseXmlDoc.Descendants(soapNamespace + "Fault").FirstOrDefault();
string faultCode = responseXmlDoc.Descendants("faultcode").FirstOrDefault()?.Value;
string faultString = responseXmlDoc.Descendants("faultstring").FirstOrDefault()?.Value;
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MANSI CHANU

79380387

Date: 2025-01-23 08:58:53
Score: 1
Natty:
Report link

for version 2.1.2 change it to

from moviepy import *  

this will resolve existing error, but will open whole new errors due to updated version of moviepy 2.1.2 .

for example: set_duration changed to with_duration (don't understand the need though :/ )

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

79380382

Date: 2025-01-23 08:56:52
Score: 3.5
Natty:
Report link

This worked for me. Perfect fix. Also check the video comments. https://www.youtube.com/watch?v=zdv9qE4j-VU

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ved Vyas

79380381

Date: 2025-01-23 08:56:52
Score: 1
Natty:
Report link

I realise this is almost 5 years late, however I managed to get this working quite easily with conform. See below code:

javascript = { 'standardjs' },
javascriptreact = { 'standardjs' },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mark Atkinson

79380378

Date: 2025-01-23 08:55:51
Score: 1
Natty:
Report link

I had a similar issue after implementing Google Recaptcha in our product. What I noticed is when the photo challenge is displayed, try selecting the images in the slow phase rather choosing it in a hurry or fast manner. By doing this you are reducing the possibility of being a bot, so once you are done choosing all the images, they won't reappear. Voila, then just click done. Then you have proved Google that you are not a bot.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Mohammed Asad

79380373

Date: 2025-01-23 08:54:50
Score: 7 🚩
Natty: 4
Report link

Did you find a solution to this?

Running into the same issue (even when using npm).

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: Thomas

79380359

Date: 2025-01-23 08:47:49
Score: 2.5
Natty:
Report link

For those who struggling finding old versions of PHP for MAMP 7.x, Visit the link here

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Erick Ashri

79380357

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

you can try those commands :

systemctl --user unmask pulseaudio.service
esystemctl --user restart pulseaudio.service
systemctl --user status pulseaudio.service
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Issam Elotmani

79380341

Date: 2025-01-23 08:37:47
Score: 3
Natty:
Report link

Yes, see approveChatJoinRequest.

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AYMENJD

79380340

Date: 2025-01-23 08:36:47
Score: 2
Natty:
Report link

find the suitable api for triggering the command the command is "toggle.window.commandCenter" in my case vscode.commands.executeCommand("toggle.window.commandCenter") (typescript) was giving the result

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kislay Pathak

79380339

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

Got it.

Fo the REEMtree to work you have to define the id in the predict function:

predict(my_REEMtree, newdata=testing_data, id = testing_data$class_id)

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

79380333

Date: 2025-01-23 08:35:46
Score: 1
Natty:
Report link

vapply is similar to lapply but returns an atomic vector. For this reason, the return type of the function producing the elements of this vector must be specified because atomic vectors can only have one data type.

Vectors are the fundamental data type of R and so to specify a type in R, the length of the vector also needs to be specified. If the data type is a character type, then you need to set

FUN.VALUE = character(1)

which means that the data type of the vector is character vectors of one element. Without specifying the length, the default length is zero and vapply will return an error if the function returns a vector of non-zero length.

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

79380328

Date: 2025-01-23 08:32:45
Score: 4.5
Natty:
Report link

I have the same issue.

But I found Django reported the error, and asked me to add ALLOWED_HOST.


Here is the Django error report:

Starting development server at http://127.0.0.1:8000/

Quit the server with CONTROL-C.

Invalid HTTP_HOST header: 'm-s-2pg2b6emguv9.us-central1-c.c.codatalab-user-runtimes.internal:8007'. You may need to add 'm-s-2pg2b6emguv9.us-central1-c.c.codatalab-user-runtimes.internal' to ALLOWED_HOSTS.


Pay attention to the following: "You may need to add 'm-s-2pg2b6emguv9.us-central1-c.c.codatalab-user-runtimes.internal' to ALLOWED_HOSTS."


when I did this,

ALLOWED_HOSTS = ["colab.research.google.com",'m-s-2pg2b6emguv9.us-central1-c.c.codatalab-user-runtimes.internal']

it works.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: DQ huang

79380327

Date: 2025-01-23 08:32:45
Score: 0.5
Natty:
Report link

https://github.com/dim13/otpauth

$ go install github.com/dim13/otpauth@latest
$ otpauth -link 'otpauth-migration://offline?data=…
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: evandrix

79380321

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

In node_modules/react-native/scripts/find-node.sh, do

change line no 7 set -e. ==> set +e

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali Abbas

79380310

Date: 2025-01-23 08:26:43
Score: 2.5
Natty:
Report link

The increased planning time on the replica is likely due to the higher number of dead tuples in the sessions table, which affects the query planner's ability to generate efficient plans. Running VACUUM on the replica helps normalize planning time by removing dead tuples and updating statistics.

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

79380309

Date: 2025-01-23 08:26:43
Score: 3
Natty:
Report link

Have you tried config.time_zone = "Europe/Kyiv"? or config.time_zone = "Europe/Kiev" ?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: krystonen

79380307

Date: 2025-01-23 08:25:43
Score: 2
Natty:
Report link

XXL Wines is a brand of premium wines and fruit liqueurs that are known for their balanced flavors and complex taste. The alcohol and certain substances in red wine called antioxidants may help prevent XXL WINE coronary artery disease, the condition that leads to heart attacks.It was founded by Rajeev Samant in 1999. Sula has grown to be India's largest and most awarded wine brand. Sula introduced grape varietals such as Chenin blanc, Sauvignon blanc, Riesling and Zinfandel in India and is the leading player in the Indian wine industry.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ameliataylor

79380303

Date: 2025-01-23 08:24:43
Score: 3
Natty:
Report link

I am answering https://stackoverflow.com/users/10147399/aykhan-hagverdili since I don't have enough rep to comment:

creat is defined as:

SYSCALL_DEFINE2(creat, const char __user *, pathname, umode_t, mode)
{
    int flags = O_CREAT | O_WRONLY | O_TRUNC;

    if (force_o_largefile())
        flags |= O_LARGEFILE;
    return do_sys_open(AT_FDCWD, pathname, flags, mode);
}

whereas open is defined as:

SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode)
{
    if (force_o_largefile())
        flags |= O_LARGEFILE;
    return do_sys_open(AT_FDCWD, filename, flags, mode);
}

SYSCALL_DEFINEX defines a syscall that takes in x arguments as input. It should be easy to see creat is just a specialized open with flags O_WRONLY|O_CREAT|O_TRUNC

References:

https://elixir.bootlin.com/linux/v6.13-rc3/source/fs/open.c#L1421

https://elixir.bootlin.com/linux/v6.13-rc3/source/fs/open.c#L1489

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CraftyDrake

79380293

Date: 2025-01-23 08:22:42
Score: 1
Natty:
Report link

For the cameras to work properly, you need to only have one camera active on each client.

Basically you need to include something close to the following line in a network behavior script on the camera in the player prefab

If(!IsOsner){this.SetActive(false)}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Norsanh

79380290

Date: 2025-01-23 08:22:42
Score: 2.5
Natty:
Report link

You can do that: Firstly, go to LDPlayer settings. And click Others. You can see there "ADB Debugging" or something like that. And activate this.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: enes.codes

79380288

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

If anyone has this problem too, check your csprojs or Directory.Build.props. What caused this never ending restore/refresh for me was something undeterministic defined in my Directory.Build.props. Any other method in this or the other thread (deleting bin/obj, repairing/uninstalling VS, clearing caches etc.) didn't work for me.

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

79380284

Date: 2025-01-23 08:19:41
Score: 6
Natty: 8
Report link

are you stupid?are you stupid?are you stupid?are you stupid?are you stupid?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: qffwfw

79380281

Date: 2025-01-23 08:18:41
Score: 3.5
Natty:
Report link

For those that pay attention, i already answered my own question by quoting §2, making this question a self answered question and request for change...

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

79380274

Date: 2025-01-23 08:14:40
Score: 4.5
Natty: 5
Report link

How can we dynamically provide credentials to the dynamically selected data source server to which we are connecting

Reasons:
  • Blacklisted phrase (1): How can we
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can we
  • Low reputation (1):
Posted by: Sharmeli Balakrishnan

79380267

Date: 2025-01-23 08:12:39
Score: 0.5
Natty:
Report link

Recyclerview is a my choice.
Adapter update all or item:\

// change item
notifyItemChanged(int)
notifyItemChanged(int,Object)
notifyItemRangeChanged(int, int)
notifyItemRangeChanged(int, int,Object)
// add
notifyItemInserted(int)
notifyItemRangeInserted(int, int)
// remove
notifyItemRemoved(int)
notifyItemRangeRemoved(int, int)
// reload all
notifyDataSetChanged()
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: 卡尔斯路西法

79380266

Date: 2025-01-23 08:11:39
Score: 0.5
Natty:
Report link

There are essentially three calling conventions for the constructor of pd.Timestamp, the one you are using in both case is the first one.

It takes either a datetime-like string (t1) or a float representing a Unix epoch (number of seconds since 1970-01-01) in units of seconds (t2).

You can read more here (pandas documentation)

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

79380256

Date: 2025-01-23 08:06:38
Score: 3.5
Natty:
Report link

If you want modern UI Components for free you can try - ui.edithspace.com

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

79380251

Date: 2025-01-23 08:05:36
Score: 6.5 🚩
Natty: 5.5
Report link

Please check this from Microsoft: https://support.microsoft.com/en-us/office/about-the-shared-workbook-feature-49b833c0-873b-48d8-8bf2-c1c59a628534

Reasons:
  • Blacklisted phrase (1): Please check this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jhony Nunes

79380249

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

Выведите выходной тензор, и проверьте его тип данных, больше похоже на баг самого TensorFlow

Если действительно проблема в выходном тензоре попробуйте вот это преобразовании

val outputArray = when (rawOutputBuffer?.dataType) {
DataType.FLOAT32 -> rawOutputBuffer.floatArray.map { it.toInt() }.toIntArray() // Convert FloatArray to IntArray
else -> throw IllegalArgumentException("Unsupported output tensor data type: ${rawOutputBuffer?.dataType}")

}

Надеюсь вы решите свою проблему ))

Reasons:
  • Has code block (-0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Руслан Танташев

79380248

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

Confirm that your JAVA_HOME environment varible does not contain quotation marks. Please refer to the oracle Doc ID 2685044.1 for details.

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

79380245

Date: 2025-01-23 08:02:35
Score: 3.5
Natty:
Report link

You want the little 'hammer and wrench' icon on the toolbar.

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

79380239

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

maybe try this js code ?

        document.onmousedown = function (event) {
            // Hide .da only if the clicked element is NOT a BUTTON AND NOT an element with class 'aa'
            if (event.target.tagName !== 'BUTTON' && event.target.className !== 'aa') {
                document.getElementsByClassName('da')[0].style.display = 'none';
            }
        };
Reasons:
  • Whitelisted phrase (-1): try this
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cris

79380234

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

You can try:

# Order df by log.est
df <- df[order(df$log.est, decreasing = TRUE), ]

# Add a color column for positive and negative values
df$color <- ifelse(df$log.est >= 0, "blue", "red")

# Forest plot
ggplot(df, aes(x = log.est, y = reorder(variable, log.est), xmin = log.lower, xmax = log.upper, color = color)) +
  geom_pointrange() +
  geom_vline(xintercept = 0, linetype = "dashed", color = "black") +
  scale_color_identity() +
  labs(title = "Forest Plot with Color-Coded Estimates",
       x = "Log Estimate",
       y = "Variable") +
  theme_minimal() +
  theme(axis.text.y = element_text(size = 10), axis.title.y = element_blank())

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jynxmaze

79380230

Date: 2025-01-23 07:56:34
Score: 3.5
Natty:
Report link

BEPZA PUBLICE SCHOOL & College DEPZ,SAVAR,DHAKA



Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Touhid imrose

79380229

Date: 2025-01-23 07:56:34
Score: 1
Natty:
Report link

Put ob_get_clean(); Before echo/json reponse on the server-side

Expl:

ob_get_clean();
echo "Text from Ajax reponse";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: webstackoverload

79380228

Date: 2025-01-23 07:55:34
Score: 1.5
Natty:
Report link

please check which version of drivers you have installed(X64 or x86). If you have installed 32 bit(x86) version of drivers you have to be sure that you are forcing your application to run on x86 CPU in build configuration.any CPU will by default run on 64 bit mode and if you have installed 32 bit version of drivers it will not work.

Same applies Vice versa. if you have installed 64 bit version of drivers and you are running your app in x86 CPU build configuration will not work eather.

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

79380211

Date: 2025-01-23 07:50:32
Score: 2
Natty:
Report link

This is why because file foramt is not correct or ratehertz is not correct. So you verify that the audio file format is wav or other not webm, because google not support this format. Also ratehertz is correct. These are condition that give an 400 error. Also before sending you online listen the audio by online base64 audio.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mubashir Khan

79380209

Date: 2025-01-23 07:50:32
Score: 3.5
Natty:
Report link

In terminal the keyboard shortcuts for column selection: Ctrl + Alt

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

79380201

Date: 2025-01-23 07:46:32
Score: 2
Natty:
Report link

Maybe last time I changed build configuration settings for my real devices, I don't know the reason but these steps work for me.

  1. Xcode
  2. Runner
  3. Edit Scheme
  4. Build Configuration select DEBUG
  5. Check Debug executable
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: FJ0z13

79380192

Date: 2025-01-23 07:41:31
Score: 2.5
Natty:
Report link

i get same this error, i was solve this with make sure the data input is correct because any special char "/" or ">" conflict with html syntax. i hope helping you

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ganang Wahyu W

79380188

Date: 2025-01-23 07:40:30
Score: 2
Natty:
Report link

check What Snowflake Data Source you are using ,if you are using Connection Pool,SnowflakeConnectionV1.java by default uses "SELECT 1" inside isValid method,this method gets triggered from HikariPool,you can override this method not to send any connection test query

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mukesh dewangan

79380186

Date: 2025-01-23 07:39:30
Score: 5.5
Natty: 7
Report link

what if i search "Firebase Mee" instead of "Firebase Meetup" does it still gives valid output ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): what if i
  • Low reputation (1):
Posted by: Tirth Bhanderi

79380180

Date: 2025-01-23 07:37:29
Score: 2
Natty:
Report link

well, for me I uninstalled recently installed package and then retried it should work 95% of the times.

once build is successful reinstall the packages with right versions. this should solve the issue

all the best

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mithilesh PT

79380177

Date: 2025-01-23 07:36:29
Score: 2
Natty:
Report link

Had the same problem. I just added the missing folder from another version of flutter and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sem Rus

79380173

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

ASP.Net Identity will not allow you to have multiple users with same username for sure. Reason: username is the only parameter which Identity management uses to retrieve remaining user details.

As a workaround, I can suggest having dropdown/search-box to select client/company first and then enter username while registering user into system. And, store username by concatinating client code/id to username to make it unique. e.g. assume company code is 000001 and username is jone_doe. username can be stored as john_doe_000001. For another client,john_doe_000002.

While performing authentication, let user select, client/company(000001) and then enter username (john_doe) and password on login page. While passing credentials to Identity management, again you can concat, client code and username together. i.e. john_doe_000001.

From CX POV, some workarounds can be done like having different subdomain/login pages for each client which will save client's efforts of manually selecting/searching client. Or Hidden field, query parameter, you can choose your own state management technique depending on your app behaviours considering how user lands on your login page.

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

79380172

Date: 2025-01-23 07:33:28
Score: 2
Natty:
Report link

Now after some time and research, I want to follow up and post our solution here. We ended up using the built-in $top accumulator (docs):

{
   $top:
      {
         sortBy: { <field1>: <sort order>, <field2>: <sort order> ... },
         output: <expression>
      }
}

We used sortBy to sort by the absolute of the field's value, maintaining the original sign in the output. For us, this gave us significant performance increase over the original ideas I posted.

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

79380171

Date: 2025-01-23 07:33:28
Score: 0.5
Natty:
Report link

To make Android APK:

Go to Android directory:

 cd android

Type and run this command:

./gradlew assembleRelease

Now wait for the build to complete.

After completing the build your APK generated on this path:

./app/build/outputs/apk/app-release.apk
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Haider Mukhtar

79380166

Date: 2025-01-23 07:32:27
Score: 3
Natty:
Report link

Thank you for the support. This issue has been solved.

Actually, I read an article on Medium that told me about the way to resolve CORS errors in the Spring application by allowing headers, origins, and many other things. That resolved the issue, and login registration functionality was working fine.

But when I implemented the Cart Page, which is a secured route and requires an authentication token to be sent with the request, then the authorization token was not reaching the Spring application.

So, I read the documentation of Spring and looked for many solutions on YouTube. After some time, I found a video on YouTube.

Youtube LInk: https://youtu.be/uMJnAxapF7E?si=u5myiwDTOIVmpxqk

So what I did, I Still configured the Cors setting but this time, I configuired WebMvcConfigure as FOllows:

@Configuration

public class WebConfig {

@Bean
public WebMvcConfigurer corsConfig() {
    return new WebMvcConfigurer() {
        @Override
        public void addCorsMappings(CorsRegistry registry) {
            registry.addMapping("/**")
                    .allowedOrigins("http://localhost:5173")
                    .allowedMethods(HttpMethod.GET.name(),
                            HttpMethod.POST.name(),
                            HttpMethod.DELETE.name(),
                            HttpMethod.PUT.name())
                    .allowedHeaders(HttpHeaders.CONTENT_TYPE,
                            HttpHeaders.AUTHORIZATION);
        }
    };
}

}

One more thing:

This is the SecurityFilterChain Configuration

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): youtu.be
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aditya verma

79380163

Date: 2025-01-23 07:32:27
Score: 5.5
Natty:
Report link

Looking on the Angular GitHub #59602, numerous issues related to HMR seem to be fixed in 19.1.3 (framework) and 19.1.4 (cli)

Can you update to those and see if the issue is fixed?

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Wessel van Leeuwen

79380150

Date: 2025-01-23 07:27:25
Score: 1
Natty:
Report link

try this: https://md.ulixlab.com/ which can help to give comprehensive understanding for medical images

Reasons:
  • Whitelisted phrase (-2): try this:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: luke-king

79380135

Date: 2025-01-23 07:19:23
Score: 2
Natty:
Report link

So it turned out that for that specific repository there were some pre-hooks, located in:

/git/repositories/@hashed/74/86/784285826527........git/custom_hooks/pre-receive

This was the hooks path before version 15.10. It can be found from gitlab panel: Admin --> Overview --> Projects --> (your project) --> Relative Path

This hook was timing out for me and had to be re-configured.. I checked all other directories, except for the @hashed one .. ^^

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @hashed
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Georgi Ovcharov

79380127

Date: 2025-01-23 07:16:23
Score: 1.5
Natty:
Report link

To stack tabs above and below in Notepad++, follow these steps:

  1. Open Notepad++.
  2. Navigate to the top menu and click on Settings.
  3. From the dropdown, select Preferences.
  4. In the Preferences window, click on General from the left sidebar.
  5. Look for the Tab Bar group within the General settings.
  6. Check the option labeled Multi-line.

This will enable the multi-line tab bar, allowing tabs to stack above and below, which can be especially helpful when working with many open files.

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

79380121

Date: 2025-01-23 07:14:22
Score: 2
Natty:
Report link

It's not possible to share the same runtime (session) between different Colab notebooks. Each notebook operates in its own isolated environment, and this isolation is not configurable.

This question is a duplicate of Can multiple Colab notebooks share the same Runtime?. You can check the linked discussion for further details and potential workarounds, such as exporting/loading data or using shared resources like Google Drive.

Reasons:
  • RegEx Blacklisted phrase (1): check the link
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mpivet-p

79380102

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

Try using ppo_trainer.dataloader.base_dataloader instead of ppo_trainer.dataloader

Works for me with trl==0.11.3

Reasons:
  • Whitelisted phrase (-1): Works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: vimukthi sadithya

79380099

Date: 2025-01-23 07:07:20
Score: 2.5
Natty:
Report link

Using WebView in Jetpack compose applications for simpler user cases like displaying web content, user interaction etc.., is not an ideal way, because Webview is from the View system. To use it you need to use View interoperality api's. That is not an efficient and seamless way.

For this usecase see https://developer.android.com/jetpack/androidx/releases/browser library (Chrome custom tabs). See comparison between Webview and custom tabs.

I'm not sure why there is no proper article available for this. Most of them use view interop api;s, but I wrote an article about it. See if you are interested in it.

https://mubaraknative.medium.com/a-modern-webview-alternative-androidx-browser-for-jetpack-compose-0e99f84cf28a

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MubarakNative

79380094

Date: 2025-01-23 07:03:19
Score: 0.5
Natty:
Report link

This is happening because when app is starting on a higher environment, it is triggering as MultiTeams App instead of SingleteamApp. All you need to do is to initiate the App with null clientId and Secret.

AppConfig config =
        AppConfig.builder()
.clientId(null)
.clientSecret(null)
.singleTeamBotToken(botToken)
.build();

This should solve the issue.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kumar Dev

79380087

Date: 2025-01-23 07:01:19
Score: 1.5
Natty:
Report link

I am sure if it is related to .NET8. It could be related to IIS's memory management. Try considering below situations:

  1. I am not sure if your application is running with single or with multiple instances. If multiple, it is possible that, one instance has created cache and other instance is trying to access the same.

  2. Another possibility, IIS's memory management. If application is running on low memory, in such cases IIS flushes memory/chache by recycling app pools.

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

79380085

Date: 2025-01-23 07:00:18
Score: 0.5
Natty:
Report link

I had the same issue just now and for me it worked to import the BrowserAnimationsModule in the test file imports as described by koekaap - in my case also with the provideAnimationsAsync() provider used in the app.config.ts file.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Terez

79380083

Date: 2025-01-23 06:59:18
Score: 1.5
Natty:
Report link

Oh, this is really a huge SQL statement that makes people confused. If optimization is needed, I don't think there's much that can be changed directly in the SQL itself. I have some suggestions.

  1. Don't let the database handle some logical judgments that can be executed in the program.
  2. Split some complex queries into smaller ones and splice them in the program.
  3. Try not to use procedures.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: SQLGenius

79380082

Date: 2025-01-23 06:58:18
Score: 1
Natty:
Report link

check your package.json mostly conflicting dependencies causes this issue

add this to your package.json:

 "devDependencies": {
    "@playwright/test": "^1.49.1",
    "@types/node": "^22.10.7"   }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rohit Kulkarni

79380080

Date: 2025-01-23 06:57:17
Score: 1.5
Natty:
Report link

More modern solution

<style>
details {display: flex; flex-direction:column;}
summary {order: 2}
</style>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Delfi

79380077

Date: 2025-01-23 06:56:17
Score: 0.5
Natty:
Report link

AFAIK, the Graph API doesn't still have an endpoint to retrieve the day-wise working hours.

You can vote for it: https://feedbackportal.microsoft.com/feedback/idea/f4ed696b-9971-ef11-a4e7-6045bdb238dc

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: user2250152

79380076

Date: 2025-01-23 06:56:17
Score: 2
Natty:
Report link

When using a Chromium-based web browser:

  1. Open dev tools with:

Windows/Linux:F12 or Control+Shift+i

Mac: Command+Option+i

  1. In the Dev Tools Elements tab right click on the HTML element and select Capture node screenshot

Shows Dev Tools Elements and dropdown when the user right-clicks HTML element, with all available options. Select 'Capture node screenshot' from listed options

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: MichalRsa

79380071

Date: 2025-01-23 06:54:16
Score: 4
Natty:
Report link

I can't understand. Why do I have an error and you do not? My Custom Function https://i.sstatic.net/b2KNelUr.png My Named Function https://i.sstatic.net/H3kWSp2O.png

Named function based on custom function only works with that range in quotation mark =COUNTCOLOREDSCORE("K157:N157") and this ruin my trying to update a range automatically.

If I try to use your example I get the error: https://i.sstatic.net/ko8dUpb8.png

Reasons:
  • RegEx Blacklisted phrase (1): I have an error
  • RegEx Blacklisted phrase (1): I get the error
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Andrew M

79380069

Date: 2025-01-23 06:53:16
Score: 3
Natty:
Report link

Well its probably becuase of using it with widgets like SafeArea

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

79380067

Date: 2025-01-23 06:51:15
Score: 3
Natty:
Report link

For me it was older target net framework sdk and newer version in nuget dependency.

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

79380061

Date: 2025-01-23 06:49:15
Score: 1.5
Natty:
Report link

The error Scope 'request' is not active for the current thread typically occurs when you try to access a Spring bean with request scope outside the context of an active HTTP request. This often happens when a @RequestScope or @SessionScope bean is accessed from a singleton bean (like a @Service or @Component) that operates outside of a web request thread.

@Component
@RequestScope(proxyMode = ScopedProxyMode.TARGET_CLASS)
public class TenantContext {
    // Your bean definition
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @RequestScope
  • User mentioned (0): @SessionScope
  • User mentioned (0): @Service
  • User mentioned (0): @Component
  • Low reputation (1):
Posted by: Khaja Shekh

79380056

Date: 2025-01-23 06:47:14
Score: 2.5
Natty:
Report link

You could check out open-source projects like Mailtrain, Postal, or Mailu as a starting point. They’re well-maintained and customizable. Alternatively, Postfix or SMTPmart are solid options if you want to work with established mail server software.

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

79380055

Date: 2025-01-23 06:46:14
Score: 1.5
Natty:
Report link

what if i have dynamic set of columns like this?

SELECT * 
  FROM monthly_sales
    PIVOT(SUM(amount) FOR MONTH IN (select distinct month from monthly_sales))
  ORDER BY EMP_ID_renamed;

the output looks like this:

EMP_ID_RENAMED 'JAN' 'FEB' 'MAR' 'APR'

1 10400 8000 11000 18000

2 39500 90700 12000 5300

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what if i have
  • Low reputation (1):
Posted by: user3363640

79380048

Date: 2025-01-23 06:42:13
Score: 1
Natty:
Report link

I’ve done some research, and although I don’t have much experience in the field of web games, here are a few points you should know:

  1. Games published on the web can be made with Unity but using only JavaScript.
  2. If you’re working with Unity, I have a package that allows you to export your game for the web, but it’s important to note that the export alone isn’t enough. You will need Front End skills to customize your website page.

Conclusion: To implement with Unity, you’ll need a Front End developer who can customize the page, and for creating web-based games, JavaScript is used more than C# and Unity.

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

79380046

Date: 2025-01-23 06:40:13
Score: 2.5
Natty:
Report link

Try changing the "Type Checking Mode" setting of Pylance to basic:

"python.analysis.typeCheckingMode": "basic"

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

79380045

Date: 2025-01-23 06:40:13
Score: 3
Natty:
Report link

Just curious, is there any specific reason you're avoiding variable assignment? The issue is that each time you call stuff(), it returns a new object, so changes won’t persist unless you store it in a variable.

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aiktun

79380040

Date: 2025-01-23 06:38:12
Score: 0.5
Natty:
Report link

Your json is not valid json. You need to use double quotes around all your key names. Example:

 "company": "text",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Ray Wallace

79380035

Date: 2025-01-23 06:35:12
Score: 2
Natty:
Report link

Abdulloxn1 bdbsbsbsbsvsvxbxbsbr I have a lot of work to do with the other one I think I have a lot of people who are not in the office today but I can do the same as you have to be honest and I have to be honest and I can't believe it is not a lot more than I have to be in the same place as the office today as they u have a u have a lot of work and the same person who is a u are not in a lot more than I y y y y to u to be aware of I i don't think it would make sense but it would

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: abdurazakov sherzod

79380034

Date: 2025-01-23 06:34:12
Score: 3.5
Natty:
Report link

Hashing's irrelevant here. Backend needs plaintext password. PDF uses KDF, not hashes for encryption. Use pikepdf or similar, AES-256. Frontend? HTTPS for password transit. User types original password to open. Clear now?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan Kowalski

79380031

Date: 2025-01-23 06:31:07
Score: 4
Natty:
Report link

The 2nd and 3rd fields in TIMESTAMPDIFF() function should not be in UNIX time. Refer this article: TIMESTAMPDIFF() usage

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danish Mehmuda

79380030

Date: 2025-01-23 06:31:07
Score: 1
Natty:
Report link

function stuff() {
  return {
    one : "tree",
    two : "apple",
    three : 45,
    four : "red",
    five : ["blue", "cat", "train"],
  }
}
let newarr = stuff();
newarr.five.push("honey")
console.log(newarr.five);

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

79380024

Date: 2025-01-23 06:28:07
Score: 3
Natty:
Report link

Make sure to use https:// instead of http:// for the post address in Postman when making calls to the Mulesoft cloudapp.

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

79380021

Date: 2025-01-23 06:27:06
Score: 5
Natty: 5.5
Report link

A simple solution I found useful: https://norvig.com/spell-correct.html

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