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

79721430

Date: 2025-07-31 14:33:08
Score: 3
Natty:
Report link

FYI this was released by Gitlab. See the issue linked above.

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

79721428

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

On Regex Library use pattern \+(?:[^+\\]|\\[^+])*\+

and for Teststring

GroupNo+ \+ +Name+ / +Ac

And click test pattern.

Or in PHP:

$pattern = '/\+(?:[^+\\\\]|\\\\[^+])*\+/';

$string = 'GroupNo+ \+ +Name+ / +Ac';

preg_match_all($pattern, $string, $matches);

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

79721419

Date: 2025-07-31 14:19:04
Score: 2.5
Natty:
Report link

если кому еще нужно, то вот вроде рабочий вариант с проверкой флагов, тк без флагов всегда возвращается true:

func isWifiEnabled() -> Bool {
    
    var ifaddr: UnsafeMutablePointer<ifaddrs>?
    var awdl = 0
    
    if getifaddrs(&ifaddr) == 0, let firstAddr = ifaddr {
        for ptr in sequence(first: firstAddr, next: { $0.pointee.ifa_next }) {
            let name = String(cString: ptr.pointee.ifa_name)

            if name == "awdl0" {
                let flags = ptr.pointee.ifa_flags
                let isUp = (flags & UInt32(IFF_UP)) != 0
                let isRunning = (flags & UInt32(IFF_RUNNING)) != 0
                
                //                    freeifaddrs(ifaddr)
                print("wifi: awdl\(awdl) - \(isUp), r: \(isRunning)")
                if isUp && isRunning{
                    awdl += 1 // isUp && isRunning
                }
            }
        }
        
    }
    
    freeifaddrs(ifaddr)
    
    return awdl > 1
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Андрей Шварко

79721410

Date: 2025-07-31 14:12:02
Score: 2.5
Natty:
Report link

In my case the extra spaces issue was observed for Python versions 3.8 and 3.10. It has gone after upgrading to 3.13

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

79721408

Date: 2025-07-31 14:11:02
Score: 2
Natty:
Report link

You're encountering this issue because reveal_type() is not a runtime Python function, it's a static analysis feature used only by type checkers like mypy.

To make your code work, you must run mypy, not python.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: nihith varma gokaraju

79721401

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

If you can access functions.php file, use this code to de-register the schema manually:

add_action('wp_head', function() {
ob_start(function($buffer) {
return preg_replace('/<script[^>]+type=["\']rocketlazyloadscript["\'][^>]*>.*?<\/script>/is', '', $buffer);
});
}, 1);

This code filters out any <script type="rocketlazyloadscript"> </script> block from the page output but use only if you're sure it's safe to remove and you’ve isolated the right script.

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

79721396

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

If you haven't found a solution to your problem yet, then try using the following code example. I tested it and got a good result. By the way, I suggest you use the free SDK https://sautinsoft.com/products/pdf/help/net/developer-guide/convert-pdf-to-images.php, I think you'll find the right one for yourself.

`Function ConvertPDFToJPG(ByVal pdfPath As String, ByVal outputPath As String) As String

Try

    If Not File.Exists(pdfPath) Then Return "Error: El archivo PDF no existe."

    Using document = SautinSoft.Pdf.PdfDocument.Load(pdfPath)

        Dim page = document.Pages(0)

        page.Rotate = 270

        Dim imageOptions = New SautinSoft.Pdf.ImageSaveOptions(SautinSoft.Pdf.ImageSaveFormat.Jpeg) With {

            .DpiX = 300,

            .DpiY = 300

        }

        Dim outputFile As String = outputPath & "_page" & imageOptions.PageIndex & ".jpg"

        document.Save(outputFile, imageOptions)

    End Using

    Return "OK"

Catch ex As Exception

    Return ($"Error : {ex.Message}")

End Try

End Function `

Disclaimer: I am an employee of this company.

Reasons:
  • RegEx Blacklisted phrase (1): haven't found a solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxim Sautin

79721395

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

what are this middlewares you are using this is not default django config

MIDDLEWARE.append('organizations.middleware.DummyGetSessionMiddleware')
MIDDLEWARE.append('core.middleware.UpdateLastActivityMiddleware')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): what are this
  • Low reputation (1):
Posted by: samdace

79721390

Date: 2025-07-31 13:58:59
Score: 1.5
Natty:
Report link

The name 'cursor' is undefined.

line 1, in <module>
    cursor.execute('''CREATE TABLE IF NOT EXISTS posts (
    ^^^^^^
NameError: name 'cursor' is not defined
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zhichuan Long

79721386

Date: 2025-07-31 13:56:58
Score: 2
Natty:
Report link

Nowadays you can do this with

functions --all
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RecursionError

79721376

Date: 2025-07-31 13:52:57
Score: 3.5
Natty:
Report link

Open the app twice seems to work for me. In one browser tab have it open in edit mode, then duplicate the tab and open again in - close the first tab.

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

79721352

Date: 2025-07-31 13:36:53
Score: 2
Natty:
Report link

yourstring = "<H>Message Pilcrow</H><H>Testing....</H><Hr/><H>testing in progress...</H>";

Regex rgx = new Regex("<H>|</H>");

string res = rgx.Replace(yourstring, "", 2);

Console.WriteLine(res);

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

79721347

Date: 2025-07-31 13:32:51
Score: 0.5
Natty:
Report link

Turns out, that the config parameters have been at the wrong position. The following standalone.xml works

        <subsystem xmlns="urn:jboss:domain:resource-adapters:6.1">
            <resource-adapters>
                <resource-adapter id="wmq.jakarta.jmsra.rar">
                    <archive>
                        wmq.jakarta.jmsra.rar
                    </archive>
                    <transaction-support>NoTransaction</transaction-support>
                    <config-property name="reconnectionRetryCount">
                        10
                    </config-property>
                    <config-property name="reconnectionRetryInterval">
                        900000
                    </config-property>
                    <connection-definitions>
                    ...
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matthias

79721323

Date: 2025-07-31 13:06:46
Score: 0.5
Natty:
Report link

I Figure it out.

The problem was with this lines:

const RAPIDAPI_KEY  = process.env.RAPIDAPI_KEY || functions.config().rapidapi.key;
const RAPIDAPI_HOST = process.env.RAPIDAPI_HOST || functions.config().rapidapi.host;

The command:

function.config()

is no longer available in Google Cloud.

instead, need to using secrets and using it like this:

the cosnsts are inside the exports and not outside like before.

exports.importFixtures = onSchedule(
    {
        schedule: "0 2 * * *",
        timeZone: "Asia/Jerusalem",
        region:   "europe-west1",
        secrets:  ["RAPIDAPI_KEY", "RAPIDAPI_HOST"],
    },
    async (event) => {
      const RAPIDAPI_KEY  = process.env.RAPIDAPI_KEY
      const RAPIDAPI_HOST = process.env.RAPIDAPI_HOST
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stam Mashu

79721306

Date: 2025-07-31 12:56:42
Score: 3.5
Natty:
Report link

I'm facing the same problem and my workaround is to pass a pre to the slot. So you have to use the component like this:

<myComponent>
  <pre>
    multiple
    lines
  </pre>
</myComponent>

One bonus effect is that formatters like prettier would keep the content of pre untouched. I also made the slot reactive using the following code:

import { useSlots, computed } from "vue";

export function useRawText() {
  const slots = useSlots();
  const raw = computed(() => {
    let text = "";
    let block = false;

    if (slots.default) {
      const slot = slots.default()[0];

      text = String(slot.children);
      block = slot.type == "pre";
    }

    console.debug({ text, block });

    return { text, block };
  });

  return raw;
}

Here block indicates whether you pass in a pre or something else (e.g. text).

This is ugly, but at least works.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Low reputation (1):
Posted by: Rui Mao

79721296

Date: 2025-07-31 12:45:39
Score: 1.5
Natty:
Report link

cross posting the answer from the uv issue tracker

This can be solved by explicitely telling uv it cannot install torch+cu124 on aarch64 by adding a marker in the dependencies:

cu124 = [
    "torch==2.6.0+cu124; sys_platform == 'linux' and platform_machine == 'x86_64'", 
]
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: tbrugere

79721283

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

Fixed the issue by adding following to my eclipse ini file:

-Djava.net.preferIPv4Stack=true
-Djavax.net.ssl.trustStore=plugins/org.eclipse.justj.openjdk.hotspot.jre.full.linux.x86_64_23.0.2.v20250131-0604/jre/lib/security/cacerts

Also please follow: See keystore used by SSLFactory? Exception: "sun....certpath.SunCertPathBuilderException: unable to find valid certification path to requested target" to add valid certificate to keytool in java cacerts.

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

79721277

Date: 2025-07-31 12:25:35
Score: 2.5
Natty:
Report link

This is also and issue when using the [AT+CUSD=1,"?"] command (you often get the "+CUSD: Encoding Error" error message).

For me, the fix appears to be doing:

AT+CSCS="UCS2"

delay(10);

AT+CSCS="GSM"

which appears to correctly/reliably set the SIM800 into "GSM" mode.

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

79721272

Date: 2025-07-31 12:21:34
Score: 0.5
Natty:
Report link

VS Code inline code completions currently only support the GPT-4o Copilot model. Claude Sonnet 3.7 is enabled for Chat/Edits, not for inline completions yet. Refer to the discussion here and the response from GitHub Copilot Product Manager. https://github.com/orgs/community/discussions/156738

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

79721257

Date: 2025-07-31 12:09:31
Score: 1.5
Natty:
Report link

Your code works, I will not comment on that. There are other comments that already suggest improvements.

Regarding the error message, this is related to the encoding of your file. I was able to reproduce the error by saving the .csv file, opening it in NotePad, and save it again using the UTF-8 BOM format while the format originally was ANSI.

I suspect that you opened your saved file to check its content and while doing so the format changed.

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

79721255

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

Join the Illuminati today to ensure a successful and respected future. Upon enrollment, you will be awarded an immediate sum of $10,000,000.00 and a vehicle of your choice as part of the member benefits. Additionally, you will receive free residency in any country you choose, along with a free visa. The Illuminati is a serene organization, committed to ensuring your lasting success and recognition, with no obligation of blood rituals upon joining. For more details, please contact us at: [email protected]

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

79721247

Date: 2025-07-31 11:57:26
Score: 7
Natty: 5.5
Report link

It has been 4 years, did you finally find how to do it? I've been struggling for weeks looking for the answer... Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you finally find
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Camille Sage

79721234

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

VS Code Copilot’s “bring your own key" model picker is currently allow-listing Anthropic models and Sonnet 4 isn’t on that list yet, so it won’t show up when you add your own Anthropic key. This has been acknowledged publicly by a VS Code/Copilot PM and tracked in the following GitHub issue.

https://github.com/microsoft/vscode/issues/255783

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

79721231

Date: 2025-07-31 11:40:23
Score: 0.5
Natty:
Report link

One can indeed add an array of field names to groupRowsBy

<DataTable :value="obj" rowGroupMode="rowspan" :groupRowsBy="['timestamp', 'user']">

Just a word of warning, there is no hierarchy to the grouping, so the final results may not be as expected, unless one introduces an additional, let's call it, "private property" for grouping.

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

79721221

Date: 2025-07-31 11:36:21
Score: 3
Natty:
Report link

You could use hideBackdrop={true} , position: 'fixed' .

Also, Is there any reason to use open={true} ?

<Dialog
      open={true} 
      onClose={handleClose}
      hideBackdrop={true} //Proper way to hide backdrop
      PaperProps={{
        style: {
          position: 'fixed',
          top: 0,
          right: 0,
          margin: '20px',
        },
      }}
    >
Reasons:
  • Blacklisted phrase (1): Is there any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Emily.C

79721212

Date: 2025-07-31 11:25:18
Score: 0.5
Natty:
Report link

Starting from Keycloak 26.2.0 there are no credentials for embedded H2 database.

See https://github.com/keycloak/keycloak/issues/39046 for more details.

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

79721211

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

puedes depurar en Codium con LLDB. Yo compilo con CLang++ y depuro así con lldb en Codium. Hay ejemplos de como poner la configuración en tasks.json. El tipo es justamente "lldb". Además, si quieres ver bien los string, deberás añadir la opción -fstandalone-debug a la hora de compilar para que se vean los tipos string. Al menos en ubuntu todo va perfecto.

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

79721210

Date: 2025-07-31 11:24:18
Score: 0.5
Natty:
Report link

Flutter: Background Image Moves Up When Tapping on TextFormField – How to Prevent Layout Shift?

I have a CustomScaffold widget that contains a background image, and the body of the screen is placed inside a Scaffold widget. However, when I tap on a TextFormField, the background image shifts upward along with the body content. I want to prevent the background image from shifting when the keyboard appears without breaking my layout.

What I Tried:

What Worked:

I found a solution by wrapping the background image in a SingleChildScrollView. This allowed the background to remain fixed while the body could still scroll independently. Below is my updated CustomScaffold widget that fixed the issue:

class CustomScaffold extends StatelessWidget {
  final Widget body;
  final Color? backgroundColor;
  final PreferredSizeWidget? appBar;
  final Widget? bottomNavigationBar;
  final bool? extendBodyBehindAppBar;
  final bool? resizeToAvoidBottomInset;
  final bool bgImg;
  final String productType;

  const CustomScaffold({
    Key? key,
    required this.body,
    this.backgroundColor,
    this.appBar,
    this.bottomNavigationBar,
    this.extendBodyBehindAppBar = false,
    this.resizeToAvoidBottomInset,
    this.bgImg = false,
    this.productType = "",
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return GestureDetector(
      onTap: () {
        WidgetsBinding.instance.focusManager.primaryFocus?.unfocus();
      },
      child: Stack(
        children: [
          bgImg == false && productType.isEmpty
              ? SizedBox.shrink()
              : Positioned.fill(
                  left: 0,
                  top: 0,
                  right: 0,
                  bottom: 0,
                  child: SingleChildScrollView( // Added SingleChildScrollView
                    child: Image.asset(
                      _getBackgroundImage(productType),
                      fit: BoxFit.fill,
                    ),
                  )),
          Scaffold(
            extendBodyBehindAppBar: extendBodyBehindAppBar ?? false,
            resizeToAvoidBottomInset: resizeToAvoidBottomInset,
            appBar: appBar,
            backgroundColor: backgroundColor ??
                (bgImg == false
                    ? Constants.colors.background
                    : Colors.transparent),
            body: body,
            bottomNavigationBar: bottomNavigationBar,
          ),
        ],
      ),
    );
  }

  String _getBackgroundImage(String? productType) {
    switch (productType) {
      case "A":
        return 'assets/images/pl_bg.webp';
      case "B":
        return 'assets/images/pl_bg.webp';
      case "C":
        return 'assets/images/pl_bg.webp';
      case "D":
        return 'assets/images/pl_bg.webp';
      case "E":
        return 'assets/images/pl_bg.webp';
      case "F":
        return 'assets/images/pl_bg.webp';
      case "G":
        return 'assets/images/ce_bg.webp';
      default:
        return 'assets/images/splash.webp';
    }
  }
}

and here is my UI

child: CustomScaffold(
            resizeToAvoidBottomInset: false,
bgImg : true,
productType: "A",
            body: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: [
                LabelWidget(
                  text: 'My UI'.tr,
                  fontWeight: FontWeight.w600,
                  fontSize: 28.sp,
                  textColor: Colors.black,
                  padding: 0,
                ).marginSymmetric(horizontal: 16.w),

                // Select the card for offers
                CardWidgetForOffers(
                    offerController: controller,
                    entitiesController: entController), // select card
                16.verticalSpace,

                Expanded(
                  child: SingleChildScrollView(
                    controller: scrollController,
                    child: Column(
                      crossAxisAlignment: CrossAxisAlignment.center,
                      children: [
                        // Banners widget  swipe cards
                        BannerWidget(),

                        // saved offers
                        SavedOffersWidget(
                            offersController: controller),

                        // search offers here [This is my TextFormField]
                        SearchOffersWidget(offersController: offersController),

                        //  offers in list view
                        NewTestListViewWidget(),
                        15.verticalSpace,
                      ],
                    ),
                  ),
                ),
              ],
            ).marginOnly(top: 50.h),
          ),
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Ijlal Hussain

79721209

Date: 2025-07-31 11:24:18
Score: 3.5
Natty:
Report link

I have read your entire story here and on Git.It would be very kind of you to send me the information so that I don't have to reinvent the wheel.

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

79721207

Date: 2025-07-31 11:23:17
Score: 5
Natty: 5
Report link

If a user's status is hidden from everyone and they are currently online, who can see that they are online?

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

79721206

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

Kubernetes doesn’t support probes for initContainers

You can read more about it here

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

79721191

Date: 2025-07-31 11:17:15
Score: 0.5
Natty:
Report link

You can dive into Kraft. This means learning how to set up what they call a controller node and getting your cluster ID just right. You'll need to find updated examples of docker-compose files and configurations that show you how to do this for the latest Kafka. It's a bit of a learning curve, but it's the future!

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zain Ul Abideen Iftikhar

79721185

Date: 2025-07-31 11:13:13
Score: 0.5
Natty:
Report link

You are using empty []byte slice and there is no space for ReadFromUDP to read data

You should allocate buffer with enough space

buffer := make([]byte, 1024)

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

79721183

Date: 2025-07-31 11:11:13
Score: 0.5
Natty:
Report link

I think this happens when one doesn't import the correct Android project. In my case, I mistook the parent folder the Android project was in as the actual dir and imported that. I resolved it by importing the actual Android project and not the parent dir.

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

79721151

Date: 2025-07-31 10:42:04
Score: 2.5
Natty:
Report link

I am not sure what you exactly need. But, if you just want txt file instead of csv, easiest way is to run this command:
mv your_file.csv your_file.txt

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

79721150

Date: 2025-07-31 10:42:04
Score: 3.5
Natty:
Report link

Check if you have initialized firebase more than once

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

79721149

Date: 2025-07-31 10:40:04
Score: 0.5
Natty:
Report link

Worked for me like this:

<embed src="file.pdf#page=1&zoom=FitB&toolbar=0&statusbar=0&navpanens=0"/>

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

79721146

Date: 2025-07-31 10:39:03
Score: 5
Natty:
Report link

I am facing the error when try to upgrade to android 15

error: failed to load include path D:\AndroidSDK\platforms\android-35\android.jar.

But I have installed the Android 35 (after start facing the error, tried uninstall and reinstall android 35, invalidate caching on android studio, clear the .gradle folder..etc)

Android Studio 2025.1.1 Patch 1

App level gradle

defaultConfig {
        multiDexEnabled true
        applicationId "com.myapp"
        minSdkVersion 21
        targetSdkVersion 35
        versionCode 156
        versionName "3.1.2"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        signingConfig signingConfigs.debug
    }

Project level gradle

repositories {
        google()
        jcenter()
        maven {url "https://jitpack.io"}
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.4.2'
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
        classpath 'com.google.gms:google-services:4.3.14'
        //Safe args
        classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
    }

Is there anyone found a solution?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (1): I am facing the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Waseem

79721135

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

After looking on other forums the reason may be that EWS doesn't support NTLM authentication on cloud but only on prem. I'm still not 100% sure this is the reason why but I'm going to procede by creating a service principal anyway.

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: zacthebigkub

79721128

Date: 2025-07-31 10:22:59
Score: 2.5
Natty:
Report link

I created a python script yolo_to_coco_converter.py that converts yolo dataset in ultralytics format to coco dataset. It's created with copilot+claude sonnet 4, so I might just save you some time you would spend prompting :). Sadly I could not make globox package (that is in accepted answer) work with ultralytics yolo format.

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

79721127

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

Thanks for your contribute. I have a problem with Page Razor... in my application (framework 4.8) use page aspx and does not recognize @Html.ActionLink despite having referenced the namespaces:

@using System.Web.Mvc

@using System.Web.Mvc.Html;

'HtmlHelper' does not contain a definition for 'ActionLink' and the best extension method overload 'LinkExtensions.ActionLink(HtmlHelper, string, string, string, object, object)' requires a receiver of type 'System.Web.Mvc.HtmlHelper'

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • User mentioned (1): @using
  • User mentioned (0): @using
  • Low reputation (1):
Posted by: Nicola Giaquinto