79736551

Date: 2025-08-15 15:13:09
Score: 2
Natty:
Report link

for this question imo we can do something like gnome sort/ sorting by reversal like for example we have this linked list 1 -> 2 -> 3 -> 4 so i start with 1 and change its head pointers head to 1 like so in this way the subsequent steps would look something like this 2 -> 1 -> 3 -> 4, 2 -> 3 -> 1 -> 4, 2 -> 3 -> 4 -> 1.
This way we can achieve reversal of a singly linked list using n(n-1)/2 pointer reassignments, because at each position we are doing i operation where i is the index from 1 to n

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

79736545

Date: 2025-08-15 15:00:07
Score: 1.5
Natty:
Report link

Player11225

C ((00o

P PayPa

$12.50

Input

your

account

e7 59:14 $8.00 S2.00 f

$3.00

A

You've already earned $12.50! Keep watering your tree or play Dice/Quiz games for more cash.

Withdraw instantly at just $50- start earning now!

M Low

Earn Cash Now

um W g Gra Grew

Margaret Jekins

Jake Milr

Part-time cleaner

As a Black mother raising three

Hot dog vendor

As a Bronx hot dog ve

Only $37.50 more to withdraw $50.00.

$2.00

ALA

Q. A

Main

Question

Dice

Cash

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

79736544

Date: 2025-08-15 14:59:06
Score: 2
Natty:
Report link

I had this problem when compiling the app to target SDK version 35

and the problem was solved.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mehmet Furkan Eroglu

79736533

Date: 2025-08-15 14:55:05
Score: 2
Natty:
Report link

As of today on [email protected], passing a react component to cellRenderer will work only with AgGridReact . Here's an example:

https://stackblitz.com/edit/vitejs-vite-csvwow43?file=src%2FApp.tsx

If you use the plain javascript of ag-grid you will get the Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node' error. Here's an example:

https://stackblitz.com/edit/vitejs-vite-drit1au1?file=package.json

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

79736504

Date: 2025-08-15 14:23:58
Score: 3
Natty:
Report link

Masuk docker file adadocker.html

Login

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Naufal Fahreza ramadhan

79736501

Date: 2025-08-15 14:15:56
Score: 1.5
Natty:
Report link

When typing with polars.datatypes.Array you should explicitly set array length:

# For arrays of 3 int8 elements:
correct_dtype = pl.Array(pl.Int8, 3)  # ✅ pl.Array(dtype, size)

df.with_columns(pl.col("values").map_batches(udf, return_dtype=correct_dtype))

If length is unknown you could use polars.datatypes.List

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Герман Просянников

79736497

Date: 2025-08-15 14:07:54
Score: 1
Natty:
Report link

Textifier get the name of an opcode from the constant Printer.OPCODES

import org.objectweb.asm.util.Printer;

// ...
Printer.OPCODES[opcode]

I think asm doesn't store tagValue in parsed objects (the tag in the constant pool), I haven't find a way to get it so far

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

79736495

Date: 2025-08-15 14:04:53
Score: 0.5
Natty:
Report link

So I found out that log offers an optional argument named target for specifying the string which only defaults to the module name of the caller.

I assume that this is done using the builtin module_path macro provided by the compiler. This works for log but I don't think it could work for getting the path for a Location as I would need.

Because now I don't think there is a better solution when not using a macro (what I don't want because of the calling syntax) I will use the file path with line number for this argument.

Feel free to let me know if there is a more elegant solution!

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

79736478

Date: 2025-08-15 13:47:48
Score: 5
Natty: 7
Report link

Fiz a mudança no settings do Mac pois quero que abra o LiveServer no chrome private mas continua abrindo no regular. Qual o erro? Algum outro local que devo mudar?

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

79736463

Date: 2025-08-15 13:20:42
Score: 2.5
Natty:
Report link

There is the https://open-vsx.org/ marketplace which you can use.

They have documentation on how to setup here: https://github.com/eclipse/openvsx/wiki/Using-Open-VSX-in-VS-Code.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Philip

79736450

Date: 2025-08-15 13:10:39
Score: 0.5
Natty:
Report link

import snscrape.modules.twitter as sntwitter

import pandas as pd

query = "#fartfetish since:2023-01-01 until:2023-12-31"

limit = 100

data = []

for tweet in sntwitter.TwitterSearchScraper(query).get_items():

if len(data) \>= limit:

    break

data.append({

    "username": tweet.user.username,

    "display_name": tweet.user.displayname,

    "followers": tweet.user.followersCount,

    "tweet": tweet.content,

    "date": tweet.date

})

df = pd.DataFrame(data)

df.to_excel("fartfetish_accounts.xlsx", index=False)

print(f"تم حفظ {len(df)} نتيجة في ملف fartfetish_accounts.xlsx")

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

79736433

Date: 2025-08-15 12:45:33
Score: 1
Natty:
Report link

I was also facing the same problem while deploying my angular 19 app (Not using SSR) on AZURE.

updating

output_location - "dist/my-app-name/browser"

in .yml file helped me out. It wanted the location of index.html file in your build.

I suggest to build locally, find out where is your index.html file is in dist folder. Update path in .yml file present in your github repsository in ".github/workflows" folder.

# You can also set this path while creating a new "static web app" in AZURE

enter image description here

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

79736431

Date: 2025-08-15 12:41:32
Score: 2.5
Natty:
Report link

Sharing how I resolved this since not a lot of people touched on what to do if you cant see the "About" gear icon to update the description. So I had to upload a file into my repo and then the About section was visible and I could update my description. So....how do you upload a file? :) When you're in the repo in question, click on the Code tab if you're not already there. On that screen there is a section that says to upload a file or create a new one. Click on that link and follow the instructions to upload a file. I just created a random blank txt file and uploaded that and that was good enough. As soon as I did that, the About section was visible and I was able to update my description. Yes, an necessary set of steps to perform just to update a description, but I'm sure someone smarter than myself has a really good reason for it.

Reasons:
  • Blacklisted phrase (1): what to do if
  • Blacklisted phrase (1): how do you
  • Whitelisted phrase (-2): I resolved
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asif Shah

79736430

Date: 2025-08-15 12:40:32
Score: 1
Natty:
Report link

For Windows Server on-prem installation of AmazonCloudWatchAgent, you need to add the following Environment variables:

AWS_PROFILE = AmazonCloudWatchAgent (or whatever you're profile name is)
AWS_SHARED_CREDENTIALS = absolute_path_to_your_credentials.ini

After adding these and server restart, I now have data arriving in CloudWatch!

Please note, on Windows machines you need the .ini file ending

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

79736414

Date: 2025-08-15 12:25:28
Score: 1
Natty:
Report link

After scouring the internet some more, I found the answer here: Circumventing thread safety in rust with mutable pointers

And so, for my case, it looks like this:

pub struct TrblFile {
    logicalFileName: *const ::std::os::raw::c_char,
    opaque: *const ::std::os::raw::c_void,
}

// raw pointers are not thread-safe according to the compiler
// here we tell it thread-safety will be handled by us
unsafe impl Send for TrblFile {}

[...]

        if let Some(cb) = storeCb {
            let params = TrblFile { logicalFileName: copy_cstr(logicalFileName),
                                    opaque: opaque };
            let callback = Box::new(move || {
                unsafe {
                    let result = cb(params.logicalFileName, params.opaque);
                    libc::free(params.logicalFileName as * mut c_void);
                    result
                }
            });
            let mut callbacks = STORE_CALLBACKS.lock();
            callbacks.push(callback);
        }
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DerKastellan

79736400

Date: 2025-08-15 12:01:23
Score: 3
Natty:
Report link

It recently became possible with JetBrains Rider.
Example https://github.com/godotengine/godot-cpp-template/pull/95

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: Ivan Shakhov

79736399

Date: 2025-08-15 11:58:22
Score: 1.5
Natty:
Report link
Andrew,

   where to find that CefGlue/packages/cef.redist.linux64/120.1.8/CEF/? I am testing cefglue, and got similar issue.
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: WDM

79736397

Date: 2025-08-15 11:57:22
Score: 3
Natty:
Report link

Tried this on Windows server 2016 (which MS said was fine) have tried on other builds - suspect some kind of policy the issue occurs if I try to regsvr32 the vcpkg.dll

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

79736382

Date: 2025-08-15 11:41:17
Score: 1
Natty:
Report link

You need to divide device dimensions in pixels (as returned by adb shell wm size) by density (as returned by adb shell wm density) and multiply the result by 160

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

79736377

Date: 2025-08-15 11:33:15
Score: 2
Natty:
Report link

ExternalDependencyManager --> Editor, in this folder you need to check how many dependencies are installed. Sometimes, there can be multiple dependencies installed, which can cause issues. For example:

Correct Result:

ExternalDependencyManager --> Editor --> 1.2.186

Incorrect Result:

ExternalDependencyManager --> Editor --> 1.2.186 and 1.2.166 / any other folder can be there"

In English, this means:

* Check the ExternalDependencyManager --> Editor folder to see if there are multiple versions of dependencies installed.

* Having multiple versions can cause conflicts and issues.

* Ideally, there should be only one version of the dependency installed, like 1.2.186.

* But if there are multiple versions, like 1.2.186 and 1.2.166, it can cause problems.

____________________________________________________________

If you have more than one dependency, you need to keep the latest folder and delete the rest. After that, add the keystore and ForceResolve

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Filler text (0.5): ____________________________________________________________
  • Low reputation (1):
Posted by: Muhammad Khizar

79736371

Date: 2025-08-15 11:19:12
Score: 1
Natty:
Report link

Actually I have found the solution - and that is to edit the WHERE clause within the second SELECT statement to allow the variable MaxPriorYear to have a leading colon. Heaven knows why I need this but it seems to be working.

DECLARE 
    MaxPriorYear NUMBER;
    MaxPriorMonth NUMBER;

BEGIN
      MaxPriorYear :=
      (SELECT MAX(FISCAL_YEAR)
       FROM TBL_MAIN);

      MaxPriorMonth :=
      (SELECT MAX(ACCOUNTING_PERIOD) 
       FROM TBL_MAIN 
       WHERE FISCAL_YEAR = :MaxPriorYear);
      
      RETURN MaxPriorMonth;
END;
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tommo

79736370

Date: 2025-08-15 11:16:11
Score: 0.5
Natty:
Report link

#include

#include

// Inisialisasi LCD dengan alamat I2C 0x27 dan ukuran 16x2

LiquidCrystal_I2C lcd(0x27, 16, 2);

// Daftar lirik yang akan ditampilkan di LCD

const char* daftarLirik[]={

"Tanteee",

"Sudah Terbiasa",

"Terjadi Tante",

"Teman Datang",

"Ketika Lagi",

"Butuh Sajaaa",

"Coba Kalo",

"Lagi Susahh",

"Mereka Semua",

"Menghilaaangg",

"aangggg",

"aangggg",

"Tante"

"eee",

"eee",

};

// Variabel untuk menyimpan lirik yang sedang ditampilkan

int indeksLirikSaatIni=0;

// Menghitung jumlah lirik yang ada

const int jumlahLirik = sizeof(daftarLirik)/sizeof(daftarLirik[0]);

void setup() {

lcd.init(); // Menginisialisasi LCD agar siap digunakan

lcd.backlight(); // Menyalakan lampu latar (backlight) pada LCD

}

void loop(){

lcd.clear(); //Membersihkan layar LCD

lcd.setCursor(0,0); // Mengatur kursor ke awal lagi

lcd.print(daftarLirik[indeksLirikSaatIni]); // Menampilkan lirik saat ini

indeksLirikSaatIni++; // Pindah ke lirik berikutnya

if (indeksLirikSaatIni >= jumlahLirik) {

indeksLirikSaatIni=0;

}

delay(1350); // Jeda sebelum menampilkan lirik berikutnya

}

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

79736365

Date: 2025-08-15 11:08:09
Score: 1.5
Natty:
Report link

Could you perhaps give a bit more context as to what are you trying to accomplish, and what is network trying to learn? It may be easier to understand what is wrong when having some context. What is the model structure? What hyper parameters are you using? Could you perhaps share the rest of the code?

Also - are you sure you want to flip the sign on the reward. If the reward of the state is negative, then it will lead to negative Q values, which is sensible as this indicates you want to avoid such states.

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

79736360

Date: 2025-08-15 11:04:08
Score: 0.5
Natty:
Report link

For the benefit of anyone else who has stumbled upon this, a straightforward solution which doesn't involve Dataverse is:

  1. Create a service principal (app registration) in Entra id on the Azure tenant that contains the key vault. This should be the same tenant that contains the Power Platform environment.

  2. Assign Key Vault Secret Reader permissions to the corresponding service principal (enterprise app) via the IAM settings of the key vault.

  3. Insert a Azure Key Vault step in the cloud flow with the "Get secret" action and "Service principal authentication". Enter client id, secret, tenant. The secrets should be listed if the connection is correct.

  4. Go to the Azure Key Vault step options and switch on the"Secure outputs" toggle

  5. Add a step after the Azure Key Vault step which uses the secret from the previous step.

No environment variable is needed for the secret, and no connection to Dataverse. The client secret specified for the service principal used to access the key vault is not visible. The connection to the key vault can be modified in the future to rotate the secret with no impact to the solution.

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

79736359

Date: 2025-08-15 11:03:07
Score: 4.5
Natty:
Report link

sed -i '/END_MARKER/,$d' filename

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

79736343

Date: 2025-08-15 10:51:04
Score: 5.5
Natty:
Report link

What @Tom Brunberg told works!!

Thank you very much!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Tom
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: ZinkPT

79736339

Date: 2025-08-15 10:42:02
Score: 2.5
Natty:
Report link

You need to install the WTP plugin to add all that HTML/JS/CSS support.

I would also recommend using the PDT plugin for all your PHP needs.

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

79736334

Date: 2025-08-15 10:40:01
Score: 3
Natty:
Report link

Use the

-Wl,-ld_classic

option to silence these messages.

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

79736327

Date: 2025-08-15 10:26:58
Score: 2.5
Natty:
Report link

first time i was confuse too becuase i made usb for legacy boot and other pc was in uefi so i use balena etcher so one usb for all typed of bios . if you use rufus is still good but you have to slelect one only from mbr or gpt

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

79736324

Date: 2025-08-15 10:23:57
Score: 4
Natty:
Report link

Everything suggests that the problem is caused by the latest update of the "Maven for Java" extension in VS Code for Windows. I’ll have to wait for them to release another update and hope it fixes the issue. On a Mac, I don’t notice the same problem. Thank for your time. Kind regards.

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

79736311

Date: 2025-08-15 10:02:52
Score: 1
Natty:
Report link

=UNIQUE(DROP(TEXTSPLIT(CONCAT(6&A2:A5&9&TOROW(A2:A5&I1:Z4)),9,6),1))

I1:Z4 = "" This is for your reference only.

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

79736298

Date: 2025-08-15 09:44:48
Score: 1
Natty:
Report link

I was getting the same issue, and bumping the platform ios version

from: platform :ios, '13.0'

to: platform :ios, '15.0'

Fixed the issue for me.

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

79736294

Date: 2025-08-15 09:36:47
Score: 3
Natty:
Report link

enter image description hereI already got a solution, it's because Reactotron,

When I disabled the web, it's working through

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

79736292

Date: 2025-08-15 09:32:46
Score: 3
Natty:
Report link

Check in Build Variants if you are in Release mode that wont work you need to switch to Debug mode

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

79736288

Date: 2025-08-15 09:30:45
Score: 2.5
Natty:
Report link

I have the same error but using laravel + vite + vue3.

The error was in my .env file. There was a circular reference

APP_URL="${APP_URL}"

it should have been

VITE_APP_URL="${APP_URL}"

I looked for hours for this as on other servers npm run build was working,

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same error
  • High reputation (-1):
Posted by: A.W.

79736283

Date: 2025-08-15 09:23:43
Score: 1.5
Natty:
Report link

TYG u change my question and here i know answer. The example what i provided i have navHost also

@Composable
fun ColumnScope.Child(modifier: Modifier = Modifier) {
    Box(modifier)
}

@Composable
fun Parent(modifier: Modifier = Modifier) {
    Column(modifier) {
        Child(Modifier.weight(1f))
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dema Dima

79736278

Date: 2025-08-15 09:11:40
Score: 3
Natty:
Report link

One of the most common and efficient ways is to use the cached_network_image package.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asychronous

79736273

Date: 2025-08-15 09:05:39
Score: 2.5
Natty:
Report link

regarding ensuring sidebar stays fixed: add this to the CSS file

.sidebar{

position: fixed;

top: 0;

height: 100vh;

overflow-y: auto;

}

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

79736266

Date: 2025-08-15 08:59:37
Score: 1
Natty:
Report link

Aside from the Required Claims as defined by the specification, the Authorization Server MAY include other Claims in the ID Token and can include additional Claims in the Userinfo response.

That is to say, the specification leaves it up to the implementation exactly what information you return beyond the required. It could make decisions based on the User's preference, what is required by privacy laws, how much it trusts the Clients involved, etc. So Shibboleth is within spec by not including the email in the ID token by default, but so is Keycloak for including it.

As for your question: Querying the UserInfo endpoint for claims you need that aren't present is compliant and seems to be the best way to handle this. Getting more information about a user is part of the purpose of the UserInfo endpoint.

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

79736258

Date: 2025-08-15 08:55:36
Score: 3.5
Natty:
Report link

I had this issue whilst trying to run a Blazor MAUI App without having the .NET MAUI Extension installed ...

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

79736243

Date: 2025-08-15 08:39:32
Score: 0.5
Natty:
Report link

You may have to escape your newlines using the backslash \ character:

<?xml version="1.0" encoding="UTF-8" ?> \
  <item> \
    <text>Address</text> \
      <data>Sample &#xA; Text 123</data> \
  </item> \
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Oreo

79736242

Date: 2025-08-15 08:38:31
Score: 3.5
Natty:
Report link

Enterprise Cloudflare plans offer access to raw logs, which include information about all requests made to your website, including IP addresses.

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

79736237

Date: 2025-08-15 08:36:30
Score: 1
Natty:
Report link

Following the link from Tore and inspecting the ProtocolMessage properties, I managed to manually set the redirect url.

I've added this under .AddOpenIdConnect:

config.Events.OnRedirectToIdentityProvider = context =>
{
    context.ProtocolMessage.RedirectUri = "https://TestWebsite.co.uk/ids/signin-oidc";
    context.ProtocolMessage.IssuerAddress = "https://TestWebsite.co.uk/ids/connect/authorize";
    return Task.CompletedTask;
};
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kamil Kos

79736236

Date: 2025-08-15 08:35:30
Score: 0.5
Natty:
Report link

It learns via bootstrapping. It looks at one frame (one timestep, ignore for a moment we pass 4 frames for one timestep) and if it has a high value, due to just striking a ball, it determines that any frame that lead to this in time step k-1 should also have a higher value (discounted by a gamma). Going recursively back, it also then assigns a higher value to a previous time step that lead to k-1, which is k-2.

In this sense, any situation in which a ball that is seemingly likely to "get stuck", as it is going for the narrow hole on the left will have a higher Q-value. Extend that logic, and over many many itterations, via such bootstrapping state-action pairs that lead to such outcomes will have higher values since they lead to the situations that lead to the situations ... that ended up in higher results.

In short - first frames/situations near just scoring a point will increase in value and this will slowly "creep back" towards the early states/decisions that lead to it over many many iterations. Situations that lead to many good outcomes such as "almost about to get stuck" will therefor also have a higher value, and consequently situations that lead to "about to pass the the hole and get stuck" will also increase in value as well.

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

79736232

Date: 2025-08-15 08:31:28
Score: 2.5
Natty:
Report link

Use the AWS documentation and install the headless version and if for ec2 web servers you would need to install the headless version

AWS doc

If you have multiple versions and want to switch use the last command in the answer by @rahimli

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @rahimli
  • Low reputation (0.5):
Posted by: Neo

79736226

Date: 2025-08-15 08:25:23
Score: 6
Natty:
Report link

I have the same problems, thinks that we should have the pages_messaging permissions. I tried but Facebook reviewers are toooooo slow and I have a long time have not reviewed my permissions. If you don't have that permission, You can't get the lastname and firstname, and also picture,email,....

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bui Xuan Duc K17 HL

79736222

Date: 2025-08-15 08:20:22
Score: 2.5
Natty:
Report link

I upgraded the Unity project to version 6000.1.9f1 and all issues are fixed!

But error messages aren't very clear!

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

79736215

Date: 2025-08-15 08:12:20
Score: 2
Natty:
Report link

I found the root and solution of my problem. Since version 9 and higher, Android requires the use of HTTPS only. This policy is known as the "Network Security Configuration". To continue using HTTP, I should set "usesCleartextTraffic" to true. Unfortunately, on the Internet, I found old recommendations that suggest simply adding it to the app.json, and naturally, it didn't work. However, in the final version of the Expo, some changes were made. I should first install an expo-build-properties plugin and set usesCleartextTraffic to true in it.

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

79736213

Date: 2025-08-15 08:11:20
Score: 4.5
Natty: 5
Report link

If someone comes across this in 2025, then here is the solution https://developer.android.com/studio/known-issues#run-config-missing-gradle

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Орехов

79736211

Date: 2025-08-15 08:11:19
Score: 2
Natty:
Report link

Select the end of the line:

If you need to run from the beginning of the procedure: Ctrl + Shift + Home

If you just need to run that line: Shift + Up Arrow

Then execute the procedure

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

79736209

Date: 2025-08-15 08:09:19
Score: 3
Natty:
Report link

Also happens when your iPhone is first registered, the type status is still "iPhoneProcessing", the Registration may become available for development and ad hoc distribution in 24 to 72 hours.

enter image description here

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

79736206

Date: 2025-08-15 08:05:17
Score: 6.5
Natty: 5
Report link

Check this link also with more explanation https://usingaspdotnet.blogspot.com/2025/07/how-to-display-word-file-in-html-using.html

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dench Designs

79736205

Date: 2025-08-15 08:02:17
Score: 1
Natty:
Report link

I solved this by deleting "MyProjectFolder/.vs" folder.

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

79736204

Date: 2025-08-15 08:01:16
Score: 1
Natty:
Report link

I solved this by deleting "MyProjectFolder/.vs" folder.

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

79736193

Date: 2025-08-15 07:47:12
Score: 2.5
Natty:
Report link

The issue was with my activityProvider. As it turned out, i called it too early using Koin, so it tried to launch lifecycle observer before Application was created (propably). What I ended up doing is moving creating listener to Application onCreate and it fixed all my problems with activity context not being present on initial launch, but only on device rotation etc

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

79736188

Date: 2025-08-15 07:44:11
Score: 0.5
Natty:
Report link

This does not combine toMatchSnapshot and toBeCloseTo but solves the underlying problem: loosely compare to a bunch of known results.

Instead of using snapshots at all, I have made a JSON file with the expected results. I import it in the test file and compare with it using toBeCloseTo .

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

79736183

Date: 2025-08-15 07:41:10
Score: 2
Natty:
Report link

These are Mapping Parameters, whose context are limited to the Mapping, not the Mapping Task.

In short: Only In/Out Parameters are reflected in the Mapping Task.

Although the reality is a far more stringent and depending on your use case you may need to set up a Task Flow for the Mapping Task.

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

79736175

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

I ran into the same problem recently, and ended up creating a full TypeScript port of Symfony’s ExpressionLanguage.

It mirrors the PHP API and syntax almost exactly, so you can evaluate the same expressions in both environments.

Here is the npm package for anyone still in need @andreasnicolaou/typescript-expression-language

Git repo: typescript-expression-language

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

79736174

Date: 2025-08-15 07:30:07
Score: 1.5
Natty:
Report link
MapProperties.mapStyleOptions ignored on Xiaomi devices. It applies as random as it can be
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Velord

79736172

Date: 2025-08-15 07:25:05
Score: 3.5
Natty:
Report link

thanks for this, helped me out alot, turns out i dont need the ios folder if im not using any native ios code, my project is a fully expo react native code

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rayson Yong

79736169

Date: 2025-08-15 07:19:04
Score: 2
Natty:
Report link

What worked for me was setting the following request header:

'Sec-Fetch-Site': 'none'
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Piotr

79736166

Date: 2025-08-15 07:15:02
Score: 4
Natty:
Report link

I like to tone down my buttons if they are in disabled states with bg-opacity-* opacity is not preferable as this will also tone down the text. Lets say my buttons have no multiple types like primary, secondary, success etc. with the new way i would need to explode my logic for applying the disabled state for each type instead of just adding the bg-opacity. would you say this is a legitimate Use Case for introducing this utility back or am i missing another feature of tailwind?

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

79736150

Date: 2025-08-15 06:39:53
Score: 2.5
Natty:
Report link

IDEBET adalah situs slot online terpercaya yang dikenal sebagai tempat berkumpulnya para pemenang sejati. Dengan koleksi game slot paling gacor, RTP tinggi, dan fitur bonus melimpah, IDEBET hadir untuk memberikan pengalaman bermain yang seru, fair, dan pastinya cuan!

Bersama IDEBET, setiap putaran adalah peluang untuk menang besar.

💸 Main sekarang dan jadi bagian dari para pemenang IDEBET!

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: IDEBET

79736145

Date: 2025-08-15 06:34:51
Score: 3.5
Natty:
Report link

"Parallel testing of the tests within a single suite starts as soon as you run the suite. When you run a suite using the Cloud Runner, all the tests within the suite run in parallel ignoring the execution order and abort on failure."

Source: https://www.servicenow.com/docs/bundle/yokohama-servicenow-platform/page/administer/atf-test-generator-cloud-runner/concept/atf-tg-cr-parallel-test.html

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

79736143

Date: 2025-08-15 06:32:51
Score: 4
Natty:
Report link

Declension of words in plural in Django templates. Solution for Russian language: Склонение слов во множественном числе в шаблонах Django.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Василий Жилкин

79736135

Date: 2025-08-15 06:21:48
Score: 1
Natty:
Report link

You're doing what many start with: RGB/HSV distance. The issue you're hitting is a classic — perceived color and numberic proximity in RGB...

Color math ain't mathin...

A couple breadcrumbs:

There's a color space with a name that starts with L and ends in ab — look into it.

Once there, don't just calculate raw distance — search for a metric named deltaE, specifically the one from the 2000s.

If your algorithm thinks dark blue is silver, you might want to investigate how saturation and luminance interact in low-light colors.

You're not far off. Just need to switch dimensions (literally).

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

79736128

Date: 2025-08-15 06:10:45
Score: 0.5
Natty:
Report link

There are a few changes you can make here to make this a little easier to add to. A couple major items to look at:

  1. Think about dividing the responsibility a little more clearly. Is it the Player object's responsibility to check for legal plays? This is likely a better fit for the Board object. In fact, it is hard to imagine the role a Player object fulfils in this structure, since you are the player and you are handling all the I/O in your controller/event loop, which is currently just in the main.
  2. The Board object likely doesn't need to understand the Player object, it only needs to provide its state and methods to update its state. Later, then you add a visual component to this, the visual component, maybe called View, will request the game state from the Board and draw it to screen, providing visually rich user input controls, and then forwarding those inputs to your Board for updates.
  3. Keeping the current structure, you can pass the Board object into your constructor for your Player and then save it to its internal state to reference whenever you need to make an update.
  4. It's unlikely that the goal is to create a new Player object for every input. I recommend moving the Player object initialization outside of the loop and referencing the same object over and over. This does require reworking the Player class a little to accept inputs from a function call instead of at initialization.

To address just the question as asked, I recommend changes like the following:

main.py

from Board import *
from Player import *

if __name__ == "__main__":
    b = Board()
    p = Player(b)  # Edited
    while True:
        old_x_input = int(input("x: "))
        old_y_input = int(input("y: "))
        new_x_input = int(input("move to newX: "))
        new_y_input = int(input("move to newY: "))

        # print(b.move())  # Edited
        p.move(old_x_input, old_y_input, new_x_input, new_y_input)  # Added
        print(b.board_flaeche)  # Edited

Player.py

# from numpy import np
# import main  # Edited
from Board import *

# from x, y to newX, newY
class Player:
    def __init__(self, board):  # Edited
        self.board = board  # Added
        # Edited
    #     self.old_x = old_x
    #     self.old_y = old_y
    #     self.new_x = new_x
    #     self.new_y = new_y
    #
    # def getOldX(self):
    #     return self.old_x
    #
    # def getOldY(self):
    #     return self.old_y
    #
    # def getNewX(self):
    #     return self.new_x
    #
    # def getNewY(self):
    #     return self.new_y


    # switching positions - not finished yet
    def move(self, old_x, old_y, new_x, new_y):  # Edited
        # Board.board_flaeche[x][y] = Board.board_flaeche[newX][newY]
        self.legal_length(old_x, old_y, new_x, new_y)  # Added
        # Still need to add something here, such as self.board.move(old_x, old_y, new_x, new_y)

    # ToDo:
    #  Task: Write a method legal_length where old_x, old_y, new_x, new_y
    #        must be checked if they are within the self.board_area[i][j] range

    def legal_length(self, old_x, old_y, new_x, new_y):  # Edited
        # ToDo Problem:
        # how do I get the attributes from another class in Python without creating an instance each time
        pass
        # Added section
        if old_x >= self.board.x or old_x < 0:
            raise ValueError(f'Provided old x is outside of range! {self.board.x} > {old_x} >= 0')
        if old_y >= self.board.y or old_y < 0:
            raise ValueError(f'Provided old y is outside of range! {self.board.y} > {old_y} >= 0')
        if new_x >= self.board.x or new_x < 0:
            raise ValueError(f'Provided new x is outside of range! {self.board.x} > {new_x} >= 0')
        if new_y >= self.board.y or new_y < 0:
            raise ValueError(f'Provided new y is outside of range! {self.board.y} > {new_y} >= 0')
        # / Added section

    def setPosition(self, new_x, new_y):
        pass

Board.py

import numpy as np
from Player import *

class Board:

    def __init__(self, x=None, y=None):
        if x is None:
            x = int(input("Enter the width of the board: "))
        if y is None:
            y = int(input("Enter the height of the board: "))
        self.x = x
        self.y = y
        self.board_flaeche = np.zeros((x, y), dtype=str)
        fruits_liste = ["Y", "B", "P"]

        for i in range(x):
            for j in range(y):
                self.board_flaeche[i][j] = np.random.choice(fruits_liste)

        print(self.board_flaeche)
        # do I need it??
        # self.player = Player(0, 0, 0, 0)  # Edited


    # Recommend this function have the following signature:
    #   def move(self, old_x, old_y, new_x, new_y):
    def move(self):

        old_x = self.player.getOldX()
        old_y = self.player.getOldY()
        new_x = self.player.getNewX()
        new_y = self.player.getNewY()

        # Update position of the player instance
        # self.player.setPosition(new_x, new_y)

But overall, to address some of my other comments, I would recommend a larger rework to better divide the responsibilities of each class to look something like this:

import numpy as np

class Board:

    fruit_lists = ['Y', 'B', 'P']

    def __init__(self, x_size: int = None, y_size: int = None):
        if x_size is None:
            x_size = int(input("Enter the width of the board: "))
        if y_size is None:
            y_size = int(input("Enter the height of the board: "))
        self.x_size: int = x_size
        self.y_size: int = y_size

        rng = np.random.default_rng()
        self.board_flaeche  = rng.choice(Board.fruit_lists, size=(self.x_size, self.y_size))

    def get_state(self):
        return self.board_flaeche

    def print_board(self):
        board_str = ''
        for row in self.board_flaeche:
            for col in row:
                board_str += f' {col} '
            board_str += '\n'
        print(board_str)

    def validate_move(self, old_x: int, old_y: int, new_x: int, new_y: int):
        if old_x >= self.x_size or old_x < 0:
            raise ValueError(f'Provided old x is outside of range! {self.x_size} > {old_x} >= 0')
        if old_y >= self.y_size or old_y < 0:
            raise ValueError(f'Provided old y is outside of range! {self.y_size} > {old_y} >= 0')
        if new_x >= self.x_size or new_x < 0:
            raise ValueError(f'Provided new x is outside of range! {self.x_size} > {new_x} >= 0')
        if new_y >= self.y_size or new_y < 0:
            raise ValueError(f'Provided new y is outside of range! {self.y_size} > {new_y} >= 0')


    def move(self, old_x: int, old_y: int, new_x: int, new_y: int):
        self.validate_move(old_x, old_y, new_x, new_y)

        # Valid input, now swap them
        source_fruit = self.board_flaeche[old_x, old_y]
        target_fruit = self.board_flaeche[new_x, new_y]
        self.board_flaeche[old_x, old_y] = target_fruit
        self.board_flaeche[new_x, new_y] = source_fruit

class Player:
    def __init__(self):
        pass

    def get_input(self):
        old_x_input = int(input("x: "))
        old_y_input = int(input("y: "))
        new_x_input = int(input("move to newX: "))
        new_y_input = int(input("move to newY: "))

        return old_x_input, old_y_input, new_x_input, new_y_input

class Game:
    def __init__(self):
        self.board = None
        self.player = None

    def start_new_game(self, x_size: int = None, y_size: int = None):
        self.board = Board(x_size, y_size)
        self.player = Player()

        while True:
            self.board.print_board()
            old_x, old_y, new_x, new_y = self.player.get_input()
            try:
                self.board.move(old_x, old_y, new_x, new_y)
            except ValueError:
                print('Bad move requested! Try again')



if __name__ == '__main__':
    game = Game()
    game.start_new_game()

With this rework, each class is only responsible for one thing. The Board is only responsible for keeping track of the board, making updates to it, printing itself to console etc. The Player is only responsible for handling player interactions. The Game is only responsible for setting up and running the event loop. Now as you add functionality it'll be much easier to stay organized, as each object is more independent, and once you add a graphical component to it, you'll only need to update the Game class without really worrying about what's in the other classes.

Reasons:
  • Blacklisted phrase (1): how do I
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: BitsAreNumbersToo

79736113

Date: 2025-08-15 05:39:39
Score: 0.5
Natty:
Report link

I came here after finding this problem.

In my specific case it turned out that I downloaded the download page from the apache server and not the model itself.

The property problem probably means that the SentenceModel couldn't unzip your model file and read it as a resource.

java.lang.NullPointerException: Cannot invoke "java.util.Properties.getProperty(String)" because "manifest" is null

    at opennlp.tools.util.model.BaseModel.getManifestProperty(BaseModel.java:542)
    at opennlp.tools.util.model.BaseModel.initializeFactory(BaseModel.java:281)
    at opennlp.tools.util.model.BaseModel.loadModel(BaseModel.java:266)
    at opennlp.tools.util.model.BaseModel.<init>(BaseModel.java:173)
    at opennlp.tools.sentdetect.SentenceModel.<init>(SentenceModel.java:69)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: limaCAT

79736092

Date: 2025-08-15 04:45:27
Score: 0.5
Natty:
Report link

It's called an existential type or existential box.

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

79736088

Date: 2025-08-15 04:39:26
Score: 3.5
Natty:
Report link

if anyone facing same issue still after apply above solution Please follow that I solve my issue through this steps : -
In Windows
Stop android Studio close it.
Go to your Local disk C:\Users\abcExample\.gradle directory find caches folder
inside folder find Different version folder
like
8.9
8.11.1
8.12
Every Folder Inside find
"transforms" and Delete This
then start Android studio again and rebuild the project .
that working in my project .

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Low reputation (0.5):
Posted by: SHUBHAM SONI

79736081

Date: 2025-08-15 04:20:22
Score: 1.5
Natty:
Report link

Given the solution for the classic Bluetooth devices in Mike Petrichenko's answer, I did some research on how to use WinRT and raw PowerShell scripting to do the for Bluetooth LE devices.

You can find my full solution on GitHub Gists, but generally it heavily revolves around using the Ben N's solution on calling UWP API (and so WinRT API) within a PowerShell script.

That solution, though, unfortunately does not work for PowerShell 7+ due to "removal of builtin support in dotnet".

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

79736077

Date: 2025-08-15 04:11:19
Score: 0.5
Natty:
Report link

I use scoop to install RabbitMQ, I also encountered this error. Here is my solution

scoop uninstall rabbitmq
# Maybe need to stop "epmd.exe" first before run the command
scoop uninstall erlang
# if install not use  administrative account before, delete "C:\Windows\System32\config\systemprofile\.erlang.cookie"
# use administrative account Terminal.
scoop install rabbitmq

rabbitmq-service install

rabbitmq-service start

As @aidan answer. This problem occurred because the two erlang.cookie files did not match. If you don't want reinstall, copy file will work.

Follow the official documentation Installing on Windows, Erlang must be installed using an administrative account. And RabbitMQ is highly recommended installed as an administrative account.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @aidan
  • Low reputation (0.5):
Posted by: likeme

79736074

Date: 2025-08-15 04:05:18
Score: 3.5
Natty:
Report link

[…] I'm stuck in trying to split the line into string and real, […]

As you probably know, Pascal’s built‐in procedures read/readLn can read multiple data at once by specifying multiple destination variables. However, if you specify a string variable, such a destination variable is filled to the brim, i. e. possibly reading digits, too, or not reading enough name letters.

[…] I can't find anything on the net and hope you could help me. […]

Programming involves intuition that cannot be taught in textbooks. Here you are supposed to realize that it is not necessary to “split” the line into components. You do not re‐use, check on previously read names as you go through the file. (You would need to store the names if your task was, say, to also sort names alphabetically.)

Instead, you pass the names through as is. This can be achieved in the following way. Remember that valid number literals that can be read start with decimal digits, possibly preceded by a sign. Since digits or signs do not appear in names, you can use this circumstance as your criterion whether a name has been read completely or not.

program splittingLineIntoRealAndStrings(input, output);
    var
        { Replace the names `x`, `y` as appropriate. }
        x, y, product, total: real;
    begin
        { Discard the number of lines datum. Use `EOF`‐check instead. }
        readLn(total);
        { Initialize running total to zero. }
        total ≔ 0;
        
        { `EOF` is shorthand for `EOF(input)`. }
        while not EOF do
        begin
            { First we just copy everything until the first digit or sign. }
            while not (input↑ in ['0'‥'9', '+', '−']) do
            begin
                output↑ ≔ input↑;
                put(output);
                { Note that `get` does not consume the next character.
                  This is important so the following `readLn(x, y)` has
                  the opportunity to inspect the sign or first digit. }
                get(input)
            end;
            
            readLn(x, y);
            product ≔ x * y;
            { To disable scientific notation (`…E…`)
              you need to supply two format specifiers. }
            writeLn(product:1:2);
            { Finally, keep tab of the running `total`. }
            total ≔ total + product
        end;
        writeLn(total:1:2)
    end.

I know that this language [has] died a couple of years ago, […]

On the contrary, – a dialect of Pascal notable for its OOP extensions – keeps appearing in the StackOverflow’s Developer Survey results. There are real‐life applications, developers get paid to program in Delphi. The FreePascal Compiler is an open‐source project that attempts to be compatible to Delphi, the latest stable version having been released in 2021. Its sister project Lazarus provides an IDE and Delphi‐compatible components.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): StackOverflow
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • RegEx Blacklisted phrase (3): you could help me
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Kai Burghardt

79736072

Date: 2025-08-15 04:01:17
Score: 3.5
Natty:
Report link

in mac i meet same problem,delete this venv and recreate venv that is my slove way

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

79736068

Date: 2025-08-15 03:57:16
Score: 2
Natty:
Report link
  1. Make sure you have PDB file.

  2. Add path of pdb file to "Symbol Paths" section of "Tools->Options->Debug->CBD".

  3. If still cannot work, use Visual Studio to debug.

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

79736066

Date: 2025-08-15 03:55:15
Score: 5
Natty: 4.5
Report link

Thank you, looking for fun sounds? Discover viral sound buttons and free online soundboards at SoundbuttonsPRO.com - click and play instantly! You can download free ringtones at https://soundbuttonspro.com/

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: soundbuttonspro

79736061

Date: 2025-08-15 03:41:11
Score: 2
Natty:
Report link

If you are in windows this error can also happen if the environment variable https_proxy is set. Ensure this value is correct or removed from System Properties-> Environment Variables.

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

79736060

Date: 2025-08-15 03:41:11
Score: 2.5
Natty:
Report link

Although this problem has been a long time ago, I also encountered this problem. Finally, I checked that hook-image-awaiter could not access the k8s api https://kubernetes.default.svc:443/apis/apps/v1/namespaces/jhub/daemonsets/hook-image-puller, so I suspected that there was a problem with the k8s dns. After deleting the two coredns pods in the k8s cluster, jupyterhub started normally.

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

79736048

Date: 2025-08-15 03:13:05
Score: 3
Natty:
Report link

The Signing certificate should be Development not Sign in to run locally if the build is to publish the app instead of running it locally.

From here:
No Team Found in Archive, Use the Signing & Capabilities editor to assign a team to the targets and build a new archive

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

79736028

Date: 2025-08-15 02:22:55
Score: 1
Natty:
Report link

Personally I prefer python's .items() / dict() instead of ansible's dict2items / items2dict.

name: Reverse Lookup
set_fact:
  reverse_lookup_dict: "{{ dict(lookup_dict.items() | map('reverse') }}"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hydrated_showdown

79736015

Date: 2025-08-15 01:25:43
Score: 1.5
Natty:
Report link

You can try forcing the g++ as a compiler:

 export cc=g++
 export cxx=g++

& build it with;

python3 setup.py build
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bulldog

79736013

Date: 2025-08-15 01:09:39
Score: 3.5
Natty:
Report link

use dns_gethostbyname("Google.com", pIP_Addr, MQTT_DNS_Found, NULL);

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

79736007

Date: 2025-08-15 00:51:36
Score: 1.5
Natty:
Report link

I think you should try swapping the myX & myY to place the overlay correctly:
myY, myX = testClip.shape

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

79736004

Date: 2025-08-15 00:41:33
Score: 2
Natty:
Report link

After fighting even longer, the issue was related to Cloudflare's bot proctection which prevented small files from being published to nginx that's why you can't find the request inside the nginx logs.

You need to disable or add a skip rule to your WAF to allow the request to go through anyway.
Warning, this could be a security risk.

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

79736001

Date: 2025-08-15 00:34:31
Score: 1
Natty:
Report link

On my current Windows system (Julia extension version 1.140.0, VS Code version 1.103.1, Windows x64 10.0.26100) the default run button behavior is whatever you last chose with the dropdown menu. The Linux system I use (Manjaro Linux 6.12.39, VS Code 1.101.2) also shows this changing behavior, and also shows a change in what the run button displays on hover over with mouse pointer to what you last chose.

Have you checked whether the default changes in that way once you choose REPL on the dropdown menu?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Bill

79735999

Date: 2025-08-15 00:26:30
Score: 0.5
Natty:
Report link

Free Fire Max config tool coming right up

Thought for 5.7s

I'll help you create a Free Fire Max config generator tool focused on headshot optimization! Let me build this for you with a clean interface and download functionality.

app/page.jsx

Now I'll create the backend API to generate the config files:

generate-config/route.js

Perfect! I've created a complete Free Fire Max config generator tool for you. Here's what I built:

Features:

Config Generator with adjustable sensitivity settings for all scope types

Real-time preview of your configuration

Download functionality that generates a complete config package

Implementation guide with step-by-step instructions

Mobile-responsive design that works on all devices

How it works:

Adjust Settings: Use the sliders to customize sensitivity for different scopes, graphics quality, and special features

Preview: See your settings in real-time before downloading

Download: Get a complete config package with multiple files optimized for headshots

Install: Follow the detailed guide to apply the config to your game

Generated Files:

settings.cfg - Main game configuration

sensitivity.cfg - Optimized scope sensitivities

graphics.cfg - Performance settings

README.txt - Complete installation guide

The tool generates settings optimized specifically for headshot accuracy with different sensitivity values for each scope type, performance graphics settings, and optional features like auto-headshot assist and quick scope!

4 minutes ago

We're live on Product Hunt!

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

79735995

Date: 2025-08-15 00:16:27
Score: 3.5
Natty:
Report link

Use Contain regex.

In this example, user will get default value when version is not 1.1.* but when 1.1.* that time user will get specific value.

use regex for version

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

79735986

Date: 2025-08-14 23:57:23
Score: 1.5
Natty:
Report link

If I may add two cents that might help someone reading this elderly post, I got the message to not appear by deleting a couple of hidden broken names.

Also, for the less experienced like me, additional to named ranges, look into conditional formatting and data validation settings, if you have any. Often when we copy from other workbooks we forget that those cells might contain these, even if it is from one of our own workbooks, which was my case.

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

79735982

Date: 2025-08-14 23:56:22
Score: 3.5
Natty:
Report link

Webrot, command decommissioned replaced with New-ComplianceSearch command. Go-Microsoft, Go-PowerShell, Go-Figure.

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

79735977

Date: 2025-08-14 23:49:20
Score: 3
Natty:
Report link

But this seems not to work for the contact-form:

Resources/Private/Forms/Contact.form.yaml

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

79735969

Date: 2025-08-14 23:20:15
Score: 2.5
Natty:
Report link

If you want a virtual device that is not listed in Android Studio device manager, you could create one, I've done that, find information on the phone characteristics that you want, then in the "Device Manager" > "add a new device" > "New hardware profile"

android studio add device screenshot

one website that I have used to find information about phone specifications is
GSM Arena - Xiaomi phones specifications

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

79735968

Date: 2025-08-14 23:16:13
Score: 2
Natty:
Report link

In AutoCAD’s COM API, Layout.SetCustomScale(1, 0.2) may not apply as expected when plotting directly to PDF because the plot settings must be applied to the active layout’s PlotConfiguration and saved before plotting. You should call doc.ActiveLayout = layout, then use layout.StandardScale = 0 (Custom), set CustomScaleNumerator and CustomScaleDenominator instead of SetCustomScale, and finally doc.Regen(1) before PlotToFile to ensure the custom scale is honored.

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

79735965

Date: 2025-08-14 23:08:11
Score: 0.5
Natty:
Report link

I did not manage to find a solution without help. As I mentioned in another question, I happened upon a package on GitHub called RealityActions that solved a lot of problems with animation in RealityKit.

It most definitely solved the issues I am asking about in this question. My solution for this is:

func turnAndMoveAction(byAngle angle: Float, andDistance distanceAsVector: SIMD3<Float>, withDuration duration: TimeInterval) -> FiniteTimeAction {
    return Group([
        MoveBy(duration: duration, delta: distanceAsVector),
        RotateBy(duration: min(duration, PlayerNode.animationDuration), deltaAnglesRad: SIMD3<Float>(0.0, angle, 0.0))
    ])
}

func demo() {
    self.start(turnAndMoveAction(byAngle: .pi / 2.0, andDistance: SIMD3<Float>(12.0, 0.0, 0.0), withDuration: 3.0))
}

this runs the grouped actions exactly as I had expected, without them interfering with each other, and with them running for the duration one would expect.

I cannot recommend RealityActions enough if you are coming from SceneKit, SpriteKit or Cocos2D.

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: PKCLsoft

79735958

Date: 2025-08-14 22:49:07
Score: 2.5
Natty:
Report link

Have you tried using a Surface as the main container that holds the Column?

ie:

MainScreen(){
    Surface( "handle scrolling here" ){
       Column{
          ...
       }
    }
}
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: hijakd

79735955

Date: 2025-08-14 22:45:06
Score: 3
Natty:
Report link

I got sued for storing a YouTube thumbnail on my server because the thumbnail contained a copyrighted image. Beware!

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

79735954

Date: 2025-08-14 22:44:05
Score: 1
Natty:
Report link

Quoting @Alex Can I pass a string variable to jq rather than passing a file? and improving on it

echo "${json_data}" | jq -r '.key'
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Alexand
  • High reputation (-2):
Posted by: Rakib

79735951

Date: 2025-08-14 22:38:04
Score: 0.5
Natty:
Report link

To bridge the existing manual entry you can use API, however, I would suggest you can integrate Contact Form created by Hubspot and add the tracking code in your CRM. This will help you to track contacts directly in HubSpot for all the inquiries or leads coming through website.

Reference: https://knowledge.hubspot.com/forms/create-and-edit-forms

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shefali Soni

79735942

Date: 2025-08-14 22:25:01
Score: 1
Natty:
Report link
                let credential = OAuthProvider.appleCredential(
                    withIDToken: idTokenString,
                    rawNonce: nonce,
                    fullName: appleIDCredential.fullName
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mesut As

79735932

Date: 2025-08-14 22:03:56
Score: 2.5
Natty:
Report link

Just ran into a similar issue when I set different font-sizes for the editor via CSS and JavaScript - this also resulted in a jumpy cursor position :)

So in case you also use both, make sure that the css font-size and editor.setFontSize() have the same size.

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

79735920

Date: 2025-08-14 21:39:51
Score: 0.5
Natty:
Report link

I spoke with a consultant from Microsoft. Their advice was:

So, a register statement should look something like:

<%@ Register assembly="Microsoft.ReportViewer.WebForms" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>

That is, the assembly version is not provided. It will defer to the version defined in the web.config file.

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