79230749

Date: 2024-11-27 14:48:21
Score: 2
Natty:
Report link
  1. export the *.cert file from SYSTEM => Cert (not my cert)

  2. import the *.cert (double clicking the file) to import cert to LOGIN section.

  3. Export the newly added cert in LOGIN section as *.p12

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

79230748

Date: 2024-11-27 14:47:20
Score: 6.5
Natty: 8
Report link

what is the new endpoint? i want to know

Reasons:
  • Blacklisted phrase (1): i want to know
  • RegEx Blacklisted phrase (1): i want
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (1):
Posted by: dis gard

79230727

Date: 2024-11-27 14:40:18
Score: 3
Natty:
Report link

To resolve the issue, add pathMatch: 'full' to the parent route (/me/temp) in TempRoutes. This ensures Angular correctly recognizes the full path after a page reload.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Андрей Шпилевский

79230720

Date: 2024-11-27 14:39:18
Score: 1.5
Natty:
Report link

I am assuming you've already scanned the Azure SQL DB. If you haven't, then you need to scan it, in order to be able to see the lineage. (https://learn.microsoft.com/en-us/purview/register-scan-azure-sql-database?tabs=sql-authentication).

Assuming you have scanned your Azure SQL DB, and you still cannot see the lineage, it could be due to the know limitation of M-Query (https://learn.microsoft.com/en-us/purview/how-to-lineage-powerbi#known-limitations):

Lineage is not captured when you use dynamic M query parameters in Power BI, e.g. pass server/database names as parameter values.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: S.Bassani

79230717

Date: 2024-11-27 14:39:18
Score: 5.5
Natty: 4.5
Report link

I have added styles to the elements in the default HTML structure of Azure AD B2C, like this:

<div id="api" data-name="Unified" role="main"></div>

I also added a script file inside the body tag as shown below:

<script src="https://gfxvsstorage.blob.core.windows.net/gfxvscontainer/script.js" defer></script>

script.js:

function setupLoginUI() {
    console.log("Entered!");

    const mainContainer = document.getElementById("api");
    const localAccountForm = document.getElementById("localAccountForm");
    const divider = document.querySelector(".continue-with-line");
    const create = document.querySelector(".create");
    const claimsProviderListButtons = document.querySelector(".claims-provider-list-buttons");

    if (mainContainer && localAccountForm && divider && claimsProviderListButtons && create) {
        // Check if the elements are already in the correct order
        const children = Array.from(mainContainer.children);
        const isCorrectOrder =
            children[0] === localAccountForm &&
            children[1] === divider &&
            children[2] === claimsProviderListButtons &&
            children[3] === create;

        if (!isCorrectOrder) {
            mainContainer.innerHTML = '';
            mainContainer.append(localAccountForm);
            mainContainer.append(divider);
            mainContainer.append(claimsProviderListButtons);
            mainContainer.append(create);
        }
    } else if (divider) {
        divider.style.display = 'none';
    }
}

setupLoginUI();

After setting everything up, I tested the login page in Azure AD B2C. The styles were applied correctly, and the script injected the elements properly on the first load. However, after refreshing the page, the DOM manipulations did not apply.

The "Entered!" text is logged in the console, but the formatting of the elements is not applied.

Could someone please provide a solution to resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could someone please provide a solution
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Johnson F

79230714

Date: 2024-11-27 14:37:17
Score: 2.5
Natty:
Report link

You can add it back by going to that specific pull request/issues and click on the subscribe button on the top right side.

enter image description here

What that icon essentially does is it unsubscribed you from a specific pull request/issue. I just figured this out 5 mins ago.

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

79230700

Date: 2024-11-27 14:33:16
Score: 3
Natty:
Report link

I recommend setting up your project in a Docker container. This approach can help you avoid many of the issues you're facing on Windows

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

79230699

Date: 2024-11-27 14:33:16
Score: 4.5
Natty: 4
Report link

I prefer big blue cube toes 🤣🤣

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Your mom's friend

79230691

Date: 2024-11-27 14:31:15
Score: 0.5
Natty:
Report link

Try using the PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW environment variable.

First you'll need to regenerate your screenshots with the PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW turned on. E.g.:

PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW=1 playwright test --update-snapshots

After that, set this variable every time you run the Playwright in the headless mode:

PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW=1 playwright test

This helped me with the exact same issue.

References:

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Sasha

79230690

Date: 2024-11-27 14:31:15
Score: 0.5
Natty:
Report link

Final answer....

It turns out that one of my package dependencies (libpango, in my case) has a dependency on libicu, so I don't need to declare it in my package in order to get it installed. One could -- I suppose -- declare a dependency on libicu_dev as a last resort.

So the challenge then becomes how to dynamically load and use libicu. It's grim. All methods and classes have the major version number appened as a suffix via macro magic. So coll_open in source becomes coll_open_74 on Ubuntu 21.10, coll_open_72 on Ubuntu 21.04, coll_open_70 on Raspberry PI OS.

It might seem insane to try to dynamically load against a package that is absolutely determined to make every single update they release incompatible; but icu package documentation actually guarantees compatibility across major versions for "stable" apis, which are marked in the documentation as stable. All of the four functions I needed are stable APIs. So, as I read the documentation, this approach is explicitly supported.

So the recipe is:

  1. Convert your code to use ICU C Apis. C++ APIs are not stable and are impossible to dynamically load.

  2. Dynamically load libicui18n.so (which is symbolically linked to the actual major version implementation).

  3. Determine the major version number of the .so. A plausibly sensible approach would be to sequentially try to load an entry points until you find one that matches:

    int icuVersion = -1; for (int version = 70; version < 85; ++version) { // or for some arbitrary range. std::stringstream entryName = "coll_open_" << version; void * fn = dlsym(library_handle,entryName.str().c_str()); if (fn) {
    icuVersion = version; break; } } if (icuVersion == -1) { // ... decide how to handle not being able to use ICU. }

  4. Once the version has been identified, dynamically load the entry points you need, concatenating the major version suffix onto each symbol name.

  5. Provide fallback methods for collation (C.utf16 locale will have to do) in case anything goes wrong along the way.

I feel so dirty. But the alternative -- a .deb package for every version of every distro I want to support -- seems impossible.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Robin Davies

79230688

Date: 2024-11-27 14:30:14
Score: 0.5
Natty:
Report link

Problem relied with BroadcastReceiver as it is done asynchronously, somehow putting it a separate Thread than MainThread looks for the class in a wrong place.

What I ended up doing was initialising variable responsible for BroadcastReceiver in the class constructor as class variable then .start() when you press button Start and .stop() when you Stop the device scan. Then, as a precaution I defined the BroadcastReceiver variable to None and redefined it same way as in the constructor but in the function responsible for stopping the scan.

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

79230685

Date: 2024-11-27 14:30:14
Score: 1.5
Natty:
Report link

After I did all of the above without success, I restarted my Mac and it suddenly worked...

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

79230680

Date: 2024-11-27 14:28:14
Score: 0.5
Natty:
Report link

The preferred way would be to have a status property in your state, which the parent component can use to know when the creation is done.

If you have multiple entities that are created at once, that might become a little bit difficult.

The second option would be to do it via a callback, as you have it right now.

So, callback is OK if you can't solve it over metadata in the state.

Reasons:
  • No code block (0.5):
Posted by: rainerhahnekamp

79230679

Date: 2024-11-27 14:28:14
Score: 2.5
Natty:
Report link

I had the same problem. It resolved after selecting USB under the hardware section in the Signing & Capabilities -> App Sandbox. Everything's back to normal now. screenshot

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chris Macke

79230669

Date: 2024-11-27 14:26:13
Score: 1
Natty:
Report link

I've asked on dotTrace forum here. Got an answer that this is a known issue and I need to track this ticket.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Yola

79230667

Date: 2024-11-27 14:25:13
Score: 3
Natty:
Report link

If you see a list of SDKs, you can proceed to download them. If not, there may be an issue with your internet connection. Are you using a proxy or VPN?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ali Doran

79230649

Date: 2024-11-27 14:19:11
Score: 0.5
Natty:
Report link

The issue with concurrent WebRTC calls in Chromium is likely related to internal limits on ICE/STUN/TURN handling. Based on your findings, it appears that exceeding three concurrent calls leads to failures in audio negotiation due to missing RTP streams. This could result from resource limitations or Chromium’s handling of multiple ICE candidates.

To address this: 1. Use a TURN server instead of relying solely on STUN. TURN servers relay media traffic and can handle NAT traversal more reliably. Test both hosted solutions (e.g., Google’s TURN service) and custom setups to determine the best fit. 2. Adjust your WebRTC configuration: • Increase iceCandidatePoolSize to optimize candidate allocation. • Set the iceTransportPolicy to prioritize relay candidates and reduce the dependency on local candidates. 3. Explore Chromium settings via chrome://flags. Enabling flags like experimental QUIC protocol support may improve connection handling under high concurrency. While no documented ICE/STUN limit exists, tweaking these settings can help. 4. Reduce active network adapters to minimize STUN requests. Chromium may generate multiple requests for each adapter, so disabling unused adapters (e.g., Wi-Fi if on Ethernet) could help. 5. Increase iceCheckingTimeout to allow more time for connection negotiation. Use chrome://webrtc-internals to debug failed calls and verify ICE candidate pair formation.

If the issue persists with 8+ calls, it could be a Chromium-specific limit or bug. For scaling up to 50-60 calls, consider using an SFU (Selective Forwarding Unit) or MCU (Multipoint Control Unit) to manage connections centrally, as this offloads negotiation and media handling from individual clients.

If none of these steps work, consider filing a detailed bug report to Chromium developers with reproducible steps and logs from webrtc-internals.

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

79230631

Date: 2024-11-27 14:15:10
Score: 4
Natty: 4
Report link

Take a look at an example here: https://github.com/nextauthjs/next-auth/discussions/4394#discussioncomment-5503602

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hao Zonggang

79230630

Date: 2024-11-27 14:15:09
Score: 1.5
Natty:
Report link

I had some issues with the same error - it turned out that the MS Python extension was set by default to a pre-release version (v2024.21.2024112701); I switched to the Release Version using the available button.

After this the Python file association re-established itself and my conda environments were recognised.

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

79230628

Date: 2024-11-27 14:13:09
Score: 1
Natty:
Report link

OverRiding Adapter at Job Level

class SendmessageJob < ApplicationJob
  queue_as :default
  self.queue_adapter = :async
  
  
  def perform(*args)
    # TwilioMessenger.send_text_message(full_message)
  end
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muneeb Ahmad

79230627

Date: 2024-11-27 14:13:09
Score: 1
Natty:
Report link
$batch = $this->esType->body(["_source" => ["_id"]])->scroll("5m")->take(10000)->get();

After trying what I could and looking at source code, I found in var_dump($batch) named scroll id scrollId instead of scroll_id and it is a protected variable. Correct way to get it turned out to be:

$scrollId = $batch->getScrollId();

The following queries to get next and next 10000 items then would be:

$batch = $this->esType->body(["_source" => ["_id"]])->scroll("5m")->scrollID($scrollId)->get();              
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nikolay kitsul

79230623

Date: 2024-11-27 14:12:09
Score: 1
Natty:
Report link

Maybe this is what you want to get:

with cols as (select 'Select 1,2,3 from dual' query from dual)
  select count(regexp_substr (query,'[^,]+',1,level)) columns
  from cols connect by level <= length(query) - length(replace(query, ',')) + 1;

   COLUMNS
----------
         3
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Valentin Tabacaru

79230621

Date: 2024-11-27 14:11:08
Score: 1
Natty:
Report link

I also encountered this type of situation, where WebUI.authenticate(...) does not do the login. The way I managed to make it work is like this:

    String secondSiteUrl = 'https://username:[email protected]'
    WebUI.navigateToUrl(secondSiteUrl)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BogdanTam

79230617

Date: 2024-11-27 14:10:08
Score: 1.5
Natty:
Report link

I also had to execute chown for the mounted folder with the docker user id -u and id -g.

chown -R $(id -u):$(id -g) ./prometheus
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akos

79230615

Date: 2024-11-27 14:10:08
Score: 1.5
Natty:
Report link

I found the reason , there is a extra <error-handler /> before </flow>, On GUI, it looks totally same, but when starting IDE, it failed with the wired error saying Cannot invoke "Object.getClass()" because "c" is null

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

79230611

Date: 2024-11-27 14:08:08
Score: 1
Natty:
Report link

My variant:

<Button className="multi-line"...

with my css:

.ant-btn.multi-line {
  display: block;
  height: auto;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladimir Pankov

79230610

Date: 2024-11-27 14:07:07
Score: 2
Natty:
Report link

I can reproduce the issue. I guess this has to be solved by the Dymola developers.

In Dymola versions before 2020, there was a similar error message related to inverse/derivative function annotation. Maybe you can modify the models to avoid usage of these features.

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

79230606

Date: 2024-11-27 14:07:07
Score: 0.5
Natty:
Report link

Try to add ENCLOSED BY '"' after DELIMITER ','

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

79230603

Date: 2024-11-27 14:06:07
Score: 0.5
Natty:
Report link
export class Component {
    private router = inject(Router);

    public navigateUp(): void {
        const upOneLevelCommands = this.router
            .routerState.snapshot.url
            .split('/')
            .slice(0, -1);

        this.router.navigate(upOneLevelCommands);
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxime Lyakhov

79230600

Date: 2024-11-27 14:06:07
Score: 1
Natty:
Report link

Ellaborating on @sahasrara62 comment I made my config object into a singleton

class Singleton(type):
    _instances = {}

    def __call__(cls, *args, **kwargs):
        if cls not in cls._instances:
            cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
        cls._instances[cls](**kwargs)
        return cls._instances[cls]


class U2DBLiveConfig(metaclass=Singleton):

    def __init__(self, config_file_path=CONFIG_PATH):
        self.__uopy_session = None

    def __call__(self, *args, **kwargs):
        if kwargs and 'uopy_session' in kwargs:
            self.__uopy_session = kwargs['uopy_session']

Now I can use the with statement like this:

with create_uopy_session() as uopy_session, U2DBLiveConfig(uopy_session) as cfg:
    # some code...

And I can assign the session to the configuration object.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sahasrara62
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Héctor C.

79230594

Date: 2024-11-27 14:04:01
Score: 9 🚩
Natty: 5.5
Report link

Did you find a way to add btn to superset?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a
  • Low reputation (1):
Posted by: Dmytro

79230593

Date: 2024-11-27 14:04:01
Score: 1.5
Natty:
Report link

give this a try i was using recoil for user session management.

When deeplinking happens it directly jumps to screen.

so i had to make the screen renders based on conditions and there is restoreSession function.

recoil is not availble when deeplink happens , i created userref to store the users session

https://gist.github.com/sahilkashyap64/b48e563b8ab3bbf247c40700622e7b57

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

79230592

Date: 2024-11-27 14:04:00
Score: 6.5 🚩
Natty: 5
Report link

I am trying to achieve similar step with an IOT device which will be a controllee. Could you please let me know the settings and example code you used on Controller.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Could you please let me know
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ankush Nag

79230581

Date: 2024-11-27 13:57:58
Score: 1.5
Natty:
Report link

I had the same problem and the solution was to delete de web folder of the project and recreate it with flutter create --platforms=web. Be careful if you made any customizations in the web project, it will be lost. You should make a backup of the folder and after the creation customize it again.

Reasons:
  • 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: Ivan Kastorsky

79230574

Date: 2024-11-27 13:55:58
Score: 1
Natty:
Report link

Refer Documentation: Spring Shell Reference Documentation 2.1 Creating a Project

<properties>
    <spring-shell.version>3.1.5</spring-shell.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.shell</groupId>
        <artifactId>spring-shell-starter</artifactId>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.shell</groupId>
            <artifactId>spring-shell-dependencies</artifactId>
            <version>${spring-shell.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lithika Damnod

79230570

Date: 2024-11-27 13:54:58
Score: 1
Natty:
Report link

2024-update: The loadPaths answer provided by decho is still relevant: With webpack, I had to write my sassOptions like this:

..
const outerDir = path.resolve(__dirname, '.');
   ..
        sassOptions: {
            includePaths: ["node_modules"],
            loadPaths: [outerDir], // (js var outerDir contains an absolute path to somewhere in my source folders.)
        }
   ..

This is highly non-intuitive, because all the documentation and guides I had read suggested includePaths would control this aspect??

The context of this is that I have a local CSS folder structure, and I don't want to use weird relative '../../ ... ' import paths. It used to work without loadPaths, but broke presumably when I upgraded to sass 1.81.0 (?) somewhere along the way.

I wasted a lot of time looking at webpack resolve rules, module rules, and aliases. I still wonder if I could have solved it with those techniques instead (no luck..)

Reasons:
  • Blacklisted phrase (1): no luck
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: jakob gaardsted

79230564

Date: 2024-11-27 13:53:57
Score: 1
Natty:
Report link

The issue lies in your @BeforeSuite setup. Since you're initializing the WebDriver at the suite level, the same driver instance is shared across all tests, causing conflicts in parallel execution.

To fix this, move the WebDriver initialization to @BeforeClass (or @BeforeMethod if you need a new browser instance per test). Here's the updated code:

public class BaseTest {

protected WebDriver driver;

@BeforeClass
public void setup() {
    WebDriverManager.chromedriver().setup();
    driver = new ChromeDriver();
    driver.manage().window().maximize();
    driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
}

@AfterClass
public void tearDown() {
    if (driver != null) {
        driver.quit();
    }
}

}

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @BeforeSuite
  • User mentioned (0): @BeforeClass
  • User mentioned (0): @BeforeMethod
  • Low reputation (1):
Posted by: GabrielFethi

79230560

Date: 2024-11-27 13:51:56
Score: 2
Natty:
Report link

with Nodejs 23 the official way:

import packageJson from './package.json' with { type: 'json' };

works like a charm. See here for more info: https://www.stefanjudis.com/snippets/how-to-import-json-files-in-es-modules-node-js/

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

79230552

Date: 2024-11-27 13:49:55
Score: 4
Natty:
Report link

Patch No. 17 resolved this issue for me. It should fix it for you as well. https://www.drupal.org/project/skeletontheme/issues/3275683#comment-15652299

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: raj.solanki.07

79230551

Date: 2024-11-27 13:49:55
Score: 1.5
Natty:
Report link

The issue I was experiencing was not with the source or sink tables, but with a interim table that ADF creates in-between for the upsert activity. This table by default appears to be created with a columnstore index.

To solve for this, I switched from doing an upsert to bulk inserting into a interim table, then manually merging those tables with a script.

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

79230548

Date: 2024-11-27 13:48:55
Score: 2.5
Natty:
Report link

I cannot explain why it is this way, but code you execute in the debugging console does not trigger breakpoints. And exceptions thrown on the debugging console do not crash your main script.

That's just how the debugging console works.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: brotherlove

79230547

Date: 2024-11-27 13:48:55
Score: 3.5
Natty:
Report link

Upgrade Guide (v2 -> v3) Formatjs new migration URL: https://formatjs.github.io/docs/react-intl/upgrade-guide-3x/#migrate-to-using-native-intl-apis

addLocaleData has been removed. See Migrate to using native Intl APIs for more details.

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

79230544

Date: 2024-11-27 13:47:55
Score: 4
Natty:
Report link

Flutter clean then flutter pub get.

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

79230537

Date: 2024-11-27 13:44:54
Score: 1.5
Natty:
Report link

I ran into the same issue on Mac. I tried to open Android Studio from the terminal and I also tried to reinstall it. None of them could fix the issue. Finally, I switched the Gradle JDK version through settings -> Build, Execution, Deployment -> Build Tools -> Gradle. I switched it to the openjdk17 that I installed by myself, and the problem was solved.

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

79230536

Date: 2024-11-27 13:44:54
Score: 1
Natty:
Report link

When chart is initialized it creates an instance of an chart in an canvas. if it it gets new data the chart does get the new data but doesnt update the canvas beacause it doesnt get the command to update the view. the command itself is chart.update() code link chart.js.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: oelimoe

79230531

Date: 2024-11-27 13:43:53
Score: 0.5
Natty:
Report link

I think this issue is due to the deprecation of buildConfigField (from android.packageBuildConfig).

Try adding the following line to gradle.properties:

android.defaults.buildfeatures.buildconfig=true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vivek Yadav

79230525

Date: 2024-11-27 13:42:53
Score: 0.5
Natty:
Report link

how to use msal to get the access token?

Initially, I registered Microsoft Entra ID application with support account type of Single Tenant Application:

enter image description here

Use below modified Python Script:

from msal import ConfidentialClientApplication

CLIENT_ID = 'YOUR CLIENT ID'
CLIENT_SECRET = 'YOUR CLIENT SECRET'
TENANT_ID = 'YOUR TENANT ID'
AUTHORITY = f'https://login.microsoftonline.com/{TENANT_ID}'
SCOPE = ['https://graph.microsoft.com/.default']
REDIRECT_URI =  'http://localhost:5000/callback'

app_confidential_client = ConfidentialClientApplication(
    client_id=CLIENT_ID,
    client_credential=CLIENT_SECRET,
    authority=AUTHORITY
)

result = app_confidential_client.acquire_token_for_client(scopes=SCOPE)


if 'access_token' in result:
    print("Access Token:", result['access_token'])
else:
    print("Error:", result.get("error_description", result))

Response:

enter image description here

If still issue persists try to register another application and try the same.

Reference:

ConfidentialClientApplicationClass

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how to use
  • Low reputation (0.5):
Posted by: Pratik Jadhav

79230516

Date: 2024-11-27 13:38:52
Score: 1.5
Natty:
Report link

Starting with Oracle Database 23ai, this becomes easy:

grant select any table on schema OwningUser to ReceivingUser
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: REPLicated

79230514

Date: 2024-11-27 13:37:52
Score: 1
Natty:
Report link
var letters = ["a", "b", "c", "d", "e", "f"];

function swap (arr, from, to) {
    let temp = arr[from];
    arr.splice(from, 1, arr[to]);
    arr.splice(to, 1, temp);
}

swap(letters, 1, 4)
console.log(letters); // output [ 'a', 'e', 'c', 'd', 'b', 'f' ]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pavasiya Milan

79230511

Date: 2024-11-27 13:36:51
Score: 3
Natty:
Report link

A suggestion is that it could be that you have another script running that is updating the camera position, and so overriding the blend.

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

79230506

Date: 2024-11-27 13:35:51
Score: 0.5
Natty:
Report link

I've finally found a solution. I share it for those who'd be interested:

import android.content.Context
import android.content.Intent
import android.os.Bundle
import dagger.hilt.android.qualifiers.ApplicationContext
import javax.inject.Inject
import javax.inject.Singleton

@Singleton
class DWConfig @Inject constructor(
    @ApplicationContext private val context: Context,
) {
    val setConfigBundle = Bundle().apply {
        putString("PROFILE_NAME", DATAWEDGE_PROFILE_NAME)
        putString("PROFILE_ENABLED", "true")
        putString("CONFIG_MODE", "CREATE_IF_NOT_EXIST")
    }

    val appConfig = Bundle().apply {
        putString("PACKAGE_NAME", context.packageName)
        putStringArray(
            "ACTIVITY_LIST", arrayOf(
                "${context.packageName}.MainActivity",
            )
        )
    }

    val barcodeParamList = Bundle().apply {
        putString("scanner_input_enabled", "true")
        putString("scanner_selection", "auto")
        putString("charset_name", "ISO-8859-1")
        putString("auto_charset_preferred_order", "UTF-8;GB2312")
        putString("auto_charset_failure_option", "UTF-8")
        putString("volume_slider_type", "3")
    }

    val barcodeConfigBundle = Bundle().apply {
        putString("PLUGIN_NAME", "BARCODE")
        putString("RESET_CONFIG", "true")
    }

    val intentParamList = Bundle().apply {
        putString("intent_output_enabled", "true")
        putString("intent_action", DATAWEDGE_INTENT_ACTION)
        putString("intent_delivery", "2")
    }

    val intentConfigBundle = Bundle().apply {
        putString("PLUGIN_NAME", "INTENT")
        putString("RESET_CONFIG", "true")
    }

    val rfidParamList = Bundle().apply {
        putString("rfid_input_enabled", "true")
        putString("rfid_beeper_enable", "false")
        putString("rfid_led_enable", "true")
        putString("rfid_antenna_transmit_power", "30")
        putString("rfid_memory_bank", "3")
        putString("rfid_session", "1")
        putString("rfid_trigger_mode", "0")
        putString("rfid_filter_duplicate_tags", "true")
        putString("rfid_hardware_trigger_enabled", "true")
        putString("rfid_tag_read_duration", "250")
    }

    val rfidConfigBundle = Bundle().apply {
        putString("PLUGIN_NAME", "RFID")
        putString("RESET_CONFIG", "true")
    }

    val keystrokeParamList = Bundle().apply {
        putString("keystroke_output_enabled", "false")
    }

    val keystrokeConfigBundle = Bundle().apply {
        putString("PLUGIN_NAME", "KEYSTROKE")
        putString("RESET_CONFIG", "true")
    }

    private fun setAppList() {
        setConfigBundle.putParcelableArray(
            "APP_LIST", arrayOf(
                appConfig
            )
        )
    }
    
    private fun setPluginConfig() {
        setConfigBundle.remove("PLUGIN_CONFIG")
        barcodeConfigBundle.putBundle("PARAM_LIST", barcodeParamList)
        intentConfigBundle.putBundle("PARAM_LIST", intentParamList)
        rfidConfigBundle.putBundle("PARAM_LIST", rfidParamList)
        keystrokeConfigBundle.putBundle("PARAM_LIST", keystrokeParamList)

        setConfigBundle.putParcelableArrayList(
            "PLUGIN_CONFIG", arrayListOf(
                barcodeConfigBundle,
                intentConfigBundle,
                rfidConfigBundle,
                keystrokeConfigBundle
            )
        )
    }

    private fun sendConfig() {
        val intent = Intent().apply {
            action = "com.symbol.datawedge.api.ACTION"
            putExtra("com.symbol.datawedge.api.SET_CONFIG", setConfigBundle)
        }

        context.sendBroadcast(intent)
    }

    fun initialize() : Boolean {
        try {
            
            setAppList()
            setPluginConfig()
            sendConfig()
            return true
            
        } catch (e: Exception) {
            
            Log.e("DWConfig", "Error initializing DataWedge", e)
            return false
            
        }
    }
}

I call initialize() method during the launch of my app:

@HiltViewModel
class MainViewModel @Inject constructor(
    private val dwConfig: DWConfig
) : ViewModel() {

    fun initializeDataWedge(): Boolean {
        return dwConfig.initialize()
    }

    ...

}
@HiltAndroidApp
class MainApplication : Application() {
    @Composable
    fun App(activity: MainActivity, mainViewModel: MainViewModel) {

        LaunchedEffect(Unit) {

            val dataWedgeJob = async { mainViewModel.initializeDataWedge() }
            
            ...

            dataWedgeJob.await()

            ...
}

I found most of the informations that I needed here (unfortunately, all the examples are written in Java) : https://techdocs.zebra.com/datawedge/13-0/guide/api/setconfig/

Almost all the parameters that you can configure in the Datawedge App are referenced here with their ids and their possible values that you can set programmatically.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pierrick Valentin

79230505

Date: 2024-11-27 13:35:51
Score: 3
Natty:
Report link

i prefer using axios when sending a request, instead using Inertia request and try use this headers at your request

headers: {
'Content-Type': 'multipart/form-data'
}

i've same problem too when i'm using laravel inertia react, it's little bit tricky i guess and it's work for me. Hope it gonna help your problem

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): 've same problem
  • Low reputation (1):
Posted by: Ahmad Fadilah

79230499

Date: 2024-11-27 13:33:50
Score: 4.5
Natty:
Report link

Why dont you just use a Localhost like Xampp? There you can run multiple Projects at once.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (1):
Posted by: Konsti

79230493

Date: 2024-11-27 13:32:50
Score: 0.5
Natty:
Report link

If you are going to those lengths to scrape highly aggregated data (CrUX) from an admin tool, why don't you instead gather detailed data directly from your website:

https://github.com/GoogleChrome/web-vitals

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

79230491

Date: 2024-11-27 13:32:50
Score: 1.5
Natty:
Report link

I solved this problem by redesigning the application architecture using nx and decoupling the connections between services: I moved the common methods into a separate regular ts file, in which these methods simply became pure functions. Thanks to everyone for the answers!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anatoly Surgutov

79230485

Date: 2024-11-27 13:30:49
Score: 3.5
Natty:
Report link

you need to enable comunication i2c inside a stm32 of the XM132.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Souza de Oliveira

79230484

Date: 2024-11-27 13:30:49
Score: 2.5
Natty:
Report link

I found the answer in the norm. RFC 1112 - 6.4

An IP host group address is mapped to an Ethernet multicast address by placing the low-order 23-bits of the IP address into the low-order 23 bits of the Ethernet multicast address 01-00-5E-00-00-00 (hex).

I contacted the company with this information and they fixed their IP.

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

79230482

Date: 2024-11-27 13:30:49
Score: 0.5
Natty:
Report link

There's no native to do it, but you can add an empty row below baz to force the alignment:

F.G.Values[1;]←⊂[2 3]↑F.G.Values[1;]

screenshot of result

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Adám

79230479

Date: 2024-11-27 13:29:49
Score: 2.5
Natty:
Report link

There doesn't seem to be any controls for this.

for forward or backward . or enter login data or passwords from the website . or read the page.

neither in VB Sharp or C++ or Java

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

79230473

Date: 2024-11-27 13:26:48
Score: 1
Natty:
Report link

You need download the app as a mobile web app, click EXPORT > HTML/JS/CSS: enter image description here

Download the project and unzip it. The folder should contain package.json. From inside this catalog, start npm install (you need to have node.js and npm installed): all the dependencies will need to be installed from package.json.

Then run ionic serve which will start the project preview.

ionic build --prod will create the project build that can be then uploaded to whenever you need it.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: alexander.antsypov

79230470

Date: 2024-11-27 13:26:48
Score: 0.5
Natty:
Report link

TLDR: just try PCA and see if it helps you. There are many good guides, but if you are new to any data/computing method, I will always recommend looking for a guide on Machine Learning Mastery - here is the guide to Principal Components Analysis

Body: There are two solid ways of thinking about this question.

Philosophy 1) Deliberate naivety - the methods are powerful, just apply them and see if they give you a result that helps you

Philosophy 2) Thoughtful work - think through the relevance and assumptions of each method you use and their suitability for your use case, then apply only the valuable methods, or tailor the settings to your use case.

It is very easy to think that Philosophy 2 is the best way, but the big success of data science is that many of the methods do work fairly well, even if they are a poor fit for the assumptions of the method applied.

Directly answering your questions:

Is it ok if I use PCA for dimensionality reduction on all these features, or should I select a subset of feature to use prior to the analyisis?

PCA is designed to reduce the number of features. 300 is a large number of features for a human, but not necessarily large for datasets more generally. OpenAI uses approximately 100k features to encode English language prompts

How this large amount of features can affect the results on the pca plot?

Getting PCA to work on your data is easier than understanding the effects. If you can reduce your large number of dimensions to 2 or 3 dimensions then you can visualise the output with a graph. Any more than 3 dimensions, and a PCA plot like the one below will merely show you 2 dimensions out of all the output dimensions. The human brain is not designed to think of things in more than 3 dimensions. There are many measures for examining the quality of your output model though - if you are doing some unsupervised learning (also called clustering) then you might use silhouette score to tell you how good your clusters are.

You might be trying to classify the output to some limited number of real world scenarios eg using your gas sensor figure out which of 32 weather categories are currently happening, or you might have some single value metric like the cleanliness of air output by an air purifier. There are scores for these scenarios too.

If this is not helpful, please update your question or leave a comment. Otherwise, please click the tick to accept the answer and consider upvoting this answer.

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

79230464

Date: 2024-11-27 13:25:48
Score: 1
Natty:
Report link

Most of the posts above assume you have enabled ADB on the device. Even if you have not enabled ADB, you run the command

adb devices

It will typically return a line with: "<serial_number> unauthorized"

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

79230456

Date: 2024-11-27 13:24:47
Score: 0.5
Natty:
Report link
  1. The error messages clearly state that the equation system "simulation.nonlinear[1]" could not be solved. This is a nonlinear algebraic equation system solved during the computation of the ODE RHS. Another variable calculated earlier in the computational causality might be wrong, but this is the first part of the equation system which could not be solved.

    You can activate "Simulation Setup/Translation/Model translation/Generate listing of translated Modelica code in dsmodel.mof" to get the translated model. In the dsmodel.mof file you can find a description of the equation system "simulation.nonlinear[1]".

    If "Simulation Setup/Debug/Nonlinear solver diagnostics/Details" is activated, you should get a simulation log message "...plotArray(Amat[:,1],Amat[:,2],-1);...". If you copy/paste this to the Dymola command window, you will get a plot of the residual. You should see that the residual function does not reach zero.

    Either this is a structural modeling error which is not detected by the compiler, or the model cannot be solved for the given boundary conditions.

    You should analyze the "simulation.nonlinear[1]" in the dsmodel.mof and try to get rid of the nonlinear equation system by changing the equations. Often idealized physical dependencies lead to algebraic equation systems. If you cannot do that, you must make sure that it is always possible to solve it.

  2. You can model describe systems with capacities, resistors, and inductors (e.g. Bond Graph Modelling, see "Continuous System Modelling" by Cellier). This is what you described above as "flow" (i.e. resistor) and "volume" (i.e. capacity). There should be no nonlinear equation systems due to the composition of these base components if you stick to the design rules.

    You can also describe the system using linear graph modeling. I.e. using through- and across-variables. You might have to clarify how to extend these approaches using the stream connector concept of Modelica. However, the Modelica community usually implements the first approach, and Dymola provides proper debugging features based on the first approach.

    It is a design choice how you implement your approach in Modelica component models and connectors. Using a/b connectors you will be able to enforce certain usage patterns.

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

79230446

Date: 2024-11-27 13:22:47
Score: 0.5
Natty:
Report link

I got it resolved. Look up the property: zone_code in zone_to_division.

    for feature in topojson_data['features']:
        division_name = feature['properties'].get('division', 'Unknown')
        zone_code = next((k for k, v in zone_to_division.items() if v == division_name), None)
        
        if zone_code and zone_code in zone_colors:
            feature['properties']['color'] = zone_colors[zone_code]
            feature['properties']['data_count'] = division_crime_counts.get(division_name, 0)
        else:
            feature['properties']['color'] = [200, 200, 200]
            feature['properties']['data_count'] = 0

    geojson_layer = pdk.Layer(
        "GeoJsonLayer",
        topojson_data,
        opacity=0.6,
        stroked=True,
        filled=True,
        extruded=True,
        get_fill_color='properties.color',
        get_elevation='properties.crime_count * 100',
    ...

Here's my output

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

79230423

Date: 2024-11-27 13:16:45
Score: 0.5
Natty:
Report link

If you really want to disable all "disabledAlgorithms", put inside /etc/crypto-policies/back-ends/java.config bellow config. Tested on Oracle Linux Server 9.4.

jdk.certpath.disabledAlgorithms=
jdk.tls.disabledAlgorithms=
jdk.tls.legacyAlgorithms=
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KamWebDev

79230412

Date: 2024-11-27 13:13:45
Score: 2
Natty:
Report link

The icon I was using had a 1-bit black and white color palette. TrayIcons often require icons with a more standard color depth, such as 8-bit or 24-bit.

To fix this, I converted the icon to use a higher color depth in a software like GreenFish Icon Editor Pro , and the error was resolved.

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

79230409

Date: 2024-11-27 13:12:44
Score: 2.5
Natty:
Report link

You have figured out the problem, but in case anyone is running into problems in the future here - Dynamics API requires table names to be in plural (contact -> contacts), but if your table is already named contacts, you need to use "contactses" (add -es). Welcome to this absurdity.

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

79230408

Date: 2024-11-27 13:12:44
Score: 4
Natty:
Report link

When I click on the button in the javascript table, I want to select the select value in the modal that opens and write the row whose value is equal to the table. How can I?

`

<thead>

  <div class="h4 fw-bolder bg-danger p-1 text-center text-white" style="margin-bottom: 0; ">Arif Tangör Hoca</div>

  <tr class="table-dark">

    <th class="text-nowrap" scope="col">Ad - Soyad</th>

    <th scope="col">1.D</th>

    <th scope="col">2.D</th>

    <th scope="col">3.D</th>

    <th scope="col">4.D</th>

    <th scope="col">5.D</th>

    <th scope="col">6.D</th>

    <th scope="col">7.D</th>

    <th scope="col">8.D</th>

    <th scope="col">9.D</th>

    <th scope="col">10.D</th>

    <th scope="col">11.D</th>

    <th scope="col">İşlem Ekle</th>

    <th scope="col">İşlem Sil</th>


  </tr>

</thead>

<tbody>

  <tr>

    <th class="text-nowrap" scope="row">Kazım Yılmaz</th>

    <td class="catid" value="1">2000</td>

    <td class="catid" value="2">2000</td>

    <td class="catid" value="3">2000</td>

    <td class="catid" value="4">2000</td>

    <td class="catid" value="5">2000</td>

    <td class="catid" value="6"></td>

    <td class="catid" value="7"></td>

    <td class="catid" value="8"></td>

    <td class="catid" value="9"></td>

    <td class="catid" value="10"></td>

    <td class="catid" value="11"></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

    <td style="padding-left: 0; padding-right: 0;" class="text-nowrap">

Sil

    <th class="text-nowrap" scope="row">Ömer Tangör</th>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

Sil

  </tr>

  <tr>

    <th class="text-nowrap" scope="row">Fatih Baş</th>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td></td>

    <td style="padding-left: 0; padding-right: 0; border: 0; " class="text-nowrap">

Para Ekle

Sil

<div class="modal-dialog">

  <div class="modal-content">

    <div class="modal-header">

      <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>

    </div>

    <div class="modal-body">

      <label for="" class="fw-bolder form-label">Hangi Döneme Eklenecek?</label>

      <select name="" class="form-select" required>

        <option value="">Seçiniz</option>

        <option value="1">1</option>

        <option value="2">2</option>

        <option value="3">3</option>

        <option value="4">4</option>

        <option value="5">5</option>

        <option value="6">6</option>

        <option value="7">7</option>

        <option value="8">8</option>

        <option value="9">9</option>

        <option value="10">10</option>

        <option value="11">11</option>

      </select>

      <label for="" class="mt-3 fw-bolder form-label">Eklenecek Tutar</label>

      <input type="text" class="form-control">


    </div>

    <div class="modal-footer">

      <button type="button" class="btn btn-danger fw-bolder" data-bs-dismiss="modal">Vazgeç</button>

      <button type="button" class="btn btn-success fw-bolder" onclick="islem()">Ekle&Kaydet</button>

    </div>

  </div>

</div>
`

When I click on the button in the javascript table, I want to select the select value in the modal that opens and write the row whose value is equal to the table. How can I?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Kemal Reis

79230406

Date: 2024-11-27 13:12:44
Score: 2.5
Natty:
Report link

Try running your code editor as an administrator, that worked for me

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: Juan Carlos Duarte

79230404

Date: 2024-11-27 13:12:44
Score: 2.5
Natty:
Report link

In my case, the problem was related to accepting Apple's terms on the page https://developer.apple.com/account, after accepting I was able to publish normally.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Felipe Gabriel Souza Martins

79230401

Date: 2024-11-27 13:11:44
Score: 3.5
Natty:
Report link

Important is that 1 value need to be on the right side of the equation. Otherwise spatial index is not used. https://learn.microsoft.com/en-us/sql/relational-databases/spatial/spatial-indexes-overview?view=sql-server-ver16#queries-that-use-spatial-indexes

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

79230393

Date: 2024-11-27 13:09:43
Score: 1.5
Natty:
Report link

You can try to emulate HT12D with PIC16F84a itself (if you still have free space and ports for that).

Recently, I had a similar problem and decided to create an emulator for HT12D with PIC12F675. In my project, I used an HT12D and a CD4093 for a flood alarm system. Both have been replaced by a unique PIC12F675 (drastically reducing the bill of materials).

My emulator project for HT12D using PIC is available on github (HT12D_PIC_Emulator).

Important notice: This project was entirely created by me and is completely free. I'm not trying to self-promote, I'm just trying to help.

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

79230391

Date: 2024-11-27 13:09:43
Score: 2.5
Natty:
Report link

You need to check the product have the featured_image set or not.

{% if product.featured_image != blank %} // code here. {% endif %}

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

79230390

Date: 2024-11-27 13:08:43
Score: 2.5
Natty:
Report link

In my case, the problem was related to accepting Apple's terms on the page https://developer.apple.com/account, after accepting I was able to publish normally.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Felipe Gabriel Souza Martins

79230389

Date: 2024-11-27 13:08:43
Score: 1.5
Natty:
Report link

Disclaimer: I am an Apryse employee. We have recently published an article on creating ZUGFeRD invoices with iText, which may be helpful to you. Included in the article is a link to the C# version of the Java code used in the article. This example targets the BASIC profile, but can easily be adapted to other profiles the in the current (2.3) ZUGFeRD specification.

Regarding your code, the XMP exceptions are possibly due to the namespaces not being correctly registered. As for the PDF/A conformance errors, PDF/A compliance requires its own XMP metadata, so it may be you did not include this correctly?

If you still have issues, please update the question with your complete code, and an example PDF so we can investigate further.

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

79230388

Date: 2024-11-27 13:08:43
Score: 1
Natty:
Report link

here is example

  const auth = req.headers.authorization;
if (!auth) {
    res.set('WWW-Authenticate', 'Basic realm="Secure Area"');
    res.status(401).send('Authentication required');
    return;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chirag0264

79230379

Date: 2024-11-27 13:05:42
Score: 4
Natty:
Report link

You should try the new chat capabilities with genkit 0.9: https://firebase.google.com/docs/genkit/chat

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Xavier Portilla Edo

79230377

Date: 2024-11-27 13:05:41
Score: 4
Natty: 4.5
Report link

https://github.com/jrTilak/lazykit/blob/87089776521af1a1c2f32123f6050495020c8c87/src/www/src/scripts/generateRegistry.ts#L161-L171

I had a similar requirement and I used typescript.transpileModule

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jr Tilak

79230376

Date: 2024-11-27 13:05:41
Score: 1.5
Natty:
Report link

Executing following command in terminal worked:

1)git config --global tag.forcesignannotated false

2)open ~/.gitconfig in terminal then remove: [safe] bareRepository = explicit save it and that's it

After this you can install swiftymocky through mint

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: iosdev1111

79230374

Date: 2024-11-27 13:04:41
Score: 1.5
Natty:
Report link

For me, it started happening while installing on Android 15 devices.

In the Run debug configuration, Selecting APK from app bundle solved the issue

In the Run debug configuration, Selecting APK from app bundle solved the issue

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

79230360

Date: 2024-11-27 13:00:40
Score: 1
Natty:
Report link

Please try: bin/kc.sh bootstrap-admin user It worked for me

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marcin Pająk

79230357

Date: 2024-11-27 12:59:39
Score: 2.5
Natty:
Report link

Simply don't render your flash list unless your data.length > 0, this removed the warning message for me.

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

79230356

Date: 2024-11-27 12:59:39
Score: 3
Natty:
Report link

Okay, as @AlanBirtles mentioned, I have to call PrintSectionContent(section) like (*PrintSectionContent)(section) this. But if I call like *PrintSectionContent(section) this, then it won't work, I have no idea why.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AlanBirtles
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Александр Алибеков

79230350

Date: 2024-11-27 12:56:39
Score: 2
Natty:
Report link

I left the port Blank and I got connected:

Final connection string I used:

sqlsrv:Server=$ip;Database=$database;Encrypt=no;TrustServerCertificate=yes

I don't understand it why default port was the problem (and why no port at all works?) Machine (sql) as far as I know has standard configuration. Maybe somebody knows?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: baron_bartek

79230348

Date: 2024-11-27 12:55:39
Score: 2.5
Natty:
Report link

dsadsadsadsadsadsad adsa dasdsa dsadasdasdsadsd21d1 3xa sdsad qsa dsadsa dsad sadsad sadsa

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

79230347

Date: 2024-11-27 12:55:39
Score: 0.5
Natty:
Report link

The Error Clearly states that pg_config is required to build psycopg2 from source. You have to add the directory containing the pg_config executable to your $PATH or install psycopg2-binary to avoid building from source using this command:

pip install psycopg2-binary
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shreyas Salankimatt

79230336

Date: 2024-11-27 12:50:37
Score: 1
Natty:
Report link

it's 2024 now, if you install by this answer , you will get

> brew tap homebrew/science

Error: homebrew/science was deprecated. This tap is now empty and all its contents were either deleted or migrated.

you should install directly by

brew install r
brew install rstudio #if you need
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: whitewatercn

79230329

Date: 2024-11-27 12:50:37
Score: 4
Natty: 4
Report link

[ccm_root@hostname] 1089 {ccm_root} > echo $DISPLAY

[ccm_root@hostname] 1090 {ccm_root} > export DISPLAY=hostname:51 [ccm_root@hostname] 1091 {ccm_root} > echo $DISPLAY
hostname:51 [ccm_root@hostname] 1092 {ccm_root} > xclock No protocol specified Error: Can't open display: hostname:51 Exit 1

Still xclock is not getting open, if someone knows how to resolve this problem then please let me know

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shriyansh Rasotiya

79230317

Date: 2024-11-27 12:45:35
Score: 0.5
Natty:
Report link

It seems you have a syntax error in your HTML:

<div data-list class=""list list-group" OSFillParent" style="position: relative;">
                      ^               ^

Those quotes are superfluous.

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

79230311

Date: 2024-11-27 12:44:35
Score: 1.5
Natty:
Report link

Try calling this.render().
Personally I'm using a React Component within the BaseClientSideWebPart and doing most updates with this.forceUpdate() within the Component.

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

79230309

Date: 2024-11-27 12:43:35
Score: 2
Natty:
Report link

thanks to luk2302 for pointing out the issue, ec2:CreateTags was missing in my policy statement below is my updated policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:CreateSnapshot",
                "ec2:DescribeInstances",
                "ec2:DescribeVolumes"
            ],
            "Resource": "*"
        },
        {
            "Effect": "Allow",
            "Action": [
                "ec2:CreateTags"
            ],
            "Resource": "*"
        }
    ]
}

below document is helpful too.. https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/supported-iam-actions-tagging.html

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: Kiran

79230299

Date: 2024-11-27 12:42:34
Score: 4.5
Natty: 4.5
Report link

Thanks @aimless "typeRoots": ["./src/types", "./node_modules/@types"] // it's important to put first your path file otherwise it won't work

this line helped but chatgpt, AI couldnt help me but this did.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @aimless
  • Low reputation (1):
Posted by: Rohan Kadam

79230289

Date: 2024-11-27 12:38:33
Score: 0.5
Natty:
Report link

Angular 18

@Component({
  selector: 'app-test-component',
  standalone: true,
  providers: [provideNativeDateAdapter()] //solution,
  imports: [
   MatDatepickerToggle,
   MatDatepicker,
   MatDatepickerInput,
   MatNativeDateModule
  ]
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Merter GÜLBAHAR

79230288

Date: 2024-11-27 12:37:33
Score: 1
Natty:
Report link

the dependency

 implementation 'com.evrencoskun.library:tableview:0.8.9.2'

is no longer working. Replace with:

implementation 'com.github.evrencoskun:TableView:v0.8.9.4'

Refer to the TableView docs.

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

79230287

Date: 2024-11-27 12:37:33
Score: 2
Natty:
Report link

Sorry to say that, but your script is not correct at all actually. You should really read the basic documentation about Dash Plotly: https://dash.plotly.com/tutorial

Good luck!

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

79230279

Date: 2024-11-27 12:35:31
Score: 6.5 🚩
Natty:
Report link

I'm also facing the same issue with my website

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: woyner

79230274

Date: 2024-11-27 12:35:31
Score: 3.5
Natty:
Report link

After spending some more time with this, I've proposed a more accurate approach to searching for a solution on this post here

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

79230260

Date: 2024-11-27 12:32:30
Score: 8.5
Natty: 7.5
Report link

Could you please share the code?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share the code
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergio Azzolina

79230259

Date: 2024-11-27 12:32:30
Score: 1
Natty:
Report link

In Next.js with typescript.

  "rules": {
    "@typescript-eslint/no-unused-vars": "warn"
  }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Takuya Matsuda

79230253

Date: 2024-11-27 12:30:30
Score: 2
Natty:
Report link

according to your question and this How to uninstall/remove PyTorch i found out pip uninstall torch -y works correctly.

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