79722040

Date: 2025-08-01 03:45:35
Score: 1
Natty:
Report link

Just an update folks,
our .NET managed client was attempting to negotiate a higher CipherSpec than what the MQ channel on their end was initially configured to support.
cf.SetStringProperty(XMSC.WMQ_SSL_CIPHER_SPEC, "TLS_RSA_WITH_AES_128_CBC_SHA256");
`

by updating the MQ channel configuration to use ANY_TLS12_OR_HIGHER, it resolved the issue.
The logs were quite visible at MQ queue manager level but on .NET side the logs were quite generic, strange.

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

79722037

Date: 2025-08-01 03:41:34
Score: 5.5
Natty:
Report link

i have the same problem for around a year. jupyter lab3.

recently, annoyed by it. after study github serveral post and others. occasionally i noticed in the cmd shell output, i noticed it said

 [xxxx ServerApp] folder '' :my real work folder not found.

the address with additional '' & my work folder

[solution success]

jupyter lab config.py

c.LabServerApp.workspaces_dir = :my real work folder

pls noted no ' ' OR " " for the folder path.

others are default seting.

maybe it can solve your problem too?

refer:

reply from andrewfulton9 and echarles in https://github.com/jupyterlab/jupyterlab/issues/12111

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (1.5): solve your problem too?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Han

79722036

Date: 2025-08-01 03:40:34
Score: 0.5
Natty:
Report link

It turns out I have to build the extension with hoist flag.

plasmo build --target=firefox-mv3 --hoist

The docs say hoisting can break the dependency:

Note that hoisting can potentially break your dependency, especially those that import dynamic dependency via a plugin system. However, hoisting can significantly improve the bundling speed and reduce the size of your bundle.

Ironically, not hoisting breaks my extension.

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

79722026

Date: 2025-08-01 03:30:31
Score: 1
Natty:
Report link

Further to the above:

The CMFCPopupMenuBar::m_bDropDownListMode member is set equal to CMFCPopupMenu::m_bShowScrollBar member variable in the CMFCPopupMenu::Create.

This shuts off sending the WM_COMMAND when you click on a menu item.

Setting CMFCPopupMenu::m_bShowScrollBar true after the Create is called, followed by RecalcLayout() seems to correct the issue. Now I have scroll bars and can click on menu items to send an ON_COMMAND to the host window.

I'm not sure what downsides there might be to this. Feel free to comment. Thanks!

BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
    CRect               rParentRect;

    m_pBoundsWnd = pWndParent;
    m_pBoundsWnd->GetWindowRect(rParentRect);
    m_nMaxHeight = rParentRect.Height();
    // Call the base class Create method
    if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
        TRACE0("Failed to create BECPopupMenu\n");
        return FALSE;
    }
    // These have to be called AFTER the create or you can't click on the menu items to send the ONCOMMAND to the parent.
    // Internally CMFCPopupMenu::Create() sets the CMFCMenuBar::m_bDropDownListMode = m_bShowScrollBar.
    // If it is true , it will not send the ONCOMMAND to the parent.
    // Setting m_bShowScrollBar afterward and THEN calling RecalcLayout() will ensure that the menu behaves correctly.
    m_bShowScrollBar = true;
    m_bScrollable = true;
    RecalcLayout();
    
    return TRUE; // Indicate successful creation
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79722023

Date: 2025-08-01 03:27:29
Score: 6
Natty:
Report link

test dasdsadasd da sad sad sa dsadasd asd asd asdasdasdasdas dasdasd sadsadsad

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

79722018

Date: 2025-08-01 03:22:27
Score: 1.5
Natty:
Report link

Silly question, but can't we call the open function in js if you have a local protocol handler? So if I reigster my app as myapp, I can call open("myapp://some/url?some-token=true");... would that work? (Running into this now myself, so will test and report back!).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nicholas Barrow

79722013

Date: 2025-08-01 03:07:24
Score: 1.5
Natty:
Report link

Try this. The functions work in a similar way.

imagepng: how to save the output in a variable and then display it using img tag

ob_start();
imagejpeg($image);
$imagedata = ob_get_clean();
Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex

79722010

Date: 2025-08-01 02:57:22
Score: 0.5
Natty:
Report link

Traditionally, linkers process files from left to right, so if X depends on Y, X must be added before Y in the command. So place your source files before the libraries they depend on.

g++ main.cpp -o main -I /usr/local/include/SEAL-4.1 -L /usr/local/lib -lseal-4.1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jitpaul

79722007

Date: 2025-08-01 02:51:20
Score: 2.5
Natty:
Report link

I tried all sorts of functions such as PreCreateWindow, OnCreate, OnWindowPOSChanged, OnWindowPOSChanging.

I found that none of them worked. What did work was setting the CFMCPopupMenu::m_nMaxHeight before calling Create. This constrained the height of the popup menu to the size I wanted. The keyboard works now as does the mouse scroll wheel.

To get the scrollbar to display properly, I also had to set both CMFCPopupMenu::m_bShowScrollBar and CMFCPopupMenu::m_bScrollable to true before calling Create().

I have now run across another problem: m_bShowScrollBar stops the CMFCPopupMenu from sending WM_COMMAND messages to the parent window when an item is clicked. I'll dive into this and post an update or create another post if I need help.


BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
CRect               rParentRect;

m_pBoundsWnd = pWndParent;
m_pBoundsWnd->GetWindowRect(rParentRect);
m_bShowScrollBar = true;  
m_bScrollable = true;
m_nMaxHeight = rParentRect.Height();

// Call the base class Create method
TRACE0("BECPopupMenu::Create() Create\n");
if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
    TRACE0("Failed to create BECPopupMenu\n");
    return FALSE;
    }
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79721998

Date: 2025-08-01 02:27:16
Score: 3
Natty:
Report link

Just convert the JSON data into a dictionary format recognizable by requests, then pass it through the cookies parameter in the request.

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

79721993

Date: 2025-08-01 02:14:14
Score: 2.5
Natty:
Report link

Well, maybe I can help you, I was doing a project where I wanted to put an image on Instagram, I had to transform the photo into base 64, and put it in a database, then save it and return the image again

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

79721986

Date: 2025-08-01 02:02:11
Score: 1.5
Natty:
Report link

Autodesk Platform Services (APS)AutoCAD Automation API execute customization by accoreconsole.exe, console version of AutoCAD, in behind. The accoreconsole.exe doesn't support AutoCAD ActiveX API. VLA* functions in AutoLisp invoke AutoCAD ActiveX API so the your Lisp causes error on APS. I recomend you porting your customization by AutoCAD .NET API as AutoCAD addin, which can loaded by accoreconsole.exe.

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

79721981

Date: 2025-08-01 01:49:08
Score: 0.5
Natty:
Report link

Install this dependency Enable the reCAPTCHA ENTERPRISE from Firebase Authentication section and Enable it from Google Cloud Console, then this error will be gone

@google-cloud/recaptcha-enterprise-react-native
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Nafees

79721978

Date: 2025-08-01 01:41:06
Score: 4
Natty:
Report link

We have the same problem with the Oracle Database, and we don't have a 500ms latency when our code runs on Linux, on Windows, however, there is a 500ms delay.

We believe that this issue is related to a certain mechanism of TCP, and there are differences in the implementation between Windows and Linux. This is because our Linux is WSL, which is essentially a virtual machine of Windows 10

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: DongTianDeHai

79721974

Date: 2025-08-01 01:32:03
Score: 1.5
Natty:
Report link

I faced similar problem. My env is Win11, VS2022 and Python3.13.

After switching Python version from 3.13 to a lower version (my case is 3.9(64-bit)) on the interactive window bar, interactive works correctly. The window bar shows a module selection set on "_main_", but 3.13's not.

I don't know why the bug takes place on 3.13

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

79721969

Date: 2025-08-01 01:25:01
Score: 2.5
Natty:
Report link

The FIFO option only seems to work when reading in (therefore concatenating) the entire GDG family.

Has anybody figured out a JCL-only way to read generation (0) in FIFO order? This would be especially useful for interfaces where you want to DISP=(OLD,DELETE,KEEP) the (0) generation, i.e. delete it after successfully processing it; thereby giving the first-in file the highest priority in getting processed in a job where you only want to pull in one generation at a time.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jon

79721962

Date: 2025-08-01 01:07:58
Score: 0.5
Natty:
Report link

This was asked years ago, but I still see the question popping up and didn't find very good answers.

The context is important, particularly are rare false positives acceptable? I can imagine a video game effect that doesn't impact scoring where a few extra bullets making sparks on a bad guy isn't critical.

This addresses the critical cases where you need to be right, like 3D mesh/mesh intersections or Boolean operations. It also works on concave meshes.

Ignore methods relying on random ray direction as solutions. They improve your odds of a good solution, but create difficult to reproduce failures.

First, filter out all open or non-manifold meshes - they have no inside or outside. Open meshes have one or more laminar edges. Non-manifold meshes have at least one edge which shares more than two faces. The concept of inside simply doesn't apply to these.

Assure all triangle normals are correctly oriented according the right hand half edge rule. This assures all normals point into or out of the closed region.

The worst case situation is a conical, triangular fan where the ray hits the vertex at the center of the fan. I just had to deal with this one.

Determine a global same distance tolerance for the entire model and use it everywhere. Differing same distance tolerances will result in A != B, B !=C and A == C cases if the three tests are done with different tolerances. THAT can result in crashing or infinite looping binary tree tests.

Record the distance along the ray AND if the ray's dot product with the tri normal was positive or negative in a list. Sort the list, first on distance, than on sign of the crossing.

Now, all crossing within the same distance tolerance are clustered first, and crossings of the same parity are grouped within the group.

Starting from the back of the list, remove any crossing within the same dist tolerance which has the same parity. That's a mutliple hit on the fan vertex or edge where the ray entered the boundary through two faces simultaneously. Continue until all duplicates are purged.

In the case where the ray hit the fan vertex, entered and exited legitimately, that will be counted as real entry/exit pair. All cases where the ray entered/exited with the same parity have been reduced to a single entry/exit.

Now calculate
parity = list.size modulo 2
If parity is 1, you're inside. If it's 2 you're outside.

Do this multiple times from the same start point.

Only count hits with 2 or more inside results. I still get a few cases with false outside results.

If you have 2 or more "inside" results, it's inside.

I've worked in the industry for years and even NVidia's GPU raycaster documentation admits they get occasional false positives and recommends some oversampling.

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

79721961

Date: 2025-08-01 01:06:57
Score: 1
Natty:
Report link

npm config ls -l

npm config delete proxy

npm config set proxy "http://your.proxy.url:port/"

for example

npm config set proxy "http://127.0.0.1:3000"

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

79721959

Date: 2025-08-01 01:05:57
Score: 1.5
Natty:
Report link

Use "sudo" before your command.

sudo npx create-react-app appname
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joshua Ginn

79721957

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

Here's a cool one-liner using regex

const titleCase = str => str.toLowerCase().replace(/\b\w/g, c => c.toUpperCase());

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

79721955

Date: 2025-08-01 01:00:56
Score: 2.5
Natty:
Report link

In my case, the newtonsoft.json was part of nuget package., but it was in net6.0 folder instead of net8.0 folder for this file:

C:\Users<username>.nuget\packages\newtonsoft.json\12.0.3\lib.. ..\Newtonsoft.Json.dll

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

79721952

Date: 2025-08-01 00:52:54
Score: 3
Natty:
Report link

When running on my machine, your code seems not to be the issue. What you're experiencing may be due to not initializing the tailwind build process which updates your styles as you change them.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: MaxCodingTX

79721950

Date: 2025-08-01 00:48:53
Score: 4
Natty:
Report link

I probe a many solutions and the correctly solution was add the PATH to variable Entorno on windows "C:\Users\TU_USUARIO\AppData\Local\Android\Sdk\emulator" and restart windows. It's works fine.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neropol

79721948

Date: 2025-08-01 00:38:51
Score: 3.5
Natty:
Report link

But its not clear why you passed scope[] to ValidateTokenAsync method

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

79721941

Date: 2025-08-01 00:20:48
Score: 2.5
Natty:
Report link

List of cross-platform version managers that work across Windows, macOS, and Linux:

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

79721934

Date: 2025-08-01 00:04:44
Score: 2.5
Natty:
Report link

Not sure why, but I switched my setup to have a restApi in stead of httpApi and now it works.
I would still like to know the reason but at least I am not stuck anymore

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

79721929

Date: 2025-07-31 23:47:40
Score: 2.5
Natty:
Report link

If you're looking for an easy way to do it, we just released a plugin that does exactly what you just laid out.

It effectively gets the same data as GA4, and adds that to hidden fields on your contact form.

https://themekraft.com/plugins/lead-source-magic/

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

79721916

Date: 2025-07-31 23:09:32
Score: 0.5
Natty:
Report link
PopScope(
      canPop: viewModel.currentStep == 0, // validate if needed to pop
      onPopInvokedWithResult: (didPop, result) { 
        viewModel.back();// handle try pop event
      },
      child: CupertinoPageScaffold(
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmad Abdullah PS

79721910

Date: 2025-07-31 22:59:30
Score: 0.5
Natty:
Report link

I used a MacBook and connected via SSH when meeting this "select kernel is empty" issue. I solved it by going to the extension on VScode > uninstall Jupyter > Install it again > restart VScode > Select another kernel shows again instead of keep loading :)

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31188881

79721890

Date: 2025-07-31 22:24:23
Score: 5
Natty:
Report link

() => { const [employees, setEmployees] = useState([]) const [selectedEmployee, setSelectedEmployee] = useState(null) const [createEmployee, setCreateEmployee] = useState(false)

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

79721881

Date: 2025-07-31 22:06:20
Score: 1.5
Natty:
Report link

I updated matplotlib, shapely and cartopy to their latest versions and now it works.

    matplotlib: 3.10.5
    shapely: 2.1.1
    cartopy: 0.24.1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Woodz

79721874

Date: 2025-07-31 21:59:17
Score: 0.5
Natty:
Report link

We still have not published an exhaustive list of supported deeplinks - /messages and /documents do work - however, /accounts is not a supported deeplink.

Because of this, the Plugin Bridge falls back to its normal behavior: it opens the target instead of closing the web‑view and handing control back to native Banno navigation.

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

79721873

Date: 2025-07-31 21:57:16
Score: 0.5
Natty:
Report link

All other users are not having any issue.

Okay, that's good. That was going to be the first question. So it sounds like every other user is fine, but it's just this one user that is having issues.

Although not stated in your original question, is this happening within the context of a plugin card i.e. the user starts within Banno's dashboard and the plugin card is displaying an error message?

Depending upon the details, it sounds like this may go from being a Digital Toolkit item (i.e. something is wrong with the developer's implementation) into 'something is weird/strange/different about this particular user'.

My suggestion is to open a jSource case (or re-open the existing case, if possible) with:

  1. a link to this very question on Stack Overflow

  2. the exact error message the user sees

    1. Especially if it contains a `x-request-id`, as that makes it easier for Engineering to figure out what's happening for that user.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79721860

Date: 2025-07-31 21:41:12
Score: 2
Natty:
Report link

I am posting this answer not as away of negating the previous answer given (which i accepted) but to give my take on what i have leanrt so farespecially after doing somwhat of a 'revision'.

I wrote similar code to the one in my question recently like thus:

// Add two numbers (integer and float, float and integer, float and float or integer and integer)
// and output the result as a float
fn add<T, U>(x: T, y: U) -> f64
where T: From<i32> + Into<f64>,
    U: From<i32> + Into<f64>
{
    x.into() + y.into()
}


fn main() {
    let x = add(5.0, 7);
    println!("{x:?}");
}

This compiled!! The catch of course is that regardless of what type you put as first argument or second they both must be convertible to float, should be able to be derived from an integer and the return type will be a float as well. I guess its not pure generics in play, but considering that (from my understanding) that concrete types like integer and float implement the trait From<i32> and Into<f64> (by integer i mean i32 and by float i mean f64), tghe function so far accepts both i32and i32, i32 and f64, f64 and i32 and f64 and f64. I am open to corrections and even criticisms. And if this code breaks still please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DammyD

79721856

Date: 2025-07-31 21:34:10
Score: 1.5
Natty:
Report link

The short answer is "no."

There is no API to write to request bodies, only to read them. Previous to the move to the webextensions API (FF 57), it was possible. For example, there was an add-on called TamperData that was exceedingly popular. Since then, there have been other add-ons that have called themselves TamperData, but do not have the same capability.

The slightly longer answer is "maybe." It depends on what you want to do.

If you want to alter form submission in a POST request, you can intercept the submit event, alter the form, then allow the action to continue. (See Is there a way to modify the POST data in an extension now? for some discussion.)

If you want to alter HttpRequest bodies in general, you'd have to create a separate proxy to intercept them and alter them. You can't get an extension to do that.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nanigashi

79721853

Date: 2025-07-31 21:29:04
Score: 7.5
Natty:
Report link

I am facing the same issue, and it took me almost two days, and still not find how to implement it. I am building personalized Guacamole platform. I have VMs hosted on ESXi that are added as connections on Guacamole. Please, if you found the solution could you share it with us please

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: El Hizabri Marouane

79721834

Date: 2025-07-31 21:02:57
Score: 2.5
Natty:
Report link

Sadly, Google neglected to add this functionality. This is a major showstopper on my project. I have users absolutely wrecking my spreadsheet with stray copy and pastes, and I need to be able to restore data validiations programattically on dozens of different spreadsheets that have been rolled out. "Fix it by hand" is a serious loss here.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ALVIN Brinson

79721831

Date: 2025-07-31 20:58:56
Score: 1.5
Natty:
Report link
.listRowInsets(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16))

oh yeah! this code will do it!

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

79721789

Date: 2025-07-31 20:04:45
Score: 0.5
Natty:
Report link

Google Drive API ile dosya yüklerken karşılaştığın depolama kotası hataları, genellikle şu nedenlerden kaynaklanır:

---

⚠️ Yaygın Depolama Kotası Hataları ve Çözümleri

1. Depolama Alanı Dolmuş

- Hata mesajı: "Storage quota exceeded" veya "User rate limit exceeded"

- Çözüm:

---

2. Paylaşım Kotası Aşıldı

- Hata mesajı: "Sharing quota exceeded" – çok fazla dosya paylaşımı yapılmış olabilir.

- Çözüm:

---

3. API İstek Sınırı Aşıldı

- Hata mesajı: "403 Forbidden" veya "429 Too Many Requests"

- Çözüm:

---

4. Yanlış Parametre veya Yetki Sorunu

- Hata mesajı: "400 Bad Request" veya "401 Unauthorized"

- Çözüm:

---

🛠️ Kod Tarafında Ne Yapabilirsin?

`python

from googleapiclient.errors import HttpError

try:

\# Dosya yükleme kodu

...

except HttpError as error:

if error.resp.status == 403:

    print("Paylaşım veya depolama kotası aşıldı.")

elif error.resp.status == 429:

    print("Çok fazla istek gönderildi, biraz bekleyip tekrar deneyin.")

elif error.resp.status == 401:

    print("Yetki hatası, token geçersiz olabilir.")

else:

    print(f"Beklenmeyen hata: {error}")

`

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

79721783

Date: 2025-07-31 19:57:43
Score: 0.5
Natty:
Report link

I'm building a Vue Quasar app and nothing with raw-loader worked until I did:

import myIcon from "!!raw-loader!assets/icons/my_icon.svg";

I tried doing the following in my quasar config to override the loaders:

cfg.module.rules.push({
    test: /\.svg$/,
    resourceQuery: /raw/,
    use: "raw-loader",
    type: "javascript/auto",
});

And loading with ?raw in the end but nothing worked. Seems other loaders take priority. The config code above is not necessary with the !!raw-loader! solution.

I can now inline include SVGs and use the CSS advantages.

I know this is an old question but I could not find an answer anywhere but on raw-loaders documentation

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Basilio German

79721774

Date: 2025-07-31 19:51:41
Score: 2.5
Natty:
Report link

I ran into this issue as well.. Check the path..for it was too subtle... check the letter 'S' in scripts ..!

'xx/xx/Scripts/typings/es6-shim/es6-shim.d.ts'

'xx/xx/scripts/typings/es6-shim/es6-shim.d.ts'

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

79721772

Date: 2025-07-31 19:50:40
Score: 0.5
Natty:
Report link

If you try the same steps in an iOS 26 simulator, this error does not appear.

(You don't need to run Xcode 26, you can install the beta, and make the newer simulators available while running in Xcode 16).

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

79721771

Date: 2025-07-31 19:50:40
Score: 2
Natty:
Report link

2025 update: The user/password solutions above now fail with:

smtplib.SMTPAuthenticationError ... Authentication unsuccessful, basic authentication is disabled.

Corroborating reports: https://forum.djangoproject.com/t/unable-send-email-from-the-django-using-office-365/21566/6

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

79721766

Date: 2025-07-31 19:43:39
Score: 4
Natty:
Report link

some responder give impression they do not get a clue what it is all about .

when one adds a new file to a project one needs to avoid all the messy output, and concentrate ONLY on this file, until it compiles clean, that how work on complex software goes, it used to be a menu option in VS before 2022 to compile only a single file ( one wich has keyboard focus on), WHERE IS IT NOW!!!???? I expect an official answer from Microsoft, please.

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1): I expect an official answer from Microsoft, please
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Igor Polkovnikov

79721760

Date: 2025-07-31 19:39:37
Score: 1.5
Natty:
Report link

I've found you can just put a whole row as a border so that way it spans the whole length:

<div class="col-span-full border-t"/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: skerrey

79721746

Date: 2025-07-31 19:23:33
Score: 2.5
Natty:
Report link

If you want to sanitize images on the frontend, try using DOMPurify, and use JSoup or OWASP HTML Sanitizer if you want to sanitize images on the server side. Through this method, you would be able to sanitize SVG images without manually setting the whitelisting protocol.

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

79721744

Date: 2025-07-31 19:19:33
Score: 3.5
Natty:
Report link

Same thing here. The ressource is being created but terraform is stuck.

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

79721737

Date: 2025-07-31 19:10:31
Score: 3
Natty:
Report link

Helpful discussion! If anyone’s working on diagrams or systems related to lead generation in Austin Texas, Wise Code Studio builds tailored software to support sales workflows and automation.

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

79721735

Date: 2025-07-31 19:06:30
Score: 2
Natty:
Report link

The typecasting of data types works here, as we need end results in BYTE format.

The correct code is:

public class Exchange

{

public static void main(String[] args)

{

byte a = 23, b = 44;

a = (byte) (a + b);

b = (byte) (a - b);

a = (byte) (a - b);

System.out.println("a="+a, "b="+b);

}

}

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

79721723

Date: 2025-07-31 18:55:26
Score: 4
Natty:
Report link

They are deprecated though (https://angular.dev/api/core/provideNgReflectAttributes), I suggest you use other attributes or selectors like data-cy for Cypress tests

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

79721714

Date: 2025-07-31 18:47:23
Score: 4
Natty:
Report link

1. 服务器IP改 127.0.0.1 ,避免IPv4/IPv6冲突;

2. Lua客户端给 udp:send() 加错误检查,确认是否发送成功;

3. 去掉Go的全局 conn 变量, send 函数通过参数接收连接;

4. 检查端口是否被占用,观察服务器 ReadFromUDP 是否有输出。

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: 米斯得甄

79721710

Date: 2025-07-31 18:39:22
Score: 1.5
Natty:
Report link
In the immediate window you can evaluate this to change the memory:
*((int*)0x00111111)=0x00000022  
// this writes 0x00000022 at memory 0x00111111
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HawajRambo

79721705

Date: 2025-07-31 18:34:20
Score: 1.5
Natty:
Report link

Implement a proxy layer with a fixed IP that forwards requests to Azure Front Door.

  1. It's the most secure, supportable, and maintainable solution under these constraints.

2. Azure Firewall or App Gateway with a custom domain works well and integrates natively.

3.You retain Front Door’s benefits (caching, global distribution, WAF) without client-side limitations.

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

79721696

Date: 2025-07-31 18:24:17
Score: 1
Natty:
Report link

the payload format looks like it's changed to the JSON SIM (Connect 2.0) format. This is the recommended format for Connect integrations, because it supports many more types of events (not just envelope events), lets you choose to not ingest envelope summaries for every event, and enables you to receive an event notification status at the time it occurs.

Changing the message format is opt-in, but you can change back if you want by creating a new config in the UI or by updating your connect config using the API.

Docusign has a few sample apps that I believe show how to use and implement Connect with JSON SIM format:

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

79721692

Date: 2025-07-31 18:22:17
Score: 0.5
Natty:
Report link

BigUint64Array / BigInt64Array or DataView.setBigUint64 / DataView.setBigInt64 could be used to get bytes of JS BigInt

const v = 433791696840n;

// uses system endianness; usually little endian
const a = new Uint8Array(new BigUint64Array([ v ]).buffer);
console.log(a);
const b = new Uint8Array(new BigInt64Array([ -v ]).buffer);
console.log(b);

// endian could be set manually
const c = new Uint8Array(8);
const dv = new DataView(c.buffer);
dv.setBigUint64(0, v, true); // little endian
// dv.setBigUint64(0, v, false); // big endian
// dv.setBigUint64(0, v); // big endian
console.log(c);

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

79721690

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

The best approach might be to use a smoothing method that can handle non-manifold edges. SurfaceNets, and the more recent Multi-label SurfaceNets (Frisken, "SurfaceNets for Multi-Label Segmentations with Preservation of Sharp Boundaries", J. Comp. Graphics Techniques, 2022) was designed to handle surfaces where edges can join more than two faces. (This happens frequently in multi-label volumes where such edges often occur where two materials join). The smoothing algorithm described in the paper can handle those cases. It can also preserve sharp edges and corners and minimize self-intersections. The paper has a link to C++ code. Note that as of this writing, the vtk implementation does not use the SurfaceNets smoothing method.

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

79721687

Date: 2025-07-31 18:16:14
Score: 4.5
Natty: 4
Report link

yeah this wasn't helpful. I'm an amiture and I immediately realized this is dependent on how many simultaneous multiplications you can preform. Maby it's the best answer for a question the is alot harder to answer than it is to state though?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Pacho

79721685

Date: 2025-07-31 18:10:13
Score: 1
Natty:
Report link

The problem of not being able to use a npm library in extension development using import or require can be resolved if you use vite build tool to develop the project.

Create a new vite project npm create vite@latest

Must keep the manifest.json and icons inside the public folder. You can refer to the following folder structure. enter image description here

Build the project npm run build and your extension is ready to be tested inside the dist folder.

Now you can install and use any npm library seamlessly.

I feel this process is a bit tricky to debug if the codebase is bigger.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rahul Kundu

79721682

Date: 2025-07-31 18:08:12
Score: 0.5
Natty:
Report link

in C# 8. - verbatim interpolated string makes this better.

$@"\b hello {"\u200f"} world";
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Tom

79721679

Date: 2025-07-31 18:07:12
Score: 2
Natty:
Report link

If you want to have Fortran call your C++, you might want to try out SWIG. It's a code generator that will automatically make all that extern "C" wrappers for you and can easily be called from you build scripts.

Main SWIG does not have Fortran support, but there's a fork at https://github.com/swig-fortran

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

79721678

Date: 2025-07-31 18:06:10
Score: 8.5
Natty: 5.5
Report link

got the same problem.. did you find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: simpledev

79721673

Date: 2025-07-31 17:59:08
Score: 1.5
Natty:
Report link

Never mind, I believe the answer is yes. I have to learn how to do it, but please consider this question answered.

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

79721664

Date: 2025-07-31 17:52:06
Score: 1.5
Natty:
Report link

let testKey = '690905a739450438a1234d21';

new mongoose.Types.ObjectId(`${value}`)

Use string interpolation, It will work definitely.

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

79721650

Date: 2025-07-31 17:42:04
Score: 4
Natty:
Report link

Thats shitty af. Its pissing me off

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

79721647

Date: 2025-07-31 17:41:03
Score: 2.5
Natty:
Report link

To turn off auto suggestion follow it

File --> Settings --> Editor -->General --> Inline Completion --> uncheck the (Enable local Full Line completion suggestions)

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

79721646

Date: 2025-07-31 17:40:03
Score: 3
Natty:
Report link

Fixed by

Settings -> System -> Reset Options -> Reset applications settings

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ľubomír Mlích

79721642

Date: 2025-07-31 17:37:02
Score: 3
Natty:
Report link

Why don't you directly used in label

<Label Text="{x:static icons:FA7Regular.AddressBook"} fontfamily="">

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: vivek negi

79721639

Date: 2025-07-31 17:36:02
Score: 1.5
Natty:
Report link

The issue is probably due to the video’s format — try re-encoding it with H.264 for video and AAC for audio using FFmpeg. Also, double-check that the asset path is correctly added in your pubspec.yaml.

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

79721638

Date: 2025-07-31 17:34:01
Score: 3.5
Natty:
Report link

The questions seem to be exactly what I need answered, but the answers contain far too many terms that make no sense to me

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ron Librach

79721634

Date: 2025-07-31 17:30:00
Score: 0.5
Natty:
Report link

I think your issue lies in a mismatch between the client-side and server-side. In your AJAX call, you are sending a JSON object that looks like this: { "saveStudentdata": { ... your student data ... } }.

You have wrapped your actual student data inside a property named saveStudentdata. Your controller action public JsonResult Create(StudentModel SaveStudentdata) is expecting a StudentModel object directly.

The model binder looks at the incoming data and tries to map its properties (id, Stu_Name, etc.) to the SaveStudentdata parameter. To me, it seems there is extra wrapper on the client-side, the model binder doesn't find a direct match and SaveStudentdata ends up being null or empty etc.

I reference solutions at stackoverflow here source via Stackoverflow

Please try this and see if it helps.




Controller:
[HttpPost] 
public JsonResult Create([FromBody] StudentModel saveStudentdata)
{
 string status = string.Empty;
 try {
 // Your model binding should now work, and saveStudentdata will be populated.
if (!ModelState.IsValid){
  return Json(new { saveStatus = "Error", errorMessage = "Invalid data" });
}
status = Studata.Createdata(saveStudentdata);
return Json(new { saveStatus = status });
    }
catch (Exception ex)
    {
 return Json(new { saveStatus = "Error", errorMessage = ex.Message });
    }
}






Ajax

// Assuming 'GetData' is a JavaScript object with properties
// that match your StudentModel (e.g., Stu_Name, Stu_Address)

$.ajax({
 type: "POST",
url: "/Student/Create",
// Send the object directly. JSON.stringify will convert it to a JSON string.
data: JSON.stringify(GetData),
// Ensure the content type is set to application/json
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
if (response.saveStatus === "Success") {
alert("Data Successfully Saved...");
} else {
alert("Data not Saved.. Error: " + response.errorMessage);
        }
    },
 error: function (xhr, status, error) {
// More descriptive error handling
alert("An error occurred: " + xhr.responseText);
    }
});
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): Stackoverflow
  • Whitelisted phrase (-1): try this
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Devboy

79721633

Date: 2025-07-31 17:30:00
Score: 2
Natty:
Report link

The transformers module exposes classes like AutoTokenizer at the top level using dynamic imports (via init.py). Static analyzers like Pylance sometimes can't detect this, especially after installing extensions like adapter-transformers that modify or extend internal modules. The addition of adapter-transformers may have introduced more indirection, increasing the chance of false positives.you can safely ignore the warning globally disable the warning using json file

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

79721630

Date: 2025-07-31 17:23:58
Score: 1
Natty:
Report link

I resolved this by simply changing the visibility of the repo from "Private" to "Public". It really worked like magic.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kodex

79721629

Date: 2025-07-31 17:22:58
Score: 4.5
Natty:
Report link

Hello I'm beginner and I found this site very helpful while learning maven maven-docs
you might also find this docs helpful!

Reasons:
  • RegEx Blacklisted phrase (2): I'm beginner
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md Monabbar Anjum

79721624

Date: 2025-07-31 17:16:56
Score: 1.5
Natty:
Report link

When you are finding 2's compliment, the size of the number (number of bits) matters. Since the question explicitly mentions 3 bit number, any carry out beyond the 3rd bit is ignored and you will get the correct answer. Moreover, you can't store 4 bits as you have only 3. One thing to keep in mind is when you take 2's compliment, the number switches sign (except the last -ve number which would remain unchanged).

Let's see your example:

000 is actually 0.

Inverting bits to get 1's compliment : 111

Adding 1 to get 2's compliment 000 (ignoring 1) which is again 0. This makes sense as -(0) = 0

Incase you consider that 1 in front, you will get 1000 which is actually -16 which doesn't make any sense -(0) ≠ -16.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you are findin
  • Low reputation (1):
Posted by: Vasanth P

79721606

Date: 2025-07-31 16:56:51
Score: 0.5
Natty:
Report link

enter image description here now your code is working perfectly, You used unnecessary position:relative and z-index. Also you need to use

.button-class::before {
    z-index: -1;
}
*{
    background-color: #0f0f2c;
    color: aliceblue;
    font-size: 20px;
}

body{  
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.main-container{
    height: 70vh;
    width: 350px;
    position: relative;
    background-color: #0f0f2c;
    isolation: isolate;
    border-radius: 20px;
     z-index:1;
    
}
.main-container::before{
  content: "";
  position: absolute;
  inset: -1px;
  box-shadow: 0 0 2px #333399,
  0 0 2px #ff00cc,
  0 0 1px #fffb00,
  0 0 2px #00f0ff,
  0 0 15px #333399;
  background-image: conic-gradient(#333399, #ff00cc, #fffb00, #00f0ff, #333399 );
  background-color: #f0c0ff;
  border-radius: 22px;
  z-index:0;  


}

.output-display-container{
  position: relative;
    height: 140px;
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.display-div{
    height: 100px;
    width: 100%;
    margin: 20px;
    padding: 5px;
    box-shadow: 0 0 5px #ff00cc;
    border-radius: 10px;
    text-align: right;
    /*color: #333;/
    text-align: right;     /* aligns text to the right */
    direction: ltr;        /* keeps the text flow left to right */
    overflow-x: hidden;      /* Dont want a scrollbar */
    white-space: normal;     /*wraps text */
    border: 1px solid #ccc;
}
.buttons-container {
   position:ralative;
    height: calc(70vh - 170px);
    width: calc(100% - 40px);
    /*box-shadow: 0 0 10px #ff00cc;*/
    margin: 20px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
}
.button-class{
  position:relative;
   background-color: #0f0f2c;
   box-shadow: 0 0 3px #ff00cc; 
   border: none;
   border-radius: 8px; 
   cursor: pointer;
   transition: transform 0.2s;
}


.button-class:hover {
    transform: scale(1.05);
    box-shadow: 0 0 5px #ff00cc;
}
.button-class::before{
  content: "";
  position: absolute;
  inset: -1px;
  box-shadow: 0 0 2px #333399,
  0 0 2px #ff00cc,
  0 0 1px #fffb00,
  0 0 2px #00f0ff,
  0 0 15px #333399;
  background-image: conic-gradient(#333399, #ff00cc, #fffb00, #00f0ff, #333399 );
  background-color: #f0c0ff;
  border-radius: 22px;
  z-index: -1;  
}
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shahariar Hasan

79721598

Date: 2025-07-31 16:48:49
Score: 2
Natty:
Report link

If you are still looking to integrate OSM with your Expo app natively, would you like to give it a try with this new library?
https://www.npmjs.com/package/expo-osm-sdk

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

79721594

Date: 2025-07-31 16:43:44
Score: 7
Natty:
Report link

me salia el mismo error todo tenia bien solo me faltaba el punto de conexion ya con eso quedo, esto es debido a que mi bucket es privado

Creación de un punto de conexión de un gateway

Utilice el siguiente procedimiento para crear un punto de conexión de la puerta de enlace que se conecte a Amazon S3.

Para crear un punto de enlace de gateway con la consola
  1. Abra la consola de Amazon VPC en https://console.aws.amazon.com/vpc/.

  2. En el panel de navegación, elija Puntos de conexión.

  3. Elija Crear punto de conexión.

  4. En Categoría de servicios, elija Servicios de AWS.

  5. En el caso de los servicios, añada el filtro Type = Gateway y seleccione com.amazonaws. region.s3.

  6. En VPC, seleccione la VPC en la que desea crear el punto de conexión.

  7. En Route tables (Tablas de enrutamiento), seleccione las tablas de enrutamiento que debe utilizar el punto de conexión. De forma automática, se agregará una ruta para dirigir el tráfico destinado al servicio a la interfaz de red del punto de conexión.

  8. En Policy (Política), seleccione Full access (Acceso completo) para permitir todas las operaciones de todas las entidades principales en todos los recursos del punto de conexión de VPC. De lo contrario, seleccione Custom (Personalizar) para adjuntar una política de punto de conexión de VPC que controle los permisos que tienen las entidades principales para realizar acciones en los recursos a través del punto de conexión de VPC.

  9. (Opcional) Para agregar una etiqueta, elija Agregar etiqueta nueva e ingrese la clave y el valor de la etiqueta.

  10. Elija Crear punto de conexión.

Para crear un punto de conexión de la puerta de enlace mediante la línea de comandos

https://docs.aws.amazon.com/es_es/vpc/latest/privatelink/vpc-endpoints-s3.html

Reasons:
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (2): crear
  • Blacklisted phrase (2): Crear
  • RegEx Blacklisted phrase (2.5): mismo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gerald rojas

79721581

Date: 2025-07-31 16:30:40
Score: 1
Natty:
Report link

For me it was a python versioning issue. When I ran the code with python3.10 I got the error however, when using python3.8 everything worked fine. So my advice is just be wary of the versions your repository/code relies on.

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

79721568

Date: 2025-07-31 16:20:37
Score: 3.5
Natty:
Report link

As late as I am to this, Shift+Enter does the same thing as well

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

79721565

Date: 2025-07-31 16:15:36
Score: 1
Natty:
Report link

Try something like this to use the stream option instead of trying to interpret CIM etc...

$IPConfig = get-netIPConfiguration | Out-String -Stream
ForEach($item in $IPConfig) {
            If($item.ToString() -like '*DefaultGateway*') {
                    $defaultGateway = $item.Replace('IPv4DefaultGateway   : ', '')

            }
       }

write-host $defaultGateway
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Brian Holt

79721557

Date: 2025-07-31 16:06:34
Score: 4.5
Natty: 5
Report link

It appears the section linked in the answer has been moved in the docs to here: https://docs.github.com/en/actions/reference/workflows-and-actions/reusable-workflows#supported-keywords-for-jobs-that-call-a-reusable-workflow

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

79721555

Date: 2025-07-31 16:03:33
Score: 0.5
Natty:
Report link

After various search I found out that the solution was quite easy: it's enough to use the query method

->query(function (Builder $query, array $data) {
                        if (blank($data['value'])) {
                            return $query;
                        }
                        return $query->whereHas('player', function (Builder $query) use ($data) {
                            $query->where('sex', $data['value']);
                        });
                    })
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tiziano Mischi

79721539

Date: 2025-07-31 15:48:29
Score: 4
Natty:
Report link

Thanks so much for helping me out. Maybe it's because I'm new to Vite, but nothing suggested worked. So, I created a new React project without Vite, added my files and edited any areas needed, and deployed it to Netlify and that worked.

Thanks so much for trying.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alexandria Fuller

79721535

Date: 2025-07-31 15:45:28
Score: 1.5
Natty:
Report link

In IntelliJ IDEA 2025.x, this can be achieved by configuring the status bar. Right-click on any element in the bottom-right status bar. Select Navigation Bar -> In Status Bar. Having this enabled will show the full path of the opened file in the bottom-left of the status bar.

enter image description here

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

79721532

Date: 2025-07-31 15:40:27
Score: 0.5
Natty:
Report link

The error has nothing to do with data being on another sheet. To populate a combobox like this, you need to use the following syntax:

ThisWorkbook.Sheets("Sheet1").DropDowns("Drop Down 1").ListFillRange = "Sheet2!$A$1:$A$4"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TehDrunkSailor

79721521

Date: 2025-07-31 15:32:25
Score: 1.5
Natty:
Report link

You can also add the headers to the web.config file:

<configuration>
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="Cache-Control" value="no-cache"/>
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</configuration>

This will apply to every request.

Thanks to https://stackoverflow.com/a/34393611/159347 for providing this answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: schmiddy98

79721514

Date: 2025-07-31 15:25:23
Score: 1.5
Natty:
Report link
  1. The example json is indeed a JWK Set in the sense of RFC7517.

  2. The test in the question is not using the JJWT library in the intended way and confuses "keys" in the JSON sense, "keys" in the Java Map interface sense and "keys" in the JWK Set sense of the term.

The JwkSet is a direct representation of the json object and as such a Map<String,?>. The containsKey and keySet methods are Map methods. The correct method to iterate over the JWK "Keys" is the JwkSet#getKeys() method (as pointed out by @andrewJames in the comments of the question). The returning iterator can be converted to a List<Jwk<?>>easily. This is a passing test:

String json =  "{'keys':[{'kid':'key1','kty':'RSA','alg':'RS256','use':'sig','n':'jki4-Fw66lIy6oHk_YHLReGkdX3QkiizGUQHGeG_xjQUbwlOFejYm-CsMjWEpZcohX0BQVZomnrMCZC_qjNy-Tg5AIFcQZGXehT4kH_DXQZZR4OgT3uKvEEbMEYhZMPj5Bs9--420ONvCLMTU720UXqSF9IrXsuxtRZuaijwkMpQ2t9nIuJ6NKo_CBJHyeVvfLKN3a83Zi-6It6dkiLsOSvhQfbUAsr0NeKAobwmqGt9lT_K_JoLRVqTzFEC-XT7keobMdT9cKba2ML7Yz982Tr5BuGLXZTm7nfPKdk9Bi68HnO82Aas19_D5HJRieW7FqeqwE5MVl6E3IFt8HKblw','e':'AQAB','x5c':['MIICqTCCAZECBgFxOn9tejANBgkqhkiG9w0BAQsFADAYMRYwFAYDVQQDDA1hY2FkZW1pY2Nsb3VkMB4XDTIwMDQwMjEwNDQyMVoXDTMwMDQwMjEwNDYwMVowGDEWMBQGA1UEAwwNYWNhZGVtaWNjbG91ZDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAI5IuPhcOupSMuqB5P2By0XhpHV90JIosxlEBxnhv8Y0FG8JThXo2JvgrDI1hKWXKIV9AUFWaJp6zAmQv6ozcvk4OQCBXEGRl3oU+JB/w10GWUeDoE97irxBGzBGIWTD4+QbPfvuNtDjbwizE1O9tFF6khfSK17LsbUWbmoo8JDKUNrfZyLiejSqPwgSR8nlb3yyjd2vN2YvuiLenZIi7Dkr4UH21ALK9DXigKG8JqhrfZU/yvyaC0Vak8xRAvl0+5HqGzHU/XCm2tjC+2M/fNk6+Qbhi12U5u53zynZPQYuvB5zvNgGrNffw+RyUYnluxanqsBOTFZehNyBbfBym5cCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAJ+N/5p1bzHGgBT45cTe23Q3n0j8xogrJKk0LJLmcZTOU2nkcQhZeL4bpw/7eJasgnXCIMk37Ti8xiZKLPhSrRg0BcNIrKmrtA+2x6jDRIc0DoU3P83fM5h4ShUJAW+aKOx7JpV3E0KkOPzHbCRCB2w7oCleZHG9lJAGkcHAQQ01aIfyU3ow66kdAHyB6sAAnRXMf6aogTguqPVB8uAE3VTAWZDiPwyhqo/IVWDMs73bUty8qLDDj4Ei0Q+DcND3WghyeOGm8lCmAzPgl/zzphkQ6P+4Sq1gW06yfVvj862CuY9i6oBTldtAUvjKxCzl+QS8KzQBnB0oUzaFh8vHKYw=='],'x5t':'6yqDA3RjYFZrc3DVcyVrvkNiMA0','x5t#S256':'ifr81ikFJWOiNf2FDgW8dSOu5HEajKuwfGIw78G--Jw'},{'kid':'key2','kty':'RSA','alg':'RS512','use':'sig','n':'kKrdBB_DT37-GT75n_HdOSS0wxXIuheahBdJwTCHmB2Uk3IATjOpiFZjB8qAZ5d00AUu-oZrHG2VgnJq1jUiSb-RDYJTwA1lFXKEJu5CZwAB9xlfCFRXqPs9AL3-2l9-i5ajkMbSE10-S3dacwsrCFd-FL7w0428K7DHjtdwA0mWCyZW6nqWc7lutXhIfFlSmo7GY8M9tuMoOAOXOnLa0MYGh6G1jGvK8pNEyBTnKNEWqAIZhH8ENPMLm4vNFkuenFnP5VzcFNppwt3FnVFetnwudFPfEzUeHqyH7EsdOooFbD4IBu1iWXdI09uGCIJ30BJ2Q-OpXLGMur_YhXMb-Q','e':'AQAB','x5c':['MIICqTCCAZECBgGEexA7YjANBgkqhkiG9w0BAQsFADAYMRYwFAYDVQQDDA1hY2FkZW1pY2Nsb3VkMB4XDTIyMTExNTExMzExMloXDTMyMTExNTExMzI1MlowGDEWMBQGA1UEAwwNYWNhZGVtaWNjbG91ZDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJCq3QQfw09+/hk++Z/x3TkktMMVyLoXmoQXScEwh5gdlJNyAE4zqYhWYwfKgGeXdNAFLvqGaxxtlYJyatY1Ikm/kQ2CU8ANZRVyhCbuQmcAAfcZXwhUV6j7PQC9/tpffouWo5DG0hNdPkt3WnMLKwhXfhS+8NONvCuwx47XcANJlgsmVup6lnO5brV4SHxZUpqOxmPDPbbjKDgDlzpy2tDGBoehtYxryvKTRMgU5yjRFqgCGYR/BDTzC5uLzRZLnpxZz+Vc3BTaacLdxZ1RXrZ8LnRT3xM1Hh6sh+xLHTqKBWw+CAbtYll3SNPbhgiCd9ASdkPjqVyxjLq/2IVzG/kCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAQ4kzB7EwhUTGSr/IpAQa+viF7uYGxk+Iiec/s+ShfkFLoMPw+y9l5alwvnKAgTI1Pxrjha8Hu2OsCtGtu8ziJNd65VQiNoFsZp71WGq0+7+Zcqmk182CmjqoN+io7yfgg7N5/VygquHIY3aNB4riruQrbR33fQ49mjpZIM2eohU1teycfpwPCObTRGg5jZg+iUREy01k+QZplxgOqgyqrtTDUKoxZr8WwAWjlCBWyylOT5eEA/777yObYogmfrpNovo+dw1szaHB4BGfX1S522UUfRDAMtOTsjfCnusYEZsMUWXJe46ZLSYJsmIpGw4UwSC7I371elrC/dTzCSREpQ=='],'x5t':'PwDhZrjmydYTXbB3skSdfamw5Xk','x5t#S256':'44mNK5ARKWGn8S7R0tfEeJ6SVqpLp73VSeQeG2wMATE'}]}"
                .replace("'", "\"");
JwkSet jwks = Jwks.setParser().build().parse(json);
assert "keys".equals(String.join("", jwks.keySet()));
List<Jwk<?>> keys = jwks.getKeys().stream().toList();
assert keys.get(0).getId().equals("key1");
assert keys.get(1).getId().equals("key2");
assert 2 == keys.size();

Source: lhazlewood's comment in the JJWT repository Discussion#1002

Reasons:
  • Blacklisted phrase (1): ThX
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @andrewJames
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: nCessity

79721511

Date: 2025-07-31 15:21:22
Score: 2.5
Natty:
Report link

Adding a new comment style (even just as an option) could mess with how browsers and tools read HTML. It might confuse parsers, break things like linters or minifiers, and lead to code that doesn’t work the same across different environments.

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

79721508

Date: 2025-07-31 15:19:21
Score: 0.5
Natty:
Report link

So you want access to first human message all the time? Why not modify your AgentState and add a node to your graph, so the subsequent nodes can also access it.

Something like:

def get_initial_human_content(state):
    for msg in state['messages']:
        if isinstance(msg, HumanMessage):
            return msg.content
    return None

class AgentState(TypedDict):
    # The add_messages function defines how an update should be processed
    # Default is to replace. add_messages says "append"
    messages: Annotated[Sequence[BaseMessage], add_messages]
    initial_human_content: str
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Rinato Fenice

79721499

Date: 2025-07-31 15:12:19
Score: 1
Natty:
Report link

pod2rst (from Pod::POM::View::Restructured) seems to exist to help here. Document perl code using Plain Old Documentation and export to restructured text for including with sphinx.

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

79721484

Date: 2025-07-31 15:03:17
Score: 1.5
Natty:
Report link

Python's equivalent to PHP's stdClass is SimpleNamespace from the types module

from types import SimpleNamespace

# Create empty object
obj = SimpleNamespace()
obj.name = "John"
obj.age = 30

# Or initialize with data
person = SimpleNamespace(name="John", age=30)
person.city = "Amsterdam"  # Add attributes dynamically

Python Feature Availability Matrix

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

79721482

Date: 2025-07-31 15:03:17
Score: 4
Natty:
Report link

Your website might be doing something different between the two ways of modifying window size.
I cannot reproduce this issue with my sample.
Please give it a try. 
https://github.com/adamenagy/Container/blob/master/ViewerTest.zip
Just serve the HTML page using any HTTP server - e.g. "Live Server" in Visual Studio Code:
https://youtu.be/pqS4h7WpeWc

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2.5): Please give
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Adam Nagy

79721475

Date: 2025-07-31 15:01:16
Score: 0.5
Natty:
Report link

I wrote a blog post about this topic that covers:

  1. How to add Markdown to your Django templates
  2. Security and sanitation considerations

How I Made My Django Blog Safe After Adding Markdown

Happy coding!

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

79721471

Date: 2025-07-31 14:56:15
Score: 2.5
Natty:
Report link

I faced the same error, after few moments i found that my .NET version not matched with the package version ( Choose the same version as you .NET version as you package version then click INSTALL )

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

79721467

Date: 2025-07-31 14:53:14
Score: 1.5
Natty:
Report link

This is due to a missing feature in Python's ftplib. An issue was reported long ago: https://github.com/python/cpython/issues/63699#issuecomment-2122745826

There you will find workarounds that work for modern versions of Python. It's mostly about sub-classing FTP_TLS.

See this comment for example: https://github.com/python/cpython/issues/63699#issuecomment-2871986658

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

79721466

Date: 2025-07-31 14:52:14
Score: 0.5
Natty:
Report link

reveal_type is a special function provided by MyPy (a static type checker for Python) and is not a standard Python built-in function.

reveal_type is designed to be used only when you run MyPy to check your code's types. It fails when using the normal python interpreter because there are no variables/module/function called reveal_type.

You can run your python script (let's assume it's called "my_script.py")

mypy my_script.py

(provided you have mypy installed) but not as

python my_script.py
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: jei

79721458

Date: 2025-07-31 14:46:12
Score: 8.5
Natty: 7.5
Report link

Hello did you manage to find the root cause?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to find the
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karim Test

79721452

Date: 2025-07-31 14:42:10
Score: 2.5
Natty:
Report link
Private Sub cmOp1_AfterUpdate()
    
    Dim comboBoxValue As String
    comboBoxValue = cmOp1.Text
    
    Dim i As Long
    For i = 1 To 2
    
        Dim textBoxValue As String
        textBoxValue = Me.Controls("Name" & i).Text
        
        If textBoxValue <> comboBoxValue Then
            GoTo ContinueLooping
        End If
        
        ' Update Hrs text
        Me.Controls("Hrs" & i).Text = "100"
        Exit For
        
ContinueLooping:
    Next i
    
End Sub

This code looks at the value in the changed combobox, and searches through the "Name" textboxes for that value. If that value is found, the corresponding "Hrs" textbox is updated to 100.


There is some confusion between what your question is asking (specially "randomly change"), and the clarification you provided under Black cat's answer. If I've misunderstood what you're trying to do, please let me know.


Finally, if you plan to ask more questions on StackOverflow, I suggest learning about Minimal Reproducible Examples. It will make it a lot easier for others to help you when your code works "out of the box".

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TehDrunkSailor

79721442

Date: 2025-07-31 14:38:09
Score: 3
Natty:
Report link

I ended up designing one manually. It basically has the same design, but it is a column with an adjustable size when you drag it, and the bottom selector bar is aligned with the bottom of the column.

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

79721431

Date: 2025-07-31 14:34:08
Score: 2
Natty:
Report link

After years of pain I'm replying to my old question after I found the definitive solution, namely get rid of conda.

I have chosen Pixi because it can use conda-forge as channel for the packages as well as pypi, check it out.

So far I don't see one reason to get back to conda while I can list so many why I migrated.

So uninstall conda, python and everything... then install Pixi and just "pixi init" + "pixi add python=<desired-version>" etc

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Umberto Fontanazza