79627361

Date: 2025-05-18 10:41:36
Score: 1.5
Natty:
Report link

You can reorder the columns by using the select() function in PySpark. In the select function, you can pass the column name as a string or multiple columns as a list.

Please find the reference in the pyspark documentation

data = [("Alice", 25, "Engineer"), ("Bob", 30, "Doctor"), ("Charlie", 28, "Teacher")]
columns = ["name", "age", "occupation"]
df = spark.createDataFrame(data, columns)

new_column_order = ["occupation", "name", "age"]
reordered_df = df.select(new_column_order)

reordered_df.show()

# +----------+-------+---+
# |occupation| name|age|
# +----------+-------+---+
# | Engineer| Alice| 25|
# | Doctor| Bob| 30|
# | Teacher|Charlie| 28|
# +----------+-------+---+

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ----------
  • Filler text (0): ----------
  • Filler text (0): ----------
  • Low reputation (1):
Posted by: Shivansh Keshari

79627358

Date: 2025-05-18 10:36:35
Score: 1
Natty:
Report link

Volumes don't work with postgres on ACA. You should use a hosted database management system:

var builder = DistributedApplication.CreateBuilder(args);

var postgres = builder.AddAzurePostgresFlexibleServer("postgres")
    .RunAsContainer();
var postgresdb = postgres.AddDatabase("postgresdb");

var exampleProject = builder.AddProject<Projects.ExampleProject>()
                            .WithReference(postgresdb);

For more information: https://learn.microsoft.com/en-us/dotnet/aspire/database/azure-postgresql-entity-framework-integration?tabs=dotnet-cli
Related issue in dotnet/aspire repo: https://learn.microsoft.com/en-us/dotnet/aspire/database/azure-postgresql-entity-framework-integration?tabs=dotnet-cli

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

79627357

Date: 2025-05-18 10:35:35
Score: 1.5
Natty:
Report link

This is what i did

def Pochhammer_func(num,pow):
    x = 1
    for k in range(pow):
        x*= num+k
        k+=1
    return x
print(Pochhammer_func(2,10))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Łegenðarý父

79627356

Date: 2025-05-18 10:35:35
Score: 1
Natty:
Report link

No. Any network device can use any IP it wishes. But you can prevent owners of this devices doing that with some kind of threats ;)

The only way to prevent your network - configure the switch to which all the network cables come. If you are using some home router - read documentation if it can solve such a problem.

The first thing - to configure ports not to forward traffic to each other, exception - your server port.

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

79627345

Date: 2025-05-18 10:21:30
Score: 6 🚩
Natty: 4
Report link

No such file or directory: '/Users/.../Library/Developer/Xcode/DerivedData/.../Build/Products/Debug-iphonesimulator/PackageFrameworks/AlamofireDynamic.framework/AlamofireDynamic'

Using Xcode 16.3, have a trouble building and keep getting this error message. Tried to clean build, delete the DerivedData folder nothing works until i saw the solution by Daniel and it works!! I got the same problem with DGCharts too regarding the dynamic thing. The solution was just to not add "dynamic" into your target as per Daniel said.

Just curious, since I'm a beginner, what's the 'dynamic' package for?

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • RegEx Blacklisted phrase (2): I'm a beginner
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: random

79627337

Date: 2025-05-18 10:12:28
Score: 1.5
Natty:
Report link

jNQ is a Java-based SMB client that supports ACL retrieval.

You can try it for free at visualitynq.com/products/jnq

Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raphael Barki

79627332

Date: 2025-05-18 10:01:25
Score: 1
Natty:
Report link

It happens when JSON data couldn't deserialize properly, probably its about ObjectMapper configuration or @Cacheable useage.

Make sure you are using right serializer of RedisTemplate & doing the right ObjectMapper configuration

Like this:

@Bean
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
    RedisTemplate<String, Object> template = new RedisTemplate<>();
    template.setConnectionFactory(connectionFactory);
    template.setDefaultSerializer(new GenericJackson2JsonRedisSerializer());
    return template;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Cacheable
  • Low reputation (1):
Posted by: Abdurrahman

79627329

Date: 2025-05-18 09:59:24
Score: 0.5
Natty:
Report link

There might be cases where you're willing to accept the error, would like to go on and just suppress the warning message (example: moving average of a column that starts with zeros...).

In case you just want to suppress these warnings, just write

np.seterr(invalid='ignore')

after the numpy import statement.

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

79627328

Date: 2025-05-18 09:58:24
Score: 3
Natty:
Report link

thanks to TwelvePointFive it fix my problem by Downgrading to mysql-connector-python 9.0.0

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bashar

79627327

Date: 2025-05-18 09:58:24
Score: 3
Natty:
Report link

it was related with order of draw objects on map. First i must to draw all untransparent objects. Then a must be to sort all transparent/semi-transparent in order of increasing/decreasing distance from the camera. It need to DEPTH_TEST was work correct.. (look to result)...

enter image description here

If anyone needs it, here is the link to the article.

Reasons:
  • Blacklisted phrase (1): here is the link
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: St_rt_la

79627326

Date: 2025-05-18 09:58:24
Score: 1
Natty:
Report link

You can configure a Static IP for that machine and you can add specific MAC addresses to some routers, in order to share specific services or IP informatrion. Adding the MAC address to a router, is normally used for Wireless, to limit the access of Wifi, or to limite the access of admin-panel-login-page.

For what I can understand, you only need to configure a static IP for your NodeJS server.

If you setup your machine to use that IP, your router "reserv" that IP for that machine, which means, the DHCP service will not attribute that IP to another device.

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

79627320

Date: 2025-05-18 09:47:21
Score: 4.5
Natty: 5
Report link

I created a guide that solves most common llama-cpp-python CUDA issues on Windows: https://github.com/Granddyser/windows-llama-cpp-python-cuda-guide

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

79627309

Date: 2025-05-18 09:39:19
Score: 2
Natty:
Report link

This no longer seems to be an issue.

Re-tested with the following and worked perfectly well:

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

79627305

Date: 2025-05-18 09:33:17
Score: 0.5
Natty:
Report link

It turned out I need to compile all modules as separate library and link that library to executables. With such modifications i don't get errors as above.

function(get_file_range output_var)
    set(result "")
    foreach(path IN LISTS ARGN)
        file(GLOB_RECURSE temp CONFIGURE_DEPENDS ${path})
        list(APPEND result ${temp})
    endforeach()
    set(${output_var} ${result} PARENT_SCOPE)
endfunction()
# =============================================
# Build modules
# =============================================
get_file_range(ISPA_MODULES
        ${CONVERTERS_DIR}/*.cppm
        ${SRC_DIR}/*.cppm
)
add_library(ispa-modules STATIC)
target_sources(ispa-modules
        PUBLIC
        FILE_SET cxx_modules TYPE CXX_MODULES FILES
        ${ISPA_MODULES}
)
target_include_directories(ispa-modules PRIVATE ${INCLUDE_DIRS})

# =============================================
# Link Dependencies
# =============================================
target_link_libraries(ispa PRIVATE
    ispa-converter-cpp
    ispa-modules
)
target_link_libraries(ispa-converter-cpp PRIVATE
        ispa-converter
        ispa-modules
)
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sinfolke

79627302

Date: 2025-05-18 09:31:17
Score: 1.5
Natty:
Report link

Yes, Python has a ternary conditional operator.
The syntax is:

python

CopyEdit

x = a if condition else b

Example:

python

CopyEdit

status = "Adult" if age >= 18 else "Minor"

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

79627299

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

If the list contains role definitions, use the direct path to extract roles instead of relying on nested claims. Could you provide an example of the list format? That would help me give a more precise extraction method. Also check Azure B2C section is allowing how may claims to be exposed. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Irfan Ali Zaidi

79627294

Date: 2025-05-18 09:22:14
Score: 1.5
Natty:
Report link

After ejecting the Expo app, you have to set the icon manually, on both iOS and Android platforms. On iOS, you have to open Xcode and go to AppIcon and change the icon size, and on Android, you have to go to the mipmap folder and change the launcher icon. Then, when you rebuild the app, you can see the new icon sparkling. It's just like water ejection—you have to manually tweak it a little to understand how water plays in a simulation game, it's just as fun as playing! Similarly, setting the icon also takes some effort and fun!

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

79627287

Date: 2025-05-18 09:10:10
Score: 8.5 🚩
Natty: 6.5
Report link

I’m using sparse vectors with about 10 features out of a possible 50 million. However, the conversion to dense vectors is causing heap exhaustion. Is there a way to disable the sparse-to-dense conversion?

Right now, I can’t even train on a small batch of vectors without running into memory issues — but I ultimately need to train on 200 million rows.

Any help would be greatly appreciated. I’m using XGBoost4j-Spark version 3.0.0 with the Java.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (3): Any help would be greatly appreciated
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kristijan Stepanov

79627285

Date: 2025-05-18 09:06:09
Score: 2
Natty:
Report link

Much easiest way is use straight requests and text it.

terminal >> pip install requests

URL_link = "HTTP link"

response = requests.get(URL_link)

print(response.text) #output it to see HTML codes in python output

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

79627281

Date: 2025-05-18 08:56:08
Score: 1.5
Natty:
Report link
using word = Microsoft.Office.Interop.Word;

word.Application app = new word.Application();
word.Document doc = app.Documents.Add(this.Name);

app.ActiveWindow.ActivePane.View.Type = WdViewType.wdPrintView;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: m.norouzi

79627277

Date: 2025-05-18 08:51:06
Score: 2
Natty:
Report link

shema is now different

see example here:

https://github.com/caddyserver/ingress/blob/main/kubernetes/sample/example-ingress.yaml

it is this part that changed:

spec:
  rules:
  - host: example1.kubernetes.localhost
    http:
      paths:
      - path: /hello1
        pathType: Prefix
        backend:
          service:
            name: example1
            port:
              number: 8080
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Василий Пу

79627271

Date: 2025-05-18 08:46:05
Score: 2
Natty:
Report link

Your `exclude: ^generated/` only matches if the file path *starts* with `generated/`. To exclude any `generated` folder at any depth, use:

```yaml

exclude: (^|/)generated/

Test it with-->pre-commit run --all-files --verbose

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

79627262

Date: 2025-05-18 08:27:01
Score: 1.5
Natty:
Report link

and there might be somecase where the app may be open for a while and you close it, that would resutl to skip the intialzaiton page of the app, which will return the absent of the access token in your memory so as a fall back do a ckeck in the interceptor to check if a token is there first, and if no, try to call that function which is executed in the intialzation state, and also do check in that function if no token found to redirect the user to the login page, and also do 1 last thing. update the secure store or async storage for to update the access token.

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

79627249

Date: 2025-05-18 08:14:57
Score: 2.5
Natty:
Report link

OK, I think I found the problem.

First problem is edge detection is not right. Because I use vulkan which default coordinate system is y flip. So I need `#define SMAA_FLIP_Y 0` to make SMAA rightly processing.

Second problem is blend weight not clear. It is because I use UNORM color format rather than sRGB format. Use later will make blend output color is clear. Well this is not influence the result output image I thinking.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: guruguru

79627244

Date: 2025-05-18 08:07:55
Score: 3.5
Natty:
Report link

Found a problem. I had to set endpoint_mode to dnsrr for db.

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

79627241

Date: 2025-05-18 08:01:54
Score: 4
Natty:
Report link

Ultra late comer. In 2025, there are heaps and you can find them here: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/rel

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

79627240

Date: 2025-05-18 07:56:52
Score: 2
Natty:
Report link

Bro, your question is unclear. You should ask exactly what you want. Do you want that first BG should be fixed & other BGs get scrolled by user? Or wanted to make all those static (then you should add set top property to height of the previous BG).

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

79627236

Date: 2025-05-18 07:40:48
Score: 1
Natty:
Report link

I haven't personally had this problem, but I know better solutions. The InMemoryOrderModuleList already contains user32.dll and ws2_32.dll, so there's no need to perform a LoadLibrary operation—doing so only draws unnecessary attention.

I used to use LoadLibrary, and here’s how I did it:

xor r12, r12
mov r12, 0x6C             ; Push 'l'
push r12
mov r12, 0x6C642E6970617370 ; Push 'psapi.dll' backwards
push r12
mov rcx, rsp              ; RCX points to the DLL string
sub rsp, 0x30             ; Shadow space for the call
call r14                  ; Call LoadLibrary (pointer in r14)
add rsp, 0x30             ; Clean up the stack

In other words, I first pushed the "dll" part, then pushed the rest of the string "psapi", then set rcx to point to the full DLL path on the stack. That way, I could call LoadLibrary easily.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user32
  • Low reputation (1):
Posted by: Kinezi

79627233

Date: 2025-05-18 07:36:47
Score: 2
Natty:
Report link

Yeah, you *could* try 'hacking' it with a calculated column(dont do it Nehad I got something else for you) , but l got to cut in — that’s static and doesn’t even handle `Today` dynamically. Cute, but useless.

And here is the proper way-->

- Trigger: “When item is created or modified”

- Condition: `AssignedTo` is not empty **and** `AssignedDate` is empty

- Action: Set `AssignedDate` to `utcNow()`

And boom!?. Auto-fills the moment you assign someone. No nonsense.

You're welcome.

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

79627220

Date: 2025-05-18 07:09:41
Score: 3
Natty:
Report link

Thanks @jo-totland for the solution. I modified the condition to use automatically provided environment variable CHEZMOI_OS (source). Because the original answer uses uninitialized $isWindows variable.

If ($env:CHEZMOI_OS -eq "windows") {
    If (-Not (Test-Path $env:LOCALAPPDATA\nvim)) {
        New-Item -Path $env:LOCALAPPDATA\nvim -ItemType Junction -Value $env:USERPROFILE\.config\nvim
    }
}

Just for the reference, there's an open issue about this on GitHub: https://github.com/twpayne/chezmoi/issues/2273

I wanted to post it as a comment under the original answer, but don't have enough reputation :\

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): don't have enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jo-totland
  • Low reputation (1):
Posted by: John Smith

79627215

Date: 2025-05-18 06:59:39
Score: 1
Natty:
Report link

in my case of "Some services are not able to be constructed" Error in .NET 8

service A inject service B

service B inject service A

a circular dependency was detected for the service of type A

to solve the problem, remove one side of dependency ...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Zolfaghari

79627211

Date: 2025-05-18 06:54:37
Score: 1.5
Natty:
Report link

Yes, you can absolutely use a string variable instead of a hardcoded string — just make sure you're passing it as a list of strings, not a literal string.

The key is: `labelIds` expects a list, not a string. So you must use square brackets `[]` around the variable, not quotes around a list-shaped string.

Go for:

```python

label_id = 'INBOX'

results = service.users().messages().list(userId='me', labelIds=[label_id]).execute()

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

79627208

Date: 2025-05-18 06:48:36
Score: 1.5
Natty:
Report link

Bhitarkanika National Park

Bhitarkanika National Park http://tourmyodisha.com/wp-content/uploads/2025/04/Bhitarkanika-National-Park.webp

Welcome to The Majestic Crocodiles Bhitarkanika National Park, a hidden gem located in the heart of Odisha, India. This pristine national park, covering around 672 square kilometers, is not just a sanctuary for various flora and fauna but is also a UNESCO World Heritage Site, recognized for its ecological importance.

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

79627207

Date: 2025-05-18 06:45:35
Score: 1.5
Natty:
Report link

DB is directive, not instruction, which might bring confusion. Because instructions are executed by cpu, and directives like db just result in you program assembled with data before runtime. it doesnt raesult in any actual cpu instructions.

I don't have any sources for that, but that's how it works, and making that distinction helped my understanding a lot.

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

79627200

Date: 2025-05-18 06:34:32
Score: 0.5
Natty:
Report link

Ah, found it. PG::Interval has a .to_span method available.

https://github.com/will/crystal-pg/blob/master/src/pg/interval.cr#L13

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: Tyler

79627194

Date: 2025-05-18 06:25:30
Score: 0.5
Natty:
Report link

I think you should use label['id'] rather than label['name']. Sometimes, these two have the same value; sometimes, they don't.

Ref: https://developers.google.com/workspace/gmail/api/reference/rest/v1/users.messages/list#http-request

for label in labels:
    if label['type'] == 'user':
        label_id = label['id']  # Use the label ID, not the name
        results = service.users().messages().list(
            userId='me',
            labelIds=[label_id],  # This works!
            maxResults=2
        ).execute()

        # Do something with results here
        print(f"Messages with label {label['name']}:", results.get('messages', []))
        break  # Remove break if you want to process all labels
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Raymond

79627191

Date: 2025-05-18 06:23:30
Score: 2.5
Natty:
Report link

I have created an automation script that uses Selenium to load YouTube channel ‘About’ pages and extract email addresses. The script integrates a third-party CAPTCHA-solving service. Simply start the script, and it will collect all the email addresses and save them to a CSV file. Let’s discuss.

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

79627190

Date: 2025-05-18 06:21:29
Score: 4.5
Natty:
Report link

I followed this guide: https://repost.aws/knowledge-center/cognito-okta-oidc-identity-provider

One tricky note is the email is case-sensitive

enter image description here

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hugh Bui

79627181

Date: 2025-05-18 05:54:24
Score: 1
Natty:
Report link

If you are using Yarn of recent versions (such as Berry), the modules are most likely located in a shared cache and Vite can't link them properly.

It is enough to place a .yarnrc.yml file in the root folder of the project, with just one line:

nodeLinker: node-modules

and run yarn install again

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

79627165

Date: 2025-05-18 05:06:14
Score: 4
Natty: 5.5
Report link

necesito eso pero en el actual visual

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

79627164

Date: 2025-05-18 05:02:13
Score: 3.5
Natty:
Report link

Thanks For This Solution I have a sam problem it STEAMRIP

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jafer Jaan

79627163

Date: 2025-05-18 05:02:13
Score: 0.5
Natty:
Report link

In your project directory, go to android folder, Then run these commands:

$ ./gradlew clean
$ ./gradlew wrapper --gradle-version latest
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: xirehat

79627145

Date: 2025-05-18 03:59:02
Score: 0.5
Natty:
Report link

In symfony 6 or higher, this can be handled without managing multiple doctrine connections:

$isolatedEm = new EntityManager(
    conn: $entityManager->getConnection(),
    config: $entityManager->getConfiguration(),
    eventManager: $entityManager->getEventManager(),
);

// get original data using $isolatedEm
// do what you need with data

$isolatedEm->close();

I needed this to accurately compare normalized data before and after changes. I don't know if this will work with all DBs, I am using postgres.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashley

79627142

Date: 2025-05-18 03:46:58
Score: 4.5
Natty: 5
Report link

@Arthur Tacca thank you for your comment but I don't see how that could solve my problem of sharing locally reserved data on the heap of a process using functions like: malloc, calloc, ... Suppose that the instruction mySharedStruct.pData = (void*) calloc (1, 10); returns the address 0x000e7c80 which symbolizes a void * (or more complicated a : void **) in P1 Heap. How to make the address 0x000e7c80 usable by P2 ?! because this address is not part of its heap and any access attempt will generate a memory access violation

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Arthur
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Supolaliko

79627137

Date: 2025-05-18 03:36:56
Score: 1
Natty:
Report link

Honestly, I don’t believe your StackOverflowError is caused by cookies—especially since it happens sporadically and is “fixed” by a reboot. It’s far more likely that the JVM simply doesn’t have enough stack space. I’d start by increasing the thread stack size with the -Xss option, or even try a different JVM distribution.

It’s also possible that you have excessively deep call chains—either through recursion or deeply nested method calls—that exhaust the stack. I recommend reviewing your code for any deep recursion or long chains of method invocations and refactoring them (for example, converting recursive algorithms to iterative ones) to prevent the error.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: l_______

79627135

Date: 2025-05-18 03:31:54
Score: 1
Natty:
Report link

https://github.com/LouayAlsakka/embeddedlib/blob/main/sort4_v3.c

this new sort algorithm beet numpy on same machine by more than 10%

SORTED!!!! 8.924534 sec

vs numpy

l=np.loadtxt("/tmp/unsorted.txt")
>>> cProfile.run("l.sort()")
         4 function calls in 10.193 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000   10.193   10.193 <string>:1(<module>)
        1    0.000    0.000   10.193   10.193 {built-in method builtins.exec}
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
        1   10.193   10.193   10.193   10.193 {method 'sort' of 'numpy.ndarray' objects}

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

79627133

Date: 2025-05-18 03:30:54
Score: 5.5
Natty:
Report link

not active since 2023, taken over account smh?

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

79627128

Date: 2025-05-18 03:19:51
Score: 1
Natty:
Report link

Thanks a lot for the detailed answers. I got that the the size of the array was initially fixed at a size of [10], and that it couldn't be extended. Guess the way I described it was a bit weird. Also noted my misuse of 'allocate' vs 'assign' re: arrays.

For the sake of messing around with this little program, I just set it at size 10 and was inputting values for num <= 10 that were only ints. I understand now that

printf("&d", arr);

will only display the address of arr, converted to a signed int. Hence why it didn't change before and after going through foo. I changed the code to

printf("array addr: %p", arr);

before and after foo, as well as adding

printf("arr pos %d is %d\n", i, arr[i]);

to foo; also added void as an argument to foo for better form.

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

79627122

Date: 2025-05-18 03:05:48
Score: 0.5
Natty:
Report link

The OP's question points out that a sentence in the C standard regarding pointer declarators does not make sense in isolation and argues that the sentence is inappropriate.

On the other hand, in latest public working draft of C (n3550), the sentence in question remains unchanged but has been augmented by a newly added sentence reinforcing the same point - that type qualifiers or attributes are applied to the pointer itself, not the data being pointed to. Also, as user17074451 pointed out, the sentence has been there since the begining. Possible reasons why people accept this sentence might be:

  1. A worse mistake as user17074451 explained, could overshadow the ambiguity of the sentence.

  2. The sentence might simply have become familiar to everyone.

  3. There might be nothing wrong with the sentence.

Since the OP finds the previous sentence understandable, we can start from there.

... the type specified for ident is “derived-declarator-type-list type-qualifier-list pointer to T”.

This specifies the type of ident as "... pointer to T".

Now, examining the sentence in question.

... ident is a so-qualified pointer.

OP argues that because the sentence states that ident is so-qualified pointer, ident's type should explicitly be a pointer, meaning the qualifier should be applied directly to ident's type.

However, as user17074451 mentioned array declarator, this interpretation clearly does not hold when the declarator includes both a pointer declarator and an array declarator.


Example: Let's consider the declaration int * const foo[10].

T D1 : int * const foo[10]

T: int

D1: * const foo[10]

D: foo[10]

type-qualifier-list: const

derived-declarator-type list: derived from T D for ident, which is "size-10 array of".

ident type: size-10 array of const pointer to int.

clarification: the pointer to int is const-qualified.

If the sentence in question really implies that ident itself must be a pointer type, the sentence is incorrect, because ident in this case is an array.

Instead, the intended meaning of the sentence is clarification - it specifies that qualification is applied to the pointer, aligining with both user17074451's answer and the OP's own analysis. The clarification is essential because the previous sentence is lengthy and might be challenging for some readers, including my self, to fully grasp.


Example: int * const * foo (OP's Example).

Now, let's analyze the example brought up by the OP:

T D2 : int * const * foo

T: int

D2: * const * foo

D1: * foo

type-qualifier-list: const

derived-declarator-type list: derived from T D1 for ident, which is "pointer to".

ident type: pointer to const pointer to int.

clarification: the pointer to int is const-qualified.


When I first read the question, I agreed with the OP's point. However, after discovering that current C standard had augmented the clarification regarding newly introduced attribute, I realized there must be a reason for the clarification.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): user17074451
  • User mentioned (0): user17074451
  • User mentioned (0): user17074451
  • User mentioned (0): user17074451
  • Low reputation (1):
Posted by: kcb

79627121

Date: 2025-05-18 03:03:48
Score: 3
Natty:
Report link

Please install python through https://www.python.org/downloads/ https://www.python.org/ftp/python/3.13.3/python-3.13.3-macos11.pkg despite of your existing python version. I had python3 in my mac (I have used brew install python earlier). Now I have again installed python using the above URL and after I ran the below command (refer https://docs.aws.amazon.com/cli/v1/userguide/install-macos.html#install-macosos-bundled-sudo) and successfully installed sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws

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

79627111

Date: 2025-05-18 02:43:42
Score: 9.5 🚩
Natty: 5.5
Report link

Hey Brian Clozel, did you get this worked out?

Reasons:
  • RegEx Blacklisted phrase (3): did you get this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Uday Yarlagadda

79627110

Date: 2025-05-18 02:43:42
Score: 5
Natty: 5
Report link

i made a guide may be it could help https://github.com/Granddyser/windows-llama-cpp-python-cuda-guide

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

79627104

Date: 2025-05-18 02:24:37
Score: 5
Natty: 5.5
Report link

use Color Shades Generator and set the shades to 9.

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

79627098

Date: 2025-05-18 02:01:32
Score: 3.5
Natty:
Report link

I can't comment @chwarr's thread because I'm lower than 50 reputation, so I just post here. Sorry for the inconvenience.

I found that an undocumented option called /linkermember was used by /all option. It provides the function of show members in library files.

TL;DR

Inspired by @chwarr, I reverse analyzed dumpbin.exe and link.exe. dumpbin.exe just simply invokes link.exe with additional /DUMPoption and all of its options. I found that the entry point function of COFF dumper named DumperMain(int,ushort * * const) and the command line parser function named ProcessDumperSwitches(void) in link.exe. After a few attempts, I found the above I mentioned option.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1.5): 50 reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @chwarr's
  • User mentioned (0): @chwarr
  • Low reputation (1):
Posted by: omikrun

79627097

Date: 2025-05-18 01:57:31
Score: 1.5
Natty:
Report link
import sys

python_version = sys.version.split()[0]

print(f"Python version: {python_varsion}"

'''
    Output:

    Python version: 3.12.0  
'''
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: grippnault

79627089

Date: 2025-05-18 01:27:20
Score: 6 🚩
Natty:
Report link

Do you have a git for this. I would love to see how you managed to get an android device to appear as an ANCS device to a bluetooth peripheral.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christopher White

79627088

Date: 2025-05-18 01:23:19
Score: 1
Natty:
Report link

What you can do is to use the values you got from your figma as Dp in your Android XML or compose.
Still if you are experiencing those issues that is why the Figma design is based on a specific screen density and your test device is it using a different screen density.
That's all about it screen density. You can't do much about it since if you manage to have a bigger design for your specific device and settings then it will look too big for other user settings.

Also, consider to test your UI in a "standard" setting scenario even if you like your text size and display sise so little or so bigger.

If you can post a specific sample I can help you more, but there is no right answer here.

If you need to have a consistend spacing and element disposition in the screen space you should use a container which let you have proportion and constraint like a contraintLayout. (or use weight, but I do not reccoment doing that)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you can
  • Low reputation (0.5):
Posted by: alex_au

79627086

Date: 2025-05-18 01:20:18
Score: 0.5
Natty:
Report link

Have you added ACF's header to your page ? If not, add this at the very top : <?php acf_form_head(); ?>. It will load their JS script. Then, change your script :

<script>
(function($) {
  $(document).ready(function() {
    acf.unload.active = false;
  });
})(jQuery);
function onSubmit(token) {
        document.getElementById("acf_testi").submit();
}
</script>
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Marianne

79627084

Date: 2025-05-18 01:16:17
Score: 3
Natty:
Report link

We replaced scattered values.yaml files with a centralized Root Values file, organized by network topology, not apps. It keeps configs clean, consistent, and super easy to update across environments.

Check this out: https://medium.com/@francescocambi/enhancing-helm-values-management-a-scalable-approach-with-root-values-d6fed3e6f258

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Francesco

79627082

Date: 2025-05-18 01:14:17
Score: 3.5
Natty:
Report link

Is it not clear what the issue is. In the image I see the emulator running.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it not
  • Low reputation (0.5):
Posted by: alex_au

79627080

Date: 2025-05-18 01:14:17
Score: 3
Natty:
Report link

We replaced scattered values.yaml files with a centralized Root Values file, organized by network topology, not apps. It keeps configs clean, consistent, and super easy to update across environments.

Check this out: https://medium.com/@francescocambi/enhancing-helm-values-management-a-scalable-approach-with-root-values-d6fed3e6f258

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Francesco

79627079

Date: 2025-05-18 01:14:17
Score: 3
Natty:
Report link

We replaced scattered values.yaml files with a centralized Root Values file, organized by network topology, not apps. It keeps configs clean, consistent, and super easy to update across environments.

Check this out: https://medium.com/@francescocambi/enhancing-helm-values-management-a-scalable-approach-with-root-values-d6fed3e6f258

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Francesco

79627078

Date: 2025-05-18 01:13:16
Score: 3
Natty:
Report link

We replaced scattered values.yaml files with a centralized Root Values file, organized by network topology, not apps. It keeps configs clean, consistent, and super easy to update across environments.

Check this out: https://medium.com/@francescocambi/enhancing-helm-values-management-a-scalable-approach-with-root-values-d6fed3e6f258

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Francesco

79627074

Date: 2025-05-18 00:31:08
Score: 4
Natty:
Report link

<application android:hardwareAccelerated="true" ...>

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

79627062

Date: 2025-05-17 23:59:02
Score: 1.5
Natty:
Report link

I ran into I similar problem when I was hosting my own WP site. Even when I increased the memory my elementor was stuck on the loading screen. Does your http://localhost/your-site-name/wp-json/ work? This should return a JSON response. If it doesn’t, Elementor can’t talk to WordPress properly. The issue was a result of my .htaccess file. Make sure that your file is correct it should look like this.
# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /your-path/

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /your-path/index.php [L]

</IfModule>

# END WordPress

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

79627053

Date: 2025-05-17 23:34:56
Score: 12.5 🚩
Natty: 5.5
Report link

Were you able to complete your project?

If anyone can help me with the connection between Vite and Solana wallet, I would be grateful.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): anyone can help me
  • RegEx Blacklisted phrase (2): I would be grateful
  • RegEx Blacklisted phrase (0.5): anyone can help
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: tarik

79627048

Date: 2025-05-17 23:02:50
Score: 2
Natty:
Report link

Can you tell me specifically which database you are using, such as Oracle or MySQL? if you are using pgsql

SELECT
  sf.StaffName,
  TO_CHAR(st.SalesDate, 'DD Mon YYYY') AS SalesDateFormatted,
  fi.ItemName,
  CONCAT('$', TO_CHAR(SUM(fi.ItemSalesPrice * st.Quantity), 'FM9999990.00')) AS TotalPrice
FROM SalesTransaction st
JOIN Staff sf ON st.StaffID = sf.StaffID
JOIN SalesTransactionDetail sd ON st.SalesTransactionID = sd.SalesTransactionID
JOIN FashionItems fi ON sd.ItemID = fi.ItemID
WHERE LENGTH(sf.StaffName) > (SELECT AVG(LENGTH(StaffName)) FROM Staff)
  AND EXTRACT(DAY FROM st.SalesDate) % 2 != 0
GROUP BY sf.StaffName, st.SalesDate, fi.ItemName;

can you try this sql?

Reasons:
  • Whitelisted phrase (-2): can you try
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): Can you tell me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: CarpeWang

79627040

Date: 2025-05-17 22:51:48
Score: 4
Natty: 4.5
Report link

The JavaFXSmartGraph library:

https://github.com/brunomnsilva/JavaFXSmartGraph

Disclaimer: I'm the developer.

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

79627036

Date: 2025-05-17 22:38:44
Score: 3.5
Natty:
Report link

Go to settings -> Color Scheme -> Python

Under keyword argument change the color.enter image description here

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

79627014

Date: 2025-05-17 21:50:33
Score: 0.5
Natty:
Report link

Re:

=(len(A1)-len(substitute(A1;A2;"")))/len(A2)

The above solution works well.

I am looking to do something similar but count a number of text strings in a range of cells. What complicates the issue is that the text strings can have more than one occurrence on any cell, e.g., a cell could contain 'apple, banana, orange, apple, orange, apple' so the count for the string 'apple' should equal 3 from that cell and then be added to the total for all the cells in the required range.

I need to court all the instances of the string 'apple' in the cell range c1: d9842

I also need to count all the instances of 2 strings 'apple' and 'orange' as a combined total in the cell range c1:d9842

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Karl

79626999

Date: 2025-05-17 21:24:28
Score: 0.5
Natty:
Report link

Using any POSIX sed:

$ sed -E 's/(([^ ]+ ){5}[^ ]+) /\1+/g' file
Now is the Time for All+Good Men to Come to the+Aid of their Country. How much+wood could a wood chuck chuck?
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Ed Morton

79626995

Date: 2025-05-17 21:19:27
Score: 1
Natty:
Report link

By changing the console's input and output encoding settings to Unicode I managed to output the text correctly — at least for all the Czech characters.

// This fixes the problems with displaying non-English characters, at least for Czech. 
Console.InputEncoding = System.Text.Encoding.Unicode;
Console.OutputEncoding = System.Text.Encoding.Unicode;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rudolf Snail

79626991

Date: 2025-05-17 21:14:26
Score: 2
Natty:
Report link

Check your where condition — it should not be an empty string. It requires a proper column name.

For example, somewhere you might be using an empty where clause like '', which causes the error.
Try to use single inverted comma ' ' properly.

In my case, I was using this in an association, and that's why I was getting the error:

//gives me error
include: [{
  model: User,
  as: 'owner',
  attributes: ['userId', '']
}]


//corrected code
include: [{
  model: User,
  as: 'owner',
  attributes: ['userId']
}]
Reasons:
  • Blacklisted phrase (2): gives me error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Baljit Singh

79626990

Date: 2025-05-17 21:13:26
Score: 2
Natty:
Report link

Using errgroups solved the issue for me , This pattern of error handling is quite complex and should be avoided especially in my case where I just required a early return . I hope this helps .

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chahat Sagar

79626989

Date: 2025-05-17 21:12:25
Score: 4.5
Natty:
Report link

It works now with mssql extension

enter image description here

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

79626981

Date: 2025-05-17 21:00:22
Score: 2
Natty:
Report link

I feel the error is likely caused by mixing tabs and spaces in your indentation, which Python doesn't allow.

Since it works in RStudio but not elsewhere, your environments are handling whitespace differently. Try retyping the loop lines with consistent indentation (using only spaces, not tabs) to fix it.

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

79626966

Date: 2025-05-17 20:39:17
Score: 5
Natty: 4
Report link

@Burnian answer also helped me, I had an exact issue mistakenly installing angular-cli isntead of "@angular/cli"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Burnian
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ilya Semenov

79626963

Date: 2025-05-17 20:36:16
Score: 1.5
Natty:
Report link

For me, deleting nodejs folder from C:\nvm4w solved the problem. It seems like it "reset" NVM.

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

79626955

Date: 2025-05-17 20:25:13
Score: 2.5
Natty:
Report link

It seems that $zelta is not an array of numbers, but array of arrays. Try to print_r or var_dump it to see what inside.

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

79626952

Date: 2025-05-17 20:22:13
Score: 1.5
Natty:
Report link
<ul class="dropdown-menu dropdown-menu-end show" ...>

The presence of .show makes the dropdown open on page load.

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

79626947

Date: 2025-05-17 20:19:11
Score: 4
Natty:
Report link

The problem was I wasn't calling the class in the registration.

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

79626940

Date: 2025-05-17 20:05:08
Score: 2.5
Natty:
Report link

I took a different direction and created an xlookup on the supporting data table to find the entry for the first of the year for each row.

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

79626928

Date: 2025-05-17 19:42:03
Score: 0.5
Natty:
Report link

Using any awk:

$ awk 'BEGIN{FS=OFS=","} {split($2,a,/ v?|-.*/); print $0, (NR>1 ? a[2] : "simple_"$2)}' input.csv
id,version,simple_version
84544,abcd v2.1.0-something,2.1.0
3439,abcd a82f1a,a82f1a
3,abcd 2.2.1-bar,2.2.1

Using a while-read loop as you have in the question is an anti-pattern, see why-is-using-a-shell-loop-to-process-text-considered-bad-practice and if you want to do any more complicated CSV processing with awk then see What's the most robust way to efficiently parse CSV using awk?.

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Ed Morton

79626926

Date: 2025-05-17 19:40:03
Score: 1.5
Natty:
Report link

avoid subtree unless you truly need and try monitoring addedNodes not the whole DOM. ex:

for (const mutation of mutations) {
 for (const node of mutation.addedNodes) {
   ...
 }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lirim Krosa

79626922

Date: 2025-05-17 19:33:01
Score: 0.5
Natty:
Report link

The Alternative Approach described above takes advantage of the widely accepted capabilities of Word Compare. it is not fast but gives very good results. So, to save execution time, you would have Excel directly handle the simple cases (one input cell is empty or both cells are equal), and use Word Compare only when necessary.

However, you need to be careful with control characters, particularly linefeed Chr(10). When the macro copy/pastes the comparison redline results from Word into Excel, if that redline text contains any linefeeds, this will cause the target cell in Excel to split into additional rows at each linefeed. My workaround is to have Excel replace all the Chr(10) linefeed characters in both input strings with something innocuous (like the pilcrow). This does not affect Word's redline generation, and the resulting string from Word will paste into Excel without causing cell splitting. If you are okay with the redlines containing the substitute character (pilcrow) instead of actual line feeds, you're done.

But if you want the redlines to display with real linefeeds, it gets more complicated. You will want to remove all deleted linefeeds (or pilcrow substitute) because although marked as deleted, a linefeed character would still cause a line feed to occur in the displayed text. After the paste into Excel, you would replace the pilcrows with Chr(10). Be careful doing character replacements because using string functions will affect the character-level formatting we have worked so hard to generate. You may need to operate on individual Characters and their Font properties. Just beware.

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

79626911

Date: 2025-05-17 19:12:56
Score: 1
Natty:
Report link

The placement of code snippets provided by Google Tag Manager is really important. Try using HFCM plugin in WordPress to add the code in the specific place as recommended below, this gives you more flexibility to add the code:- To place GTM code, you need to add two snippets to your website's code. The first snippet, enclosed in tags, should be placed as high as possible within the section, ideally after the opening tag. The second snippet, enclosed in a tag, should be placed immediately after the opening tag.

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

79626899

Date: 2025-05-17 18:49:51
Score: 0.5
Natty:
Report link

To verify the ball is called bouncing methods you need to create a mock

Ball ball = Mockito.mock(Ball.class);
// do something with the ball, e.g. call update()
Mockito.verify(ball, Mockito.times(1)).bounceHorizontal();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TevinS

79626883

Date: 2025-05-17 18:30:47
Score: 0.5
Natty:
Report link

It might be an syntax issue, try this

NavigationLink(value: mission) {
    NavLink(mission: mission)
}
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rihan Dsa

79626876

Date: 2025-05-17 18:21:44
Score: 3.5
Natty:
Report link
webbrowser.open_new(www.youtube.com/@Alexzapmar-b3s)
   time.sleep(1min)
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Alexzapmar

79626872

Date: 2025-05-17 18:13:43
Score: 0.5
Natty:
Report link

For the first issue with pip-system-certs you have to import wrapt_requests at the very beginning of the script file (before requests is imported by any other module):

import pip_system_certs.wrapt_requests

See: https://gitlab.com/alelec/pip-system-certs

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

79626865

Date: 2025-05-17 18:05:40
Score: 6
Natty: 7
Report link

enter image description hereenter image description here i need you to take a pic with a midget holding these balloons - Puffy combs

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: June Moon Steve Jobs Edward Re

79626863

Date: 2025-05-17 18:05:40
Score: 0.5
Natty:
Report link

Android Emulator (API < 28): 10.0.2.2 (special alias to your host's loopback)
Android Emulator (API ≥ 28): Either 10.0.2.2 or the new 10.0.3.2 (for newer emulator versions)
Genymotion: 10.0.3.2

also check in your manifest and if not exist add it

 android:usesCleartextTraffic="true">
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alireza Haji gholamreza

79626858

Date: 2025-05-17 17:58:39
Score: 0.5
Natty:
Report link

Modify your ESLint configuration to ignore virtual paths by adding the following rule:

'import/no-unresolved': ['error', { ignore: ['^virtual:'] }]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Maurici Abad

79626856

Date: 2025-05-17 17:54:37
Score: 0.5
Natty:
Report link

For me I was enabled app check in firebase console which was denying requests without any valid tokens I unenforced the check it started working for me

For more info check this : Firebase App Check - Can You Turn Off "Enforce" Action

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

79626855

Date: 2025-05-17 17:53:37
Score: 0.5
Natty:
Report link

For me I was enabled app check in firebase console which was denying requests without any valid tokens I unenforced the check it started working for me

For more info check this : Firebase App Check - Can You Turn Off "Enforce" Action

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

79626848

Date: 2025-05-17 17:50:36
Score: 1
Natty:
Report link

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!

]]

loadstring(game:HttpGet("https://raw.githubusercontent.com/Xxtan31/Ata/main/deltakeyboardcrack.txt", true))()

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

79626843

Date: 2025-05-17 17:47:35
Score: 3.5
Natty:
Report link

import webbrowser

import time

URL = input("www.youtube.com/@Alexzapmar-b3s: ")

Duration = int(input("1min: "))

Times = int(input(" 2000"))

for x in range(Times):

   webbrowser.open_new(url)
   time.sleep(Duration)
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alexzapmar

79626841

Date: 2025-05-17 17:47:35
Score: 2
Natty:
Report link

That will work.

git ls-files --others --exclude-standard
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Sindre

79626834

Date: 2025-05-17 17:40:33
Score: 0.5
Natty:
Report link

Yes it's possible with the help of VPC Endpoint Services (PrivateLink)

  1. Create a VPC Endpoint Service with NLB as backend in client VPC. Note: NLB must be internet-facing: false

  2. Create a VPC Endpoint in application consumer VPC. Note: security group should allow TCP access to the target port of NLB

  3. Optionally, you can enable private DNS for the endpoint, so that consumer vpc apps use that endpoint DNS to reach the application service privately over AWS backbone

    [ Consumer VPC ] [ Application VPC ]

[ App A (EC2/ECS/Lambda) ] --> [ NLB ] --> [ App Service B ]

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

79626833

Date: 2025-05-17 17:39:33
Score: 3.5
Natty:
Report link

There's a chance the issue is in your trust policy. Here's a diff of yours compared to a working configuration. In the working config, the repo name is aws and the github username is mbuotidem. It appears you are missing the account number as well as setting the org and repo incorrectly.

If this doesn't work, please share screenshots of your trust policy and github oidc provider settings with your account number redacted and we can try to troubleshoot.

Image showing correct setting for AWS trust policy when using Github as OIDC provider

If

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mbuotidem Isaac