79766722

Date: 2025-09-16 22:01:21
Score: 4
Natty:
Report link

just use earlier version of Python

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

79766686

Date: 2025-09-16 21:19:11
Score: 3
Natty:
Report link

The problem was the DC promotion failure that was caused by trying to configure the server as DC for the tree domain when it was already promoted to DC for the forest domain (Server can only be DC for one domain)

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

79766683

Date: 2025-09-16 21:11:10
Score: 2.5
Natty:
Report link

If you want the end of foo(), call foo2(), and within foo2() (anywhere in foo2) call __builtin_return_address, and that will be the address of the end of foo().

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

79766681

Date: 2025-09-16 21:10:09
Score: 0.5
Natty:
Report link

Ran into this issue when I was setting up a new server (installed php-mysqli extension without restarting php).

Editing of config files wasn't necessary. Just restarting php service worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: bugblatterbeast

79766676

Date: 2025-09-16 21:02:07
Score: 3.5
Natty:
Report link

How about this?

use Mojo::Log;

my $file_log = Mojo::Log->new(path => "/tmp/log");
my $log = Mojo::Log->new;
$log->on(message => sub {
  my ($log, $level, @lines) = @_;
  $file_log->$level(@lines);
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Mitch

79766672

Date: 2025-09-16 20:53:05
Score: 1
Natty:
Report link

In my case I realized that I only changed the app bundle identifier for the Release environment, but not for Debug and Profile. Fixing the bundle identifier for Debug worked.

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

79766670

Date: 2025-09-16 20:50:05
Score: 2.5
Natty:
Report link

This may be coming late, but i found the answer in this stack overflow link:

Answer

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

79766660

Date: 2025-09-16 20:34:01
Score: 1.5
Natty:
Report link

The decltype(auto) mechanism correctly holds the reference on the POSIX branch because you are returning a named lvalue (path). On the Windows branch, you are returning a prvalue (a temporary object), so the deduced type is the plain value type (std::filesystem::path), which is exactly the desired behavior.

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

79766644

Date: 2025-09-16 20:14:56
Score: 1
Natty:
Report link

I think you want something like this: https://stackblitz.com/edit/vitejs-vite-am1zcjhp?file=src%2Fpdf-util.ts

The thing you are looking for is forward ref, it comes from react. Rest is pure js or some third party library.

Here are some resource: https://react.dev/reference/react/forwardRef

NB: it is being depracated

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

79766625

Date: 2025-09-16 19:59:27
Score: 6 🚩
Natty:
Report link

I have the same issue in standalone project and this one was fixed when I close and restarte the project.

https://angular.dev/errors/NG8001

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Marien Taps

79766589

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

console.log("function" === "function")

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

79766588

Date: 2025-09-16 19:08:13
Score: 2.5
Natty:
Report link

Carbon APIs were still functional for an OpenGL context through macOS 15, but as of macOS 26, have been removed entirely. If you aren't on macOS 26 yet, this is a fun experiment to play with and learn from:

https://handmade.network/forums/wip/t/2408-very_minimal_osx_platform_layer_experiments

https://developer.apple.com/documentation/macos-release-notes/macos-26-release-notes#AGL

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

79766560

Date: 2025-09-16 18:24:02
Score: 1.5
Natty:
Report link

This feature has been added with Swift 6.2 and InlineArray.

https://developer.apple.com/documentation/swift/inlinearray

struct Game {
  // Shorthand for InlineArray<40, Sprite>
  var bricks: [40 of Sprite]

  init(_ brickSprite: Sprite) {
    bricks = .init(repeating: brickSprite)
  }
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Exascale

79766556

Date: 2025-09-16 18:21:01
Score: 2.5
Natty:
Report link

Is there a way to make gcc -fanalyzer work across compilation units?

Yes, use -flto.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is there a
  • High reputation (-2):
Posted by: KamilCuk

79766538

Date: 2025-09-16 17:55:54
Score: 1.5
Natty:
Report link

I struggled for sometime because the built-in github authentication extension was disabled for me. As a result, I wasn't being redirected to github login.
After adding authTye as github and enabling the github authentication extension, I was able to login via web and use copilot on my visual studio installation in Ubuntu.

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

79766536

Date: 2025-09-16 17:51:52
Score: 1
Natty:
Report link

bison's doc [...] tells that I must add %define api.prefix {PREFIX} on eval.y,

Well yes, but that's an enabler, not a complete solution. The docs go on to describe the effects of such a definition:

Specifying ‘%define api.prefix {prefix}’ [...] renames the interface functions and variables of the Bison parser to start with prefix instead of ‘yy’, and all the macros to start by PREFIX (i.e., prefix upper-cased) instead of ‘YY’.

In other words, you also have to change all the YY* symbols appearing explicitly in the parser definition file and the corresponding lexer definition file correspondingly, to use your specified alternative prefix instead of YY.

And that should make sense to you if you pause to consider. The nature of the problem to be solved is that Bison and Flex (following from Yacc and Lex) interact in part via external functions and variables, and via macro definitions, with pre-defined standard names. If you want to include two such parsers in the same program, then that produces a variety of name collisions. Avoiding / fixing those collisions is the main task. Bison and Flex definition files contain a variety of sections that are specified to be copied verbatim to the generated C files and headers, and those need to use the appropriate names.

Much the same applies to Flex's %option prefix="PREFIX"’, which

changes the default ‘yy’ prefix used by flex for all globally-visible variable and function names to instead be ‘PREFIX’. For example, ‘--prefix=foo’ changes the name of yytext to footext. It also changes the name of the default output file from lex.yy.c to lex.foo.c.

Thus, for example, the prototype for yylex() in your grammar file has problems from both directions:

Is there a way to fix this?

Yes. Update the scanner and lexer definition files to match the prefix you assign. Just designating a different prefix is not enough.

Or, is the api.prefix broken on bison?

No. The behavior you show is consistent with Bison behaving as documented.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (1.5): fix this?
  • RegEx Blacklisted phrase (1.5): fix broken on bison?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: John Bollinger

79766527

Date: 2025-09-16 17:38:49
Score: 0.5
Natty:
Report link

for anyone searching for a solution. i tried chatgpt for 1 hour without a solution. after a deep search i found out this. you can do this in the entry point of the inertia app :

router.on("before", (ev) => {
  ev.detail.visit.headers["X-Socket-ID"] = "GGG";
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hemza Talha

79766518

Date: 2025-09-16 17:26:46
Score: 1
Natty:
Report link

Huynh Nhuc's theory was right, we can simply prove it by temporary turning off R8/ProGuard by the following.

// Disable code shrinking and obfuscation
minifyEnabled false
shrinkResources false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2245812

79766511

Date: 2025-09-16 17:21:44
Score: 0.5
Natty:
Report link

To execute the file myInsertFile.sql from the command line in a specific schema, I would suggest:

psql -d myDataBase -a

and then in the psql prompt:

myDataBase=>set search_path to my_schema_01;
SET
myDataBase=>\i myInsertFile.sql

This will execute the sql file with the search path set.

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

79766509

Date: 2025-09-16 17:20:44
Score: 0.5
Natty:
Report link

I had the same phenomenon, I updated the expo app, uploaded the sdk version to 54 and it worked out.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: 김진창

79766506

Date: 2025-09-16 17:16:43
Score: 3.5
Natty:
Report link

in Strutz:Data Fitting and Uncertainty (2nd edition), there is a Section 7.6 "Weighted least squares with correlated data" explaining the formulae in simple manner.

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

79766495

Date: 2025-09-16 17:03:39
Score: 2
Natty:
Report link

An example of reading a process heap

(root㉿Osi83Kali)-[/home/st]# p=`pidof getchar`;dd skip=`echo $((16#\`cat /proc/$p/maps | grep heap | cut -d'-' -f1\`))` count=2024 bs=1 status=none if=/proc/`pidof getchar`/mem | hexdump -C

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Александр Осинцев

79766494

Date: 2025-09-16 17:03:39
Score: 3.5
Natty:
Report link

After a lot of searching (and confirming that launching manually worked fine) I realised there was a tiny box I'd overlooked at the bottom of the trigger page - you need to click 'Enabled'!

enter image description here

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

79766483

Date: 2025-09-16 16:51:36
Score: 2
Natty:
Report link

Just AND your values with the values you want to keep, anything that's ANDed with a zero will be dropped off.

I'm not familiar with your specific syntax but this approach should work and the masking does it all in one operation as long as you combined all your values into one mask.

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

79766471

Date: 2025-09-16 16:32:30
Score: 0.5
Natty:
Report link

To match the tutorial exactly, make sure you're installing the same package versions listed in its package.json file:
https://github.com/kimkimani/Nodejs-Authentication-using-Sessions/blob/main/package.json

{
  "name": "project",
  "version": "1.0.0",
  "description": "Node.js authentication using sessions and Redis",
  "main": "index.js",
  "scripts": {
    "dev": "nodemon index.js"
  },
  "keywords": ["authentication", "express", "redis", "session", "nodejs"],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "bcrypt": "^5.0.1",
    "connect-redis": "^6.1.3",
    "ejs": "^3.1.6",
    "express": "^4.17.3",
    "express-session": "^1.17.2",
    "mongoose": "^6.2.9",
    "redis": "^4.0.6"
  },
  "devDependencies": {
    "nodemon": "^2.0.15"
  }
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ShCc

79766469

Date: 2025-09-16 16:26:28
Score: 3
Natty:
Report link

You need to go to Clerk > Configure > Developers > Native applications > Enable Native API > Add your Android app details and it should work fine.

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

79766467

Date: 2025-09-16 16:25:28
Score: 1.5
Natty:
Report link

Just it case if it would be useful.

Adding code format ``` and ``` would print it as it is.

enter image description here

enter image description here

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

79766454

Date: 2025-09-16 16:11:25
Score: 1
Natty:
Report link

While phunsoft gave an excellent solution, I felt I should suggest an alternative approach.

By default, the ftp server in Z/OS in ASCII mode translates EBCDIC to ASCII and vice versa during the transfer, which simplifies text transfers considerably. To perform an ASCII-mode transfer in Python you would need to use storlines or readlines instead of storbinary or readbinary.

One caution--EBCDIC encoding of the square bracket ([]) is ambiguous--there are two encodings that might be used for it. If you're uploading or downloading code in a language for which those are a syntactical element this may lead to issues.

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

79766453

Date: 2025-09-16 16:09:24
Score: 2
Natty:
Report link

Read heap of the process getchar...

(root㉿Osi83Kali)-[/home/st]# p=`pidof getchar`;dd skip=`echo $((16#\`cat /proc/$p/maps | grep heap | cut -d'-' -f1\`))` count=1024 bs=1 status=none if=/proc/`pidof getchar`/mem | hexdump -C

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Александр Осинцев

79766450

Date: 2025-09-16 16:06:23
Score: 1.5
Natty:
Report link

For my simple use case (just counting pages), switching to smalot/pdfparser solved this issue completely. The same PDFs that were failing with FPDI's compression errors worked perfectly. Obviously different library with different capabilities, but worth trying if you're hitting these FPDI limitations.

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

79766444

Date: 2025-09-16 16:01:22
Score: 1
Natty:
Report link

The error (BigQueryRelationProvider not a subtype) was caused by loading the BigQuery connector twice.

It comes pre-installed in Dataproc versions 2.1 and later, so there's no need to load it manually in this case.

The solution is to try removing the JAR used to create the cluster (spark-bigquery-connector-version=0.42.X) or recreate it without it, as I did.

After that, I was able to run the job.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rotter

79766433

Date: 2025-09-16 15:50:19
Score: 1
Natty:
Report link

I am not the author of this snippet, but I found it useful (tested on Chrome and Safari):

javascript:(function(){
  allowCopyAndPaste = function(e){
  e.stopImmediatePropagation();
  return true;
  };
  document.addEventListener('copy', allowCopyAndPaste, true);
  document.addEventListener('paste', allowCopyAndPaste, true);
  document.addEventListener('onpaste', allowCopyAndPaste, true);
})(); 

Original: https://gist.github.com/Gustavo-Kuze/32959786ce55b2c3751629e40c75c935

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

79766428

Date: 2025-09-16 15:47:18
Score: 1
Natty:
Report link

Your data didn't really have empty values. It had empty rows in the sheet. In order to have disjoint line segments for the same series, you need to have at least one x-axis point with no value for the series. In the following image, you can see that there are gaps in the two series, but not in the Date column, which is used on the x-axis.

enter image description here

Here's a demo spreadsheet that showcases this gap method in order to create a Symbolic Dictionary.

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

79766424

Date: 2025-09-16 15:44:17
Score: 3.5
Natty:
Report link

I currently dealing with a related issue (see below).

enter image description here

I can send you instructions how to remove the drivers from the system if the issue still persists.

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

79766410

Date: 2025-09-16 15:33:13
Score: 5
Natty:
Report link

I have a similar issue unnesting a dataset where the column with the data to unnest contains unequal rows and columns instead of equal sized data as in the original question.

Example dataset:

DT <- data.table::data.table(
  a = c("a1", "a2"),
  df1 = list(data.frame(
    b = c("b1", "b2")
  ))
)
n <- 5 #1e5
set.seed(42)
dt1 <- DT[sample(seq_len(nrow(DT)), n, TRUE),]

# Add unequal data to unnest column
DT2 <- data.table::data.table(
  a = c("a3"),
  df1 = list(data.frame(
    b = c("b1", "b2", "b3"),
    c = c("c1", "c2", "c3")
  ))
)
n <- 5
dt2 <- DT2[sample(seq_len(nrow(DT2)), n, TRUE),]

dt1  <- rbind(dt1, dt2)

Using the data.table solutions I get the following results:

dt1[, data.table::rbindlist(df1, fill = TRUE), by = .(a)]
Error in `[.data.table`(dt1, , data.table::rbindlist(df1, fill = TRUE),  : 
  j doesn't evaluate to the same number of columns for each group
dt1[, unlist(df1, TRUE, FALSE), .(a)]
# Works but all unnested data is placed in a single column

Other data.table solution works but is very slow. Much slower than tidyr::unnest(dt1, cols = c(df1)) which can handle this dataset.

unnested <- rbindlist(
  lapply(seq_len(nrow(dt1)), function(i) {
    inner_dt <- as.data.table(dt1$df1[[i]])  # Convert to data.table
    inner_dt[, a := dt1$a[i]]                # Add outer column
    return(inner_dt)
  }),
  fill = TRUE  # Fill missing columns with NA
)
setcolorder(unnested, c("a", setdiff(names(unnested), "a")))

Any ideas to unnest this type of dataset fast using data.table?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Steve

79766389

Date: 2025-09-16 15:18:05
Score: 7 🚩
Natty:
Report link

Olá!
Estou com mesmo problema, de carregamento infinito do reCaptcha. Instalei o Mootools em: https://extensions.joomla.org/extension/mootools-enabler-disabler/ e mesmo assim não deu certo, mesmo ativando e desativando... Não sei mais o que faço.
Se alguém me der uma outra dica, fico a disposição. Muito obrigado!

Reasons:
  • Blacklisted phrase (1): não
  • Blacklisted phrase (1): Não
  • Blacklisted phrase (2): Olá
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gabriel Suporte

79766375

Date: 2025-09-16 15:06:01
Score: 2.5
Natty:
Report link

Either use full path or use */static/* to make it work

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

79766373

Date: 2025-09-16 15:03:59
Score: 6 🚩
Natty:
Report link

Someone initially posted suggesting using version in the Source string but deleted their post. After replacing every single Source path in the codebase to include the version number (inside the versioned project and outside), it suddenly worked! But why? And does anyone have any cleaner ways of doing this so that the version doesn't have to be updated in hundreds of places when making a new build of the project?

    <ResourceDictionary.MergedDictionaries>
        <styles:SharedResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/ColorDefinitions.xaml"/>
        <styles:SharedResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/FontDefinitions.xaml"/>
    </ResourceDictionary.MergedDictionaries>

<ResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/MyStyles.xaml" />

Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (3): does anyone have any cleaner
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sergey Zabelin

79766368

Date: 2025-09-16 14:58:57
Score: 0.5
Natty:
Report link

| Numbers | Answer |

| 1 | 1 |

| 2.3 | 2.3 |

| 3.2, 4.5 | 4.5 |

| 2.3 | 2.3 |

| 3 | 3 |

| 1.1,2.2,3.4 | 3.4 |

'Numbers' header in the above data is in cell A1. The following formula will work based on your sample data:

=MAX(VALUE(TEXTSPLIT(A2,",",,TRUE)))

TEXTSPLIT(A2,",",,TRUE) splits out the numbers across columns wherever there is a comma. VALUE() converts the output of TEXTSPLIT() to numbers. MAX() takes the max number from the array of numbers across the columns.

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

79766362

Date: 2025-09-16 14:52:55
Score: 2.5
Natty:
Report link

The problem was with my angular.json on the host side. In the "serve" block I needed to add

"options": {
    "extraWebpackConfig": "webpack.config.js"
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aleksandrs Jakovļevs

79766361

Date: 2025-09-16 14:52:55
Score: 3.5
Natty:
Report link

It looks to be a bug, which is fixed in between:

https://github.com/spring-projects/spring-framework/issues/33537

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

79766348

Date: 2025-09-16 14:43:52
Score: 1
Natty:
Report link

If you are using the Qt Maintenance Tool or the Qt Online Installer and only see Qt 6.x (for example Qt 6.9), you can still install older versions like Qt 5.15.x. By default, the installer hides archived versions.

To enable them:

  1. Open the Qt Maintenance Tool (or run the Online Installer).

  2. Log in with your Qt account.

  3. On the “Select Components” page, look for the filter options at the top.

  4. Enable the “Archive” option.

  5. Now you will see older releases, including Qt 5.x.x versions.

  6. Select the version you want (e.g. Qt 5.15.2) and install it.

This way you don’t need to manually download and build from source — the installer can fetch the archived packages for you.

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

79766346

Date: 2025-09-16 14:43:52
Score: 1.5
Natty:
Report link

Im my case the problem was solved when I addressed another error: SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)"

Once this was done (by editing project info to add scene configuration) the error message went away. I am using Xcode 14.2 and testing on iphone 13 simulator.

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

79766342

Date: 2025-09-16 14:43:52
Score: 2.5
Natty:
Report link

Title

Google Sign‑In on Android: Why you must use the Web Client ID (not the Android Client ID) with Credential Manager / Google Identity Services


Question

I was integrating Google Sign‑In in my Android app using Kotlin + Jetpack Compose and the new Credential Manager API with Google Identity Services.

I went to Google Cloud Console → Create Credentials → OAuth Client ID and, since I was building an Android app, I naturally chose Application type: Android. I added my package name and SHA‑1 fingerprint, got the Android Client ID, and used it in:

val googleIdOption = GetGoogleIdOption.Builder()
    .setServerClientId("MY_ANDROID_CLIENT_ID")
    .build()

But I kept getting:

[28444] Developer console is not set up correctly.

After hours of debugging, I discovered that I actually needed to use the Web application client ID in setServerClientId(...), even though my app is Android‑only.

Why is this the case?
What’s the correct way to set up OAuth in Google Cloud so Google Sign‑In works on Android without this error?


Answer

This confusion is extremely common — you’re not alone.
The short version: Google Sign‑In on Android always requires a Web Client ID for ID token retrieval, even if your app is Android‑only.


Why the Web Client ID is required


Correct setup in Google Cloud Console

  1. Create a Web application OAuth client

    • Application type: Web application

    • No need to set redirect URIs for mobile use.

    • Copy the Client ID — this goes into setServerClientId(...) in your Android code.

  2. Create an Android application OAuth client

    • Application type: Android

    • Add your package name and SHA‑1 fingerprint (from ./gradlew signingReport or keytool).

    • This links your signed APK to the same project so Google Play Services trusts it.

  3. Both clients must be in the same Google Cloud project.


Code example

val googleIdOption = GetGoogleIdOption.Builder()
    .setFilterByAuthorizedAccounts(false)
    .setServerClientId("YOUR_WEB_CLIENT_ID") // from Web application type
    .build()

Common pitfalls


Key takeaway

Even for Android‑only apps, you need both:

  • Web Client ID → used in code to request ID tokens.

  • Android Client ID → used to verify your app’s signature with Google Play Services.

This is by design in Google’s OAuth architecture — the Web Client ID represents the “server” side of the flow, even if your “server” is just your backend API.


If you post this, it will save a lot of devs from burning hours on the [28444] error.


Reasons:
  • Blacklisted phrase (1): This link
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Azharul Islam

79766339

Date: 2025-09-16 14:33:27
Score: 11.5 🚩
Natty: 5.5
Report link

Were you able to solve it? If so, how?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mayank Jain

79766338

Date: 2025-09-16 14:32:26
Score: 1
Natty:
Report link

Pete from Laravel Support here!

Laravel Cloud doesn't support file uploads onto the container your application is hosted on. These containers can be replaced at any time for high availability reasons and as such, it's actually recommended you use an external Filesystem for your app.

If you create an Object Storage in Laravel Cloud and attach it to your cluster, you'll be able to adjust your code to save and retrieve files from there.

Here's the documentation: https://cloud.laravel.com/docs/resources/object-storage

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

79766336

Date: 2025-09-16 14:30:25
Score: 3
Natty:
Report link

2 days later, xcode allows me to create another certificate. The older one still shows greyed out.

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

79766330

Date: 2025-09-16 14:22:22
Score: 0.5
Natty:
Report link

I had the same issue. It turns out docker-mailserver was silently failing on my password due to the characters being utilized.

To debug, I'd suggest using a simple plaintext password and then iterate on that.

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

79766328

Date: 2025-09-16 14:20:20
Score: 0.5
Natty:
Report link

As per the documentation, there is an init parameter allow_unnamed_section.

So your example can be implemented as following:

import configparser
cp = configparser.ConfigParser(allow_unnamed_section=True)
cp.read("rsyncd.conf")
path = cp.get(configparser.UNNAMED_SECTION, 'path') # read a value
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pas-calc

79766325

Date: 2025-09-16 14:16:18
Score: 1
Natty:
Report link

see imconf.h for explanation and additional calls for windows dlls:

Windows DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details.

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

79766314

Date: 2025-09-16 14:00:11
Score: 2.5
Natty:
Report link

Increase the height of the container to 350px. That works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Goody

79766302

Date: 2025-09-16 13:52:06
Score: 1
Natty:
Report link

I got the following error in Nifi (Basically a Spring Boot Java application underneath):

Caused by: java.sql.SQLException: Cannot create PoolableConnectionFactory (The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.)

Caused by: org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.

Upgrading the PostgreSQL JDBC driver used (in the workflow) to connect to my PostgreSQL database resolves the error.

Since this isn't specifically for Rust, updating the PostgreSQL JDBC driver is applicable for different types of projects.

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

79766286

Date: 2025-09-16 13:36:00
Score: 3
Natty:
Report link

if your using MSYS2 MINGW64 in windows run as administrator ,in linux bash terminal type sudo

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

79766255

Date: 2025-09-16 12:59:44
Score: 1
Natty:
Report link

I decided it myself and didn’t wait for help. I decided it myself, I didn't wait for help. Maybe it will be useful to someone

String html = scriptElements.html();
String string = "";
Matcher matcher = Pattern.compile("(?<=mp4_144\":\")[^\"]+").matcher(html);
if (matcher.find()) {
    string = matcher.group();
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enjo Flash

79766249

Date: 2025-09-16 12:52:41
Score: 0.5
Natty:
Report link

You can use these prefab forms:

[^\p{ASCII}]

or

[:^ASCII:]
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: futursimple

79766245

Date: 2025-09-16 12:46:39
Score: 1
Natty:
Report link
  • How can I achieve my goal of using a Paged TabView inside a larger ScrollView without it collapsing to zero height?

To fix height issue with TabView inside ScrollView you need to add .aspectRatio(contentMode: .fit) modifier to the TabView.

struct SomeView: View {
    var body: some View {
        NavigationView {
            ScrollView {
                TabView {
                    Text("View A")

                    Text("View B")

                    Text("View C")
                }
                .tabViewStyle(.page)
                .aspectRatio(contentMode: .fit) // <- Will fix the height issue
            }
        }
    }
}
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (0.5):
Posted by: M_Khater

79766232

Date: 2025-09-16 12:28:11
Score: 4.5
Natty: 4
Report link

pannu pa jalsa, jalsa pannu pa.

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

79766229

Date: 2025-09-16 12:27:10
Score: 3.5
Natty:
Report link

[Common 17-69] Command failed: Vivado Synthesis failed

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

79766225

Date: 2025-09-16 12:25:09
Score: 3
Natty:
Report link

Change Your Geometry Normal to Smoothing Group on Export
Smoothing Group Used to Be Default in older Version of Blender But they Changed it to Normals which doesnt work for VRM files / some animations Change This

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shadow Fox

79766210

Date: 2025-09-16 12:14:06
Score: 1
Natty:
Report link

Try adding

-Dfile.encoding="UTF-8"

as JVM parameter. Had exactly the same issue, I think it's because non-ASCII chars are not encoded as UTF-8.

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

79766206

Date: 2025-09-16 12:09:04
Score: 1.5
Natty:
Report link

You’re hitting Oracle’s 1000-item limit in IN lists — not the VARRAY size. For 15k values, load them into a table (temp/global/temp table) or pass them as a collection via PL/SQL, then join against that table/collection instead of hardcoding them in array_id(...).

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

79766196

Date: 2025-09-16 11:55:01
Score: 0.5
Natty:
Report link

TLDR: you can't use wildcards in Principals in IAM Policy Statements....

From what I understand, when you put in a principal in a IAM statement - behind the scenes, it translates that to the internal ID of the user/role. This is to prevent someone maliciously naming something similar to get access - we can argue if someone can create IAM users/roles, then you already have a pretty major issue.... This behavior is why you can't use wildcards in IAM Principals.

Reasons:
  • No code block (0.5):
Posted by: Dan G

79766193

Date: 2025-09-16 11:52:01
Score: 0.5
Natty:
Report link

Thank you so much @joe-sindoni. I had been struggling for hours with WCF to get it working with WS Security. In my case, I had to make a few modifications (with Copilot's help) so the server would validate my signature:

public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
    // Add the ws-Security header
    request.Headers.Add(new WsSecurityHeader());

    // Get the entire message as an xml doc, so we can sign the body.
    var xml = GetMessageAsString(request);

    XmlDocument doc = new XmlDocument();
    doc.PreserveWhitespace = false;
    doc.LoadXml(xml);

    XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable);
    nsmgr.AddNamespace("soapenv", WsSecurityHeader.SoapEnvelopeNamespace);
    nsmgr.AddNamespace("wsse", WsSecurityHeader.WsseNamespace);
    nsmgr.AddNamespace("wsu", WsSecurityHeader.WsseUtilityNamespaceUrl);
    nsmgr.AddNamespace("ds", "http://www.w3.org/2000/09/xmldsig#");

    // The Body is the element we want to sign.
    var body = doc.SelectSingleNode("//soapenv:Body", nsmgr) as XmlElement;

    // Add the Id attribute to the Body, for the Reference element URI
    var id = doc.CreateAttribute("wsu", "Id", WsSecurityHeader.WsseUtilityNamespaceUrl);
    id.Value = BodyIdentifier;
    body.Attributes.Append(id);

    // Get the Security header
    XmlNode securityHeader = doc.SelectSingleNode("//soapenv:Envelope/soapenv:Header/wsse:Security", nsmgr);

    // Add BinarySecurityToken
    string certId = "X509-" + Guid.NewGuid().ToString();
    XmlElement binarySecurityToken = doc.CreateElement("wsse", "BinarySecurityToken", WsSecurityHeader.WsseNamespace);
    binarySecurityToken.SetAttribute("Id", WsSecurityHeader.WsseUtilityNamespaceUrl, certId);
    binarySecurityToken.SetAttribute("ValueType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3");
    binarySecurityToken.SetAttribute("EncodingType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary");
    binarySecurityToken.InnerText = Convert.ToBase64String(X509Certificate.GetRawCertData());
    securityHeader.AppendChild(binarySecurityToken);

    var signedXml = new SignedXmlWithUriFix(doc);
    signedXml.SigningKey = X509Certificate.PrivateKey;
    signedXml.SignedInfo.SignatureMethod = SignedXml.XmlDsigRSASHA1Url;
    signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;

    // Add the X509 certificate info to the KeyInfo section
    var keyInfo = new KeyInfo();
    
    // Create SecurityTokenReference to refer to the BinarySecurityToken
    XmlElement securityTokenReference = doc.CreateElement("wsse", "SecurityTokenReference", WsSecurityHeader.WsseNamespace);
    XmlElement reference = doc.CreateElement("wsse", "Reference", WsSecurityHeader.WsseNamespace);
    reference.SetAttribute("URI", $"#{certId}");
    reference.SetAttribute("ValueType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3");
    securityTokenReference.AppendChild(reference);
    
    // Add the SecurityTokenReference to KeyInfo
    KeyInfoNode keyInfoNode = new KeyInfoNode(securityTokenReference);
    keyInfo.AddClause(keyInfoNode);
    
    signedXml.KeyInfo = keyInfo;

    // Add the reference to the SignedXml object
    Reference xmlReference = new Reference($"#{BodyIdentifier}");
    xmlReference.DigestMethod = SignedXml.XmlDsigSHA1Url;
    
    // Add transform
    xmlReference.AddTransform(new XmlDsigExcC14NTransform());
    
    signedXml.AddReference(xmlReference);

    // Compute the signature
    signedXml.ComputeSignature();

    // Get the Signature element and append to security header
    XmlElement xmlDigitalSignature = signedXml.GetXml();
    securityHeader.AppendChild(doc.ImportNode(xmlDigitalSignature, true));

    // Generate a new message from our XmlDocument
    var newMessage = CreateMessageFromXmlDocument(request, doc);
    request = newMessage;

    return null;
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @joe-sindoni
  • Low reputation (0.5):
Posted by: rasputino

79766191

Date: 2025-09-16 11:51:00
Score: 0.5
Natty:
Report link

I was facing a similar issue. I reconfigured with new credentials, and it worked.

ERROR:
*Error: checking AWS STS access – cannot get role ARN for current session: operation error STS: GetCallerIdentity, get identity: get credentials: failed to refresh cached credentials, failed to load credentials, exceeded maximum number of attempts, 13
*
FIX:
Reconfigure AWS Credentials
Command: aws configure

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Haji Dukureh

79766190

Date: 2025-09-16 11:50:00
Score: 1
Natty:
Report link

Pre-req steps for windows update using powershell:

netsh winhttp set proxy "xxxxxxx:80" # use proxy if any

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Install-PackageProvider -Name NuGet

Install-Module PSWindowsUpdate

Add-WUServiceManager -MicrosoftUpdate

Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | Out-File "D:\MSUpdates.log" -Force

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

79766189

Date: 2025-09-16 11:47:59
Score: 2.5
Natty:
Report link

I have been working in this script until it generated a hello world that compiles into an apk. It is available in this gist:

gist.github.com/vokimon/38f1f6d2ce1b90bcb2676de2d51e520d

Hope it is useful, but consider I am an Android newbie, so for sure it can be improved a lot. Please, send me any updates you make to it.

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: vokimon

79766182

Date: 2025-09-16 11:42:57
Score: 1.5
Natty:
Report link

How to automate windows update using powershell and batch script?

  1. Create MSUpdates.log file in D: drive

  2. Create installpatchexecute.cmd in D: drive with this content:

    pushd D:

    powershell.exe .\installpatch.ps1

    if %errorlevel% neq 0 goto error

    popd

    goto end

    :error

    echo "An error occurred" >> D:\MSUpdates.log

    exit /b 1

    :end

    exit /b 0

  3. Create installpatch.ps1 file in D: drive with this content:

    netsh winhttp set proxy "xxxxxx:80" #(proxy if any)

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

    Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | Out-File "D:\MSUpdates.log" -Force

  4. Create Schedule task to run on every monday at 6pm and relax :)

    pushd c:\windows\system32

    SCHTASKS /Create /S localhost /RU SYSTEM /SC WEEKLY /D MON /ST 18:00 /TN "InstallWindowsPatch" /TR "D:\installpatchexecute.cmd"

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (0.5):
Posted by: Bhaskar Jagadeesha

79766181

Date: 2025-09-16 11:40:56
Score: 1.5
Natty:
Report link

Try:

providers: [provideNativeDateAdapter(), { provide: MAT_DATE_LOCALE, useValue: 'fr-FR' }]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: daviyisu

79766179

Date: 2025-09-16 11:39:56
Score: 2.5
Natty:
Report link

个人想法+大模型:你可以将查询修改如下,使用 coalesce() 函数来处理 NULL 值:

SELECT ROUND(
  coalesce(last_value(LD_ShuiBeng1_DianLiang*40), 0) +
  coalesce(last_value(LDJZ_DianLiang_2*40), 0), 2)
FROM root.building01.aircon.*
WHERE time >= '2025-07-01 00:00:00' AND time <= '2025-08-01 00:00:00'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: kassusu

79766171

Date: 2025-09-16 11:32:54
Score: 3
Natty:
Report link

As it is mentioned in https://www.w3schools.com/html/html_editors.asp

first in your textEdit settings**: Format >** choose "Plain Text"

format

then select "Open and Save" tab: check the box that says "Display HTML files as HTML code instead of formatted text".

enter image description here

and use .html instead of .txt when you want to save.

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

79766167

Date: 2025-09-16 11:29:54
Score: 2.5
Natty:
Report link

Another solution is react-native-root-toast

react-native-paper has a similar component as well.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: RobinBobin

79766162

Date: 2025-09-16 11:22:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766160

Date: 2025-09-16 11:21:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766158

Date: 2025-09-16 11:20:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766154

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

Try to build the android app via Android studio, and put some log. You can see the log in log cat.

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

79766153

Date: 2025-09-16 11:17:50
Score: 3
Natty:
Report link

You can do from WHM > CSF > Firewall Configuration

Enter the 443 Port in TCP_IN and OUT

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

79766148

Date: 2025-09-16 11:12:49
Score: 3.5
Natty:
Report link

I think the target directory has to be a folder, not a file.

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

79766146

Date: 2025-09-16 11:11:48
Score: 3
Natty:
Report link

Pagination is only available from v16.1.0.

Here is the corresponding pull request https://github.com/handsontable/handsontable/pull/11612 and a guide https://handsontable.com/docs/react-data-grid/rows-pagination/.

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

79766135

Date: 2025-09-16 11:01:46
Score: 2
Natty:
Report link

You can check the agent output of the host where you wanna monitor the services. If Checkmk already "reads" the services, you can simply discover it by "Windows Service discovery" for windows, or "Single service discovery" for linux. Both support regular expressions so you can discover multiple services within one rule.

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

79766132

Date: 2025-09-16 11:01:46
Score: 1.5
Natty:
Report link

just delete bin and obj files and reload the project. This will create new obj and bin files which eventually allows you to use

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

79766131

Date: 2025-09-16 10:59:45
Score: 1
Natty:
Report link

use this
fixed your problem

import { HeroUIProvider } from "@heroui/react"

export default function ThemeProvider({ children }: { children: React.ReactNode }) {
  return <HeroUIProvider locale='fa'>{children}</HeroUIProvider>
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amin Nazemi

79766125

Date: 2025-09-16 10:52:44
Score: 1.5
Natty:
Report link
let statusBarHeight = UIApplication.shared.connectedScenes
            .compactMap { $0 as? UIWindowScene }
            .first?.statusBarManager?.statusBarFrame.height ?? 0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yug Modi

79766124

Date: 2025-09-16 10:50:40
Score: 6.5 🚩
Natty:
Report link

In your .htaccess you can add this condition to specify you don't want your folder to be passed to the URL you're visiting:

RewriteCond %{REQUEST_URI} !^/folder-name/ [NC]

Worked for me while having the same issue. Please let me know if I'm wrong since I'm new to this

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Giorgio

79766116

Date: 2025-09-16 10:40:37
Score: 0.5
Natty:
Report link

<!DOCTYPE html> <html lang="en">

<head>

<meta charset="UTF-8" />

<title>Blinking Caret Trail</title>

<style>

body { margin: 0; background: #111; overflow: hidden; }  

svg { width: 100vw; height: 100vh; display: block; }  /\* blinking effect \*/  

rect {

fill: lime;

rx: 2;

animation: blink 1s step-start infinite;

}

@keyframes blink {

50% { opacity: 0; }

}

</style>

</head>

<body>

<svg id="canvas"></svg> <script>

const svg = document.getElementById("canvas");

const width = window.innerWidth;

const height = window.innerHeight;

const N = 25; // number of carets

const rad = 150;

let frm = 0;

const pointer = { x: 0, y: 0 };

const elems = [];

// create SVG rects as carets

for (let i = 0; i < N; i++) {

const use = document.createElementNS("http://www.w3.org/2000/svg", "rect");

use.setAttribute("x", -2);

use.setAttribute("y", -15);

use.setAttribute("width", 4);

use.setAttribute("height", 30);

svg.appendChild(use);

elems.push({ x: width/2, y: height/2, use });

}

window.addEventListener("mousemove", e => {

pointer.x = e.clientX - width / 2;

pointer.y = e.clientY - height / 2;

});

const run = () => {

requestAnimationFrame(run);

frm += 0.02;

let e = elems[0];

const ax = (Math.cos(3 * frm) * rad * width) / height;

const ay = (Math.sin(4 * frm) * rad * height) / width;

e.x += (ax - pointer.x - e.x) / 10;

e.y += (ay - pointer.y - e.y) / 10;

e.use.setAttribute("transform", `translate(${e.x + width/2}, ${e.y + height/2})`);

for (let i = 1; i < N; i++) {

let e = elems\[i\];  

let ep = elems\[i - 1\];  

const a = Math.atan2(e.y - ep.y, e.x - ep.x);  

e.x -= (ep.x - e.x - (Math.cos(a) \* (100 - i)) / 5) / 4;  

e.y -= (ep.y - e.y - (Math.sin(a) \* (100 - i)) / 5) / 4;  



e.use.setAttribute("transform",  

  \`translate(${e.x + width/2}, ${e.y + height/2}) rotate(${(180/Math.PI)\*a})\`  

);  

}

};

run();

</script> </body>

</html> ( pydhroid 3)

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

79766114

Date: 2025-09-16 10:38:37
Score: 1
Natty:
Report link

A long time in the future...

There is a pin button in the top right of any popped out windows in VSCode. Somehow I had clicked it. Unpinning the window worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Rob

79766113

Date: 2025-09-16 10:36:36
Score: 0.5
Natty:
Report link

Just in case anyone else comes across this it now appears to work simply surrounding the text with back ticks

this is my paragraph with some `code goes here` to review

which appears as

this is my paragraph with some code goes here to review

which is handily the same syntax as these posts :-)

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

79766111

Date: 2025-09-16 10:34:35
Score: 1.5
Natty:
Report link
macro bind_doc()
    quote
        text(s::AbstractString) = println(s)
        
        macro text_str(str)
            interpolated = Meta.parse("\"$str\"")
            :(text($interpolated))
        end
    end |> esc
end
@bind_doc()

text"Hi $(1 + 2)"

Here is the implementation of getting Hi 3

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohsin Raza

79766109

Date: 2025-09-16 10:31:34
Score: 0.5
Natty:
Report link

based on https://learn.microsoft.com/en-us/azure/azure-signalr/signalr-concept-client-negotiation#self-exposing-negotiate-endpoint I managed to inject custom user identity claim from our custom incoming JWT into SignaR access token:

import { sign, decode } from "jws";

const inputSignalR = input.generic({
  type: "signalRConnectionInfo",
  name: "connectionInfo",
  hubName: "my-hub",
});

async function negotiate(request: HttpRequest, context: InvocationContext) {
  const signalRDefaultConnectionInfo = context.extraInputs.get(inputSignalR);
  const signalRConnectionString = process.env.AzureSignalRConnectionString;
  const signalRAccessKey = /AccessKey=(.*?);/.exec(signalRConnectionString)[1];

  const userId = extractUserId(request); // extract user identity claim from your JWT
  const originalDecodedToken = decode(signalRDefaultConnectionInfo.accessToken);
  const customizedToken = sign({
    header: originalDecodedToken.header,
    payload: {
      ...originalDecodedToken.payload,
      "asrs.s.uid": userId, // claim used by SignalR Service to hold user identity
      },
    secret: signalRAccessKey
  });

 return { url: signalRDefaultConnectionInfo.url, accessToken: customizedToken };
}

app.post("negotiate", {
  authLevel: "anonymous",
  handler: negotiate,
  route: "negotiate",
  extraInputs: [inputSignalR],
});
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: yohny

79766088

Date: 2025-09-16 10:11:29
Score: 0.5
Natty:
Report link

After a bit of research on gg_ordisurf github source code, the problem was coming from this part of the code function:

  # Calculate default binwidth
  # Can change the binwidth depending on how many contours you want
  if(missing(binwidth)) {
    r <- range(env.var)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

so I added na.rm=TRUE in the range function:

  # MODIFED gg_ordisurf function
  if(missing(binwidth)) {
    r <- range(env.var, na.rm = TRUE)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

and made my own gg_ordisurf function by copying the source code.

Note: the vegan::ordisurf function was working perfectly fine with this issue.

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

79766086

Date: 2025-09-16 10:10:29
Score: 0.5
Natty:
Report link

FetchHeaders failed because your application passed an empty message set. With nothing to fetch, it returned a failed status to alert you.

Ensure your code verifies the success of the `imap.Search` call. If it returns null, inspect `imap.LastErrorText` for details. Additionally, check that all prior IMAP method calls succeeded to rule out earlier failures.

Also, you can check the `Imap.SessionLog` if `Imap.KeepSessionLog` is true. See https://www.example-code.com/csharp/imap_sessionlog.asp

Reasons:
  • No code block (0.5):
Posted by: Chilkat Software

79766082

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

My solution was the next on Android.

In AndroidManifest file replaced the next android:launchMode="singleTop" to this android:launchMode="singleTask" and removed the next android:taskAffinity="" .

After the changes I needed to rebuild the whole project.

It solved my problem.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uigitdev

79766081

Date: 2025-09-16 10:07:28
Score: 2.5
Natty:
Report link
I receive null  
Element player = scriptElements.select("playerParams").first();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enjo Flash

79766079

Date: 2025-09-16 10:02:27
Score: 0.5
Natty:
Report link

The Inspect/Selenium method doesn’t work anymore, LinkedIn only shows relative times in the DOM, while the exact timestamp is hidden in the post ID.

For a quick solution, you can use a free tool like https://onclicktime.com/linkedin-post-date-extractor
For more details, here’s a helpful article:https://onclicktime.com/blog/how-to-see-linkedin-post-date

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

79766077

Date: 2025-09-16 10:00:26
Score: 1.5
Natty:
Report link

Ensure the Nwidart/laravel-modules version installed matches the application's Laravel version. for instance for laravel 10.0 run composer require --dev nwidart/laravel-modules:^10`

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

79766076

Date: 2025-09-16 09:58:25
Score: 2.5
Natty:
Report link
document.querySelectorAll('style, link[rel="stylesheet"]').forEach(e => e.remove());
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zari Habibi

79766075

Date: 2025-09-16 09:57:24
Score: 1
Natty:
Report link

enter image description here

I found the solution I was using reactJs vite in my project and because it had hot reload and every change would refresh the localhost page in the browser and the translator popup would open in the default browser and I didn't pay attention to it, the autofocus would go to the browser because of the browser translator popup.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I found the solution
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: H24

79766069

Date: 2025-09-16 09:48:22
Score: 4.5
Natty:
Report link

Same issue here both with ping and initialize

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PsyCode

79766064

Date: 2025-09-16 09:45:21
Score: 1.5
Natty:
Report link

I haven't tested it but you can apparently do it with python

import xlwings as xw

# Update these paths

iqy_file_path = r"C:\\Path\\To\\Your\\File.iqy"

excel_file_path = r"C:\\Path\\To\\Your\\Workbook.xlsx"

# Launch Excel

app = xw.App(visible=True)

wb = app.books.open(excel_file_path)

# Choose the sheet

sheet = wb.sheets['Sheet1']

# Refresh all queries

wb.api.RefreshAll()

# Save and close

wb.save()

wb.close()

app.quit()

print("Excel workbook refreshed with .iqy data.")

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

79766062

Date: 2025-09-16 09:45:21
Score: 2.5
Natty:
Report link

Once the ImportError for BigQueryCreateEmptyTableOperator has been fixed, clear the PyCache and restart the Airflow scheduler and web server. It prevents DAGs from disappearing from the user interface by refreshing DAG parsing.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pauls Creationids Interior Des

79766060

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

Solution in 2025:

pip uninstall pip-system-certs

pip install pip_system_certs

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