79697970

Date: 2025-07-11 07:16:43
Score: 2.5
Natty:
Report link

If you're okay with ignoring SSL certificate validation disables SSL verification(e.g., for testing):

curl -k https://example.com

or

curl --insecure https://example.com

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

79697965

Date: 2025-07-11 07:11:41
Score: 1
Natty:
Report link

In my case, there are 2 packages: Realm and RealmSwift when adding Realm package to project. After removing the Realm and just keeping RealmSwift in Build Phases settings, my project was build successfully.

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

79697954

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

If you want to merge the changes made only to some of the files changed in a particular commit,
First, you have to find the commit-id of the commit.

Then you can provide the file paths that you need to cherry-pick separated by space as below

git checkout <commit-hash> -- <path/to/file1> <path/to/file2>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ranul Navojith Dayarathne

79697948

Date: 2025-07-11 07:04:39
Score: 1.5
Natty:
Report link

BigQuery’s storage remains immutable at the data block level, but the key architectural change enabling fine-grained DML is the introduction of a transactional layer with delta management on top of these immutable blocks.

Instead of rewriting entire blocks for updates/deletes, BigQuery writes delta records that capture only the changes at a granular level. These deltas are tracked via metadata and logically merged with base data during query execution, providing an up-to-date view without modifying underlying immutable storage.

This design balances the benefits of immutable storage (performance, scalability) with the ability to perform near-transactional, fine-grained data modifications.

You may check this documentation.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: shiro

79697942

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

I just want to append on Remy's answer (as I don't have enough reputation to add a comment):

Passing pointer to the result of TEncoding.Default.GetBytes into C is highly dangerous and buggy.

The result bytes are not zero terminated.

Possible fix is zero terminating the buffer yourself, such as:

SetLength(buffer, Length(buffer) + 1);
buffer[High(buffer)] := 0;
Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29880284

79697941

Date: 2025-07-11 06:59:38
Score: 3.5
Natty:
Report link

I also missed that part, thats really helpful, thanks @ermiya-eskandary.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Yougeshwar Khatri

79697940

Date: 2025-07-11 06:58:37
Score: 1
Natty:
Report link

Based off a comment from @Jon Spring, adding spaces with paste0 fixes the issue.

This is related to a known bug: https://github.com/thomasp85/gganimate/issues/512

library(dplyr)
library(ggplot2)
library(gganimate)
library(scales)
library(lubridate)


Minimum_Viable <- tibble(
  AreaCode = c("A", "A", "B", "B"),
  Date = c(ymd("2022-11-24"), ymd("2025-05-08"), ymd("2022-11-24"), ymd("2025-05-08")),
  Value = c(56800, 54000, 58000, 62000)
) %>%
  mutate(Label = label_comma()(Value))

#contains issue
Animation_Test <- ggplot(Minimum_Viable,
                         aes(x = Date, y = Value, label = Label)) +
  geom_line(color = "red") +
  geom_point(color = "red") +
  geom_label() +
  labs(title = "{closest_state} Value") +
  transition_states(AreaCode,
                    transition_length = 1,
                    state_length = 2) +
  theme_minimal()

#use paste0 on the label to fix it.
Minimum_Viable <- Minimum_Viable %>%
mutate(Label_Workaround = paste0(" ", Label))

#now snaps to nearest value
Animation_Workaround <- ggplot(Minimum_Viable,
                         aes(x = Date, y = Value, label = Label_Workaround)) +
  geom_line(color = "red") +
  geom_point(color = "red") +
  geom_label() +
  labs(title = "{closest_state} Value") +
  transition_states(AreaCode,
                    transition_length = 1,
                    state_length = 2) +
  theme_minimal()
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jon
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tom H

79697939

Date: 2025-07-11 06:57:36
Score: 11
Natty: 6
Report link

I'm also facing the same issue so Can you Please help me with the solution!

I have explained it in detail in my Post, here is the Link :

https://discuss.frappe.io/t/websocket-wss-org-socket-io-eio-4-transport-websocket-sid-qbex6kp7y3qhkbupaaae-failed/149629?u=anshiv10

Eagerly waiting for your Response!

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): here is the Link
  • RegEx Blacklisted phrase (3): Can you Please help me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Low reputation (1):
Posted by: Anshiv Dixit

79697938

Date: 2025-07-11 06:55:35
Score: 1
Natty:
Report link

<div class="console-body"> <div class="message-area" id="message Área"> <div class="controls"> <button class="control-btn" onclick="clearMessages()">🗑️ Limpiar</button> <button class="control-btn" onclick="toggleAutoReply()" id="autoReplyBtn">🤖 Auto-respuesta</button> <button class="control-btn" onclick="exportMessages()">📥 Exportar</button> <button class="control-btn" onkeypress="handleEnterKey(event)💬⚙️ Sistema</button> </div> <div class="message system-message"> <div class="message-header"> <span>🔧 Sistema</span> <span class="message-time" id="systemTime"></span> </div> <div class="message-content"> Consola de mensajes iniciada. ¡Bienvenido! </div> </div> <div class="typing-indicator" id="typingIndicator"> <div class="message-content"> Escribiendo <div class="typing-dots"> <div class="dot"></div> <div class="dot"></div> <div class="dot"></div> </div> </div> </div> </div> <div class="input-area"> <div class="input-container"> <input type="text" class="message-input" id="messageInput" placeholder="Escribe tu mensaje aquí..." " > <button class="send-button" onclick="sendMessage()"> ➤ </button> </div> </div> </div> </div> <script>/free-code-camp/people/onkeypress="handleEnterKey(event)

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

79697935

Date: 2025-07-11 06:50:34
Score: 2.5
Natty:
Report link

I found the problem. A very good friend of mine had the idea to use the ANR Watchdog from SalomonBrys to get the logs I was missing to find the problem. Check it out https://github.com/SalomonBrys/ANR-WatchDog.

The WatchDog revealed that an infinity loop existed in an old part of the App. That loop created preasure on the main thread. After removing the loop everything works as expected and I can sleep again.

Thanks to everyone for suggesting and putting your thoughts into this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): Check it out
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Emanuel

79697933

Date: 2025-07-11 06:49:33
Score: 5.5
Natty: 6.5
Report link

Although old, this is the closest to what I'm looking for.

I have unstructured data (for example char 512) which I need to address as a structure. I use RTTS to create the structure and a new data reference with that structure.

The part I struggle with is finding a way to move the unstructured data to the dref (or address the original data using a typed field symbol). I want to avoid using offsets and lengths to make a conversion.

Any revelations?

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Bill

79697932

Date: 2025-07-11 06:48:33
Score: 5.5
Natty:
Report link

I am facing same issue can you please conform if you have any answers here is the error

We are sorry...

Restart login cookie not found. It may have expired; it may have been deleted or cookies are disabled in your browser. If cookies are disabled then enable them. Click Back to Application to login again.

Reasons:
  • RegEx Blacklisted phrase (1): I am facing same issue can you please
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Low reputation (1):
Posted by: Vaibhav Bhinge

79697929

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

The problem was solved by:

the metro.config.json:

const { getDefaultConfig } = require('expo/metro-config');
const path = require('path');

// Get the project root
const projectRoot = __dirname;
// Get the monorepo root
const monorepoRoot = path.resolve(projectRoot, '../..');

const config = getDefaultConfig(projectRoot);

// Configure for monorepo
config.watchFolders = [monorepoRoot];
config.resolver.nodeModulesPaths = [
  path.resolve(projectRoot, 'node_modules'),
  path.resolve(monorepoRoot, 'node_modules'),
];

module.exports = config;
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Işıl Bardakcı

79697918

Date: 2025-07-11 06:32:28
Score: 3
Natty:
Report link

I've met the same issue. Xcode version 26.0 beta 3 (17A5276g). It seems that Xcode 16.4 build correctly.

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

79697908

Date: 2025-07-11 06:23:26
Score: 3
Natty:
Report link

Using the above example, I have a requirement for an alternative flow condition to run B and then C.

So three conditions exists

A -> decider -> B (SOMECONDITION)  
A -> decider -> C (OTHERCONDITION)  
A -> decider -> B -> C (BOTHCONDITION)

How can the above be changed to add this additional flow?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Andrew Kassis

79697897

Date: 2025-07-11 06:12:23
Score: 3
Natty:
Report link

Not working with the above still error coming. I closed and restarted Visual Studio. By the way I have Microsoft Visual Studio Professional 2022 (64-bit) Version 17.11.4

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

79697896

Date: 2025-07-11 06:12:23
Score: 2.5
Natty:
Report link

After trying many solution, installing below package fixed the problem on Ubuntu 24.04.

sudo apt install ubuntu-restricted-extras

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Habib Mhamadi

79697892

Date: 2025-07-11 06:10:22
Score: 3.5
Natty:
Report link

See "dataFilter" which is a function which modifies the returned data.

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

79697869

Date: 2025-07-11 05:38:15
Score: 2.5
Natty:
Report link

While decrypting, I realized I was creating a serialized license, which was unnecessary. The serialized license is already generated during encryption and should be reused during decryption.

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

79697864

Date: 2025-07-11 05:29:13
Score: 4.5
Natty:
Report link

Please try adding "--enable-hive-sync"

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: amarjit Singh

79697861

Date: 2025-07-11 05:28:12
Score: 1.5
Natty:
Report link
final activityID = await _liveActivitiesPlugin.createActivity(activityModel,
    removeWhenAppIsKilled: true);

this is work only android but IOS didin't

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

79697851

Date: 2025-07-11 05:09:08
Score: 1
Natty:
Report link

The endpoint `https://developer.api.autodesk.com/oss/v2/buckets/${bucketKey}/objects/${objectName}` you used has been deprecated for a while, please use direct S3 to upload:

  1. GET oss/v2/buckets/:bucketKey/objects/:objectKey/signeds3upload

  2. Upload the file to S3 using the pre-signed S3 URL obtained above.

  3. POST oss/v2/buckets/:bucketKey/objects/:objectKey/signeds3upload

ref: https://aps.autodesk.com/blog/object-storage-service-oss-api-deprecating-v1-endpoints

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

79697840

Date: 2025-07-11 04:53:00
Score: 1
Natty:
Report link

Your Scontrino Class Contain LocalDateTime and Map<Aritcolo,Integer> with jackson the josan serializer used by springboot can not deserielised properly out of the box without help espically Map<Articolo,Integer> using entity as key

Using Long and String as a key

and refoctor your qulita to DTO's like

class AritcoloQualita{

private long aritcoloId;

private int qualita;

}

add jaskon datatype

<dependency>

<groupId >com.fasterxml.json.datatype</grouId>

<artifactId>json-datatype-jsr-310</artifacrId>

</groupId>

public Jackson20ObjectMapperBuilderCustomer jsonCustomer(){

return builder-> builder.modules(new JavaTimeModules)}

class scontrioRequestDTO{private LocalDateTime data ,

private Map<Long ,Integer> quantita}

public Scontrino cre(@RequestBody ScontrinoRequestDto dto){return Sentrio Service.cre(dto)}

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

79697837

Date: 2025-07-11 04:50:59
Score: 0.5
Natty:
Report link

This is an old thread, but for others looking for an explanation, I'm in this situation now. After looking at the branch I want to switch to at GitHub, I can see that a single line in a file I want to switch to has different content than that line on the current branch (the one I want to switch away from). Git reports "nothing to commit" because that file is ignored.

For the OP, considering the long list of files you had, and the fact that forcing things did no harm, my guess is that you modified the files in the current branch in some trivial way, like changing the file encoding or the EOL character.

There are some suggestions about handling this situation here: Git is deleting an ignored file when i switch branches

Unfortunately, my situation is more complex. I have three branches: master, dev, and test. The file is ignored in both dev and test, so I can switch between them at will. I just can't ever switch to master. I have remotes for all three branches and I'm the only developer. I'm sure there's a way to fix this without messing things up, but I'm not sure what would insure that in the future I can merge one of the other branches into master and still push master to the remote.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
Posted by: Bob Ray

79697817

Date: 2025-07-11 04:19:49
Score: 1
Natty:
Report link

scan 'table_name', {COLUMNS => ["columnfamily:column1", "columnfamily:column2"], FILTER => "SingleColumnValueFilter('columnfamily', 'columnname', operator, 'binary:value_you_are_looking_for')"}

'column1' or 'column2' refer to your actual column names.

'columnfamily' is the column family you defined while creating the table.

SingleColumnValueFilter is used to apply a condition on a single column.

operator can be a comparison symbol like =, !=, <, >, etc.

'binary' is a keyword used to ensure the value is compared as binary data.

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

79697815

Date: 2025-07-11 04:15:48
Score: 3
Natty:
Report link

I disabled all extensions in VS 2022 and restarted it. Now, it's working without any issues.

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

79697813

Date: 2025-07-11 04:09:47
Score: 4.5
Natty:
Report link

Not an answer to your question but I am unable to comment yet. Just thought I'd chime in and say you can clean this up a bit by putting those examples directly on ErrorBody type.

type ErrorBody = {
    /**
    * @example "https://someurl.com"
    **/
    type: string,
    /**
    * @example 409
    **/
    status: 400 | 401 | ...,
    /**
    * @example "error/409-error-one-hundred-and-fifty"
    **/
    code: string,
    /**
    * @example "This is an example of another error"
    **/
    title: string,
    /**
    * @example "You should provide error detail for all errors"
    **/
    detail: string
}

Then your endpoints can become:

@Response<ErrorBody>('409', 'A 409 error')
@Response<ErrorBody>('4XX', 'A 4xx error called fred')

I am also looking for an answer to this problem. I want all my API error responses to conform to the application/problem+json type response that can be found in this spec. I don't want to manually write out every possible @Response decorator though. I wish you could do something like:

@Response<ErrorBody>( ErrorStatusCodeEnum, 'An error' );

Where ErrorBody would now have the form

type ErrorBody = {
    /**
    * @example "https://someurl.com"
    **/
    type: string,
    /**
    * @example 409
    **/
    status: ErrorStatusCodeEnum,
    /**
    * @example "error/409-error-one-hundred-and-fifty"
    **/
    code: string,
    /**
    * @example "This is an example of another error"
    **/
    title: string,
    /**
    * @example "You should provide error detail for all errors"
    **/
    detail: string
}

and TSOA would map that to all possible error codes in the enum.

Reasons:
  • Blacklisted phrase (1): Not an answer
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (2): I am also looking
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ra.jar

79697811

Date: 2025-07-11 04:08:38
Score: 2.5
Natty:
Report link

Wish I could elaborate more on the matter. At hand that's not possible important information has been deleted by whom ever on other devices I've had and I'm being blocked from the information I seek I know it's there I've got some that prov I'm thinking investigator fcc local and federal

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

79697796

Date: 2025-07-11 03:38:32
Score: 1
Natty:
Report link

Yes, this setting is simple and effective.

It is just that the ratio you choose may be too small, and the final learning rate may be almost 0, causing the model to converge too early. For example, start_lr = 1e-2, ratio = 1e-4 ➜ final_lr = 1e-6.

Perhaps you can increase the range of ratio a little bit, for example

ratio = trial.suggest_loguniform("lr_ratio", 1e-2, 0.5)

You can make appropriate adjustments according to your experimental situation.

Please refer to it, thank you.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CNLiu

79697790

Date: 2025-07-11 03:27:29
Score: 3.5
Natty:
Report link

If your user account employs multifactor authentication (MFA), make sure the Show Advanced checkbox isn't checked.

Login options

https://learn.microsoft.com/en-us/power-apps/developer/data-platform/tutorial-write-plug-in#connect-using-the-plug-in-registration-tool

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

79697789

Date: 2025-07-11 03:25:29
Score: 2.5
Natty:
Report link

I used this codelab and did what was said and it worked.
https://codelabs.developers.google.com/codelabs/community-visualization/#0

The path used in the manifest should be the gs:// instead of the https:// path.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rubelia Kelly

79697783

Date: 2025-07-11 03:20:27
Score: 1.5
Natty:
Report link

def docstring(functionname):

\# Write your code here

help(functionname)

if _name_ == '_main_':

x = input()

docstring(x)

Only 5/10 test cases passing rest my hidden test cases are failing

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

79697766

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

I just needed to update my browsers to the latest version .

Microsoft Edge is up to date. Version 138.0.3351.83 (Official build) (64-bit)

Chrome is up to date Version 138.0.7204.101 (Official Build) (64-bit)

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

79697763

Date: 2025-07-11 02:22:16
Score: 2.5
Natty:
Report link

View tables inside namespace:
list_namespace_tables "namespace_name"

In place of "namespace_name" type your namespace.

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

79697759

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

Ancient question... but I recently learned that if you are creating a Project-based Time Activity and you set an Earning Type in the request, Acumatica will blank out the project task.

The solution in this case is to set all fields except the project related ones, grab the ID of the created row, and follow up with a new request to set the Project and Task on just that row.

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

79697754

Date: 2025-07-11 02:02:11
Score: 4
Natty:
Report link

As another way, you may consider indexedDB.

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

79697744

Date: 2025-07-11 01:36:06
Score: 2
Natty:
Report link

I

If this happens in SoapUI then:

On the Message Editor, just below the request message window click on button WS-A. Then select the checkbox Add default wsa:To

source: https://exchangetuts.com/getting-addressfilter-mismatch-at-the-endpointdispatcher-in-soapui-request-1639797743828202

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

79697741

Date: 2025-07-11 01:32:05
Score: 3
Natty:
Report link

Have you checked whether the file unins000.exe mentioned in the pop-up window exists? Also, have you tried reinstalling vscode?

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

79697740

Date: 2025-07-11 01:32:05
Score: 1
Natty:
Report link

We've got the same error when we tried to download results generated by our custom GPT. We've then enabled the Code Interpreter & Data Analysis under Capabilities, and it seems to solve the issue.

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

79697735

Date: 2025-07-11 01:25:03
Score: 3
Natty:
Report link

I use ActivityView on Android11 successful ,but on Android12 failed. Maybe Google remove the Api from Andoird12.

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

79697733

Date: 2025-07-11 01:22:02
Score: 2
Natty:
Report link

/style.css"> </head> <body> <div class="container"> <h1>Nhận Kim Cương Free Fire</h1> <form action="spin.php" method="post"> <input type="text" name="ff_id" placeholder="Nhập ID Free Fire" required><br> <button type="submit">Tiếp tục</button> </form> <a href="wheel.php" class="btn">Vòng quay KC miễn phí</a><br> <a href="gift.php" class="btn">Nhận skin, súng miễn phí</a> </div> </body> </html> """ spin_php = """ <?php if ($_SERVER["

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hieu.1 Acc

79697730

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

my co-worker already solved it.

I just used, py -m pip install robotframework

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

79697718

Date: 2025-07-11 00:47:55
Score: 2.5
Natty:
Report link

You might try ading this into Spring boot's application.yaml as shown here https://www.baeldung.com/mysql-jdbc-timezone-spring-boot

spring.jpa.properties.hibernate.jdbc.time_zone=UTC
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SteWood

79697706

Date: 2025-07-11 00:28:51
Score: 0.5
Natty:
Report link

Clearing SSMS cache fix the problem:

Close all SSMS instances and remove all the files in the following folders: %USERPROFILE%\AppData\Local\Microsoft\SQL Server Management Studio or SSMS in new versions and %USERPROFILE%\AppData\Roaming\Microsoft\SQL Server Management Studio or SSMS.

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

79697684

Date: 2025-07-10 23:37:39
Score: 0.5
Natty:
Report link

The workaround I found is:

git fetch st develop
git cherry-pick -Xsubtree=foo <first_commit_to_cherry-pick>^..FETCH_HEAD

You have to deduce <first_commit_to_cherry-pick> manually, though.

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

79697679

Date: 2025-07-10 23:24:36
Score: 0.5
Natty:
Report link

I faced this problem on this day and to this day there was no answer that worked for me, so this is what i did to solve it for myself;
setup TCP outbound Rules on my firewall.
and upgraded my Node version.
Hope it helps
Assuming ofc, you applied all the mentioned stuff about whitelisting your IP add... and it still did not work

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): Hope it helps
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: z4kk4

79697677

Date: 2025-07-10 23:15:34
Score: 0.5
Natty:
Report link

I came across this question because I was trying to clear my 0.1% of doubt, but my opinion is that concatenation and set product are different notations of the same concept. Just like like subscripts and indices are just a different notation for functions (usually over discrete sets).

That said, set/cross product is a better notation when the sets have some operations that carry over to the product, for example by taking the direct sum of simple number fields with themselves you get a vector space. With concatenation notation it's a bit difficult to clearly denote the operations.

Example: Imagine having a one-time pad or carryless addition like operation on strings so that you can sum "cat" and "dog", then in set product notation "(cat,1) + (dog, 2) = (cat + dog, 1+2)" but in concatenation notation you get "cat1 + dog2 = cat+dog1+2" which doesn't make sense unless you allow something like parenthesis in the concatenation notation so that you can do "(cat+dog)(1+2)", which now is the same as the set product notation where ")(" is simply replaced with ",".

Note: carryless addition is indeed the direct sum of bitstrings with XOR as addition operation, so it can be done.
However, I wouldn't go as far as to say the direct sum is always a special case of set product.
Direct sum can be defined by property of the operations instead of by construction, you might then be able to find an example of direct sum that is not built on a set product, but the most common direct sums that you immediately think of is a set product together with a new operation.

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

79697670

Date: 2025-07-10 23:05:32
Score: 2.5
Natty:
Report link

wel, bought a new Mac mini and was trying to setup sharing to my raspberry and then worry of everything else...

go figure above step 7 for smb encryption kept me from being able to figure out what was wrong for a few days.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Matt Thompson

79697669

Date: 2025-07-10 23:05:32
Score: 1
Natty:
Report link

Newly created accounts can't add comments, so I'm writing in the reply form. I ran into the same problem about 10 days ago. Just a regular Google account, not a workspace, was registered a long time ago, and an error about lack of space began to appear. After receiving additional information via Google Drive API, I saw that storageQuota.limit = 0, while there is disk space on drive.google.com

Part of the response: 'storageQuota': {'limit': '0', 'usage': '3040221', 'usageInDrive': '3040221', 'usageInDriveTrash': '0'}
Service Accounts do not have storage quota. Leverage shared drives.

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

79697660

Date: 2025-07-10 22:47:27
Score: 2.5
Natty:
Report link

Synchronous mode only executes JavaScript code AFTER the Ajax (XMLHTTPRequest) request has completed SUCCESSFULLY, if the request fails, nothing more will execute and your website will fail to function. And for the problem why you can't access Asynchronous mode is beyond me.

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

79697659

Date: 2025-07-10 22:46:27
Score: 1
Natty:
Report link

fix the css file like that. it will work well and I don't understand why do you need the "snap-inline" class.

.media-scroller {
  ...
  padding : 0px 10px;
  ...
}

.snaps-inline {
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alberto John

79697656

Date: 2025-07-10 22:40:25
Score: 10.5
Natty: 6
Report link

Have you figured it out for background call notifications? Please help me with also if you have solved, I am also searching for months and cannot implement it

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (3): Have you figured it out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mehar Ali

79697653

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

I think you are looking for this? https://developers.google.com/pay/issuers/apis/push-provisioning/web

This is Google's Web Push provisioning API that does exactly what you've asked - allows users to add cards to Google Wallet from a website.

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

79697652

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

I am debugging an ms addin while running Office 365 in the browser.
xdminfo, as well as baseFrameName, are different every time I open the document.
So they're completely useless to find what the id of a document is. Any idea to get a proper ID will be greatly appreciated - and not just in a web context...

Reasons:
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Thibault Jamme

79697647

Date: 2025-07-10 22:17:19
Score: 1
Natty:
Report link

Update your config default key to uppercase.

theme: {
  radius: {
    DEFAULT: 'md',
  }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Melvin Kosisochukwu

79697644

Date: 2025-07-10 22:15:18
Score: 1
Natty:
Report link

As an update and to complement Alex's answer, this option is not working properly using seaborn

sns.scatterplot(
    data=tips,
    x="total_bill",
    y="tip",
    c=kernel,
    cmap="viridis",
    ax=ax,
)

Use instead:

  plt.scatter(tips["total_bill"], tips["tip"], c=kernel, cmap='viridis')
Reasons:
  • Blacklisted phrase (0.5): not working properly
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luis Lizcano

79697643

Date: 2025-07-10 22:11:17
Score: 1.5
Natty:
Report link

Have been experiencing the same issue myself. Have not found a solution besides either removing the relationship, or disabling Incremental Refresh altogether for the table on the one-side of a One:Many relationship.

The issue occurs when a record that already exists in a historical partition is changed/updated. That triggers the record to be loaded into a new partition, and for that split-second, Power BI sees it as two (duplicate) values and kills the refresh. Adding extra deduplication steps in Power Query/SQL will not fix the issue, since it is caused when the Power BI service partitions the data. Refreshes succeed just fine locally in Power BI desktop- there are no real duplicates in the source.

Setup in my use case is a 2 year archive, with the incremental refresh period set to 3 days. It uses a static CREATEDDATETIME field for each record. Also using Detect data changes on a LASTMODIFIED field, to account for records created a while back that may be updated later on. Works like a charm for all of my tables on the Many-side of any One:Many relationships.

Ultimately, the one-sided tables are usually smaller (in theory) so the cost of disabling incremental refresh is typically not prohibitive.

Reasons:
  • RegEx Blacklisted phrase (1): Have not found a solution
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: rgabriel

79697638

Date: 2025-07-10 22:02:15
Score: 2.5
Natty:
Report link

Whoever downvoted this question, would be great to know the reason.
It is a legitimate question, it actually saved my life after working on a legacy project so many hours figuring out why the system navigation bar was still showing even after applying the enableEdgeToEdge() functionality as described in the official docs.

I am really glad I found this question/answer otherwise it would have taken me forever to actually get the culprit.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • No code block (0.5):
Posted by: Pablo Valdes

79697637

Date: 2025-07-10 21:59:14
Score: 2
Natty:
Report link

One other gotcha - I used right-click -> script table as insert to... and used that for the import from a backup table, but still got the error even with SET IDENTITY_INSERT tablename ON, because the script creation automatically skipped the identity column. Insert succeeded once I add the column back into the insert and select parts of the statement.

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

79697631

Date: 2025-07-10 21:49:12
Score: 3
Natty:
Report link

In my case, changing the Minimum Deployment from iOS 16 to 17 worked.

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

79697623

Date: 2025-07-10 21:38:10
Score: 0.5
Natty:
Report link

First of all, make sure that ack is -1 and idempotence is true, because one will get ConfigException, saying that "ack must be all in order to use idempotent producer"

The consumer in the listener container will read the same message again, because consumer position will be reset by method recordAfterRollback of ListenerConsumer, when tx is rolled back on exception.

Commiting offset (via producer's sendOffsetsToTransaction) and sending message via kafka template is done in the same kafka transaction and the same producer instance.

If you're worried about duplicates in the topic, which may occur, set isolation.level for your consumers = read_committed, this will make consumers read only committed messages.
You can read about kafka transactions and how it works here

Also, since you're inserting something in a database, read how to sync jdbc and kafka transactions here. Because KafkaTransactionManager can't cover this alone.

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

79697613

Date: 2025-07-10 21:20:06
Score: 1
Natty:
Report link

You are not specifying a region in your AWS CLI call. S3 is "global", so you will see your buckets in any region. However, you'll need to specify --region eu-west-1, the same region you have deployed your REST API with Terraform, to be able to see it in your response.

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

79697609

Date: 2025-07-10 21:14:04
Score: 2
Natty:
Report link

I was having issues with this but downgrading Remote - SSH: Editing Configuration Files fixed the issue for me

enter image description here

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

79697602

Date: 2025-07-10 21:06:02
Score: 0.5
Natty:
Report link
import $ from "jquery";
const rootApp = document.getElementById("root");
rootApp.innerHTML = '<button >ON</button>';
console.log(rootApp.querySelector("button").innerHTML)


let button = rootApp
console.log(button.innerHTML)
console.log(button)
rootApp.querySelector("button").addEventListener("click", ()=>{
  if(rootApp.querySelector("button").innerHTML == "ON"){
      rootApp.querySelector("button").innerHTML = "OFF"
      console.log("oN")
  }
  else{
    rootApp.querySelector("button").innerHTML = "ON" 
  }
  return button.innerHTML
})
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rushii

79697594

Date: 2025-07-10 20:57:00
Score: 1
Natty:
Report link
print("Folder exists:", os.path.exists(folder))

Pls confirm that the folder path is correct and then if it is correct path, pls debug the code with debugging. I think your code would run if the path is correct.

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

79697584

Date: 2025-07-10 20:43:57
Score: 3
Natty:
Report link

I did a poor job managing my environment and branches. Comments from the staging ground helped me realize that I could just change the default branch in GitHub and rename them. Trivial query, but I am learning more about git as a result.

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

79697578

Date: 2025-07-10 20:38:56
Score: 0.5
Natty:
Report link

Managed to get it working by creating a zip file using ZipFile and adding the stuff I wanted in order, and with the directories I ran a for loop over the directory to add all the files inside of it onto new directories I created inside the zip file.

Example code here:

os.chdir("foo\bar")
with ZipFile("foobar.zip", "w", ZIP_STORED) as foo:
    foo.write("mimetype")
    foo.close()
with ZipFile("foobar.zip", "a", ZIP_STORED) as foo:
    for file in os.listdir("directory1"):
        fullPath = os.path.join("directory1", file)
        foo.write(fullPath)

os.replace("foobar.zip", "foo/bar/foobar.epub")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ironfort 9

79697562

Date: 2025-07-10 20:21:50
Score: 8
Natty: 5.5
Report link

@bh6 Hello, apologies for reaching out this way, but would it be possible for you and I to discuss a previous project you did? Specifically this one right here https://electronics.stackexchange.com/questions/555541/12v-4-pin-noctua-nf-a8-on-raspberry-pi-4b

I have some questions about how you got the external power supply working. Please reach out to me at [email protected], thank you in advance!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (3): thank you in advance
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @bh6
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Erik Duarte

79697558

Date: 2025-07-10 20:18:49
Score: 5.5
Natty: 4.5
Report link

Я тоже столкнулся с такой проблемой.

На сайте идет обратный отсчет таймером. Я слежу за этим таймером. Через минуту обновляю страницу. Но когда вкладка не активна, скрипт перестает следить!

Не нашел более свежего вопроса, поэтому пишу тут.

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

79697540

Date: 2025-07-10 19:58:44
Score: 3.5
Natty:
Report link

To get the normal user interface you see in videos where all these problems I mentioned won't be faced you need to change the user interface: menu --> switch to classic user interface

enter image description here

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

79697530

Date: 2025-07-10 19:39:40
Score: 0.5
Natty:
Report link

enter image description here

  1. Go to your Dart SDK folder and open the ndk directory.

  2. Inside, you may find multiple NDK versions. Identify the latest version based on the name.

  3. Copy the latest NDK version number, for example, 29.0.13599879.

    enter image description here

  4. In your Flutter project, navigate to the build.gradle or build.gradle.kts file at the app level.

  5. Locate the android section and find the line:
    ndkVersion = flutter.ndkVersion

  6. replace with
    ndkVersion = "29.0.13599879"

  7. After making this change, run flutter clean and then pub get to ensure your project recognizes the updated NDK.

  8. Enjoy

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

79697527

Date: 2025-07-10 19:38:39
Score: 4
Natty: 4.5
Report link

Is there an updated version of this answer? I am trying to install SAP Hana Tools on Eclipse 2025-6 on an M1 Mac. I am using Java SE 24.0.1 as the jdk driver. I have tried installing the x86_64 and AArch64. When trying to install SAP Hana tools from https://tools.hana.ondemand.com/kepler, I am getting missing requirement: 'org.eclipse.equinox.p2.iu; org.eclipse.emf.mwe.core.feature.group 1.2.1' but it could not be found.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there an
  • Low reputation (1):
Posted by: Alexandra Walker

79697522

Date: 2025-07-10 19:36:38
Score: 1
Natty:
Report link

Same issue faced within my project, here is my learning cove and solution,

why this issue,

It's common to face issues when running an older Flutter project with an updated Flutter SDK and Dart version, especially regarding the Android build. This is because Flutter continuously evolves, and with major updates, there are often breaking changes, particularly in the Android embedding (how Flutter integrates with Android native code) and Gradle configurations

1, Make sure to get a copy of our project( that is optional to save your cofigs)

2, delete android folder

rm -rf android

3,Recreate the Android project files:

flutter create .

4, if you previously used any configs like firebase you need to add those again to android folder,

5, rebuild your app

flutter clean
flutter pub get
flutter run
Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sajith Madushanka

79697488

Date: 2025-07-10 18:49:27
Score: 2.5
Natty:
Report link

In case you're going crazy trying to debug this error message (as I was), it turned out I was using a foreign data wrapper to another database that had a much lower setting for idle_in_transaction_session_timeout.

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

79697483

Date: 2025-07-10 18:43:25
Score: 1
Natty:
Report link

In port 5060, you should see ERR_UNSAFE_PORT which is normal because google thinks the localhost:5060 is an unsafe port by default. Change your port to one of the following, preferably 3000:

Port Comment
3000 Common for dev
5000 Used in Flask
8080 Classic alt port
5173 Vite default
8000 Django, etc.

Also I see that your listening to https://www.youtube.com/watch?v=6BozpmSjk-Y&ab_channel=dcode because I was also and found the same problem.

for /* in

app.get("/*", (req, res) => {

you should update this to

app.get("/:catchAll(*)", (req, res) => {

because /* doesn't work anymore in the newer versions. If you have more questions/problems ask chatgpt...

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chenhe Xu

79697482

Date: 2025-07-10 18:42:24
Score: 2
Natty:
Report link

Have you tried converting your connections into project based?

Right click connection and select "Convert to Project Connection"

Redeploy and test

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alonso

79697471

Date: 2025-07-10 18:30:21
Score: 2.5
Natty:
Report link

disjunction, substract, intersection such opertions in discrete mathematics
to find differences or same elements of collection

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Сергій Годзевич

79697470

Date: 2025-07-10 18:27:21
Score: 2
Natty:
Report link

Just Giving Zero-margin helps to remove the gap in top

ul {
    margin: 0;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Santhosh S

79697468

Date: 2025-07-10 18:26:21
Score: 1.5
Natty:
Report link

Note also that 0.1 rad is about 5.72958°, so that might be a rather big step depending on what you want to do. If you want to use degrees, stick to degrees, and only convert the angle to radians when you need to calculate some sin or cos - @Thierry Lathuille

Updated Code:

 time.sleep(2)
    radius = 110#px
    angle  = 90
    step=0
    
    while True:
        x= radius * math.cos((math.radians(angle)))
        y = radius * math.sin((math.radians(-angle)))
        win32api.SetCursorPos((int( x+xcentre),int(y+ycentre)))
        
    
        
        if math.radians(angle) >= 2*math.pi  + math.pi/2:
            break
        mx,my = pyautogui.position()
        if (angle - 90)%cycles==0:
            print("black")
            pyautogui.mouseDown(button='left')
            position_list.append(mx)
            position_list.append(my)
            time.sleep(1)

        

        angle+=1
    pyautogui.mouseUp(button='left')
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Thierry
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: dd wave king

79697464

Date: 2025-07-10 18:23:20
Score: 3
Natty:
Report link

this was marked as a duplicate of this issue, which has unfortunately been around since 2017

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: skyleguy

79697454

Date: 2025-07-10 18:15:17
Score: 0.5
Natty:
Report link

If you use the enhanced flow (GetCredentialsForIdentity) a scope down policy is applied to all guest identities which doesn't include Bedrock.

In order to allow guest identities to access Bedrock, you need to use the classic flow (GetOpenIdToken and STS AssumeRoleWithWebIdentity) that doesn't apply the scope down policy.

With that said, I would not recommend giving guest users access to Bedrock, bad actors can create any number of guests and run up your Bedrock bill.

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

79697452

Date: 2025-07-10 18:11:16
Score: 2
Natty:
Report link

Edge and Chrome may render font-weight differently due to their font engines. Use specific font weights (e.g., 400, 700) and test across browsers for consistency.

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

79697448

Date: 2025-07-10 18:08:16
Score: 2
Natty:
Report link

How To Use Black Apps Script — quick tip for global search.

It took me a second to figure out how to search across files after installing the extension. It’s not true global search in one view, but it gets the job done. Super handy once you know how to use it:

1. Press Ctrl + F while in the Apps Script IDE to open the legacy search bar (this is the normal/standard way)
2. Search for a term (e.g., "folder"). It will show results on the current file.
3. On the legacy search bar, click the magnifying glass just to the left of the search term box — this reveals a second row.
4. Use the left/right arrows on that second row to jump between files and continue the keyword search in each file.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How To Use
  • Low reputation (1):
Posted by: Scott

79697438

Date: 2025-07-10 17:54:13
Score: 1
Natty:
Report link

{</>play hacker the blockman go / (% if request.path == '/contact/' %}

\<p\>You are in Contact\</p\>

{% elif request.path == '/shop/' %}

\<p\>You are in Shop\</p\>

{% endif %}go play .+

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 俠客家明

79697437

Date: 2025-07-10 17:53:12
Score: 1.5
Natty:
Report link

Google Cloud Source Repository doesn't seem to link the HEAD to a non-master default branch from the mirrored GitHub repo. I was working with ArgoCD and it does a ls-remote to HEAD branch for the testing before establishing the connection successfully.

I have cut out a master branch from my default branch and pushed in the origin and that solved my issue.

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

79697421

Date: 2025-07-10 17:41:09
Score: 3
Natty:
Report link

Just add the folowing

And Change the SD to SDFS. then it will work

#include "sdfs.h"

server.on("/getdata", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(SDFS, "/subj1_1.txt", "text/plain");
});

A example you can find at the folowing location https://github.com/EmileSpecialProducts/portable-Async-disk-drive

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

79697408

Date: 2025-07-10 17:27:05
Score: 2.5
Natty:
Report link

from PIL import Image

import numpy as np

# Let's check the folder to see what files are available

import os

files = os.listdir("/mnt/data")

files

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

79697384

Date: 2025-07-10 17:06:00
Score: 3
Natty:
Report link

The command on the ubuntu website is for linux, not for windows.

This article explains the command (sha256)https://www.shellhacks.com/windows-md5-sha256-checksum-built-in-utility/

If the result matches with the part after "echo", your file should be ok.

Reasons:
  • Blacklisted phrase (1): This article
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: megahertz

79697383

Date: 2025-07-10 17:05:00
Score: 3
Natty:
Report link

I have create an issue 17513 for this request in Bicep repo, so I am marking this as complete for now.

But as @developer said in the comments, it could be possible via DevOps pipeline or something similar, but not fully as Bicep.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @developer
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Guilherme Matheus

79697377

Date: 2025-07-10 16:55:59
Score: 2
Natty:
Report link
Here's a simple Python example of an interview bot for nursing scholarship preparation. It asks common questions and collects the user's answers:
 
def nursing_scholarship_interview():
    print("Welcome to the Nursing Scholarship Interview Practice Bot!")
    questions = [
        "Tell me about yourself and why you want to pursue nursing.",
        "What are your greatest strengths as a nursing student?",
        "Describe a challenging situation and how you handled it.",
        "Why do you deserve this scholarship?",
        "Where do you see yourself in five years as a nurse?"
    ]
    answers = {}

    for q in questions:
        print("\n" + q)
        answer = input("Your answer: ")
        answers[q] = answer

    print("\nThank you for practicing! Here's a summary of your answers:")
    for q, a in answers.items():
        print(f"\nQ: {q}\nA: {a}")

if __name__ == "__main__":
    nursing_scholarship_interview()
 
 
You can run this script in any Python environment. It simulates an interview by asking questions and letting the user type answers. Would you like me to help you expand it with features like timed answers or feedback?
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: rashidi rashid

79697373

Date: 2025-07-10 16:53:58
Score: 4.5
Natty:
Report link
# self_learning_ea_system.py

import spacy
import numpy as np
import networkx as nx
import pickle
import os
import json
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score
from tensorflow import keras
from tensorflow.keras import layers
from sentence_transformers import SentenceTransformer

# --- 1. Knowledge Graph using triples + networkx

class KnowledgeGraph:
    def __init__(self):
        self.triples = []  # (s, r, o)
        self.graph = nx.DiGraph()

    def update(self, s, r, o):
        if (s, r, o) not in self.triples:
            self.triples.append((s, r, o))
            self.graph.add_edge(s, o, label=r)

    def query(self, s=None, r=None, o=None):
        return [
            (s0, r0, o0) for (s0, r0, o0) in self.triples
            if (s is None or s0 == s) and (r is None or r0 == r) and (o is None or o0 == o)
        ]

    def __str__(self):
        return "\n".join([f"{s} -[{r}]-> {o}" for s, r, o in self.triples])

# --- 2. NLP extractor with spaCy

nlp = spacy.load("en_core_web_sm")
embedder = SentenceTransformer('all-MiniLM-L6-v2')

def extract_triples(text):
    doc = nlp(text)
    triples = []
    for token in doc:
        if token.dep_ == "ROOT":
            subjects = [w for w in token.lefts if w.dep_ in ("nsubj", "nsubjpass")]
            objects = [w for w in token.rights if w.dep_ in ("dobj", "attr", "prep", "pobj")]
            for s in subjects:
                for o in objects:
                    triples.append((s.text, token.lemma_, o.text))
    if not triples:
        parts = text.split()
        for rel in ("is", "has", "part"):
            if rel in parts:
                i = parts.index(rel)
                if i >= 1 and i < len(parts) - 1:
                    triples.append((parts[i - 1], rel, parts[i + 1]))
    return triples

def triple_to_vec(s, r, o):
    return embedder.encode(f"{s} {r} {o}")

# --- 3. Relation prediction model

def build_model(input_dim):
    model = keras.Sequential([
        layers.Dense(64, activation="relu", input_shape=(input_dim,)),
        layers.Dense(32, activation="relu"),
        layers.Dense(1, activation="sigmoid"),
    ])
    model.compile(optimizer="adam", loss="binary_crossentropy")
    return model

# --- 4. Evolutionary algorithm

class EvolutionaryAlgorithm:
    def __init__(self, system, base_rate=0.02):
        self.system = system
        self.base_rate = base_rate
        self.mutation_rate = base_rate

    def update_mutation_rate(self, accuracy):
        self.mutation_rate = max(0.005, self.base_rate * (1 - accuracy))

    def evolve(self):
        model = self.system["model"]
        weights = model.get_weights()
        mutated = [w + self.mutation_rate * np.random.randn(*w.shape) for w in weights]
        model.set_weights(mutated)
        print(f"🔁 Mutated model weights with rate {self.mutation_rate:.4f}.")

# --- 5. Learning Module

class LearningModule:
    def __init__(self, kg, system):
        self.kg = kg
        self.system = system
        self.training_data = []

    def add_training_example(self, s, r, o, label):
        self.training_data.append((s, r, o, label))
        acc = self.train()
        self.system["ea"].update_mutation_rate(acc)

    def train(self, epochs=10, batch_size=16):
        if not self.training_data:
            print("No training data available.")
            return 0.0

        X, y = [], []
        for s, r, o, label in self.training_data:
            vec = triple_to_vec(s, r, o)
            X.append(vec)
            y.append(label)

        X = np.vstack(X)
        y = np.array(y)
        X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=42)

        model = self.system["model"]
        model.fit(X_train, y_train, epochs=epochs, batch_size=batch_size, verbose=0)
        preds = (model.predict(X_val) > 0.5).astype(int).flatten()
        acc = accuracy_score(y_val, preds)
        print(f"🧪 Trained model — validation accuracy: {acc:.2f}")
        return acc

# --- 6. Reasoning Engine

class ReasoningEngine:
    def __init__(self, kg, system):
        self.kg = kg
        self.system = system

    def reason(self, query):
        doc = nlp(query)
        for ent in doc.ents:
            facts = self.kg.query(s=ent.text)
            if facts:
                return "Known: " + "; ".join(f"{s} {r} {o}" for s, r, o in facts)
        s, r, o = self.extract_subject_relation_object(query)
        if s and r and o:
            prob = self.predict_relation(s, r, o)
            if prob > 0.7:
                return f"Predicted with confidence {prob:.2f}: {s} {r} {o}"
        return "Unknown — please provide feedback to improve me!"

    def extract_subject_relation_object(self, text):
        parts = text.split()
        if len(parts) >= 3:
            return parts[0], parts[1], " ".join(parts[2:])
        return None, None, None

    def predict_relation(self, s, r, o):
        vec = triple_to_vec(s, r, o)
        prob = self.system["model"].predict(vec.reshape(1, -1))[0, 0]
        return prob

# --- 7. Save/Load System State

def save_system(path="system_state.pkl"):
    with open(path, "wb") as f:
        pickle.dump({
            "triples": SYSTEM["kg"].triples,
            "training_data": SYSTEM["learner"].training_data,
            "model_weights": SYSTEM["model"].get_weights(),
        }, f)

def load_system(path="system_state.pkl"):
    if os.path.exists(path):
        with open(path, "rb") as f:
            data = pickle.load(f)
            for s, r, o in data["triples"]:
                SYSTEM["kg"].update(s, r, o)
            SYSTEM["learner"].training_data = data["training_data"]
            SYSTEM["model"].set_weights(data["model_weights"])
            print("✅ System state loaded.")
    else:
        print("⚠️ No saved system state found.")

# --- 8. Main EA system assembly

input_dim = 384
SYSTEM = {
    "kg": KnowledgeGraph(),
    "input_dim": input_dim,
    "model": build_model(input_dim),
}
SYSTEM["ea"] = EvolutionaryAlgorithm(SYSTEM)
SYSTEM["learner"] = LearningModule(SYSTEM["kg"], SYSTEM)
SYSTEM["reasoner"] = ReasoningEngine(SYSTEM["kg"], SYSTEM)

# --- 9. User interaction

def interact(query):
    resp = SYSTEM["reasoner"].reason(query)
    print("🤖:", resp)
    if resp.startswith("Unknown"):
        feedback = input("✅ Please provide correct answer (S R O, pipe-separated): ")
        try:
            s, r, o = feedback.split("|")
            SYSTEM["kg"].update(s.strip(), r.strip(), o.strip())
            SYSTEM["learner"].add_training_example(s, r, o, label=1)
            SYSTEM["ea"].evolve()
        except ValueError:
            print("⚠️ Invalid format. Skipping update.")
    return resp

# --- 10. Command-line interface

def cli():
    print("🤖 Welcome to the Evolving AI System. Type 'quit' to exit.")
    while True:
        q = input("\nAsk a question or type a command ('save', 'load'): ")
        if q.lower() == "quit":
            save_system()
            print("🛑 Goodbye!")
            break
        elif q.lower() == "save":
            save_system()
            print("💾 System saved.")
        elif q.lower() == "load":
            load_system()
        else:
            interact(q)

# --- 11. Main

if __name__ == "__main__":
    load_system()
    cli()
Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user31005825

79697365

Date: 2025-07-10 16:50:57
Score: 1.5
Natty:
Report link

replace with actual path of the extension or just comment it out should fix it.

 extensions:
        - '/path/to/sqlite-digest/digest.so'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zack Pan

79697357

Date: 2025-07-10 16:40:55
Score: 2
Natty:
Report link

Everything used to be done at the command line. "Windows busted out the crib." Out the box there are rules and conventions to which the Normal people must abide. Windows is very customizable. I can remember the computer command line was an amazing place where if you knew what to type you could make it do most anything. You can still write your own .com file from the CMD or create any file just type 'copy con testfile.txt' then type what you want then CTRL-Z and poof you made a file. There are so many programs running now on a pc that seems to be doing nothing but they are all like alligators laying around for something to step into the pool. Click a link on a web page and you might download install and run a base36 string of characters if your antivirus or settings do not protect you. When you power up a PC your no longer alone but subject to the will of anyone in the world who managed to contribute.

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

79697352

Date: 2025-07-10 16:39:54
Score: 2
Natty:
Report link

Just to fine tune @kerrek sb's very nice answer above, the equality comparison for it->first should be using the collection's key_comp(). It should probably be something more like !m.key_comp()(key, it->first). (given the other answers' guidance around using upper_bound vs. lower_bound, which comparison needs to be done should be tuned accordingly.)

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @kerrek
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Grier

79697349

Date: 2025-07-10 16:35:54
Score: 0.5
Natty:
Report link

You are asking 3 questions which makes answering difficult:

Question 1: Are these two VHDL processes synchronous?

Processes can't be synchronous, they are a construct of VHDL, only electrical signals can be synchronous.

Question 2: How should I create a slow clock derived from a (possibly much) faster clock without creating a gated clock, and while maintaining 50% duty cycle on slow_clk?

You should work with a clock enable signal: This means all flipflops should be connected to the same clock, in your case to the 12 MHz clock. The flipflops which must be clocked slower should be additional connected to a clock enable signal, which is active at each 12th clock edge of the 12 MHz clock (of course this solution has no signal with a 50% duty cycle).

Question 3: Do I create a new clock domain by using slow_clk_q in the sensitivity list of sm_proc, or are the two processes actually synchronous to clk?

A new clock domain is not created by a sensitivity list, a new clock domain is created by checking the data signal slow_clk_q for a rising edge. This will connect slow_clk_q to a clock input of a flipflop at synthesis and is a not recommended design practise especially for FPGAs but also for ASICs. Nevertheless this new clock domain will be synchronous to your 12 MHz domain, but exchanging data signals between this 2 clock domains is difficult, as the edge of your slow clock will not happen at the same time as an edge of our 12 MHz clock, but a short time later.

Your questions concentrates on the Item "synchronous". As long as you have only 1 clock source (in your case the 12 MHz clock) all derived signals (for example your slow_clk_q) are synchronous to this clock, because they only can change their value after a rising edge of your single clock source. Only if you have a second independent clock signal (not created by your 12 MHz clock but somewhere else), then you will get a second clock domain which is asynchronous, this means by observing one clock you cannot predict at what time the other clock will have a rising edge.

Reasons:
  • Blacklisted phrase (1): How should I
  • Whitelisted phrase (-1): in your case
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Matthias Schweikart

79697339

Date: 2025-07-10 16:27:51
Score: 1
Natty:
Report link
from datetime import datetime

def YYMMDD0FtoYYYYMMDD(date):
    return datetime.strptime(date[:6], "%y%m%d").strftime("%Y-%m-%d")

Example usage:

print(YYMMDD0FtoYYYYMMDD('1403110F'))  # Output: '2014-03-11'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sunil Saini

79697338

Date: 2025-07-10 16:26:51
Score: 2
Natty:
Report link

I think all you need to do is just make sure the little dropdown at the bottom on the error list has either of the IntelliSense selections selected and you're good to go on live error listings..

https://i.sstatic.net/GsjSJaXQ.png

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

79697331

Date: 2025-07-10 16:20:50
Score: 3.5
Natty:
Report link

For now dividing the original (large image) coords by 3 seems to make it kind of like that, thanks

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

79697329

Date: 2025-07-10 16:18:49
Score: 1.5
Natty:
Report link

According to https://docs.spring.io/spring-boot/appendix/application-properties/index.html, the name of the property is enabled-protocols not protocols.

This is confirmed by How to enable multiple ssl protocol versions in Spring Boot?.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Stephen C

79697324

Date: 2025-07-10 16:16:48
Score: 0.5
Natty:
Report link

I have a similar issue - queries are suspended randomly, sometimes they are fast and sometimes suddenly suspended.

My case is:

- console app1 reading from database.

- console app2 which calls app1 to get and use data received from database.

Observations:

- query is fast when call directly in SSMS;

- query is fast when run app1 separately;

- query is suspended sometimes when app2 calls app1.

I asked GitHub Copilot if VPN can be the reason. Here is the response:

Yes, the VPN can absolutely be a factor—even if your database is local.

Why VPN Can Affect Local Database Performance

• Network Routing: When connected to a VPN, all your network traffic (sometimes including local traffic) may be routed through the VPN tunnel. This can introduce latency, packet loss, or even block certain local network connections, depending on VPN configuration.

• DNS Resolution: VPNs can change your DNS settings, which might affect how "localhost" or your machine's name resolves.

• Firewall/Policy Changes: Some VPNs enforce strict firewall rules or network isolation, which can interfere with local connections.

• Split Tunneling: If your VPN does not use split tunneling, even local traffic may be forced through the VPN, slowing down access to local resources.

Why It Might Seem Random

• VPN routing and policies can change dynamically.

• Some VPN clients intermittently enforce different rules or routes.

• If your database connection string uses a hostname instead of localhost or 127.0.0.1, DNS or routing issues may be more likely.

What To Check

• Connection String: Ensure you are using localhost or 127.0.0.1 for local databases.

• VPN Settings: Check if your VPN client has options for split tunneling or local network access.

• Network Interfaces: When VPN is connected, run ipconfig (Windows) or ifconfig (Linux/Mac) to see if your local network interface is still active and prioritized.

Summary

Even for a local database, a VPN can introduce delays or connection issues. If your queries are fast when not using VPN, it's very likely the VPN was causing the problem.

Recommendation:

If you must use VPN, configure it to allow local network access or use split tunneling. Otherwise, disconnect from VPN when working with local resources for best performance.

Finally enabling split tunneling resolved the issue.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Low reputation (0.5):
Posted by: Oleksandr Pavlov