79826730

Date: 2025-11-21 16:11:31
Score: 1.5
Natty:
Report link

I think you're on the right track with this by looking at the Python module. What I want to try here is something along the lines of defining the type originally in Python and relying on the Python module's Class wrapper type, then potentially defining methods in Chapel as much as possible and calling over into the Python type for only the more basic functionality. But I'm not sure if that'd allow you to call those methods from Python, or even what the performance would look like from doing so, as it might still require a custom TypeConverter to accomplish that or even some feature requests for things we haven't implemented yet.

I'm hoping Jade will chime in on this thread, they may have some better ideas than I do. In the meanwhile, I'll muse on the structure of this and play with some things locally.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Lydia Duncan

79826726

Date: 2025-11-21 16:09:30
Score: 5
Natty: 5
Report link

running through the same issue altho my table is a data.frame. The columns values are booleans T/F, do they have to be 0/1s instead?

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

79826722

Date: 2025-11-21 16:06:29
Score: 1
Natty:
Report link

Intercom complains if I enter localhost, but I can still I save the changes, and it works (2025-11-21)Trusted domains in Intercom with validation error

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

79826721

Date: 2025-11-21 16:05:29
Score: 2.5
Natty:
Report link

In newer versions there is no comment at the beginning - so search for string: var VERSION =

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

79826720

Date: 2025-11-21 16:05:29
Score: 4
Natty:
Report link

You can’t. Homey’s OAuth2 login view always opens the URL inside Homey’s own in-app browser, and the SDK doesn’t provide any way to force it to open in the device’s external browser.
The whole OAuth flow is handled internally by the Homey app. The SDK only gives you the callback and the URL — how that URL is opened is completely controlled by the Homey mobile app, not by your code.
Because of this, Google’s restriction against embedded webviews can’t be avoided. The only real option is to ask Athom to add external-browser support for OAuth login in a future update.

You should already know this you dumb stupid fuck. Welcome to Stackoverflow! We krazy in this bitch

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Blacklisted phrase (2): fuck
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: usechatgpt

79826710

Date: 2025-11-21 15:58:27
Score: 1
Natty:
Report link

StackOverflow is a Q&A site for technical questions and troubleshooting. You should ask for feedback on CodeReview instead.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Remy Lebeau

79826709

Date: 2025-11-21 15:58:27
Score: 0.5
Natty:
Report link

The latest advice is to set property vnetRouteAllEnabled to true instead of using WEBSITE_CONTENTOVERVNET as seen at:

https://learn.microsoft.com/en-us/azure/app-service/configure-vnet-integration-routing#configure-with-the-azure-cli

However, even that advice is not up to date, as that property has been renamed since Apr 2024:

az resource update --resource-group <group-name> --name <app-name> --resource-type "Microsoft.Web/sites" --set properties.outboundVnetRouting.contentShareTraffic=true --api-version 2025-03-01

See: https://learn.microsoft.com/en-us/azure/templates/microsoft.web/sites?pivots=deployment-language-bicep#:~:text=bool-,contentShareTraffic,-Enables%20accessing%20content

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

79826706

Date: 2025-11-21 15:53:26
Score: 1
Natty:
Report link

Using @Santiago Squadron answer I now have a forth option. Executing script in the module context is a powerful trick. I have to think about it. Life would be a lot easier if it was possible to have name space, or getter/setter for regular variables.

$value = 0
    
function doCheck {
    
    write-host $value
    $script:value += 1
}

Export-ModuleMember -Function 'doCheck'
[CmdletBinding()]
    param ( )
    
begin   { 

    import-module -Name '.\myModule.psm1' -Force
    $myModule = Get-Module myModule
}
process { }

end { 

    write-host (. $myModule { $value })

    . $myModule { $value += 1 }
    myModule\doCheck

    write-host (. $myModule { $value })
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Santiago
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Peyre

79826703

Date: 2025-11-21 15:51:25
Score: 2.5
Natty:
Report link

CommonJS is still more widely used so it can myabe be easier to work with since many modules can be written for CommonJS. I'd still suggest ESM for a new project, it's cleaner and surprisingly or no, more optimised. There's also a r performance related thing, ESM imports are asynchronous whereas CommonJS imports are synchronous. Also it has robust type checking and is statically analysable which are not available with CommonJS.

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

79826702

Date: 2025-11-21 15:51:24
Score: 11.5 🚩
Natty: 6
Report link

Having the same issue, have you been able to solve it?

Reasons:
  • Blacklisted phrase (1.5): have you been able to
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Independent-Crocodile-3489

79826698

Date: 2025-11-21 15:45:23
Score: 0.5
Natty:
Report link

Solution

I realised that the path needed to be relative from where the init function was being call - maybe obvious, but took a while for me to realise. The test function was called a few levels under my internal dir (which was on the same level as the database dir in the question. I just have to: ../../ and so on until I got to the correct level.

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

79826693

Date: 2025-11-21 15:40:22
Score: 3.5
Natty:
Report link

E: Package 'python-pip' has no installation candidate

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

79826691

Date: 2025-11-21 15:36:21
Score: 0.5
Natty:
Report link

What I understood from your question is that you want 'n' to match with both 'n' and 'ñ' when doing a word search. If that is the case, you can simply define an equivalence table and construct a pattern from it:

import re

multi_match = {
    'n': r'[nñ]',
    'e': r'[eé]',
    # and more
}

def word_search(text:str, word: str):
    pattern = ''
    for c in word:
        pattern += multi_match[c] if c in multi_match else c

    return re.findall(pattern, text)

text = 'épée epee piñata pinata'

print(word_search(text, 'epee'))
print(word_search(text, 'épée'))
print(word_search(text, 'pinata'))
print(word_search(text, 'piñata'))

Output:

['épée', 'epee']
['épée']
['piñata', 'pinata']
['piñata']

Of course you could also define equivalences so that 'ñ' matches with both 'n' and 'ñ', if that is something that you want.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: MrXerios

79826674

Date: 2025-11-21 15:19:17
Score: 0.5
Natty:
Report link

With your data:

library(dplyr)
ok.netroles=c( "netrole1", "netrole3", "netrole4")
fes = c("black", "latinx", "asian", "othermx", "noeths", "prefno")
df = structure(list(black = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0), latinx = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0), asian = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0), netrole1 = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0), netrole2 = c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0), netrole3 = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, 0)), row.names = c(NA, -101L), class = c("tbl_df", 
"tbl", "data.frame"))

And following the comment from @r2evans about the usage of any_of, the solution can be done with one single summarize and a helper function:

m = \(a, b = any_of(a)) across(b, ~sum(.x, na.rm = TRUE)) / sum(across(b)) * 100
df %>% 
   summarize(m(fes), m(ok.netroles))
# A tibble: 1 × 5
  black latinx asian netrole1 netrole3
  <dbl>  <dbl> <dbl>    <dbl>    <dbl>
1  17.6      0  82.4        0      100

And regarding your atempt to use eval to calculate the total (?) sum of the columns:

df %>%
   summarize(nr.sum = sum(sapply(ok.netroles[ok.netroles %in% names(.)], \(a) sum(get(a))), na.rm = TRUE))
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @about
  • Low reputation (0.5):
Posted by: Glory2Ukraine

79826673

Date: 2025-11-21 15:19:17
Score: 1
Natty:
Report link

Welcome to [SO]. This is not a code-writing or tutoring service. We help solve specific problem with code you are writing, not open-ended requests for code or advice. Please edit your question to show what you have tried so far, and what specific problem you need help with. See the [what you are asking] page for details on how to best help us help you.

Reasons:
  • RegEx Blacklisted phrase (1): help us
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: itprorh66

79826670

Date: 2025-11-21 15:19:17
Score: 3
Natty:
Report link

Late solution (2025):

Go to the Danger Zone, remove the repository from the fork network. After that you refresh your page, and you can set the thus forked repository to Private.

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

79826667

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

You might find this answer useful. It states:

We can often use any class from the project being tested that is sufficiently exposed to the test project.

Try to use a class that belongs to only the project you are testing as the type parameter for the WepApplicationFactory.

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

79826664

Date: 2025-11-21 15:14:15
Score: 0.5
Natty:
Report link

In newer Java Versions (since 17) there is HexFormat:

     byte byteVal = (byte)HexFormat.of().fromHexDigits("7f");
     assert(byteStr.equals("7f"));
     assert(b == byteVal);

     HexFormat commaFormat = HexFormat.ofDelimiter(", ").withPrefix("#");
     byte[] bytes = {0, 1, 2, 3, 124, 125, 126, 127};
     String str = commaFormat.formatHex(bytes);

     byte[] parsed = commaFormat.parseHex(str);
     assert(Arrays.equals(bytes, parsed));

     // The formatted string is: "#00, #01, #02, #03, #7c, #7d, #7e, #7f"

https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/HexFormat.html

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

79826662

Date: 2025-11-21 15:12:15
Score: 0.5
Natty:
Report link

This is very common and you may find additional information by reviewing polymorphism behavior. This commonly used in JSON Schema and OpenAPI.

https://bump.sh/blog/use-document-polymorphism-api/

https://redocly.com/learn/openapi/discriminator

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

79826658

Date: 2025-11-21 15:08:14
Score: 3.5
Natty:
Report link

# Source - https://stackoverflow.com/a/55561751

# Posted by David Silveiro, modified by community. See post 'Timeline' for change history

# Retrieved 2025-11-21, License - CC BY-SA 4.0

from selenium import webdriver

from selenium.webdriver.common.by import By

from selenium.webdriver.common.keys import Keys

from selenium.webdriver.support.ui import WebDriverWait

from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Chrome()

driver.maximize_window()

wait = WebDriverWait(driver, 3)

presence = EC.presence_of_element_located

visible = EC.visibility_of_element_located

# Navigate to url with video being appended to search_query

driver.get('https://www.youtube.com/results?search_query={}'.format(str(video)))

# play the video

wait.until(visible((By.ID, "video-title")))

driver.find_element(By.ID,

"video-title").click()

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bijay Boy

79826655

Date: 2025-11-21 15:07:14
Score: 2.5
Natty:
Report link

Following the thread linked by Andras, this can be fixed using 1000*round(1-i, 1) instead of 1000*(1-i) as the size parameter.

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

79826650

Date: 2025-11-21 15:04:13
Score: 1
Natty:
Report link

This is a known issue when using Ruby with OpenSSL 3.6.0. According to the last comment on the issue this was fixed with Ruby 3.4.7 by building it against OpenSSL 3.5.4 instead of OpenSSL 3.6.0.

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

79826646

Date: 2025-11-21 15:03:12
Score: 2
Natty:
Report link

You cannot create sloped roofs because MapLibre's extrusion tool only pulls flat shapes straight up into blocks, which means you must either slice your model into many small steps to fake a curve or install a separate library like Deck.gl that is capable of displaying real 3D models on top of your map.

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

79826642

Date: 2025-11-21 15:00:11
Score: 2
Natty:
Report link

There is an issue with jfrog-artifactory-oss version 7.125.x.

I cannot access it after upgrading or performing a clean install. The API works, but not the webapp. Most, or all, of the webapp appears to be missing. Try installing a previous version. The newest version that worked for me is 7.117.19.

Hoping someone else can confirm this. I still can't figure out how to report the issue!

Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Max Effertz

79826638

Date: 2025-11-21 14:58:11
Score: 1.5
Natty:
Report link

@Ian, Yes, term corrected to _BitInt(N).

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Ian
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: chux

79826633

Date: 2025-11-21 14:55:10
Score: 3.5
Natty:
Report link

NextTopLoader is working perfectly with version ^15.3.1 as of 2025.

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

79826632

Date: 2025-11-21 14:55:10
Score: 1
Natty:
Report link

You might want to try MyBatis Generator (MBG). It can automatically generate the following from the database tables: Java POJO classes, Mapper interfaces, and Mapper XML files.

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

79826620

Date: 2025-11-21 14:47:07
Score: 1.5
Natty:
Report link

For mongocxx v4.0+, I was able to simply do

find_package(mongocxx REQUIRED)
add_executable(my_lib src/main.cpp)
target_link_library(my_lib mongo::mongocxx_shared)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dharmin B

79826617

Date: 2025-11-21 14:46:07
Score: 0.5
Natty:
Report link

You’re comparing the wrong Java SE class. The equivalent is not Stream, it’s Flow.

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

79826610

Date: 2025-11-21 14:43:06
Score: 2
Natty:
Report link

Unfortunately comment is not working. Was looking for Visual Studio 2026 fix as my 2022 SSIS does work, but I have no idea how it works. My theme is set to dark and this is how my SSIS packages look, dark mode.

Visual Studio 2022 Dark Mode for SSIS

Maybe I found the theme file somewhere and edited it directly, but it's been over a year.

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

79826596

Date: 2025-11-21 14:33:03
Score: 3
Natty:
Report link

Best way is to use command line tools .

In the intelliJ IDE, paste the below command:

find . -name "*.java" -exec perl -pi -e 's/\/\*[\s\S]*?\*\/|(?<!:)\/\/.*//g' {} +

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

79826591

Date: 2025-11-21 14:30:02
Score: 0.5
Natty:
Report link

You can use Hibernate Tools to reverse engineer your existing database schema. This automatically generates Java Entity classes (POJOs) with JPA annotations, which is functionally equivalent to how Entity Framework generates C# models. Once generated, you manage data using JPA and query it with JPQL or Spring Data JPA.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ankit kumar

79826589

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

Maybe Walrus? row 0 is [1] row 5 is [1,5,10,10,5,1] from Wikipedia.

def getRow(r):
   return [_:=1] + [_:=_*(r-k)//(k+1) for k in range(r)]

print(*getRow(8)) 
1 8 28 56 70 56 28 8 1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Andy Richter

79826586

Date: 2025-11-21 14:23:01
Score: 1.5
Natty:
Report link

defines an exit function.

def exit():
    for e in pygame.event.get():
        if e.tpye==pygame.QUIT:
            pygame.quit(); sys.exit()
exit()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 207-07黃珩育

79826583

Date: 2025-11-21 14:15:59
Score: 1
Natty:
Report link

Thank you. I also wonder whether it's better practice to add an extension function, e.g. ToViewModel() for the User class. This way we can separate the logic for conversion between these better compared to having it all on the controller.

This way it make look like so:

public async Task<IActionResult> Index()
{
    var users = await _context.Users
        .Include(u => u.Messages)
        .ToListAsync();

    var vm = users.Select(u => u.ToViewModel());

    return View(vm);
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 92carmnad

79826582

Date: 2025-11-21 14:14:58
Score: 0.5
Natty:
Report link

If you use AWS SDK v2, it for some reason hides stack trace from you.

Here is the workaround you can try:

yourCallWithAwsSdkV2().promise().catch(reThrow);

function reThrow(error: any): never {
  const better: any = new Error(error.message);
  better.code = error.code;

  throw better;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cockootec

79826581

Date: 2025-11-21 14:13:58
Score: 2
Natty:
Report link

Pytorch is generally the go to library to implement new architectures. It's very good for prototyping which is perfect for research. So you should start with Pytorch imo. Also, writing an algorithm from scratch is a lot of work and will probably be less efficient than Pytorch because you either don't use GPUs or use them but do not possess the optimized CUDA kernels Pytorch has access to.

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

79826580

Date: 2025-11-21 14:12:57
Score: 3
Natty:
Report link

Is "Dynamic Forms" a specific tool or technology you're referring to? Or are you creating "forms" in some kind of .Net application and need to apply dynamic behavior to them? Something else? Did you use the correct tag for that?

ADO has nothing to do with forms. It's for accessing a database.

Can you clarify what exactly you're trying to ask, perhaps with some additional context?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you clarify what
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: David

79826578

Date: 2025-11-21 14:09:57
Score: 1
Natty:
Report link

In my opinion, the Java 1.8 implementation has another issue with "Europe/Vienna". Yes, the time zone "Europe/Vienna" is special at 1980-04-06 in that the clock change happens at the first hour, so this day effectively starts at 1 o'clock local time, not at 0 o'clock as, to the best of my knowledge, anywhere else in the world even at the days of spring clock changes. But that's how Austria wanted it to happen back then, and that's how "Europe/Vienna" has been defined in the TZ / Olson database. This is what Java correctly shows, given the time zone has been set to "Europe/Vienna".

The real issue comes into play if you issue an Calendar.add(Calendar.DAY_OF_MONTH, 1), of course after having adjusted the Calendar instance to "Europe/Vienna". I'd expect the first hour of the next day to be 0 in local, daylight saving time, but Java computes 1, which is wrong.

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

79826576

Date: 2025-11-21 14:06:56
Score: 1.5
Natty:
Report link

byte - 1byte, short - 2byte, int - 4byte, long - 8byte, float - 4byte, double - 8byte, char - 2byte, boolean - decided by jvm.

Formula for calculating minimum and maximum value range

minimum value : -2^(n-1)

maximum value : -2^(n-1) - 1

n - number of bits

Ex. int - 4byte = 4*8bit = 32bit, n = 32

minimum value : -2^(32-1) = -2.14748365e9

maximum value : -2^(32-1) - 1 = 2.14748365e9

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

79826575

Date: 2025-11-21 14:05:55
Score: 1.5
Natty:
Report link

vector -config-dir /etc/vector

Simply missing a hyphen in --config-dir there.

PS: thanks, I just learned about automatic namespacing.

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

79826573

Date: 2025-11-21 14:04:55
Score: 2
Natty:
Report link

As mentioned here you can use System.Security.Policy.Zone.CreateFromUrl to check as which zone Windows considers a url.

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

79826566

Date: 2025-11-21 13:53:52
Score: 0.5
Natty:
Report link

A common pattern in Django is to keep your normal site session separate from admin authentication by requiring a re-authentication step for admin access. Django doesn’t provide different session-expiry settings per path by default, but you can achieve this by enabling SESSION_EXPIRE_AT_BROWSER_CLOSE or short timeouts globally and then using a custom admin login view or middleware that forces users to re-enter their password when accessing /admin/, similar to Django’s revalidation pattern used for sensitive operations. Some projects use packages like django-axes or custom middleware, but most solutions involve overriding the admin login logic to enforce a shorter expiry or fresh login for the admin area while keeping the normal session intact.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grace Miller

79826560

Date: 2025-11-21 13:46:50
Score: 1.5
Natty:
Report link

In ADO.NET and C#, a dynamic form usually refers to a UI that is generated at runtime based on metadata (like database schema, configuration files, or user-defined fields) instead of being manually designed in the form designer. They’re useful when the structure of your data can change—such as when building admin panels, survey builders, plugin systems, or apps where fields vary per customer. Instead of hardcoding textboxes and labels, the form creates controls dynamically depending on what the database describes. If you’re still learning, it’s better to solidify your CRUD and master-detail concepts first, because dynamic forms build on those basics and add more complexity like reflection, control generation, and validation at runtime.

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

79826558

Date: 2025-11-21 13:44:49
Score: 2.5
Natty:
Report link

In your domain register provider, go to the section where you can manage DNS records such as A and CNAME. Look for Web Forwarding and add your www domain to the Forwarding to section. This is an example from Network Solutions. As you can see you just need to select Standard URL as your root domain. I just did it for my domain and it works.

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Carlos Jafet Neto

79826557

Date: 2025-11-21 13:42:49
Score: 1.5
Natty:
Report link

@KooiInc, it depends on a large value for n.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @KooiInc
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Nina Scholz

79826553

Date: 2025-11-21 13:37:48
Score: 3.5
Natty:
Report link

CTRL + SHIFT + P --> Git: Open repository , or Git: Add remote

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

79826549

Date: 2025-11-21 13:35:47
Score: 0.5
Natty:
Report link

You can do that using indexOf:

const numeros=[2,11,4,40,100,8,101];
const encontrar=numeros.indexOf(100);
console.log(encontrar);

Reasons:
  • RegEx Blacklisted phrase (2): encontrar
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: Lajos Arpad

79826548

Date: 2025-11-21 13:33:46
Score: 2.5
Natty:
Report link

Web Live Preview looks to be discontinued in VS 2026

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Rumen Jekov

79826546

Date: 2025-11-21 13:31:46
Score: 1
Natty:
Report link

Try adding

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa-test</artifactId>
    <scope>test</scope>
</dependency>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: wolfe111

79826540

Date: 2025-11-21 13:27:44
Score: 1
Natty:
Report link

Perhaps you can rewrite your JOIN as IN clause so that Spark able to push it down to the db? And if the IN list is too long for a single query, partition it into multiple sub-lists. Painful as it is, it may be a better option than creating a temp table in rdbms.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: mazaneicha

79826536

Date: 2025-11-21 13:22:43
Score: 1.5
Natty:
Report link

{

"model": "dall-e-3",

"prompt": "A minimal, elegant circular logo for a 60th anniversary featuring the letters 'BPA'. Use a clean gold and black color scheme with a simple, refined circular border. The number '60' should be centered in a minimalist serif or modern classic font, with 'BPA' integrated cleanly below it. Use thin gold lines, balanced spacing, and no ornamentation. Sophisticated, modern, and timeless design.",

"size": "1024x1024

"

}

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

79826531

Date: 2025-11-21 13:20:42
Score: 1
Natty:
Report link

I had the same issue on my Linux machine and running stm32cubeide -clean once solved it for me.

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

79826529

Date: 2025-11-21 13:19:41
Score: 4.5
Natty:
Report link

Thank you very much A Haworth, you solve my issue.
As pointed out by Drew Reese it is the same issue as How to perfectly center a "plus" sign in a circle using CSS

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Asamartino

79826522

Date: 2025-11-21 13:04:37
Score: 0.5
Natty:
Report link

Curl 8.16.0 introduced --out-null,

the more efficient and portable version of

curl https://host.example -o /dev/null

The transfer is done in full, all data is received and checked, but the bytes are not written anywhere.

Example:

curl "https://example.com" --out-null
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arch Stanton

79826511

Date: 2025-11-21 12:54:34
Score: 0.5
Natty:
Report link

This crash happens because one of your Firebase/Play-Services libraries is pulling in an old version of com.google.android.gms:play-services-basement, and that older version does not contain the method:

Preconditions.checkNotGoogleApiHandlerThread()

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

79826507

Date: 2025-11-21 12:43:31
Score: 3.5
Natty:
Report link

@Nina Scholz I don't think you need the first while loop?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Nina
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: KooiInc

79826504

Date: 2025-11-21 12:41:30
Score: 3.5
Natty:
Report link

the issue was that the window needs to be in focus to get the full 1000 WM_INPUTs on windows 11 which is different to how win10 was where you can get that many regardless of focus

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

79826503

Date: 2025-11-21 12:38:29
Score: 9.5
Natty: 7.5
Report link

i am geeting same issue? any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: One Deveveloper

79826501

Date: 2025-11-21 12:36:28
Score: 1.5
Natty:
Report link

The annotations are normalized in the latest releases. Use pip-tools >= 7.5.0. The paths are now relative if you use relative CLI arguments, and absolute if you don't. https://pip-tools.rtfd.io/en/stable/changelog/#v7-5-0

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: webknjaz -- Слава Україні

79826497

Date: 2025-11-21 12:31:27
Score: 1.5
Natty:
Report link

FYI, you have to click check to enable the list of tester group and save also!
very weird UI here. I didn't get any result because of this!enter image description here

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

79826496

Date: 2025-11-21 12:29:26
Score: 2
Natty:
Report link

Please see this related answer.

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

79826488

Date: 2025-11-21 12:16:22
Score: 3.5
Natty:
Report link

https://www.youtube.com/watch?v=lRYKb_yXkWQ

You need to install both personal gateway and standard gateway to set auto refresh in Power BI when used python script in power bi.take above link for reference

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: monika patil

79826478

Date: 2025-11-21 12:06:19
Score: 1
Natty:
Report link

If you are using Properties and are having display issues in the Windows Desktop build of your app with your use of the auto-generated user interface created in the method below, it could be tied to this issue.

createMagicalContactEditorContainer(Contact c)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: curtjacobs1

79826471

Date: 2025-11-21 11:58:17
Score: 3.5
Natty:
Report link

Found the (obvious and simple answer) myself... I added an entry on local hosts file to point localhost to forgejo. Now it´s working!

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

79826468

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

Fun little game idea...It reminds me of how colouring books for kids keep them busy, simple rules, lots of engagement.

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

79826467

Date: 2025-11-21 11:56:16
Score: 2
Natty:
Report link

Even if I install one of the packages as editable and the other as a regular dependency, the editable package cannot be imported. So this may not have anything to do with the project's structure but something cold be wrong with my venv. I rewrote the question.

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

79826453

Date: 2025-11-21 11:31:10
Score: 4.5
Natty: 4.5
Report link

Check out TREx (TensorRT Engine Explorer). Looks similar to ONNX rendering on Netron.

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

79826451

Date: 2025-11-21 11:30:09
Score: 0.5
Natty:
Report link

looks like prepend() operator is what should do the trick

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

79826445

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

An easy way to fix this issue is replacing newline characters with a space character before applying your regular expression, or replacing them with symbols that don't occur in the data naturally, so that you can restore them later if needed.

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

79826441

Date: 2025-11-21 11:18:06
Score: 3.5
Natty:
Report link

Forget all other answers, just follow the instruction provided by:

https://kumar-dev.medium.com/fix-your-ios-simulator-on-intel-macs-for-kmp-kmm-projects-%EF%B8%8F-25c93996daea

I've tested it, AND IT HAS WORKED RIGHT AWAY

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: tamegajr

79826440

Date: 2025-11-21 11:18:06
Score: 2
Natty:
Report link

SOLVED!

After extensive troubleshooting, I found the issue: my computer name was "Belzebú" (with an accented ú).

I changed it to "Belcebu" (without the accent) and everything started working! The issue was how WildFly/Java handles special characters in system paths and hostnames.

I can't believe something as simple as an accented character could cause this, but here we are!

Lesson learned: Avoid special characters (á, é, í, ó, ú, ñ, etc.) in computer names when working with Java/WildFly.

Thanks to everyone who helped!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kinderBueno

79826439

Date: 2025-11-21 11:17:05
Score: 11 🚩
Natty:
Report link

I have the same problem. How can I solve it?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): How can I solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ethem Tasmacı

79826438

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

Excel doesn’t fully follow RFC 4180 when saving CSV because it prioritizes user convenience over strict standards, causing variations in delimiters, quoting, and line breaks. This leads to inconsistent CSV formatting.

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

79826435

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

The files in the One Drive sync folder in the local filesystem usually have the attributes "AL" or "ALOM".

Letter Bit Mask Description
R 0x1 Read-only
H 0x2 Hidden
S 0x4 System
(V) 0x8 FAT volume label (obsolete in NTFS, must not be set)
D 0x10 Directory
A 0x20 Archive
X 0x40 Device (reserved, must not be set)
N 0x80 Normal (no other attributes set)
T 0x100 Temporary
P 0x200 Sparse file
L 0x400 Symbolic link / Junction / Mount point / Reparse point
C 0x800 Compressed
O 0x1000 Offline
I 0x2000 Not content indexed (shown as 'N' in Explorer on Vista)
E 0x4000 Encrypted
(V) 0x8000 Integrity (ReFS volume only)
- 0x10000 Virtual (reserved, must not be set)
(X) 0x20000 No scrub (ReFS volume only)
- 0x40000 Recall on open
(P) 0x80000 Pinned (OneDrive “always available files”)
(U) 0x100000 Unpinned (OneDrive “online-only files”)
- 0x200000 Unused and reserved
(M) 0x400000 Recall on data access

The files with attributes "ALOM", once accessed would have the attributes "AL" as they are no longer offline and have been recalled on data access.

These files have the reparse tag 0x9000601a (IO_REPARSE_TAG_CLOUD) that is set for One Drive or other cloud files.

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

79826434

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

For those interested in the details of what I have found, my reports are entered in Github Codename One, assigned issue #4145.

I apologize for not checking here last night before I shut down. In addition to what I reported on Github in my afternoon report:

Since all my buttons are Styled by purpose, I have only found 2 other issues I have not mentioned.

  1. Natural labels (tied to PreferredSize) which I had not Styled displayed at 1mm. Assigning the UIID yesterday to those labels I previously missed corrected this.

  2. 1 container I added a Styled label and Styled button to clipped the top and bottom of the text. The size of the container grew when the JFrame was resized, but the PreferredSize of the area in the container where the text is assigned did not grow. I will work on that container today and report back.

After what I identified yesterday and discussed on Github, I can Style around everything but PreferredSize, and if the Windows (or Desktop) API only allowed me to set the size of the JFrame for the initial form, I could adjust that starting point for PreferredSize and I think everything would fall into a useable place. As I noted in my report from yesterday afternoon, I think a starting size of 1280 x 1080 would work for both platforms.

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

79826430

Date: 2025-11-21 11:09:03
Score: 0.5
Natty:
Report link

Clean and simple:

The trick is using \r at the end

const arr = [0, 1, 2, 3]

for(let i = 0; i < arr.length; i++) {
  process.stdout.write(`Index: ${i}\r`);
}

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

79826414

Date: 2025-11-21 10:49:57
Score: 1
Natty:
Report link

I was trying to start a Spring Boot service that had been correctly installed as a Windows service (verified in Task Manager). However, whenever I tried to start it, the service would immediately stop.

The issue turned out to be conflicting JDK installations - I had both JDK 17 and JDK 18 installed. Since my Spring Boot service specifically required JDK 17, I removed both versions, then did a clean install of JDK 17.

After a system restart, the service started successfully, and the problem was resolved.

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

79826410

Date: 2025-11-21 10:48:56
Score: 2.5
Natty:
Report link

While Softaken MSG to PDF programs are helpful for email, I've discovered that software intended for accurate file conversion can be surprisingly helpful in a number of ways. I've been searching for other methods to handle MSG files.

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

79826406

Date: 2025-11-21 10:43:55
Score: 1.5
Natty:
Report link
public static ArtworkData[] GetDataRecords(int UserID)
{
    List<ArtworkData> records = Database.GetArtworkByUser(userId);

    return records.ToArray();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Desingurajan

79826404

Date: 2025-11-21 10:40:55
Score: 3.5
Natty:
Report link

Thank you kindly, Manoj Kumar Josh and C3roe.

I had located that license page when web searching, but without the note at the bottom of the other page, I didn't know it applied to user-submitted comments as well. It would be handy if the PHP license page directly mentioned user comments.

Cheers.

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

79826394

Date: 2025-11-21 10:32:52
Score: 1.5
Natty:
Report link

Just add this to your global CSS file

.v-btn:hover>.v-btn__overlay {
  opacity: 0 !important;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey Fedorenko

79826391

Date: 2025-11-21 10:28:51
Score: 1
Natty:
Report link

ai.stackexchange might also be a good place to ask.

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

79826390

Date: 2025-11-21 10:26:51
Score: 3.5
Natty:
Report link

@chux What is this bigint thing you mentioned? Did you mean _BitInt(N)?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @chux
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Ian Abbott

79826389

Date: 2025-11-21 10:25:50
Score: 4
Natty: 4.5
Report link

There is option to use state: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-property-function-schedule.html#sam-function-schedule-state

It disables the rule.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Алексей Ковальчук

79826371

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

Some other data or code sections. C runtime needs some initialization and data.

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

79826370

Date: 2025-11-21 10:05:45
Score: 0.5
Natty:
Report link

Thanks for your detailed Answer. In my previous example it's just a List of properties and the allOf is not needed - I get this. I'm still not 100% sure when to use allOf though. I tried studying the Json Schema but I'm still kinda unsure.

In the following example I add together multiple schemas which are not just parameters, but objects. Would that be a usecase for the keyword?

{
    "schemas": {
        "BulkLimit": {
            "type": "object",
            "allOf": [
                {
                    "$ref": "#/components/schemas/Limit"
                },
                {
                    "type": "object",
                    "properties": {
                        "account": {
                            "$ref": "#/components/schemas/AccountReference"
                        }
                    }
                }
            ],
            "required": [
                "account"
            ]
        },
        "Limit": {
            "type": "object",
            "properties": {
                "region": {
                    "$ref": "#/components/schemas/Region"
                },
                "paymentProduct": {
                    "$ref": "#/components/schemas/PaymentProduct"
                },
                "type": {
                    "$ref": "#/components/schemas/Type"
                },
                "value": {
                    "$ref": "#/components/schemas/Amount"
                }
            },
            "required": [
                "region",
                "paymentProduct",
                "type",
                "value"
            ]
        },
        "AccountReference": {
            "type": "object",
            "properties": {
                "iban": {
                    "$ref": "#/components/schemas/Iban"
                },
                "currency": {
                    "$ref": "#/components/schemas/CurrencyCode"
                }
            },
            "required": [
                "iban",
                "currency"
            ]
        }
    }
}

Thanks for your help

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: BenjaminK

79826367

Date: 2025-11-21 10:03:45
Score: 1.5
Natty:
Report link

PHP.net manual text and the user-submitted comments/code snippets are licensed under Creative Commons Attribution 3.0 (CC-BY 3.0).

You may reuse the code (even commercially), but you must provide proper attribution to the PHP Documentation Group or link back to the original source.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Manoj Kumar Joshi

79826365

Date: 2025-11-21 10:01:44
Score: 4.5
Natty:
Report link

I solved setting an attribute in a ServletContext object in the init method of a servlet. Then I set the loadOnStartup parameter of the @WebServlet annotation to 0 for this servlet and to a value > 0 for the others. What do you think about this solution?

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @WebServlet
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: bui3

79826359

Date: 2025-11-21 09:54:42
Score: 2
Natty:
Report link

if anyone had this problem before in signing in through browser to keycloak
here's the url of signing in http://localhost:14082/realms/springboot-test/protocol/openid-connect/auth?client_id=react-app&redirect_uri=http://localhost:3000/api/auth/callback/keycloak&response_type=code&scope=openid
and got this 401 username missing
make sure in the authentication tab you bind browser to default browser flow click here to see image

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

79826358

Date: 2025-11-21 09:54:42
Score: 4
Natty: 4
Report link

It is feature request from 2007 https://forum.scootersoftware.com/forum/beyond-compare-4-discussion/general/13877-feature-request-add-vertical-selection-editing

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

79826346

Date: 2025-11-21 09:47:40
Score: 2
Natty:
Report link

I had this issue, what helped me:

For example I had 2 rows for header, some columns were merged vertically and some weren't;

Once I got the error, I have resized all the row cells in the header (even the ones that were merged and were not visible) and the error went away.

Good luck and have fun!

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

79826345

Date: 2025-11-21 09:46:40
Score: 1
Natty:
Report link

After uploading the bundle file to the Play Store, this removes localization resource files based on the phone settings.

To avoid the problem, add the line below:

android {
    bundle {
        language {
            enableSplit = false
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: faribakhandani

79826341

Date: 2025-11-21 09:40:38
Score: 3.5
Natty:
Report link

Added to plugins in app.json - worked well🙌🏻🔥

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

79826336

Date: 2025-11-21 09:36:37
Score: 3
Natty:
Report link

I cannot comment anymore on your answers nor on my question, what the h is wrong with this site ? I guess it is because the type of question I chose to be "best practice" ? (I see other questions kept their "normal" appearance) If so, could someone alert a moderator who to please change the type to "vanilla question" type ? (I can't with "edit".) Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Olórin

79826329

Date: 2025-11-21 09:32:36
Score: 0.5
Natty:
Report link

Reference: https://freefrontend.com/css-dropdown-menus/#google_vignette

<div class="button" onclick="document.body.classList.toggle('expanded')"><div class="places">Places</div></div>
<div class="menu">
  <svg class="shadow" width="375" height="322" viewBox="0 0 375 322">
    <defs>
      <filter
              id="blur"
              x="-0.053211679"
              width="1.1064234"
              y="-0.068773585"
              height="1.1375472">
        <feGaussianBlur
                        inkscape:collect="always"
                        stdDeviation="6.075"
                        id="feGaussianBlur1076" />
      </filter>
    </defs>
    <g transform="translate(0,120)">
      <path
            style="opacity:0.14;fill:#0e232e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#blur)"
            transform="translate(0,-120)"
            id="path967" />
    </g>
  </svg>
  <svg class="container" width="275" height="222" viewBox="0 0 275 222">
    <g transform="translate(0,20)">
      <path class="border1" fill="transparent" stroke-width="1.5" d="m 137.5,201.5003 h -126.393699 c -5.8760576,0 -10.606602,-4.73054 -10.606602,-10.6066 v -179.787399 c 0,-5.8760576 4.7305444,-10.606602 10.606602,-10.606602 h 115.393699 l 11,-10.999699"/>
      <path class="border2" fill="transparent" stroke-width="1.5" d="m 137.5,-10.5 11,10.999699 h 115.3937 c 5.87606,0 10.6066,4.7305444 10.6066,10.606602 v 179.787399 c 0,5.87606 -4.73054,10.6066 -10.6066,10.6066 h -126.3937"/>
    </g>
  </svg>
  <div class="contents">
    <div class="row">Here</div>
    <div class="row">There</div>
    <div class="row">Anywhere</div>
  </div>
</div>



@import url('https://fonts.googleapis.com/css?family=Open+Sans:600');
body {
  align-items: center;
  background: #f0f0f9;
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  height: 100vh;
  justify-content: center;
  margin: 0;
}
.button {
  background: #d6d5e2;
  border-radius: 50%;
  cursor: pointer;
  height: 26px;
  width: 26px;
  z-index: 1;
}
.button:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #474070;
  content:  ' ';
  height: 0;
  left: 8px;
  position: relative;
  top: -8px;
  width: 0;
}
.button:hover {
  background: #c6c5d2;
}
.button:active {
  background: #b6b5c2;
}
.places {
  color:  #898596;
  left: -64px;
  position: relative;
}
.menu {
  // background: #fff;
  // border: 1px solid #c6c6cc;
  border-radius: 8px;
  height: 222px;
  margin-top: 0px;
  position: relative;
  width: 273px;
}
.container {
  position: absolute;
}
.border1 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 480 480;
  stroke-dashoffset: -480px;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.border2 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 0 480;
  stroke-dashoffset: 0;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.shadow {
  left: -50px;
  opacity: 0;
  position: absolute;
  top: -46px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.contents {
  left: 20px;
  opacity: 0;
  position: relative;
  top: 48px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
  width: 234px;
}
.row {
  align-items: center;
  border-bottom: 1px solid #cdd0de;
  cursor: pointer;
  display: flex;
  height: 46px;
  padding: 0 5px;
  user-select: none;
  -moz-user-select: none;
}
.row:hover {
  background: #f8f8f8;
}
.row:active {
  background: #f5f5f5;
}
.expanded .border1 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .border2 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .shadow {
  opacity: 1;
}
.expanded .button {
  transform: rotate(0);
}
.expanded .contents {
  opacity: 1;
  transition: opacity 400ms 100ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamza Fareed

79826305

Date: 2025-11-21 09:14:32
Score: 0.5
Natty:
Report link

Ah, thank you, and what is the rest about then? I disassembled it now too:

$ objdump -b binary -D a.out -m i386:x86-64

a.out:     file format binary


Disassembly of section .data:

0000000000000000 <.data>:
       0:   55                      push   %rbp
       1:   48 89 e5                mov    %rsp,%rbp
       4:   90                      nop
       5:   5d                      pop    %rbp
       6:   c3                      ret
    ...
     fff:   00 14 00                add    %dl,(%rax,%rax,1)
    1002:   00 00                   add    %al,(%rax)
    1004:   00 00                   add    %al,(%rax)
    1006:   00 00                   add    %al,(%rax)
    1008:   01 7a 52                add    %edi,0x52(%rdx)
    100b:   00 01                   add    %al,(%rcx)
    100d:   78 10                   js     0x101f
    100f:   01 1b                   add    %ebx,(%rbx)
    1011:   0c 07                   or     $0x7,%al
    1013:   08 90 01 00 00 1c       or     %dl,0x1c000001(%rax)
    1019:   00 00                   add    %al,(%rax)
    101b:   00 1c 00                add    %bl,(%rax,%rax,1)
    101e:   00 00                   add    %al,(%rax)
    1020:   e0 ef                   loopne 0x1011
    1022:   ff                      (bad)
    1023:   ff 07                   incl   (%rdi)
    1025:   00 00                   add    %al,(%rax)
    1027:   00 00                   add    %al,(%rax)
    1029:   41 0e                   rex.B (bad)
    102b:   10 86 02 43 0d 06       adc    %al,0x60d4302(%rsi)
    1031:   42 0c 07                rex.X or $0x7,%al
    1034:   08 00                   or     %al,(%rax)
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mltm

79826293

Date: 2025-11-21 09:04:28
Score: 6 🚩
Natty: 6
Report link

hello guys my name is janis berzins i like python i hate tkinter

Reasons:
  • RegEx Blacklisted phrase (1): hello guys
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Janis

79826292

Date: 2025-11-21 09:03:27
Score: 8.5
Natty:
Report link

@Ale but how would is use it for every system, like Linux, WIn or MacOS? would i have to download all the 3?

Reasons:
  • Blacklisted phrase (1): i have to do
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Ale
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Akash Jain

79826283

Date: 2025-11-21 08:53:25
Score: 1
Natty:
Report link

i had the same issue with joomla 4.0.3 and then i downloaded the 4.0.4 update patch and uploaded the files manually using filezilla, then downloaded 4.1 and update patch and uploaded the files manually sameway .. The issue then disappeared.

Reasons:
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sherif O.