79579756

Date: 2025-04-17 17:14:48
Score: 3.5
Natty:
Report link

This issue was fixed by upgrading to macOS 15.4.1 (24E263), nothing else I did.

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

79579755

Date: 2025-04-17 17:14:48
Score: 2
Natty:
Report link

If you just want to change it to another language, and don't want to use localization for the rest of app at all (I mean not multilingual app), you should just add the language you want to change and make it default language for your app.

enter

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

79579749

Date: 2025-04-17 17:11:47
Score: 1
Natty:
Report link

You need to iterate over the list

for planet in planets:
    planet.draw(WIN)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79579744

Date: 2025-04-17 17:08:46
Score: 4.5
Natty: 3.5
Report link

interesting question, asdasdasdasdasdas

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

79579738

Date: 2025-04-17 17:03:45
Score: 0.5
Natty:
Report link

I have found a way. I created a base struct that is only member variables with specializations for the 3 relevant sizes, and made my Vector struct its child.

template<typename T, int N> requires std::is_arithmetic_v<T> && (N > 1)
struct Data {
    T data[N];
};

template<typename T>
struct Data<T, 2> {
    union {
        T data[2];
        struct { T x, y; };
        struct { T r, g; };
        struct { T u, v; };
    };
};

template<typename T>
struct Data<T, 3> {
    union {
        T data[3];
        struct { T x, y, z; };
        struct { T r, g, b; };
    };
};

template<typename T>
struct Data<T, 4> {
    union {
        T data[4];
        struct { T x, y, z, w; };
        struct { T r, g, b, a; };
    };
};

export template <typename T, int N> requires std::is_arithmetic_v<T> && (N > 1)
struct Vector : Data<T, N> {
    ...
}


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

79579736

Date: 2025-04-17 17:03:45
Score: 1.5
Natty:
Report link

I had the same error with the same stacktrace.

When I used "http://...." instead of "https://...", it worked!

I got a hint from Getting Unsupported or unrecognized SSL message; nested exception is javax.net.ssl.SSLException while calling external API

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sung101

79579733

Date: 2025-04-17 17:00:44
Score: 1
Natty:
Report link

The other answer did not work for me, but what did work for me on M1:

brew install llvm

export LLVM_CONFIG_PATH=$(brew --prefix llvm)/bin/llvm-config
export LIBCLANG_PATH=$(brew --prefix llvm)/lib

echo 'export LLVM_CONFIG_PATH=$(brew --prefix llvm)/bin/llvm-config' >> ~/.zshrc
echo 'export LIBCLANG_PATH=$(brew --prefix llvm)/lib' >> ~/.zshrc

source ~/.zshrc

cargo clean and cargo build afterwards:)

Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Coreggon

79579714

Date: 2025-04-17 16:41:40
Score: 4.5
Natty:
Report link

This article answers your question 100%. Dev.to article on server routing in Angular 19

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shemang David

79579710

Date: 2025-04-17 16:37:39
Score: 2.5
Natty:
Report link

Thanks, that works for me in Safari:

resizable=0

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BouncedBy

79579709

Date: 2025-04-17 16:37:38
Score: 4.5
Natty:
Report link

Isn't it against the TOS of Google Colab to host a Minecraft Server?
I want to host a PRIVATE/PERSONAL server for about 5 players ONLY.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Isn't it
  • Low reputation (1):
Posted by: Ayan Khan

79579701

Date: 2025-04-17 16:35:38
Score: 2.5
Natty:
Report link

With grails-geb 4.1.x (Grails 6), 4.2.x (Grails 6) and 5.0.x (Grails 7) you will need to have a local container environment.

https://github.com/apache/grails-geb?tab=readme-ov-file#containergebspec-recommended

This change was made due to to old web driver solution no longer be maintained.

https://github.com/erdi/webdriver-binaries-gradle-plugin/pull/44

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

79579698

Date: 2025-04-17 16:33:37
Score: 2
Natty:
Report link

The functional tests use Geb to drive a web browser. As of Grails 7, this was transitioned to use Test Containers. You can read more about this here: https://github.com/apache/grails-geb

That error is occurring because there isn't a detected container runtime present. Installing one of the listed ones on the repo will resolve the error.

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

79579692

Date: 2025-04-17 16:30:36
Score: 4
Natty:
Report link

You're basically just calculating the average. Why don't you use avg ?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alexander Unterrainer-DefconQ

79579682

Date: 2025-04-17 16:24:34
Score: 1.5
Natty:
Report link

try to remove description field from generateMetadata function from Layout.tsx . It render data once on Layout, and then generate second time on each page. Try to keep description field on Page.tsx only and check.

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

79579676

Date: 2025-04-17 16:20:33
Score: 3.5
Natty:
Report link

IN the file .htaccess try to write ErrorDocument 404 /index.html

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

79579672

Date: 2025-04-17 16:17:32
Score: 1
Natty:
Report link

had same issue, and I am in Ubuntu I remembered I enabled ufw firewall so I have disabled it with sudo ufw disalbe or you can allow port 8081 by sudo ufw allow 8081/tcp

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

79579671

Date: 2025-04-17 16:16:32
Score: 10.5
Natty: 8
Report link

have you found a solution? I have the same problem. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): have you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pretorian

79579670

Date: 2025-04-17 16:16:32
Score: 0.5
Natty:
Report link
Sub IndexHyperlinker()
'
' IndexHyperlinker Macro
'
Application.ScreenUpdating = False
Dim Fld As Field, Rng As Range, StrIdx As String, StrList As String, IdxTxt As String, i As Long, j As Long
StrList = vbCr
With ActiveDocument
  If .Indexes.Count = 0 Then
    If (.Bookmarks.Exists("_INDEX") = False) Or (.Bookmarks.Exists("_IdxRng") = False) Then
      MsgBox "No Index found in this document", vbExclamation: Exit Sub
    End If
  End If
  .Fields.Update
  For Each Fld In .Fields
    With Fld
      Select Case .Type
        Case wdFieldIndexEntry
          StrIdx = Trim(Split(.Code.Text, "XE ")(1))
          StrIdx = Replace(StrIdx, Chr(34), "")
          StrIdx = NormalizeIndexName(StrIdx)
          If InStr(StrList, vbCr & StrIdx & ",") = 0 Then
            i = 0: StrList = StrList & StrIdx & "," & i & vbCr
          Else
            i = Split(Split(StrList, vbCr & StrIdx & ",")(1), vbCr)(0)
          End If
          StrList = Replace(StrList, StrIdx & "," & i & vbCr, StrIdx & "," & i + 1 & vbCr)
          i = i + 1: Set Rng = .Code: MsgBox StrIdx
          With Rng
            .Start = .Start - 1: .End = .End + 1
            .Bookmarks.Add Name:=StrIdx & i, Range:=.Duplicate
          End With
        Case wdFieldIndex: IdxTxt = "SET _" & Fld.Code
        Case wdFieldSet: IdxTxt = Split(Fld.Code, "_")(1)
      End Select
    End With
  Next
  If (.Bookmarks.Exists("_INDEX") = True) And (.Bookmarks.Exists("_IdxRng") = True) Then _
    .Fields.Add Range:=.Bookmarks("_IdxRng").Range, Type:=wdFieldEmpty, Text:=IdxTxt, Preserveformatting:=False
  Set Rng = .Indexes(1).Range
  With Rng
    IdxTxt = "SET _" & Trim(.Fields(1).Code)
    .Fields(1).Unlink
    If Asc(.Characters.First) = 12 Then .Start = .Start + 1
    For i = 1 To .Paragraphs.Count
      With .Paragraphs(i).Range
        StrIdx = Split(Split(.Text, vbTab)(0), vbCr)(0)
        StrIdx = NormalizeIndexName(StrIdx)
        .MoveStartUntil vbTab, wdForward: .Start = .Start + 1: .End = .End - 1
        For j = 1 To .Words.Count
          If IsNumeric(Trim(.Words(j).Text)) Then
            .Hyperlinks.Add Anchor:=.Words(j), SubAddress:=GetBkMk(Trim(.Words(j).Text), StrIdx), TextToDisplay:=.Words(j).Text
          End If
        Next
      End With
    Next
    .Start = .Start - 1: .End = .End + 1: .Bookmarks.Add Name:="_IdxRng", Range:=.Duplicate
    .Collapse wdCollapseStart: .Fields.Add Range:=Rng, Type:=wdFieldEmpty, Text:=IdxTxt, Preserveformatting:=False
  End With
End With
Application.ScreenUpdating = True
End Sub

Function GetBkMk(j As Long, StrIdx As String) As String
Dim i As Long: GetBkMk = "Error!"
With ActiveDocument
  For i = 1 To .Bookmarks.Count
    If InStr(.Bookmarks(i).Name, StrIdx) = 1 Then
      If .Bookmarks(i).Range.Information(wdActiveEndAdjustedPageNumber) = j Then _
        GetBkMk = .Bookmarks(i).Name: Exit For
    End If
  Next
End With
End Function

Function NormalizeIndexName(StrIn As String) As String
    ' Replace leading numerals with their word equivalents
    Dim NumWords(1 To 20) As String
    NumWords(1) = "first_": NumWords(2) = "second_": NumWords(3) = "third_"
    NumWords(4) = "fourth_": NumWords(5) = "fifth_": NumWords(6) = "sixth_"
    NumWords(7) = "seventh_": NumWords(8) = "eighth_": NumWords(9) = "ninth_"
    NumWords(10) = "tenth_": NumWords(11) = "eleventh_": NumWords(12) = "twelfth_"
    NumWords(13) = "thirteenth_": NumWords(14) = "fourteenth_": NumWords(15) = "fifteenth_"
    NumWords(16) = "sixteenth_": NumWords(17) = "seventeenth_": NumWords(18) = "eighteenth_"
    NumWords(19) = "nineteenth_": NumWords(20) = "twentieth_"
    
    Dim tmp As String: tmp = Trim(StrIn)
    Dim i As Integer
    For i = 20 To 1 Step -1
        If tmp Like CStr(i) & "*" Then
            tmp = NumWords(i) & Mid(tmp, Len(CStr(i)) + 1)
            Exit For
        End If
    Next i
    
    ' Replace remaining chars
    tmp = Replace(tmp, ", ", "_")
    tmp = Replace(tmp, " ", "_")
    tmp = Replace(tmp, "-", "_")
    NormalizeIndexName = tmp
End Function
Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: David Ringsmuth

79579661

Date: 2025-04-17 16:13:31
Score: 2
Natty:
Report link

You can try my project iplist-youtube, it tries to make a list of all youtube ips through frequent dns queries.
https://github.com/touhidurrr/iplist-youtube

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

79579655

Date: 2025-04-17 16:10:30
Score: 4
Natty:
Report link

Update your browser and relaunch.

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

79579653

Date: 2025-04-17 16:06:29
Score: 1.5
Natty:
Report link

With the current version of VSCode you can simply go to Help→Welcome.
This will show the Welcome page again with the Start → New File... Open... Clone Git Repository… Connect to... and the recent project links.

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

79579652

Date: 2025-04-17 16:06:29
Score: 3
Natty:
Report link

I tried in Apr 2025:

Pandas version: 1.5.3

Numpy version: 1.21.6

Sqlalchemy version: 1.4.54

tablename.tosql() function working fine

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

79579651

Date: 2025-04-17 16:05:28
Score: 1.5
Natty:
Report link

i changed my path in db.ts from

import { PrismaClient } from "@prisma/client";

to

import { PrismaClient } from "../../lib/generated/prisma"; this then it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karthik Bhatt

79579647

Date: 2025-04-17 15:58:27
Score: 1
Natty:
Report link

yarn add react-native-gesture-handler

worked for me

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

79579645

Date: 2025-04-17 15:56:26
Score: 2
Natty:
Report link

Starting from SQLAlchemy v1.4 there is a method in_transaction() for both Session and AsyncSession classes.

AsyncSession: https://docs.sqlalchemy.org/en/20/orm/extensions/asyncio.html#sqlalchemy.ext.asyncio.AsyncSession.in_transaction
Session: https://docs.sqlalchemy.org/en/20/orm/session_api.html#sqlalchemy.orm.Session.in_transaction

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

79579639

Date: 2025-04-17 15:53:25
Score: 3
Natty:
Report link

what helped me was, plugging in and out my wifi stick and letting no browser open. before it already downloaded some other packages, so only one was left anyway. so one always have to restart the installing process...

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

79579615

Date: 2025-04-17 15:42:22
Score: 0.5
Natty:
Report link

You need to create the key outside the cluster and pass in as part of your deployment.

This PR added the functionality to do this using a KubernetesSecretsRepository

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

79579608

Date: 2025-04-17 15:38:21
Score: 0.5
Natty:
Report link

Look at the output of the following small program, this will answer your question.

int main()
{
  printf(" 3%%2 = %d\n", 3%2);
  printf("-3%%2 = %d\n", -3%2);
}

Output:

 3%2 = 1 
-3%2 = -1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fieres

79579569

Date: 2025-04-17 15:19:15
Score: 4.5
Natty:
Report link

You need to update react-native-safe-area-context and rebuild your app (https://github.com/AppAndFlow/react-native-safe-area-context/pull/610)

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Денис Гладкий

79579562

Date: 2025-04-17 15:16:15
Score: 1.5
Natty:
Report link

Found the answer, it took a while to find, but here is the reason the Excel Source does what it does.

From page: https://learn.microsoft.com/en-us/sql/integration-services/load-data-to-from-excel-with-ssis?view=sql-server-ver16

"The Excel driver reads a certain number of rows (by default, eight rows) in the specified source to guess at the data type of each column. When a column appears to contain mixed data types, especially numeric data mixed with text data, the driver decides in favor of the majority data type, and returns null values for cells that contain data of the other type. (In a tie, the numeric type wins.) Most cell formatting options in the Excel worksheet do not seem to affect this data type determination."

This is a very useful feature to have, if you don't want to change the perceived data type of the Excel spreadsheet.

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

79579549

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

I had an issue using two PC's on one the =LINEST(yrange,xrange^{1,2}) worked fine, on the other it did not, I got one result not three. What I found was on the second PC it was inserting an invisible @ character that stopped the array working properly. If I copier the sheet an put it on PC 1 I could see the character and delete it. Save the file and put it back on the 2nd PC and supprise it worked properly. Haven't found the cause yet but suspect there is a windows or excel setting different, but it wasn't the region, language or keyboard settings. There are differences between the PC's one is running 1st is running office 365 the 2nd is running excel 2019 stand alone. The Line on the bad PC read

=@LINEST(yrange,xrange^{1,2}) but you couldn't see the @ on that PC but it screws thing up..

Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Quazie

79579547

Date: 2025-04-17 15:07:12
Score: 1.5
Natty:
Report link

Since you are using an old version of VectorCAST the best way to do this is to create a test case and put it in a compound test case. Then set the iteration counter in the compound test to 1000001. This will run the test case 1000001 times and will create the condition that you need to cover the "if" statement.

If you were using a newer version of VectorCAST (6.4 or above) you could use Probe Points to set the local variable directly.

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

79579545

Date: 2025-04-17 15:06:12
Score: 1.5
Natty:
Report link

Solution using modern array-based formulas, generalizes to any-size tables

Coming to this question after the advent of array-based formulas like MAP, BYROW, LAMBDA, etc., which seem to be faster than Apps Script functions (when less than 106 cells are involved). I want to offer an alternative solution that uses only formulas, and does not require "string hacking" (2), because some people need such features. This solution will work on tables with different shapes.

Definitions. In your example, we'll assume Table A is TableA!A1:B3 and Table B is TableB!A1:B5, and we're going to use LET to define four variables for clarity:

In either table, the key values are not unique. Our goal is to find all matches of key values (e.g. x1 and x2) between the two tables, and display only the corresponding values from TableA!A1:A3 and TableB!B1:B5.

Formula. The formula below generates a new array containing values from the first column of table A and second column of table B. Each row represents a match between keys_left and keys_right, with proper duplication when a key appears in multiple rows.

= LET(
  data_left, TableA!A1:A3, data_right, TableB!B1:B5,
  keys_left, TableA!B1:B3, keys_right, TableB!A1:A5,
  index_left, SEQUENCE( ROWS( keys_left ) ),
  prefilter, ARRAYFORMULA( MATCH( keys_left, keys_right, 0 ) ),
  index_left_filtered, FILTER( index_left, prefilter ),
  keys_left_filtered, FILTER( keys_left, prefilter ),
  matches, MAP( index_left_filtered, keys_left_filtered, LAMBDA( id_left, key_left,
    LET(
      row_left, XLOOKUP( id_left, index_left, data_left ),
      matches_right, FILTER( data_right, keys_right = key_left ),
      TOROW( BYROW( matches_right, LAMBDA( row_right,
        HSTACK( row_left, row_right )
      ) ) )
    )
  ) ),
  wrapped, WRAPROWS( FLATTEN(matches), COLUMNS(data_right) + COLUMNS(data_left) ),
  notblank, FILTER( wrapped, NOT(ISBLANK(CHOOSECOLS(wrapped, 1))) ),
  notblank
)

How it works? A few tricks are necessary to make this both accurate and fast:

Generalize. To apply this formula to other tables, just specify the desired ranges (or the results of ARRAYFORMULA or QUERY operations) for the first four variables; keys_left and keys_right must be single column but data_left and data_right can be multi-column. (Or create a Named Function and specify the four variables as parameters as "Argument placeholders".)

Named Function. If you just want to use this, you can import the Named Function INNERJOIN from my spreadsheet functions. That version assumes the first row contains column headers. See documentation at this GitHub repo.

Notes.

(1) I loved string-hacking approaches back when they were the only option, but doubleunary pointed out that they convert numeric types to strings and cause undesirable side effects.

(2) This is counterintuitive because it means you search the keys_right twice overall; but I found in testing that if you include unmatched rows in the joining step, is much costlier.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: garcias

79579542

Date: 2025-04-17 15:03:11
Score: 1.5
Natty:
Report link

You can also delete all logs in a single command with

gcloud logging logs list \
   --format="value(NAME)" \
 | xargs -n1 -I{} gcloud logging logs delete {} --quiet
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jack Kirby

79579531

Date: 2025-04-17 14:58:09
Score: 2
Natty:
Report link
Schemes {{ scheme.name}} this.treatments = this.site.services?.filter(service => service.archived === false).sort((a, b) => a.name.localeCompare(b.name));
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Coding Techniques

79579525

Date: 2025-04-17 14:55:08
Score: 1
Natty:
Report link

For the sake of later searchers, like me, although it is 11 years later, Python now has the logging.handlers.QueueHandler class which supports background threading for log message processing. It is thread-safe even when used by the applications own threads. I found it very easy to learn and use.

Currently, using background QueueHandlers is better practice, particularly for apps that do heavy logging with JSON log formatting. All processing of log formatters is done in a thread so as to not suppress the calling app thread. Good luck.

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

79579509

Date: 2025-04-17 14:45:05
Score: 0.5
Natty:
Report link

Unfortunately, based on my understanding it is not possible to make the linked service connection name in dataset nor the integration runtime in linked service cannot be parameterized.

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

79579505

Date: 2025-04-17 14:41:04
Score: 0.5
Natty:
Report link

It seems that setting shadowCopyBinAssemblies="false" in your web.config does not have the desired effect, and the shadow copying feature is still being applied. This can happen due to several reasons, particularly in IIS and how ASP.NET manages assemblies during runtime.

Here are a few things to check or try:

IIS Application Pool Settings:

Make sure that the application pool is set to use No Managed Code if you don't need .NET runtime to load assemblies. Sometimes, even if this is set to .NET, IIS might still shadow copy assemblies for certain configurations.

Ensure that the application pool is using Integrated mode instead of Classic mode.

ShadowCopying Behavior in IIS:

Even if you set shadowCopyBinAssemblies="false" in web.config, IIS might still shadow copy assemblies for the first request to make sure that the web application loads and initializes properly.

To fully control shadow copying behavior, you might need to adjust the ASP.NET settings through the registry or through IIS settings, particularly if you're using IIS to host your application.

Test with Debugging Mode Off:

In production, debugging is often enabled (debug="true"), which may cause the shadow copying to remain enabled. Ensure you have debug="false" for production environments.

Temporary ASP.NET Files Location:

Even with shadowCopyBinAssemblies="false", ASP.NET might still cache assemblies in the Temporary ASP.NET Files directory (C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files). This is normal behavior if the application needs to handle certain runtime operations or if the assemblies are not explicitly precompiled.

Check IIS and ASP.NET Configuration:

Make sure that the IIS server is properly restarted after changes in web.config. Sometimes, changes don't take effect until IIS is fully restarted, especially in production environments.

Ensure that shadowCopyBinAssemblies is correctly set within the hostingEnvironment section in web.config (as you've already done).

Deployment Considerations:

If you're deploying the application on a production server, double-check that you are indeed using the correct **web.config **file (not an older version or one that got cached during deployment).

Review Assembly Binding Log:

You can enable assembly binding logs to check if any assembly is being loaded or shadow-copied, which might help identify if something unexpected is happening.

If none of these solutions work, consider researching deeper into IIS configuration and ASP.NET runtime behavior for shadow copying, or review logs to see if there are any clues indicating why shadow copying persists despite the setting.

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

79579504

Date: 2025-04-17 14:41:04
Score: 2.5
Natty:
Report link

I have installed successfully boltztrap2 with all the required files in wsl in Ubuntu20.04LTS using Python3.12.8. However boltztrap2 does not produce any results for LiZnSb. Pl help in this issue.Prof.Dr.Ram Kumar Thapa. India

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prof. Ram Kumar Thapa

79579495

Date: 2025-04-17 14:37:03
Score: 1
Natty:
Report link

Try to use local variable

def common = steps.load('common.groovy')
def FOO = common.FOO
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79579490

Date: 2025-04-17 14:35:02
Score: 7.5 🚩
Natty: 4.5
Report link

this version does work as mentioned above devtools::install_github("dmurdoch/leaflet@crosstalk4")
BUT it is not compatible with recent versions of r leaflet. any suggestions?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Antoine Chaillon

79579489

Date: 2025-04-17 14:35:02
Score: 2
Natty:
Report link

I can confirm it is an issue related to zsh. Kamal is clearly expecting bash.

Easy fix:

  1. Create a new user dedicated to kamal deployment, like ... "kamal"

  2. Add it to the "docker" group

  3. Set this user shell to bash

  4. Update your deploy.yml to use this new user

  5. Profit

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

79579468

Date: 2025-04-17 14:23:58
Score: 2.5
Natty:
Report link

Voip is concept and covers all communciations over internet protocol while WebRTC is a technology that deals with how client applications can be developed on web browser to make communcaitons over interet

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

79579467

Date: 2025-04-17 14:23:58
Score: 1
Natty:
Report link

In Windows 11 this powershell command should do it :

(Get-Process -Id 3432).WorkingSet64
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: user829755

79579465

Date: 2025-04-17 14:21:58
Score: 2.5
Natty:
Report link

Try opening project.xcworkspace (and not project.xcodeproj) in Xcode and run via simulator.

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

79579464

Date: 2025-04-17 14:20:57
Score: 1.5
Natty:
Report link

TinyMCE now has an option to support this.

tinymce.init({
  noneditable_class: 'mceNonEditable',
  format_noneditable_selector: '.mceNonEditable'
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sebastian Post

79579463

Date: 2025-04-17 14:20:57
Score: 1.5
Natty:
Report link

I had the same, turned out to be my auto-build batch file generated a string that was not a valid guid for the ProductCode. ISCmdBuild happily generated the install with the invalid string.

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

79579459

Date: 2025-04-17 14:18:57
Score: 0.5
Natty:
Report link

To hide the keyboard toolbar in the Android Emulator, follow these steps:

  1. Open the Emulator: Launch your Android Emulator from Android Studio or via the command line.

  2. Access Emulator Settings:

    • Click on the three dots (More options) in the emulator's side panel to open the extended controls.
  3. Go to Settings:

    • In the extended controls window, navigate to the Settings tab.
  4. Disable the Keyboard Toolbar:

    • Look for an option related to the virtual keyboard or input settings (this might vary slightly depending on the emulator version).

    • If available, toggle off "Show virtual keyboard toolbar" or a similar setting. In some cases, you may need to disable "Enable virtual keyboard" entirely.

  5. Alternative: Modify AVD Configuration:

    • If the toolbar persists, open the AVD Manager in Android Studio.

    • Edit the emulator's Advanced Settings.

    • Under Hardware Input, set Keyboard Input to None or disable HW Keyboard.

  6. Restart the Emulator:

    • Close and relaunch the emulator to apply the changes.

If the toolbar still appears, ensure you're not using a custom skin or third-party keyboard that might override these settings. Check the emulator's documentation for your specific version, as options can differ.

Let me know if you need help finding these settings or if the toolbar persists!

custom emulator skins

Android Studio shortcuts

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Quý Lê Minh

79579455

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

I don't know if you were able to solve your problem yet, but here is a paper proposing a method for mean-preserving quadratic splines, which can take additional constraint for lower bounds :

https://www.sciencedirect.com/science/article/pii/S0038092X22007770

doi : 10.1016/j.solener.2022.10.038

I have used it for approximating daily cycles of instantaneous surface temperature from 3h-mean values, and the method is particularly robust and efficient. The authors provide the python interface to implement the method in your code.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Félix S.

79579454

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

You could try adding a reference to the Microsoft.Windows.Compatibility NuGet package to the project generating the .NET6 DLL.

You might also need to add <UseWindowsForms>true</UseWindowsForms> to the project file if the framework DLL uses winforms.

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

79579452

Date: 2025-04-17 14:14:55
Score: 1.5
Natty:
Report link

This works:
select toString(date_time_column, timezone_column) from your_table

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Haris Bin Saif

79579451

Date: 2025-04-17 14:14:55
Score: 1.5
Natty:
Report link

I am using Baklava on Pixal 6 Pro. I had same issue and i turned off Write in text field and turned on physical keyboard -> Show on-screen keyboard option. I don't see that widget anymore

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: androidXP

79579445

Date: 2025-04-17 14:10:54
Score: 0.5
Natty:
Report link

My VS build consistently halted mid process but couldn't be stopped w/o force stopping the process. I attempted all the solutions proposed here, but wasn't successful.

After a while I attempted to go to the code folder and delete the bin / obj folders and I found that there was a process that was holding certain files w/i bin / obj folder content hostage. I wasn't able to resolve this so I simply restarted the computer then once restarted I deleted the bin / obj files and then performed a rebuild w/i VS. This completed the rebuild and I was able to build from then on.

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

79579441

Date: 2025-04-17 14:08:54
Score: 3.5
Natty:
Report link

The issue is fixed with prophet version 1.1.5

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

79579438

Date: 2025-04-17 14:07:53
Score: 1
Natty:
Report link

This is only possible for the context of Web Extensions.
See this MDN document.

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

79579432

Date: 2025-04-17 14:06:53
Score: 1
Natty:
Report link

For me the problem was caused because IntelliJ had duplicated (Test) Sources Root in Project Structure. It happened, because few days back I marked those folders as sources root manually to fix some issue quickly. It seems like after Maven re-import it merged the manual markings with the POM declaration. Manually removing those sources roots in Project Structure and re-importing the POM solved the problem, leaving only single entries for sources roots.
IntelliJ: 2024.1.1 (Build #IU-241.15989.150, built on April 29, 2024)

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

79579423

Date: 2025-04-17 14:00:52
Score: 0.5
Natty:
Report link

You can introduce "first" and "last" values like this

const(
    Monday DayOfWeek = iota
    Sunday
    // extras
    firstDay = Monday
    lastDay = Sunday
)

And iterate

for d := firstDay; d <= lastDay; d++ {
 ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aknopov

79579421

Date: 2025-04-17 13:59:51
Score: 2
Natty:
Report link

This is a problem about managing multiple resolutions, aspect ratios and window resizing behaviours.

Open the Project Settings, go to Display › Window, scroll to the Stretch section, and select the Stretch Mode that best suits your needs.

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

79579418

Date: 2025-04-17 13:58:51
Score: 1
Natty:
Report link

To those asking why a larger buffer size might help with DOS attacks above, I think the point was that it could help the attacker. If you assign client_body_buffer_size to 1M, if a malicious agent opened up 10k simultaneous connections then 10GB of memory would be consumed, leading to possible memory starvation.

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

79579414

Date: 2025-04-17 13:55:50
Score: 0.5
Natty:
Report link

It appears that the ansible documentation is just unclear. It suggests that the _facts is somehow specially associated with the corresponding module and that led me to believe it would automatically be called when the main module was instantiated. That does not appear to be the case. So my solution is to just get rid of the _facts module and do everything in the single module.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Trevor

79579410

Date: 2025-04-17 13:54:49
Score: 5.5
Natty:
Report link

Fix was provided in this GitHub issue: https://github.com/dotnet/aspnet-api-versioning/issues/1122

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

79579405

Date: 2025-04-17 13:52:49
Score: 3
Natty:
Report link

Did you try something like this ? It is good ready to use tool

https://chromewebstore.google.com/detail/ai-pdf-summary/jkaicehmhggogmejdioflfiolmdpkekf

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Farm42

79579402

Date: 2025-04-17 13:51:48
Score: 1.5
Natty:
Report link

إزالة رؤوس طلب العميل خارج الطلب:

myClient.DefaultRequestHeaders.Remove("Connection"); myClient.DefaultRequestHeaders.Add("Connection", "keep-alive"); myClient.DefaultRequestHeaders.Accept.Remove(new MediaTypeWithQualityHeaderValue("application/json")); myClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"))

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: حميد احمد

79579397

Date: 2025-04-17 13:49:48
Score: 1
Natty:
Report link

I asked the same question in the Discord Expo channel and got this answer:

No.

That command will: run prebuild if the "android" folder doesn't already exist compile the native project in the "android" folder start up the Expo dev system (Metro) launch the Android emulator, installing the latest build of the native app start up the native app

So the answer is no, that command does not clear AsyncStorage.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: es1

79579394

Date: 2025-04-17 13:48:47
Score: 0.5
Natty:
Report link

It seems that the issue might not be directly related to your code, as you've verified that everything is in line with the Azure.AI.OpenAI 2.1.0 documentation. Since you've already tried regenerating API keys, recreating the Azure Search components, and using Fiddler/Wireshark to inspect the traffic, let's consider the following specific possibilities for the 400 Bad Request error:

MaxOutputTokenCount: While you’ve set it to 4096, it's possible that this is too high for the current payload, especially if you're dealing with large requests. Lowering this number to something smaller (e.g., 1024 or 2048) might resolve the issue.

Endpoint Configuration: Double-check the endpoints for both OpenAI and Azure Search. Even though you've confirmed the correct values, sometimes there can be issues with region-specific endpoints or certain configuration settings that can cause the request to be malformed.

DataSource Authentication: Ensure that the API key used for the Azure Search service is correct, and verify that the Authentication method is properly handling it. This part sometimes causes issues if the key doesn't have the right permissions.

Payload Format: There might be an issue with how the payload is structured when you're sending the request. Ensure that the ChatCompletion object and the messages being sent are formatted correctly. It might be helpful to add some logging before the request is sent to verify the message structure.

Review Server Logs: The 500 Internal Server Error might also provide more context in the server logs. Since you’ve included a try-catch block, you can log the exception details more thoroughly to get a better idea of what went wrong.

If none of these suggestions solve the problem, it may be worth revisiting the API version you are using and seeing if there's a newer release or patch for Azure.AI.OpenAI that addresses this issue. Additionally, checking the Azure portal for any service disruptions or issues with the OpenAI integration could provide more insights.

Let me know if you'd like further assistance!

This response focuses more on providing specific diagnostic steps based on your provided context. Let me know if this works!

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

79579392

Date: 2025-04-17 13:48:47
Score: 0.5
Natty:
Report link

As per your error screenshot, You have successfully logged in to your account, but you do not meet the conditions for accessing this resource. This error is occurred sometimes because the administrator has set conditional access for the account in Azure Portal.

To find out what conditional access is set, you need to log in to Azure Portal to view and disable it.

To check any Conditional Access Policy is assigned:

Navigate to Conditional Access Policy -> View all Policy

enter image description here

As the error only suggest, It might be the Conditional Access Policy which is restricting you for sign-in from restricted location defined by your admin.

If you find any such policy, disable it and try to sign-in again.

References:

Microsoft QnA Thread

Troubleshooting sign-in problems with Conditional Access

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

79579387

Date: 2025-04-17 13:46:47
Score: 0.5
Natty:
Report link

None of the above worked for me, because I am using the Jupyter Notebook debugger.
If you are facing the same problem when debugging a cell in a notebook, try the following :
1. Add PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT=10 (10 or any number) to your .env file in your project root

2. Add "python.envFile": "${workspaceFolder}/.env" in your .vscode/settings.json

3. Test that the new value of the parameter is taken into account in jupyter notebook debugger by running the following in a cell :

import os
import sys

print("Python:", sys.executable)
print("PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT:", os.environ.get("PYDEVD_WARN_SLOW_RESOLVE_TIMEOUT"))

The path should be the one to the kernel indicated at the top right corner of the file window in VS code. The second print should return the value you indicated in the .env file (and not "None")

Reasons:
  • Whitelisted phrase (-1): try the following
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: Manon Châteaux

79579386

Date: 2025-04-17 13:46:47
Score: 0.5
Natty:
Report link

When you add a colour (or any “split”) aesthetic to a ggplot, ggplotly will turn each level of that aesthetic into a separate trace. Inside each trace, event_data("plotly_hover")$pointNumber is the index of the point within that trace, so it always starts back at zero when you move from one colour‐trace to the next.

There are two ways to deal with it:

  1. Re‐compute the original row by hand, using both curveNumber (the index of the trace) and pointNumber (the index within the trace). You’d have to know how many rows are in each group so that for, say, trace 1 (“b”) you add the size of group “a” to its pointNumber.

  2. Carry the row‐index through into Plotly’s “key” field, and then pull it back out directly. This is much cleaner and will work even if you change the grouping.

    library(shiny)
    library(ggplot2)
    library(plotly)
    
    ui <- fluidPage(
      titlePanel("Plotly + key aesthetic"),
      fluidRow(
        plotlyOutput("plotlyPlot", height = "500px"),
        verbatimTextOutput("memberDetails")
      )
    )
    
    server <- function(input, output, session) {
      # add an explicit row‐ID
      df <- data.frame(
        id  = seq_len(10),
        x   = 1:10,
        y   = 1:10,
        col = c(rep("a", 4), rep("b", 6)),
        stringsAsFactors = FALSE
      )
    
      output$plotlyPlot <- renderPlotly({
        p <- ggplot(df, aes(
                    x     = x,
                    y     = y,
                    color = col,
                    # carry the row‐id into plotly
                    key   = id,
                    # still use `text` if you want hover‐labels
                    text  = paste0("colour: ", col, "<br>row: ", id)
                  )) +
             geom_point(size = 3)
    
        ggplotly(p, tooltip = "text")
      })
    
      output$memberDetails <- renderPrint({
        ed <- event_data("plotly_hover")
        if (is.null(ed) || is.null(ed$key)) {
          cat("Hover over a point to see its row‑ID here.")
          return()
        }
        # key comes back as character, so convert to numeric
        row <- as.integer(ed$key)
        cat("you hovered row:", row, "\n")
        cat("  colour:", df$col[df$id == row], "\n")
        cat("  x, y  :", df$x[df$id == row], ",", df$y[df$id == row], "\n")
      })
    }
    
    shinyApp(ui, server)
    
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): When you add a
  • Low reputation (1):
Posted by: ChatGPT

79579382

Date: 2025-04-17 13:44:46
Score: 2
Natty:
Report link

I tried to use the .github/copilot-instructions.md file with

Always document Python methods using a numpy-style docstring.

It seems ok when creating a function from scratch, that is the full code + doc is the result of a request. But when asking to add a comment, still Google-style.

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

79579381

Date: 2025-04-17 13:43:46
Score: 1
Natty:
Report link

I finally found the solution myself by retrying later and with a bit of rewording in the searches. A page of the MSDN explains the syntax to re-enter the CLR-realm from a bare address.

https://learn.microsoft.com/en-us/visualstudio/debugger/memory-windows?view=vs-2022#view-memory-pointers-net

The syntax is the following:

{CLR}@address

where address is your bare address, e.g. 0x0000007f12345678. The CLR/debugger will apparently happily figure out for you the type of the data pointed by that address, no need to specify the typing (of course the CLR knows the type, doesn't it!).

E.g.: {CLR}@0x0000007f12345678

Here's a quick screen capture with a managed string in C#:

Example of usage of the {CLR}@address syntax in a watch to view a managed variable contents only knowing its bare address

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

79579378

Date: 2025-04-17 13:42:45
Score: 4
Natty: 4.5
Report link

This was raised in GitHub and discussed in more detail here:
https://github.com/snowflakedb/snowflake-jdbc/issues/2123

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

79579369

Date: 2025-04-17 13:40:44
Score: 2
Natty:
Report link

The closest you can get to make this possible, is to have a CI/CD pipeline that produces the contents and modifies a placeholder that will be your git commit ID. Hope that makes sense.

I once created a pipeline that produces a PDF that embeds the associated git commit ID in the generated artifacts.

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

79579363

Date: 2025-04-17 13:36:43
Score: 11.5
Natty: 7.5
Report link

I am using ui-grid 4.8.3 and facing the same issue. Any solution?

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (2): Any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kunal Gaikwad

79579362

Date: 2025-04-17 13:35:42
Score: 7
Natty: 7.5
Report link

What if I don't have a insert key?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if I
  • Low reputation (1):
Posted by: TRI99ER

79579353

Date: 2025-04-17 13:30:41
Score: 3
Natty:
Report link

allow port in your server's internal firewall whether it is linux or windows. sometimes your OS firewall blocks the packet.

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

79579352

Date: 2025-04-17 13:30:41
Score: 3
Natty:
Report link

you should export ANDROID_HOME and JAVA_HOME and then you can build template with android platform

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

79579351

Date: 2025-04-17 13:29:40
Score: 1
Natty:
Report link

As of terraform 1.9 variables can now refer to other variables https://www.hashicorp.com/en/blog/terraform-1-9-enhances-input-variable-validations hence the code posted in the first message of this thread would work.

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

79579347

Date: 2025-04-17 13:27:40
Score: 0.5
Natty:
Report link

It's been a while, but here is some relevant info.

The dependencies.html file from @prunge's will show you the beautiful report, but it won't contain any info about the actual repository, from which each of dependencies is taken from (at least now, in 2025).

This information could be found, as answered here, in your local repository right next to the downloaded artifact itself in a file named _remote.repositories with format like:

#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#DateTime
artifactId-version.pom>repository-name=
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @prunge's
  • Low reputation (0.5):
Posted by: Michael

79579342

Date: 2025-04-17 13:26:39
Score: 1.5
Natty:
Report link

After a day of debugging, in my case the problem was this line https://github.com/pimcore/admin-ui-classic-bundle/blob/v1.6.2/public/js/pimcore/asset/tree.js#L83 which got removed in version 1.6.3, which basically casts the id from number to string.

My pimcore version: v11.4.1

My solution was to downgrade pimcore/admin-ui-classic-bundle to version 1.6.2 in composer:

composer require pimcore/admin-ui-classic-bundle:1.6.2 --no-update

If you can go up in your version, here was this fixed: https://github.com/pimcore/admin-ui-classic-bundle/commit/34e6053b52a36bb143f8e87b43d5177fa8502dce

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

79579333

Date: 2025-04-17 13:22:38
Score: 1
Natty:
Report link

Here's another thing to consider: On Windows 11, the default "Documents" folder MAY be a cloud folder, such as OneDrive. If you are writing data to the user's Documents folder, some file types, such as a standalone database (Access or SQLite) will stall or fail during the "write" period because the service is trying to sync the database into the cloud, causing not only a severe performance hit, but can also corrupt the database.

Windows 11 has an option for users to re-direct the "Documents" folder to the non-cloud location (C:\Users\<name>\Documents\), but it's not the default. If you are using the Documents folder and/or subfolder for such files, the alternative is this:

Dim docFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) & "\Documents\"

That will deliver the path to the C:\Users\<name>\Documents\ folder. And of course, you should test whether it exists, create it if it doesn't and test that you can write to it.

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

79579331

Date: 2025-04-17 13:19:37
Score: 2
Natty:
Report link

You can only change it to Content-Type: multipart/form-data if you submit with <form action={createUser}> for example. Otherwise server components will default to Content-Type: text/plain;charset=utf-8

source: https://github.com/vercel/next.js/discussions/72961#discussioncomment-11309941

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

79579328

Date: 2025-04-17 13:17:37
Score: 1.5
Natty:
Report link

Try this from documentations

Linux:

export CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON"

Windows:

set CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON"
Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ikhasanmusaev

79579317

Date: 2025-04-17 13:13:35
Score: 1
Natty:
Report link

"oninput" event might be the simplest (also great for range inputs):

<input type="number" id="n" value="5" step=".5" oninput="alert(this.value);" />

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

79579307

Date: 2025-04-17 13:07:34
Score: 1
Natty:
Report link

Finally I managed to solve the issue. let me break the ice, the culprit was the Network Firewall.

Now let me explain what happened. The issue relied in the communication between Kube API Server and worker nodes. It was only kubectl exec, logs, port-forward these commands which did not work earlier, all other kubectl worked pretty well. The solution was hidden in the fact how these commands are actually executed.

In contrast to other kubectl commands exec, logs, top, port-forward these works slightly different way. These commands needs direct communication between kubectl client and worker nodes, hence it requires TCP tunnel to be established. And that tunnel is established via Konnectivity agents which are deployed on all worker nodes. This agent establish a connection with kube API Server via a TCP port 8132. Hence this 8132 must be allowed in the egress firewall rule.

So in my case this port was missing in the rules hence all the Konnectivity agent pods were down, meaning no tunnel was established, which signifies the error message No agent available.

Reference - https://cloud.google.com/kubernetes-engine/docs/troubleshooting/kubectl#konnectivity_proxy

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Utshab Saha

79579300

Date: 2025-04-17 13:03:33
Score: 0.5
Natty:
Report link
  1. PyCoTools3 ([PyPI]: pycotools3) is a pure Python package, and should install on any Python 3

    (py_pc064_03.06_test1_pippkgs) [cfati@CFATI-5510-0:e:\Work\Dev\StackExchange\StackOverflow\q079481428]> python -VV
    Python 3.6.8 (tags/v3.6.8:3c6b436a57, Dec 24 2018, 00:16:47) [MSC v.1916 64 bit (AMD64)]
    
    (py_pc064_03.06_test1_pippkgs) [cfati@CFATI-5510-0:e:\Work\Dev\StackExchange\StackOverflow\q079481428]> python -m pip install --no-deps pycotools3
    Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com
    Collecting pycotools3
      Downloading pycotools3-2.1.22-py3-none-any.whl (128 kB)
         |¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦| 128 kB 2.2 MB/s
    Installing collected packages: pycotools3
    Successfully installed pycotools3-2.1.22
    

    So, the package itself is perfectly installable (not to be confused with runable). Its one of the dependencies (and it has 113 of them) that has the problem, yielding the question ill formed. Also, it doesn't list the install command as it should ([SO]: How to create a Minimal, Reproducible Example (reprex (mcve)))

  2. Python 3.6 seems like an odd Python 3 version to use, as its EoL is 3+ years ago

Hmm, as I noticed that [GitHub]: CiaranWelsh/pycotools3 doesn't have any dependency version requirements, I just attempted installing:

(py_pc064_03.06_test1_pippkgs) [cfati@CFATI-5510-0:e:\Work\Dev\StackExchange\StackOverflow\q079481428]> python -m pip uninstall -y pycotools3
Found existing installation: pycotools3 2.1.22
Uninstalling pycotools3-2.1.22:
  Successfully uninstalled pycotools3-2.1.22

(py_pc064_03.06_test1_pippkgs) [cfati@CFATI-5510-0:e:\Work\Dev\StackExchange\StackOverflow\q079481428]> python -m pip install --prefer-binary pycotools3
Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com
Collecting pycotools3

# @TODO - cfati: Truncated output

Successfully installed MarkupSafe-2.0.1 alabaster-0.7.13 antimony-2.15.0 appdirs-1.4.4 async-generator-1.10 atomicwrites-1.4.0 attrs-22.2.0 babel-2.11.0 backcall-0.2.0 bleach-4.1.0 certifi-2025.1.31 charset-normalizer-2.0.12 colorama-0.4.5 cycler-0.11.0 decorator-5.1.1 defusedxml-0.7.1 dill-0.3.4 docutils-0.18.1 entrypoints-0.4 idna-3.10 imagesize-1.4.1 importlib-metadata-4.8.3 iniconfig-1.1.1 ipykernel-5.5.6 ipython-7.16.3 ipython-genutils-0.2.0 jedi-0.17.2 jinja2-3.0.3 jsonschema-3.2.0 jupyter-client-7.1.2 jupyter-core-4.9.2 jupyterlab-pygments-0.1.2 kiwisolver-1.3.1 libroadrunner-2.0.5 lxml-5.3.2 matplotlib-3.3.4 mistune-0.8.4 multiprocess-0.70.12.2 munch-4.0.0 nbclient-0.5.9 nbconvert-6.0.7 nbformat-5.1.3 nbsphinx-0.8.8 nest-asyncio-1.6.0 nose-1.3.7 numpy-1.19.3 packaging-21.3 pandas-1.1.5 pandocfilters-1.5.1 parso-0.7.1 pathos-0.2.8 phrasedml-1.3.0 pickleshare-0.7.5 pillow-8.4.0 plotly-5.18.0 pluggy-1.0.0 pox-0.3.0 ppft-1.6.6.4 prompt-toolkit-3.0.36 psutil-7.0.0 py-1.11.0 pycotools3-2.1.22 pygments-2.14.0 pyparsing-3.1.4 pyrsistent-0.18.0 pytest-7.0.1 python-dateutil-2.9.0.post0 python-libcombine-0.2.15 python-libnuml-1.1.4 python-libsbml-5.19.2 python-libsedml-2.0.26 pytz-2025.2 pywin32-305 pyyaml-6.0.1 pyzmq-25.1.2 requests-2.27.1 rrplugins-2.1.3 sbml2matlab-1.2.3 scipy-1.5.4 seaborn-0.11.2 six-1.17.0 sklearn-0.0.post12 snowballstemmer-2.2.0 sphinx-5.3.0 sphinx-rtd-theme-2.0.0 sphinxcontrib-applehelp-1.0.2 sphinxcontrib-devhelp-1.0.2 sphinxcontrib-htmlhelp-2.0.0 sphinxcontrib-jquery-4.1 sphinxcontrib-jsmath-1.0.1 sphinxcontrib-qthelp-1.0.3 sphinxcontrib-serializinghtml-1.1.5 tellurium-2.2.0 tenacity-8.2.2 testpath-0.6.0 tomli-1.2.3 tornado-6.1 traitlets-4.3.3 typing-extensions-4.1.1 urllib3-1.26.20 wcwidth-0.2.13 webencodings-0.5.1 zipp-3.6.0

Since I used a VirtualEnv, I found [anaconda]: Installing pip packages that states:

However, you might need to use pip if a package or specific version is not available through conda channels.

So, there you go, problem solved (with no need of installing anything).

Might be interesting to read:

Reasons:
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): StackOverflow
  • Probably link only (1):
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: CristiFati

79579296

Date: 2025-04-17 13:02:32
Score: 1
Natty:
Report link

Your current setup seems complex and large-scale. I can understand that managing NiFi data flow deployment and upgrades in this large-scale setup manually can be overwhelming.

A few days ago, I came across a tool named Data Flow Manager. I explored its website and found out that it offers a UI to deploy and upgrade NiFi data flows. I feel that you can now deploy your data flows without any effort and manual process with this tool.

Also, one of your requirements - scheduling with history and rollback - is also possible with this tool. After reading their website, I watched a few videos where I came across this feature, and it was phenomenal. Means you can record every action associated with the data flows.

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

79579291

Date: 2025-04-17 13:02:32
Score: 3.5
Natty:
Report link

bring forward in the visibilty option of the indicator order

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

79579281

Date: 2025-04-17 13:02:32
Score: 3
Natty:
Report link

I know this is a very old question but for anyone who is having same issue and stumble on this same issue. Please ensure you use the right syntax.

BLUE

fun main() {
println(getMnemonic(color.BLUE))
}

change to

fun main() {
println(getMnemonic(color.blue))
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having same issue
  • Low reputation (0.5):
Posted by: James Smith

79579280

Date: 2025-04-17 13:01:32
Score: 3.5
Natty:
Report link

You didn't say where you obtained Dolibarr, and what version of it.

However, your issue looks very similar to https://github.com/Dolibarr/dolibarr/issues/31816, which has been solved by this diff: https://github.com/Dolibarr/dolibarr/pull/31820/files.

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

79579279

Date: 2025-04-17 13:01:32
Score: 3
Natty:
Report link

Go to Run icon in header -> run configuration -> select the instance ->r8 click -> duplicate -> go to envirment tab -> write in VM envirmrnt -> -Dserver.port=8001 -> apply -> run

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

79579278

Date: 2025-04-17 13:01:32
Score: 1
Natty:
Report link

I achieved exactly that this way:

for (var { source, destination } of redirects) {
    if (source.test(request.uri)) {
       request.uri = request.uri.replace(source, destination);
...
...
return {
        status: '301',
        statusDescription: 'Moved Permanently',
        headers: {
          location: [{ value: request.uri }]
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: djook

79579270

Date: 2025-04-17 13:01:32
Score: 2.5
Natty:
Report link

yeah, that was it, I tried a different image and it worked :)

thjanks

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vanessa

79579267

Date: 2025-04-17 13:01:32
Score: 1.5
Natty:
Report link

You're absolutely right to want to avoid rewriting your entire Python/OpenCV pipeline in JavaScript — especially for image-heavy and complex processing tasks. The good news is that you can run your existing Python + OpenCV code on-device, even within a React Native app. There are several strategies depending on your platform (Android vs iOS) and how deep you want to integrate.

Use Chaquopy, Pyto, ONNX, Tensorflow Lite.

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

79579266

Date: 2025-04-17 13:01:32
Score: 0.5
Natty:
Report link

Answer from @keen is using {request>remote_ip}, but it's not the actual client's IP address when caddy is working with trusted_proxies, where caddy is behind with reverse proxies or CDN like CloudFront/Cloudflare.

Alternative approach is using {request>client_ip}, in which trusted_proxies will update client_ip according to trusted_proxies. Then we can use it afterwards:

format transform `{request>client_ip} - {request>user_id} [{ts}] "{request>method} {request>uri} {request>proto}" {status} {size} "{request>headers>Referer>[0]}" "{request>headers>User-Agent>[0]}" "host:{request>host}"` {
        time_format "02/Jan/2006:15:04:05 -0700"
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @keen
  • Low reputation (0.5):
Posted by: Gea-Suan Lin

79579264

Date: 2025-04-17 13:01:32
Score: 1
Natty:
Report link

googleFunctions is your module that you are importing (from). You specify the path to the directory that contains modules; C:/Scripts/Google. If you need a __init__.py, then you would put that inside a module, not int he directory that contains modules (and you don't need one). The way you currently put your path, means you should be importing import MoveExtracts directly.

– Mikael Öhman

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

79579263

Date: 2025-04-17 13:01:32
Score: 4.5
Natty:
Report link

Now exist strategy.openprofit_percent

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

79579261

Date: 2025-04-17 13:01:31
Score: 1
Natty:
Report link

I found an existing feature request on the Google Issue Tracker that relates to your concern. Please note that there is currently no estimated timeline for when the feature will be released. Feel free to post there should you have any additional comments or concerns regarding your issue. I also recommend ‘starring’ the feature request to receive notifications about any updates.

Regarding the Google Issue Tracker, it is intended for direct communication with Google’s engineering team. Please avoid sharing any personally identifiable information (e.g., your project ID or project name).

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: HerPat

79579236

Date: 2025-04-17 13:01:31
Score: 1
Natty:
Report link

I have created a project to create audio and CSV in Parquet. You can ignore the audio part in this code.

https://github.com/pr0mila/ParquetToHuggingFace

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

79579233

Date: 2025-04-17 13:01:31
Score: 0.5
Natty:
Report link

VLOOKUP() is the way to go:

In A1 (or wherever you begin), =VLOOKUP(B1,$C$1:$D$3,2,FALSE)

Explained:

B1 is the value you're looking for;

$C$1:$D$3 is the range in which you will be looking and returning from, note that VLOOKUP will always search in the first column (so C column); Adjust according to your actual range; Now I've used absolute references, so you can just drag down from here on.

2 is the column number which you wish to return (so D column);

Solution VLOOKUP

Wrap the thing in ISERROR(formula here, "error message here") to add an error message if not found:

Error solution (Column A contains the formula, column B was manual input)

XLOOKUP() would make this easier, but I don't think that works in Excel-2010.

Edit: added FALSE argument to the formula to find only exact matches, thanks Darren Bartrup-Cook

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is the
  • Low reputation (0.5):
Posted by: Excellor

79579225

Date: 2025-04-17 13:01:31
Score: 1.5
Natty:
Report link

You can forward cookies from the client to the api using the following snippet:

 const cookieStore = await cookies();

 headers: {
   Cookie: cookieStore.toString(),
 }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joshua Bolk