79583082

Date: 2025-04-20 06:27:04
Score: 1.5
Natty:
Report link

Quick Summary

You’re seeing Error: SSE connection not established because MCP Inspector always negotiates an SSE layer even if your server uses STDIO, and without a real SSE endpoint it bails out on /message after setup. To fix this, you have four main paths: (1) make the Inspector spawn your server via STDIO with the exact Python binary and env, (2) switch your server to SSE transport so Inspector’s expectations match, (3) stick with STDIO but front it with an mcp-proxy stdio→sse bridge, or (4) grab a more flexible MCP client like OmniMind that lets you declare transports in a JSON config. Each approach has its own pros and cons—read on for the breakdown.


1️⃣ Fixing STDIO Transport in Inspector

What to do

Why it helps

Pros & Cons

Pros Cons
No extra dependencies Still ties you to Inspector quirks
Stays purely STDIO Requires careful path/env management

2️⃣ Switching Your Server to SSE Transport

What to do

Why it helps

Pros & Cons

Pros Cons
Direct SSE connection → no proxies Requires you to host an HTTP endpoint
Inspector just works May clash with firewalls or CORS if remote

3️⃣ Bridging STDIO → SSE with mcp‑proxy

What to do

  1. Install the proxy:

    npm install -g @modelcontextprotocol/mcp-proxy
    
  2. Launch it in stdio→sse mode:

    mcp-proxy stdio-to-sse http://localhost:6278 --command python --args "src/server.py"
    
  3. In Inspector, connect via SSE to http://127.0.0.1:6278/sse.

Why it helps

Pros & Cons

Pros Cons
Keeps server code untouched Adds an extra moving part
Works locally without HTTP setup Another dependency to maintain

4️⃣ Try OmniMind for Config‑Driven Control

If you’d rather avoid Inspector’s tight coupling, OmniMind lets you declare every server and transport in a simple JSON, then spin up an MCP client in Python with two lines:

pip install omnimind
from omnimind import OmniMind

agent = OmniMind(config_path="servers.json")
agent.run()

Your servers.json might look like:

{
  "mcpServers": {
    "server_name": {
      "command": "command_to_run",
      "args": ["arg1", "arg2"],
      "env": {
        "ENV_VAR": "value"
      }
    }
  }
}

With OmniMind you get full, code‑free control over which transport to use and how to structure the request—no more Inspector guesswork.

Pros & Cons

Pros Cons
Totally declarative New library to learn
Works headlessly (no GUI) May miss some Inspector‑only niceties
Lets you script multiple servers Less visual debugging than Inspector

Which Option Is Right for You?


By the way, OmniMind is that slick MCP client I found on GitHub—really lightweight, setup with just a couple lines of Python, and zero expensive API requirements. Perfect for anyone wanting a no‑fuss, budget‑friendly MCP setup. Check it out:

Pick the path that fits your workflow, and you’ll have a smooth MCP connection in no time—no more SSE connection not established headaches!

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Techiral

79583077

Date: 2025-04-20 06:18:03
Score: 1
Natty:
Report link
</div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rupkatha Maity

79583073

Date: 2025-04-20 06:04:00
Score: 2.5
Natty:
Report link

I had same issue on MediaTek SOC model.

I upgraded to flutter 3.29.3 and the problem was solved.

MediaTek's Vulkan might have some bug.

(flutter/164126 - On android use Open GL instead of Vulkan MediaTek Soc.)

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

79583059

Date: 2025-04-20 05:43:56
Score: 2.5
Natty:
Report link

.apply(np.linalg.norm, axis=1)

Is probably preferable since it is clearer, but when I'm just doing scratch work I often use:

df[list('xyz')].pow(2).sum(axis=1).pow(.5)

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

79583058

Date: 2025-04-20 05:42:55
Score: 0.5
Natty:
Report link

Generalized solution using modern array-based formulas

Here is an alternative solution that uses array-based formulas like MAP, BYROW, LAMBDA. Some users may not be able to use Apps Script (due to employer restrictions) or string-hacking methods (due to side effects on type conversion), so this solution would work for them. It also generalizes to multiple-column tables, i.e., it will combine multiple columns from the two tables.

Definitions. In your example, we'll assume Table1 is in a range on one sheet (TableA!A1:B3) and Table2 is in a range on another (TableB!A1:B5). The desired result will go into the range 'Result set'!A1:B6. (I edited your question to indicate the assumed ranges of each example table so I can reference them better; I chose range specifiers that are consistent with pre-existing answers.)

Formula. The formula below defines a lambda function with four parameters, and then invokes it using the following ranges fromm your exmaple tables as arguments.

parameter argument
data_left Table1!A2:A4
keys_left Table1!A2:A4
data_right Table2!A2:A5
keys_right Table2!B2:B5
= LAMBDA(
  data_left, keys_left, data_right, keys_right,
  LET(
    index_left, SEQUENCE( ROWS( keys_left ) ),
    matches, MAP( index_left, keys_left, LAMBDA( id_left, key_left,
      LET(
        row_left, XLOOKUP( id_left, index_left, data_left ),
        matches_right, IFERROR( FILTER( data_right, keys_right = key_left ), ),
        TOROW( BYROW( matches_right, LAMBDA( row_right,
          HSTACK( row_left, row_right )
        ) ) )
      )
    ) ),
    wrapped, WRAPROWS( FLATTEN(matches), COLUMNS(data_right) + COLUMNS(data_left) ),
    notblank, FILTER( wrapped, NOT(ISBLANK(CHOOSECOLS(wrapped, 1))) ),
    notblank
  )
)( `Table1!A2:A4`, `Table1!A2:A4`, `Table2!A2:A5`, `Table2!B2:B5` )

How it works?

Generalize. To apply this formula to other examples, just specify the desired ranges (or the results of ARRAYFORMULA or QUERY operations) as arguments; keys_left and keys_right must be single column but data_left and data_right can be multi-column and the resulting array will contain all columns of both. (If you expect to use this a lot, you could create a Named Function with the four parameters as "Argument placeholders", and with the body of the LAMBDA as the "Function definition".)

Named Function. If you just want to use this, you can import the Named Function LEFTJOIN from my spreadsheet functions. That version assumes the first row contains column headers. See documentation at this GitHub repo.. Screenshot below shows application of this named function in cell I1: ="LEFTJOIN( E:G, F:F, B:C, A:A)". Note that numeric-type data in the source tables remain same type in the result.

Screenshot of a single sheet in Google Sheets. Columns A:C contain entries for the dish recipes, with columns for dish, ingredient, and amount. Columns E:G contain entries for patron orders, with columns for diner, dish, number. Columns I:M show the results of a left join operation, with columns for diner, dish, number, ingredient, amount.

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

79583053

Date: 2025-04-20 05:36:54
Score: 1.5
Natty:
Report link

Your problem is similar to mine. I used 'dmctl replace'.

https://gist.github.com/doshiraki/3d3a89993d25b3a9122e1eca72841a53?permalink_comment_id=5547999#gistcomment-5547999

On a Pixel 7a with LineageOS, adb remount fails with "failed to remount partition dev:/dev/block/dm-0 mnt:/: Permission denied" or mount fails with "/dev/block/dm-0 is read-only" because Device Mapper (dmctl) locks partitions as read-only due to dm-verity and A/B partitioning.

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

79583048

Date: 2025-04-20 05:25:52
Score: 1
Natty:
Report link

The alternative to using the --privileged flag is:

--security-opt systempaths=unconfined --security-opt apparmor:unconfined

this will allow you to run the following commands in the container as mentioned in the blog provided by @deadcoder0904:

sysctl vm.overcommit_memory=1
# OR
echo 1 > /proc/sys/vm/overcommit_memory
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: chribro

79583041

Date: 2025-04-20 05:00:48
Score: 1.5
Natty:
Report link

Room requires DELETE queries to return either void (Unit) or int (number of rows deleted).

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

79583040

Date: 2025-04-20 04:58:46
Score: 6.5 🚩
Natty: 4
Report link

Have you figured this issue out? I am currently experiencing the same problem and need some assistance.

Reasons:
  • RegEx Blacklisted phrase (3): Have you figured
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Drew McCoy

79583039

Date: 2025-04-20 04:49:45
Score: 1
Natty:
Report link

What about this?

class EntryPoint {
  public object $privateCollaborator;

  public function __construct() {
    $this->privateCollaborator = self::getPrivateCollaborator();
  }

  private static function getPrivateCollaborator() {
    return new class {
    };
  }
}

$entryPoint = new EntryPoint();

I sometimes use it so as not to dirty the LSP-Intelephense autocomplete in Sublime Text. If I remove the object type to the property at the entrance point, LSP-Intelephense will recognize the reference of the object, being able to self-fulfill the members of that collaborator

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Franyer Sánchez

79583037

Date: 2025-04-20 04:45:44
Score: 3.5
Natty:
Report link

@Ram's if the output section is required and you want to disable logs globally (not sure if it is) you could use the null output which will sink the data.

[OUTPUT]
    Name null
    Match *
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Ram's
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Matthew Fala

79583032

Date: 2025-04-20 04:34:41
Score: 9 🚩
Natty: 5.5
Report link

Hello did you find any answers please?

Reasons:
  • RegEx Blacklisted phrase (3): did you find any answer
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zak Dafdouf

79583023

Date: 2025-04-20 04:18:38
Score: 1.5
Natty:
Report link

In my case (this had worked)

$ git pull --rebase

$ git push

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

79583022

Date: 2025-04-20 04:17:38
Score: 2
Natty:
Report link

I also wasted my 1-2 hours to figure it out, and finally found this

$mail->getSMTPInstance()->Timelimit = 5; // in sec

Credit: https://know.mailsbestfriend.com/phpmailer_timeout_not_working--1756656511.shtml

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

79583011

Date: 2025-04-20 03:59:33
Score: 6.5 🚩
Natty:
Report link

@Jorj X. McKie : Please share your view on this, how can i get all such components extracted from pdf - specially table lines, table cell colour which is present in background of text and how can i recreated the new pdf using extracted features.

Reasons:
  • Blacklisted phrase (0.5): how can i
  • RegEx Blacklisted phrase (2.5): Please share your
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ankit

79583010

Date: 2025-04-20 03:56:33
Score: 1.5
Natty:
Report link

I've debugged a similar problem once. For me, my memory issue was caused by hung threads which would continue to consume resources. You may want to log the start and end of your request handlers, and make sure that all of your requests are getting to the end (cloudwatch insights queries could help count this). You could also create a second sidecar that is not receiving any load, and check if the memory is still increasing (of course if so, then there's some independent issue -- like possibly not your python app).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matthew Fala

79583009

Date: 2025-04-20 03:56:33
Score: 1.5
Natty:
Report link
SELECT patient_id,diagnosis FROM admissions 
GROUP BY patient_id,diagnosis 
HAVING COUNT(diagnosis = diagnosis) > 1;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Divyansh Divyam

79583004

Date: 2025-04-20 03:45:30
Score: 0.5
Natty:
Report link

To find out the database time zone use the following query:

SELECT DBTIMEZONE FROM DUAL;

To find out the current session time zone use the following query:

SELECT SESSIONTIMEZONE FROM DUAL;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tigrov

79583000

Date: 2025-04-20 03:35:29
Score: 3.5
Natty:
Report link

I tried many Ways to eliminate this issue, I Give Up.

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

79582990

Date: 2025-04-20 03:07:22
Score: 4.5
Natty:
Report link

can i use this with my phone hehe

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i use this with
  • Low reputation (1):
Posted by: Asta Clover

79582986

Date: 2025-04-20 02:57:20
Score: 3
Natty:
Report link

The problem was in the Clipper Library. I filed a bug report in GitHub and a fix has now been released. I have tested the fix with this particular example and can confirm that the correct result was returned.

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

79582981

Date: 2025-04-20 02:48:19
Score: 3
Natty:
Report link

Finally I found it. You must add routeback option to wg0 interface in /etc/shorewall/interfaces file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alexander Húska

79582980

Date: 2025-04-20 02:47:18
Score: 7 🚩
Natty: 5
Report link

I am having the same issue in april 2025. It's been like that for a few days. Resetting my internet, updating expo-cli, making sure I'm logged in, nothing seems to work. Any new discoveries on what might be causing this issue?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Enrico

79582972

Date: 2025-04-20 02:24:13
Score: 2.5
Natty:
Report link

Just in case anybody else runs into this issue:

Format the information as TEXT, not DATE. Then LibreOffice will stop trying to be smart and just use the values provided

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

79582970

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

from pydub import AudioSegment

from pydub.generators import Sine

# Create a short placeholder audio (1 second sine wave) while we prepare the real audio

# This acts as a placeholder for the real narrated and sound-designed audio

tone = Sine(440).to_audio_segment(duration=1000) # 1 second of a 440 Hz tone

# Export as MP3

output_path = "/mnt/data/a_grande_aventura_na_balanca.mp3"

tone.export(output_path, format="mp3")

output_path

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

79582967

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

Win + R > ncpa.cpl > choose your network > properties > IPv4 > properties

  1. if checked on > Obtain DNS server address automatically

    Try this > Prefered DNS server (8.8.8.8) & Alternative DNS server (8.8.0.0)

  2. if checked on > Use the following DNS server address

    Try this > Check on > Obtain DNS server address automatically

Check of your proxies.

Check of VPN.

Check of browser extentions > Try to disable them.

Reasons:
  • Whitelisted phrase (-1): Try this
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ahmad Arabati

79582956

Date: 2025-04-20 01:54:07
Score: 2
Natty:
Report link

The problem is this ->

client.on('message', (message) => { ... }

there is no event name called "message". change to this ->

client.on('messageCreate', (message) => { ... }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Adam The Noob

79582946

Date: 2025-04-20 01:33:03
Score: 0.5
Natty:
Report link

This isn't too hard. Assume we have at least two zeroes to begin with:

+[->+>[<-]<]>>

This leaves the pointer at the first nonzero.

Also worth noting, if you want to look for a specific value--say, a 4:

----[++++>----]++++
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daniel Cristofani

79582929

Date: 2025-04-20 00:43:55
Score: 0.5
Natty:
Report link

Win + R > ncpa.cpl > choose your network > properties > IPv4 > properties

  1. if checked on > Obtain DNS server address automatically

    Try this > Prefered DNS server (8.8.8.8) & Alternative DNS server (8.8.0.0)

  2. if checked on > Use the following DNS server address

    Try this > Check on > Obtain DNS server address automatically

Check of your proxies.

Check of VPN.

Check of browser extentions > Try to disable them.

Reasons:
  • Whitelisted phrase (-1): Try this
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ahmad Arabati

79582928

Date: 2025-04-20 00:28:52
Score: 1.5
Natty:
Report link

The problem indicates that, you are trying to use a deleted function. Some of automatic methods generated by the compiler(for ex: copy constructors), are deleted by developer in order to prevent unwanted implicit operations. On your answer by using pass by reference, for the _dst argument, you prevented unnecessary generation of a new cv::Mat& type as the function argument. That would also trigger a copy constructor of cv::Mat&, instead, the function took the original _dst, therefore a deleted copy constructor call is evaded.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ASD MAN

79582923

Date: 2025-04-20 00:05:48
Score: 3
Natty:
Report link

I am also facing similar kind of Issue , any resolution?

I could share more details if Required

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

79582922

Date: 2025-04-20 00:05:48
Score: 0.5
Natty:
Report link

This is what worked for me:


alignLabelWithHint: true,

put it in your inputdecorator such as:

 InputDecoration(
        labelText: label,
        alignLabelWithHint: true)
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ahmadu Suleiman

79582921

Date: 2025-04-20 00:05:48
Score: 0.5
Natty:
Report link

Your query string has 2 problems: you're missing a leading single quote and a space. The query should look like this (notice the space after 'FROM'):

using (var searcher = new ManagementObjectSearcher("SELECT * FROM " + "Win32_PnpEntity WHERE Caption like '%(COM%'"))

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

79582920

Date: 2025-04-20 00:03:47
Score: 1.5
Natty:
Report link

This error typically occurs when the PHP SimpleXML extension is not properly enabled in PHP, even if it's installed on the server. Here's how to resolve this issue:

  1. First, verify SimpleXML installation:
    php -m | grep xml

  2. Check PHP configuration:
    php -i | grep simplexml

  3. Enable the extension by editing your php.ini file:

    • Locate your php.ini file:
      php --ini

    • Add or uncomment this line in your php.ini:
      extension=php_simplexml.dll ; For Windows

      extension=simplexml.so ; For Linux

  4. After making changes:

    • Restart your web server:

      # For Apache on Windows

      net stop apache2.4

      net start apache2.4

      # For IIS

      iisreset

If the extension is already enabled but still not working, try these troubleshooting steps:

  1. Check PHP version compatibility

  2. Verify file permissions on the SimpleXML module

  3. Clear PHP's configuration cache

You can also verify the extension is loaded properly in a PHP file:

<?php
if (extension_loaded('simplexml')) {
    echo "SimpleXML is loaded!";
} else {
    echo "SimpleXML is NOT loaded!";
}

If you're using WHM/cPanel, you can also enable SimpleXML through:

  1. WHM → PHP Extensions

  2. Find SimpleXML in the list

  3. Enable it

  4. Restart PHP

Reasons:
  • Blacklisted phrase (2): still not working
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Boja Sabara

79582900

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

Try to clear all jobs before you star a new one

sched.remove_all_jobs()
sched.add_job(Function, 'cron', hour=9, jitter=900)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79582888

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

just "pip uninstall scons" -> "pip install scons"

then "scons ..."

then it is done.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jones betty

79582883

Date: 2025-04-19 22:58:34
Score: 1.5
Natty:
Report link

If everyone on the planet picks one address in a 256^12 namespace, there is a 1 in 9903520314283042199 chance that you pick the same address as someone else.

Choosing the same topmost bits as it hears in other stations in the area and always changing only the bottom 2^bits~=9903520314283042199 just to maintain the absurdity of it; less would work too, like one in a million if that's even more advantageous to performance for some reason.

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

79582874

Date: 2025-04-19 22:40:30
Score: 2.5
Natty:
Report link

My guess is that the elements in Notes are not signed with the right ID.

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

79582869

Date: 2025-04-19 22:26:28
Score: 1
Natty:
Report link

It is because of the PSReadLine module. When you remove PSReadLine, it solves the red prompt but you will not have access to autocompletion.

PS > Remove-Module PSReadLine
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fabrice SANGA

79582859

Date: 2025-04-19 22:04:23
Score: 3
Natty:
Report link

I looked at the package and it calls a language translation interface,

https://github.com/terryyin/translate-python/blob/master/translate/providers/mymemory_translated.py#L23

https://mymemory.translated.net/doc/spec.php

The description of this interface does not indicate minimum length.

You can test it by requesting the interface directly:

https://api.mymemory.translated.net/get?q=%3Cuntranslated%20text%3ESubscribe%20to%20the%20channel.&langpair=en|es

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

79582850

Date: 2025-04-19 21:39:19
Score: 2.5
Natty:
Report link

Looks like I got it. The Mach-O header is 32 bytes; immediately after that is a series of "load commands"; the sixth word of the header is the length of the load commands. So we can just add 32 and get the offset of the code segment.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Dan Gelder

79582848

Date: 2025-04-19 21:39:19
Score: 2.5
Natty:
Report link

This was already answered here:

Is there a good reason to not use bit operators instead of parseInt?

Short version: it's different than ?? or || because it also truncates.

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

79582842

Date: 2025-04-19 21:30:17
Score: 1.5
Natty:
Report link

Check if you are using EFF's Privacy Badger (or any another privacy app that might do the same thing).

I just solved this issue when signing up a client - turns out that EFF's Privacy Badger was blocking something between Twilio and Stripe, causing "Error adding payment method: Stripe is not defined". After I selected "Disable for this site", worked just fine.

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

79582833

Date: 2025-04-19 21:11:13
Score: 2.5
Natty:
Report link

In intellij:

  1. Go to Settings (Crtl+Alt+S)

  2. Version Control -> Github

  3. Remove the current login

  4. Click + and choose the best method for your case to login again

  5. Then go to github copilot and try to login again

    enter image description here

    enter image description here

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

79582831

Date: 2025-04-19 21:09:12
Score: 10 🚩
Natty: 6
Report link

@Monkey your link is dead. Can you fix it?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): @your
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user30318556

79582830

Date: 2025-04-19 21:04:11
Score: 5.5
Natty: 4.5
Report link

also, it is giving below error

ORA-39112: Dependent object type INDEX

ORA-39112: Dependent object type CONSTRAINT

what is the solution for the above ORA error ?

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

79582823

Date: 2025-04-19 20:58:09
Score: 1.5
Natty:
Report link

"-pix_fmt yuv420p10le" didn't work for me, I get "Incompatible pixel format 'yuv420p10le' for codec 'hevc_videotoolbox', auto-selecting format 'p010le'" which then fails with the same message, "[vost#0:0/hevc_videotoolbox @ 0xXXXXXXXXXXXX] [enc:hevc_videotoolbox @ 0xXXXXXXXXXXXX] Error while opening encoder - maybe incorrect parameters such as bit_rate, rate, width or height."

I don't understand why a standard image size (1920x1080), and I'm assuming a standard pixel depth etc., don't work - I get this for everything I try to transcode with the HW encoder.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): xXXXXXXXXXXXX
  • Filler text (0): xXXXXXXXXXXXX
  • Low reputation (1):
Posted by: Jeremy Elgin

79582818

Date: 2025-04-19 20:48:07
Score: 0.5
Natty:
Report link

Adding upstream azure-feed://msazure/Official@Local does solve this issue.

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

79582816

Date: 2025-04-19 20:43:06
Score: 3
Natty:
Report link

Is there new answer for this question ؟ Because I have .net maui app and want to restart it after changing the flowDirection

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Is there
  • Low reputation (1):
Posted by: amr yakout

79582813

Date: 2025-04-19 20:35:04
Score: 0.5
Natty:
Report link

You need to set httpResponseCode before calling the metric.stop() method. It will fix your issue

 metric.httpResponseCode = 200; // the status code returned by the server.
 await metric.stop();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sam Garg

79582811

Date: 2025-04-19 20:32:04
Score: 3.5
Natty:
Report link

It Worked. Thank you for the trick Paul

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): It Worked
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hassan Rafique

79582809

Date: 2025-04-19 20:30:03
Score: 0.5
Natty:
Report link

Anyone who is having any problems I have a code that might be helpful. This is what I have so far.

from graphics import * 
def graphics():
    
    graphics()

# Title, Width, Height 


win = GraphWin("Example", 200, 200)
win.setBackground("red")

p1 = Point(100,100)
p1.setFill("blue")
p1.draw(win)


p1 = win.getMouse()
p2 = win.getMouse()



# Rectangle - Top-left and bottom-right 
rect = Rectangle(p1,p2)
rect.setFill("orange")
rect.setOutline("purple")
rect.draw(win)

# Circle - 2 Points - Top-left bottom-right of "rectangle"
from graphics import *

def main():
    win = GraphWin("My Circle", 100, 100)
    c = Circle(p1,p2)
    c = Circle(Point(50,50), 10)
    c.draw(win)
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Darsh

79582808

Date: 2025-04-19 20:30:02
Score: 9 🚩
Natty: 6
Report link

I know this is along shot, but by any chance, did you find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • 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: Harr

79582804

Date: 2025-04-19 20:24:01
Score: 4
Natty:
Report link

I changed node_modules/expo-router/build/getLinkingConfig.js line 65 to

screens: config?.screens ?? options?.screens ?? {},

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: james

79582792

Date: 2025-04-19 20:02:57
Score: 0.5
Natty:
Report link

The following syntax worked for me:
@second = {{getall.response.body.$[1].id}}

I needed to search the array with $[index-of-object].json_property

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khutso

79582786

Date: 2025-04-19 19:55:55
Score: 2
Natty:
Report link

Android: textDirection="anyRtl"

Works fine

I had the same issue with arabic and english.

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

79582782

Date: 2025-04-19 19:48:53
Score: 6.5 🚩
Natty:
Report link

enter image description here added this image, it might help

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Debabrata Nath

79582780

Date: 2025-04-19 19:48:53
Score: 3.5
Natty:
Report link

was facing the same issue after fiddeling for a while seems to work now with spring 3.4
and qureydsl 5.1
https://github.com/sajal48/querydsl-with-spring-boot-3.x

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

79582764

Date: 2025-04-19 19:30:50
Score: 1
Natty:
Report link

You can’t display a toast message directly above a .sheet using just SwiftUI.

To achieve this, you need to create a custom UIWindow. This allows you to set its windowLevel high enough to appear above all other views.

approach:

  1. Create a new UIWindow and set its windowLevel to .alert + 1 to ensure it’s above the main app window.
  2. Combine SwiftUI and UIKit using UIHostingController. Place your SwiftUI toast view inside that UIWindow.

This way, the toast will appear over everything, including modals and sheets, because it lives in its own window.

P.S. I have a toast library called ToastKit, but at the moment, it does not support UIWindow.

https://github.com/Desp0o/ToastKit

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

79582753

Date: 2025-04-19 19:19:47
Score: 2.5
Natty:
Report link

You're using fs.readdirSync() but never imported the fs module. Add this at the top: import fs from "fs"; plus your comment says import fc from "fs".

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

79582741

Date: 2025-04-19 19:05:43
Score: 1.5
Natty:
Report link

add this to your entrypoint script worked like a charm for me.

#!/bin/bash
# Find tessdata folder dynamically
export TESSDATA_PREFIX=$(find /usr/share -type d -name tessdata | head -n 1)
echo "Using TESSDATA_PREFIX=$TESSDATA_PREFIX"
Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user1794228

79582736

Date: 2025-04-19 19:02:43
Score: 1
Natty:
Report link

{ "type": "bar", "data": [ { "investment": "Investment A", "committedFunds": 16.2, "irr": 25.0 }, { "investment": "Investment B", "committedFunds": 5.2, "irr": 20.5 }, { "investment": "Investment C", "committedFunds": 20.5, "irr": 10.0 }, { "investment": "Investment D", "committedFunds": -10.2, "irr": 5.0 } ], "indexBy": "investment", "keys": [ "committedFunds", "irr" ], "groupMode": "grouped", "margin": { "top": 50, "right": 60, "bottom": 50, "left": 60 }, "padding": 0.3, "colors": { "scheme": "set2" }, "defs": [ { "id": "dots", "type": "patternDots", "background": "inherit", "color": "#38bcb2", "size": 4, "padding": 1, "stagger": true }, { "id": "lines", "type": "patternLines", "background": "inherit", "color": "#eed312", "size": 6, "spacing": 6, "rotation": -45 } ], "fill": [ { "match": { "id": "committedFunds" }, "id": "dots" }, { "match": { "id": "irr" }, "id": "lines" } ], "borderRadius": 5, "axisTop": null, "axisRight": null, "axisBottom": { "tickSize": 5, "tickPadding": 5, "tickRotation": 0, "legend": "Investment", "legendPosition": "middle", "legendOffset": 32 }, "axisLeft": { "tickSize": 5, "tickPadding": 5, "tickRotation": 0, "legend": "Percentage", "legendPosition": "middle", "legendOffset": -40, "format": "~.2f" },

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

79582735

Date: 2025-04-19 19:00:42
Score: 1
Natty:
Report link

Using a vector conditional

update marketPrice+?[securityId=`a;0;?[securityId=`b;100;1000]]from`data
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Cathal O'Neill

79582726

Date: 2025-04-19 18:50:40
Score: 0.5
Natty:
Report link

Restart jenkins after adding jenkins user to gunicorn group.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Arkadiusz Drabczyk

79582725

Date: 2025-04-19 18:49:40
Score: 3
Natty:
Report link

What is the error you are getting when calling the API. If you are sending a business initiated message then you need to make sure you have a payment method attached and you are using a template.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Shankar Venkataraman

79582724

Date: 2025-04-19 18:48:39
Score: 0.5
Natty:
Report link

In this notebook, I made a manual calculation of the local explanations for an scikit-learn gradient boosting machine and then I compare my manual calculations with the returns from ELI5.

For xgboost the principle is the same. The manual calculations are a bit harder to obtain because the ensemble structure of xgboost does not provide the values at the internal nodes, just at the leaves, so you need to calculate those first.

Reasons:
  • No code block (0.5):
Posted by: Sole Galli

79582721

Date: 2025-04-19 18:46:39
Score: 0.5
Natty:
Report link

I face with this error in Netbeans 12 and 25

look at

netbeans> View > IDE Log

There is some useful info about real problem.
In my case

I remove incorrect integer value in C:\Users\[user]\.gitconfig file:
postBuffer = 5242880000

no reset needs and it work correctly

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

79582711

Date: 2025-04-19 18:40:37
Score: 4
Natty: 4.5
Report link

Really thankX!!!!! This one worked!!!

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Александр Медведев

79582692

Date: 2025-04-19 18:18:31
Score: 1.5
Natty:
Report link

Add these lines to Config/Routes.php as defined in https://codeigniter4.github.io/CodeIgniter4/incoming/routing.html#setting-routing-rules

$routes->get('/', 'Home::index');
//----------------Add Below codes to Config/Routes.php
$routes->get('/home/about', 'Home::test'); //or
$routes->get('/about', 'Home::test');
$routes->get('/youtube', 'Home::youtube');
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan

79582687

Date: 2025-04-19 18:09:29
Score: 1.5
Natty:
Report link

All due respect, unless I am not understanding the question, all you have to do is run python in the shell and it will tell you what bits configuration your python is running on.

It will print you something like this:

Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.

\>>>

So right there you see that it is in 64 bit

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

79582684

Date: 2025-04-19 18:07:29
Score: 1.5
Natty:
Report link

The jitter setting is not the problem here.

The while loop is being interrupted on a daily basis and your code is restarted from the beginning. That adds a new job every day. Perhaps, there is a nightly process which restarts your system.

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

79582682

Date: 2025-04-19 18:04:28
Score: 2
Natty:
Report link

I'm sure you get this issue when you are not using Gradle.

So just get an internet connection and create the project.

You don't even need to install jdk i use to do and don't get the problem solved

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

79582680

Date: 2025-04-19 18:00:27
Score: 3
Natty:
Report link

I'm working on a Url Shortener, would you want me to give you an access to the API ?

Have a nice day 😁

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

79582676

Date: 2025-04-19 17:54:26
Score: 5
Natty: 5
Report link

Is anyone at Intel wondering why so many users want to go back to the non-Intel-updated version of icc? And thanks for not bringing up LLVM again...

Best regards.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: djg

79582670

Date: 2025-04-19 17:47:24
Score: 1.5
Natty:
Report link

Code is working as expected, Http client timeouts actually working with Polly properly. After lot of research found out that Kong gateway API, has a default timeout of 60, got that increased similar to http timeout and everything working as expected.

We will also add logs into Polly policy so that any future errors gets highlighted.

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

79582664

Date: 2025-04-19 17:40:22
Score: 4
Natty: 5
Report link

In 2025:

[![AWS Identity pool ID path][1]][1]

[1]: https://i.sstatic.net/f7zys.png

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

79582662

Date: 2025-04-19 17:36:21
Score: 0.5
Natty:
Report link

I'm quite new to using torch but maybe you can try setting your device to something like this it first checks for "mps" if its not available it checks GPU "cuda" and if that's not available finally the CPU.

        self.device = (
            "mps"
            if torch.backends.mps.is_available() and torch.backends.mps.is_built()
            else ("cuda" if torch.cuda.is_available() else "cpu")
        )

since you have 2 gpu's cuda:0 and cuda:1 wrap your model with DataParallel and send it to the devices defined above. Hope this helps but as i said i am very new to using torch and i have no idea what's being pulled in with those templates or auto mode ect.

        model = torch.nn.DataParallel(model)
        model.to(self.device)

** Note: DataParallel is being considered for deprecation so if you can figure it out DistributedDataParallel that would be a better solution but a bit more complex.
also make sure there**

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (1.5): i am very new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user28405727

79582660

Date: 2025-04-19 17:34:21
Score: 2.5
Natty:
Report link

I also suggest you to use react-native-background-geolocation lib of transistor softwares, I used it and our app is in the production, working good.for iphone that lib is free so u can setup and give it a try

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

79582649

Date: 2025-04-19 17:28:19
Score: 4
Natty:
Report link

That's a very good link. But it is not directly relevant to your situation. Have you been able to get "Hello world" to cross compile and run on Ubuntu? (Without having Visual Studio Code involved at all.)

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: yeremiayss

79582646

Date: 2025-04-19 17:23:18
Score: 1
Natty:
Report link

I made a blank screen, where I added a timer of 300 miliseconds using Future.delayed, which then took me to the required screen. This is how I solved it.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zaid Ahmed Soomro

79582644

Date: 2025-04-19 17:21:18
Score: 2.5
Natty:
Report link
import pandas as pd
import numpy as np

Raw Data:


date       lplp_returns
2018-03-14  0.000000
2018-03-15  0.000000
2018-03-16  0.000006
2018-03-19  -0.000469
2018-03-20  -0.001312
... ...
2025-04-10  0.082415
2025-04-11  0.002901
2025-04-14  0.005738
2025-04-15  0.007664
2025-04-16  0.012883
1848 rows × 1 columns

Creating groups before using groupBy helped get me going in the right direction:

start_date = pd.Timestamp('2018-04-20')
df['group'] = ((df.index - start_date).days // 365)
grouped = df.groupby('group')
result = grouped['lplp_returns']

From there, I want cumulative returns (cumprod). This, of course, is problematic because it is a groupby/transform operation.

g = result.apply(lambda x: np.cumprod(1 + x) - 1)
g.groupby('group').tail(1)

Output:

group  Date      
-1     2018-04-19    0.003971
 0     2019-04-19   -0.077341
 1     2020-04-17   -0.068972
 2     2021-04-16    0.429971
 3     2022-04-18   -0.024132
 4     2023-04-18    0.032741
 5     2024-04-17    0.190119
 6     2025-04-16    0.131955
Name: lplp_returns, dtype: float64

This gets me 95% to where I want to be.

Needs for improvement:

(1) I don't want/need group '-1',

(2) I want each group to start on or after 'xxxx-04-20' not to proceed 'xxxx-04-20', and

(3) to stop on or before 'xxxx-04-20' not to exceed 'xxxx-04-20'. (This is to address trading days).

Suggestions on coding or approaching/solving this in a better way?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Brent

79582636

Date: 2025-04-19 17:07:15
Score: 1.5
Natty:
Report link

Deleting the function and redeploying it again fixes the problem. I was quite desperately trying to resolve it for a few hours. I had a problem with NextJS dynamic routes and SSR. It turned out to be this exact issue. I deleted the function and redeployed it from scratch - all works well now. Phew. I thought after updating NextJS to 15+ messed something up. No, the new AppRouter and Firebase Hosting (not App Hosting) works fine, it's just the annoying cloudrun permission that was holding me.

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

79582631

Date: 2025-04-19 17:01:14
Score: 1.5
Natty:
Report link

You can try typing this in your terminal window:

pytest --fixtures-per-test -v

It shows which tests use which fixtures

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

79582624

Date: 2025-04-19 16:56:13
Score: 2.5
Natty:
Report link

const data = [ { "label": "A", "seriesA": 45, "seriesB": 20, }, { "label": "B", "seriesA": 62, "seriesB": 50, }, { "label": "C", "seriesA": 38, "seriesB": 80, }, { "label": "D", "seriesA": 75, "seriesB": 40, }, ];

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: user2533687

79582614

Date: 2025-04-19 16:50:11
Score: 2.5
Natty:
Report link

MS VS 2022 - SQL Server Object Browser doesn't want to connect to any sql servers it seems like dead service. At the same time SQL Server Browser is connected to all local DB including MSSQLLocalDB. I checked everything and I cleaned Cache and re-installed MS VS? I re-wrote the project but it doesn't work. CMD is showing the all DBs are running and I restarted its as well.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LRusl

79582611

Date: 2025-04-19 16:41:10
Score: 2
Natty:
Report link

Been a while... but after trial and error I managed to actually get something running in .Net8
There is also a separate Registration tool in here for the addin, so no need for regsvr32 or dscom.
https://github.com/HCarlb/DotnetExcelComAddIn

Works great on Win 11 x64, Office 2016 x64 with .Net8.
(but wont load if build on .Net9)

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

79582608

Date: 2025-04-19 16:38:09
Score: 3.5
Natty:
Report link

There's confusion between the Toolbar and the ExplorerBar. OP's question (and mine) concerns the Explorer Bar. He/she wants to add a button to it that will run a command on the selected file. At least that's how I understand the question. I already have a button on the Toolbar that I can drag and drop a file onto to run a virus check on it. But it would be much better if I could select the file and click a button on the Explorer Bar.

By the way, I know this isn't an answer; it's a comment clarifying the question. I'm not allowed to comment (? :-[). Feel free to edit or delete it.

Reasons:
  • Blacklisted phrase (1): not allowed to comment
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Lestrad

79582599

Date: 2025-04-19 16:32:08
Score: 1.5
Natty:
Report link

Another infinite iterator:

import string

def words(alphabet):
    yield from alphabet
    for word in words(alphabet):
        for letter in alphabet:
            yield word + letter

for word in words(string.ascii_lowercase):
    print(word)

Attempt This Online!

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

79582587

Date: 2025-04-19 16:20:05
Score: 1
Natty:
Report link

I had a variant of the same issue (on Windows), where npm did't want to upgrade because of some dependency threw an error, even though I had deleted and reinstalled Node.

I dimply delete the followingfolders, and npm installed correctly.

Just be careful when messing around in the AppData folder!

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

79582582

Date: 2025-04-19 16:12:03
Score: 0.5
Natty:
Report link

You are close but instead of

 item-text="text"

you actually need

item-title="text"

also item-value="value" is not necessary. v-select automatically gets value and title. So if your object had title instead of text for example it would work out of the box.

v-select docs

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

79582580

Date: 2025-04-19 16:11:03
Score: 1.5
Natty:
Report link

In the code

verify(log,times(1)).info(anyString())

you have referenced a test method itself, not from the aopClass.

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

79582573

Date: 2025-04-19 15:59:01
Score: 0.5
Natty:
Report link

On mac you can use F1 or Ctrl + J . On some macs Command+J is used to achieve.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: NodirbekCSdevv

79582567

Date: 2025-04-19 15:49:59
Score: 3.5
Natty:
Report link

@a.dibacco

awesome, that upperfilter removal was the fix for me.

It's nuts bc any guest OS didn't get any usb devices handed over, even tho they were "captured"

Thank you. ;)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Micha

79582565

Date: 2025-04-19 15:48:58
Score: 3
Natty:
Report link

Problem was in Theme, removing it solve the problem. Yet didn't know which part of it cause such veird behavior but will dig deeper into it.

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

79582549

Date: 2025-04-19 15:28:54
Score: 2
Natty:
Report link

I've read that sqlite doesn't support web app, that's why we're seeing these kind of errors. The expo team said that they will fix it in the near future.

https://github.com/expo/expo/issues/32918

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

79582540

Date: 2025-04-19 15:20:52
Score: 3.5
Natty:
Report link

Could you kindly provide the code? I am using the same code, but when I disable the TextField, the text is fully visible on iOS.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tornike Despotashvili

79582535

Date: 2025-04-19 15:13:51
Score: 0.5
Natty:
Report link

Please read the official doc comment of buildDefaultDragHandles before using ReorderableDragStartListener. The default behavior is different depending on the platform, on desktop, the behavior is same as Flutter 2.x, on mobile, users will need to long press the item and then drag to save some space of adding the trailing drag handle icon. Using ReorderableDragStartListener without setting buildDefaultDragHandles to false, will cause to duplicate the icon on desktop platforms.

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

79582532

Date: 2025-04-19 15:09:50
Score: 5
Natty:
Report link

CAN ANYONE HELP PLEASE.

I'm getting issue with geolocation_android in my build.gradle(android)

I have added

build.gradle(android),build.gradle(app),local.properties,gradle-wrapper.properties and pubspec.yaml.

Solve the following error:

[{
"resource": "/c:/Users/shiva/wetoucart_seller/android/build.gradle",
"owner": "_generated_diagnostic_collection_name_#7",
"code": "0",
"severity": 8,
"message": "The supplied phased action failed with an exception.\r\nA problem occurred configuring project ':geolocator_android'.\r\nFailed to notify project evaluation listener.\r\nCannot invoke method substring() on null object",
"source": "Java",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 1
}]


build.gradle(app):

plugins {
    id "com.android.application"
    id "kotlin-android"
    id "com.google.gms.google-services"
    // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
    id "dev.flutter.flutter-gradle-plugin"
}

android {
    namespace = "com.wetoucart.seller"
    compileSdk = 34
    ndkVersion = "25.1.8937393"

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_17
        targetCompatibility = JavaVersion.VERSION_17
    }

    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_17
    }

    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:-options"
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId = "com.wetoucart.seller"
        // You can update the following values to match your application needs.
        // For more information, see: https://flutter.dev/to/review-gradle-config.
        minSdk 23
        targetSdk = 34
        versionCode = 1
        versionName = 1.0
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig = signingConfigs.debug
        }
    }
}

flutter {
    source = "../.."
}

dependencies {
    implementation 'androidx.appcompat:appcompat:1.7.0'
    implementation 'com.google.android.material:material:1.12.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'androidx.core:core-splashscreen:1.0.1'
    implementation 'androidx.annotation:annotation:1.9.0'
    implementation 'androidx.multidex:multidex:2.0.1'

    // Firebase dependencies
    implementation platform('com.google.firebase:firebase-bom:33.5.1')
    implementation 'com.google.firebase:firebase-analytics:22.1.2'
    implementation 'com.google.firebase:firebase-auth:23.1.0'
    implementation 'com.google.firebase:firebase-firestore:25.1.1'
    implementation 'com.google.firebase:firebase-crashlytics:19.2.1'
    implementation 'com.google.firebase:firebase-storage:21.0.1'

    // Test dependencies
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.2.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}


build.gradle(android):

buildscript {
    repositories {
        google()
        mavenCentral()
        maven {
            url 'https://storage.googleapis.com/download.flutter.io'
        }
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:8.3.0'
        classpath 'com.google.gms:google-services:4.4.2'
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
    }
}

rootProject.buildDir = "../build"
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(":app")
}

tasks.register("clean", Delete) {
    delete rootProject.buildDir
}

local.properties:

sdk.dir=C:\\Users\\shiva\\AppData\\Local\\Android\\sdk
ndk.dir=C:\Users\shiva\AppData\Local\Android\Sdk\ndk\25.1.8937393
flutter.sdk=C:\\Users\\shiva\\flutter
flutter.buildMode=debug
flutter.versionName=1.0.0
flutter.versionCode=1

gradle-wrapper.properties:

org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true

pubspec.yaml:


name: wetoucart_seller
description: "A new Flutter project."

# Remove this line if you wish to publish to pub.dev
publish_to: 'none'


version: 1.0.0+1

environment:
  sdk: '>=3.2.3 <4.0.0'


dependencies:
  flutter:
    sdk: flutter
  cupertino_icons: ^1.0.2
  url_launcher: ^6.0.12
  image_picker: ^1.0.7
  cloud_firestore: ^5.0.1
  firebase_core: ^3.6.0
  firebase_crashlytics: ^4.0.1
  firebase_auth: ^5.3.1
  firebase_storage: ^12.0.1
  geolocator: ^13.0.3


dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_lints: ^4.0.0
  matcher: ^0.12.16
  material_color_utilities: ^0.11.1
  meta: ^1.12.0
  path: ^1.8.3
  test_api: ^0.7.0



flutter:
  uses-material-design: true
  assets:
    - assets/wetoucartseller.png
    - assets/storeprofile.png
    - assets/sellerback.jpg

Solution for geolocation_android

Reasons:
  • RegEx Blacklisted phrase (3): CAN ANYONE HELP
  • RegEx Blacklisted phrase (0.5): ANYONE HELP PLEASE
  • RegEx Blacklisted phrase (1.5): HELP PLEASE
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): CAN ANYONE HELP PLEASE
  • Low reputation (1):
Posted by: MAFIC YT

79582531

Date: 2025-04-19 15:08:49
Score: 7 🚩
Natty:
Report link

enter image description heresupplement

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dawn

79582521

Date: 2025-04-19 14:57:47
Score: 2
Natty:
Report link

For me $source admin-openrc did not work.

The complete source command found on the devstack/openrc repo is
source openrc [username] [projectname].

$source openrc will work but may not allow the execution of all commands.
$source openrc admin should run properly if admin user has not been altered.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JadenJefferson1