79446935

Date: 2025-02-18 01:35:08
Score: 0.5
Natty:
Report link

Here is a working code based on @MagTuns answer regarding separate files for each logname

Added

Code

$Begin = '18/02/2025 00:00:00'
$End = '18/02/2025 00:59:59'
$path = "C:\temp\logevent\"
If(!(test-path $path))
{
    New-Item -ItemType Directory -Force -Path $path
}
$allLog = (Get-WinEvent -ListLog * -ErrorAction SilentlyContinue).LogName
foreach ($lognameName in $allLog){
    Write-Host "Processing $lognameName..."
    $lognameFile = $lognameName.Replace("/", "-")
    $datetimenow =  [DateTime]::Now.ToString("yyyy_MM_dd HH_mm_ss")
    Get-WinEvent -FilterHashtable @{logname = $lognameName; StartTime = "$Begin"; EndTime = "$End";Level=1,2,3; } -ErrorAction SilentlyContinue | Select-Object * | Out-File -Enc UTF8 -FilePath "$path$datetimenow_winevent_$lognameFile.txt"
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @MagTuns
  • Low reputation (1):
Posted by: Jan S. Christensen

79446931

Date: 2025-02-18 01:32:08
Score: 1
Natty:
Report link

After abandoning the project for a while and redoing the electrical architecture of my board, I found the issue.

Part of the code for the SDIO / FATFS was being auto-generated by the STM32CubeIDE (handy tool, but not bug free).

When setting up the FATFS, it was requiring me to use a "Card Detected" pin. For my board, this pin collides with the SDIO D3 pin. So, I was forcing one of the SD Card data pins to ground (although operaitng it in 1 bit). Thus, I was getting intermittent behavior.

I removed this part of the code + removed totally this card detected pin, subtituting it by a software logic and leaaving the GPIO uninitialized. Now, it works like a charm!

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

79446929

Date: 2025-02-18 01:29:07
Score: 0.5
Natty:
Report link

Ok, the issue appears to be how I was starting the pypi server.

I've gone through many versions of this but in the end the directory name following -P must include .htpassed

pypi-server run -p 8080 d:\pypi_packages d:\pypi_packages -P d:\pypi_server\.htpasswd --log-file d:\pypi_server\pypiserver.log -vvv
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Gina Marano

79446928

Date: 2025-02-18 01:27:07
Score: 2
Natty:
Report link
key:="up"
send "{" key " down}" 

is equivalent to

send "{up down}" 
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kite

79446927

Date: 2025-02-18 01:22:06
Score: 3.5
Natty:
Report link

To summarize the answer, the parser rule ('NOP' | 'XCHG' 'AX,' 'AX') was trying to match 'AX' which was already being handled by the lexer under the REG rule.

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

79446922

Date: 2025-02-18 01:12:04
Score: 2
Natty:
Report link

Resolved: Fixed by disabling features in my VPN related to browser security. (omfg... (No coincidence that this happened right as my automated tests broke, due to unrelated changes))

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

79446914

Date: 2025-02-18 01:07:04
Score: 0.5
Natty:
Report link

Your local environment is running in-process, but is your Azure environment running dotnet-isolated by chance? I was getting an empty request body in my function after I migrated it from in-process model to isolated worker model. After some research I modified my function definition and return object to match what the isolated model likes, then it worked. Changes were:

Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jeff Brown

79446909

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

This was surprisingly easy. I fixed this by matching the case of the first letter of M to what the model file is saved as. For me, the file was saved as model and I called Model so, I just fixed this by renaming the model file. as "Model"

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eniola Oyekanmi

79446903

Date: 2025-02-18 00:53:01
Score: 2
Natty:
Report link

As of Qt6, QList has a resize() function.

https://doc.qt.io/qt-6/qlist.html#resize

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: L. Scott Johnson

79446899

Date: 2025-02-18 00:48:00
Score: 1.5
Natty:
Report link

Your code has a number of errors, but I think the error you are asking about is due to you having an extra set of [] around the 'systems' object (the closing one is missing in your question though.)

You also do not return anything from audit_permissions so it will return 'None' every time.

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

79446887

Date: 2025-02-18 00:37:59
Score: 3
Natty:
Report link

Frank's comment is what led me the right way - plpgsql, the format() function, and the EXECUTE command worked perfectly.

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

79446872

Date: 2025-02-18 00:26:56
Score: 1
Natty:
Report link

This error occurs because Vercel's serverless environment requires a specific way of handling HTTP requests. Here's how to fix it:

Instead of exporting the NestJS app instance, you need to export a handler function The handler function should process HTTP requests and responses Use a singleton pattern to maintain the app instance across requests

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

79446857

Date: 2025-02-18 00:16:54
Score: 4.5
Natty:
Report link

Github Comment works and resolve my issue.

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

79446844

Date: 2025-02-18 00:00:51
Score: 3.5
Natty:
Report link

You can make your Dockerfile this way:

FROM maven:3.8.4-openjdk-11-slim AS build

WORKDIR /app

COPY ./pom.xml .

COPY ./src ./src

RUN mvn dependency:go-offline
RUN mvn package -DskipTests -Dmaven.test.skip=true

FROM openjdk:11-jre-slim

RUN apt-get update && apt-get install -y tini && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY --from=build /app/target/*.jar /app/app.jar

EXPOSE 8080

ENTRYPOINT ["/usr/bin/tini", "--"]
CMD ["java", "-jar", "/app/app.jar"]

This video explains how to do it: https://youtu.be/17lOfTfAHsk?si=KDsp3ygQT2eUnVi7

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): This video
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: IngeEduar

79446843

Date: 2025-02-17 23:58:51
Score: 1.5
Natty:
Report link

Hello add this to the body

  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MindfulLearner

79446839

Date: 2025-02-17 23:54:49
Score: 5
Natty: 4
Report link

I'm looking for this kind of app exactly on android, any suggestions? An app that would work just as normal cam but would only take a still image while recording sound and outputting all of it into a normal video file.

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MuchToKnow

79446838

Date: 2025-02-17 23:52:49
Score: 0.5
Natty:
Report link

For anyone else who runs into this. I had to add

 - name: Set up Docker Buildx
    uses: docker/setup-buildx-action@v3
    with:
      driver-opts: image=moby/buildkit:latest
      install: true
      network: host
      buildkitd-config-inline: |
        [registry."<ip>:<port>"]
          http = true
          insecure = true

to the yaml in the build step. I tried using the toml files for this but that doesn't work as gitea runner does not have access to the filesystem same way even though the container of the runner has access to the toml files. Bonus tip: once this started working, I was able to pull from the registry in portainer by setting up the /etc/docker/daemon.json to insecure the registry. Also discovered the repull & deploy based on a webhook in portainer which is simply a POST request. Integrating this into my gitea action is magical and works.

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

79446829

Date: 2025-02-17 23:40:47
Score: 3
Natty:
Report link

A new version of the package, was released with a minor update that fixed this issue. PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.4.0"

To version 8.5.0

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jônathas Leandro

79446827

Date: 2025-02-17 23:39:46
Score: 4.5
Natty:
Report link

Yes, according to wiki it is normal. The compiler also points out that i may not be initialized. However, this is incorrect in this case, as i is a local variable that was initialized at the start of the for loop, even if the end value was specified as the start value. I pointed this out because it is handled differently in other programming languages, which has the advantage that the value following the loop end value is directly available. Here you can help yourself by calculating end value+1 yourself and using it in the 2nd log. if the loop is exited prematurely, for example, you do not know up to which value the loop was run through.

Hannes

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hannes Brockmann

79446825

Date: 2025-02-17 23:37:45
Score: 3.5
Natty:
Report link

from_env was added in langchain-core 0.2.30 (https://github.com/langchain-ai/langchain/issues/26497) What version are you using?

from pprint import pprint
from importlib.metadata import version
from packaging.version import parse

pprint(parse(version("langchain_core")))

I get:

<Version('0.3.35')>
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Jeff Taylor

79446820

Date: 2025-02-17 23:35:44
Score: 4
Natty:
Report link

I found my problem, I am not sure why there is a string "url" in the filter blank, then I removed it and Chrome could run successfully.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yanjian Shen

79446819

Date: 2025-02-17 23:34:43
Score: 4.5
Natty:
Report link

Files::write writes bytes to a file

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

79446805

Date: 2025-02-17 23:24:40
Score: 4.5
Natty:
Report link

Você pode colocar no próprio Excel um botão e atribuir essa macro. Para criar um botão, basta desenhar uma forma dentro do Excel e atribuir uma macro nessa forma. Ela pode inclusive conter um texto como por exemplo: clique aqui ou executar. O usuário só precisará clicar no botão dentro do Excel e ele chamará a Macro.

Reasons:
  • Blacklisted phrase (3): Você
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carlos Eduardo Bruzadin

79446798

Date: 2025-02-17 23:16:39
Score: 2
Natty:
Report link

Structured binding won't work with std::tuple and a template parameter pack

You need to specialize std::tuple and implement tuple_size and tuple_element

Examples here: Direct initialization fails with class derived from std::tuple, while it works for std::pair

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

79446797

Date: 2025-02-17 23:16:39
Score: 1
Natty:
Report link
int[] arr2 = new int[] {54, 432, 53, 21, 43};
int[] answer = Arrays.stream(arr2).boxed()
    .sorted(Comparator.comparing(Integer::intValue).reversed())
    .mapToInt(Integer::intValue)
    .toArray()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: h.z.

79446784

Date: 2025-02-17 23:07:37
Score: 0.5
Natty:
Report link
plt.xscale("log", base=2)
plt.yscale("log", base=2)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • High reputation (-1):
Posted by: Sayan

79446776

Date: 2025-02-17 22:59:35
Score: 3
Natty:
Report link

There are many causes for the issue, as mentioned in other answer.

In my case, the error could be resolved by adding the following reference around the top of the .ts/.tsx file.

///

Change for adding the reference type

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

79446768

Date: 2025-02-17 22:56:34
Score: 1.5
Natty:
Report link

There's one error that will cause you're files to override each other

The compiler would save the expanded and compressed version with a ".css" extension - so whichever saved first would be overwrote by the last

I'd suggest you use the ".min.css" for the compressed version

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

79446767

Date: 2025-02-17 22:55:34
Score: 0.5
Natty:
Report link

Use ogrinfo instead. Then you don't need to create a new output if you only want to restore the .shx file.

ogrinfo --config SHAPE_RESTORE_SHX YES file.shp
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: user2856

79446755

Date: 2025-02-17 22:48:33
Score: 2
Natty:
Report link

I would have liked to comment but I can't because of insufficient reputation. However, note that the top voted answer is suffering from spurious wakeups (see also Can QWaitCondition spuriously wake up?). So a better variant of the answer would be:

#include <QMutex>
#include <QWaitCondition>
#include <QSharedPointer>

// Data "pimpl" class (not to be used directly)
class BarrierData
{
public:
    BarrierData(int count) : count(count) {}

    void wait() {
        mutex.lock();
        --count;
        if (count == 0) {
            condition.wakeAll();
        } else {
            while(count != 0) {
                condition.wait(&mutex);
            }
         }
            
        mutex.unlock();
    }
private:
    Q_DISABLE_COPY(BarrierData)
    int count;
    QMutex mutex;
    QWaitCondition condition;
};

class Barrier {
public:
    // Create a barrier that will wait for count threads
    Barrier(int count) : d(new BarrierData(count)) {}
    void wait() {
        d->wait();
    }

private:
    QSharedPointer<BarrierData> d;
};
Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cwiede

79446750

Date: 2025-02-17 22:45:32
Score: 0.5
Natty:
Report link

You can pass state to your selectSpecialItems function as such which can then pass it down as an argument:

 export const selectSpecialItems = createSelector(
    [selectSpecialEntityGuids, state => state],
    (guids, state) => {
    ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: proof-of-correctness

79446747

Date: 2025-02-17 22:43:31
Score: 3.5
Natty:
Report link

On your Device1 Is the ipv4 forwarding active

net.ipv4.ip_forward=1

In your sysctl.cnf?

sudo nano /etc/sysctl.conf
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Raffaele Bertani

79446746

Date: 2025-02-17 22:42:31
Score: 3
Natty:
Report link

Do the SDL_Quit() before the IMG_Quit() , because it seems IMG_Quit() has to be last function called: https://wiki.libsdl.org/SDL2_image/IMG_Quit

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

79446739

Date: 2025-02-17 22:40:30
Score: 1
Natty:
Report link
  1. First understand, A lot of ; are likely going to be used in the body of created SP.

  2. Now the easier way to think about Delimeter DD (or $$) is think of it as NOT-Delimeting-BY ; Until the entire code is finished then Go-BACK-to-Delimeting-BY ;

The emphasis is on not using ; temporarily.

Hope this helps.

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

79446738

Date: 2025-02-17 22:40:30
Score: 1.5
Natty:
Report link

The directory looks like it's Linux not Windows. Are you running this on WSL or on ssh? If so, then that's where it is stored.

You can do uname -a to see if you're running WSL.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: proof-of-correctness

79446735

Date: 2025-02-17 22:38:30
Score: 1.5
Natty:
Report link

Downgrade to React 18 with Vite

Vite is now installing React 19. To use React 18 perform the following:

npm create vite@latest

package.json edited react/dom package.json edited react/dom types

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

79446732

Date: 2025-02-17 22:36:29
Score: 4.5
Natty: 5
Report link

Maybe it's better to use django-fast-treenode and not suffer?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Timur Kady

79446730

Date: 2025-02-17 22:34:28
Score: 0.5
Natty:
Report link

So.... i would say you can use winget called by powerhsell to install apps. Once you have the script you can load it in as an remediation.

Make sure that in your script you write a log file and use that as the detection for your remediation.

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

79446717

Date: 2025-02-17 22:26:27
Score: 3
Natty:
Report link

If I remember correctly on Windows the name resolution of localhost to the actual ip address is slow because, when it tries to route to the correct ip there is a cooldown in which it awaits a response. I not sure though.

Most solutions just suggest that you change to the actual ip address.

You could try the solutions suggested here, I cannot confirm if it will work for you https://superuser.com/questions/436574/ipv4-vs-ipv6-priority-in-windows-7/436944#436944

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sup

79446713

Date: 2025-02-17 22:24:26
Score: 3
Natty:
Report link

Futhark is a functional programming language inspired by StandardML and designed to go brr on parallel devices, including CUDA-capable GPUs.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: roman-kashitsyn

79446707

Date: 2025-02-17 22:19:24
Score: 6.5 🚩
Natty: 5.5
Report link

S3EventNotification.parseJson doesn't exist in the aws-lambda-java-event-3.11.1.jar. Is there another way to do this?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user29686231

79446704

Date: 2025-02-17 22:17:24
Score: 1
Natty:
Report link

My workaround was to activate transaction synchronization before running the test case by adding the following line in the front of your test method:

TransactionSynchronizationManager.initSynchronization();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jiadong Chen

79446700

Date: 2025-02-17 22:16:23
Score: 0.5
Natty:
Report link

Looks like there are some other issues related to this also: https://github.com/ueberdosis/tiptap/discussions/3196

This is how I solved it:

useEffect(() => {
    if (!(editor && value && value !== editor.getHTML())) return

    editor.commands.setContent(value)
}, [value, editor])

Reasons:
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: cantCsharp

79446694

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

been looking for information for a very long time and miracle, I found it. Thank you very much for the working solution, tweaked for myself not much, there was only a question with icon-discount it should be taken into account. And how about removing the discount? Personally, I have a button to remove the discount does not work and I can not figure out how to fix it.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nick

79446691

Date: 2025-02-17 22:12:22
Score: 4.5
Natty:
Report link

Thank you all for replying and helping me. I found a better and newer script!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29650719

79446680

Date: 2025-02-17 22:03:20
Score: 1
Natty:
Report link

My code for handling the making and receiving of the request was correct.

My issue was that in my html I had an embedded inside another which caused the entire page to reload on submit. This lead to the observed behavior of not executing the subscribe code. It wasn’t subscribing because the entire page reloaded.

Hope this helps somebody in the future.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: webdevoc

79446676

Date: 2025-02-17 22:03:20
Score: 1.5
Natty:
Report link

You can allocate a dedicated egress IP

fly machine egress-ip allocate <machine-id>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mirza Andriamanamisoa

79446669

Date: 2025-02-17 21:58:19
Score: 1.5
Natty:
Report link

In columnDefs, change filter: 'YearFilter' to filter: YearFilter with no quotes around it

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Samuel Reid

79446666

Date: 2025-02-17 21:58:19
Score: 3
Natty:
Report link

Is it a super old bucket? There used to be the "US Standard" which was kinda its own S3 region thing before the aws regional naming system was established. looking here: https://hidekazu-konishi.com/entry/aws_history_and_timeline_amazon_s3.html. Looks like it was renamed to us-east-1 in 2015.

maybe if the bucket is older than that the API might still refer to US?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is it a
  • Low reputation (0.5):
Posted by: Nath

79446648

Date: 2025-02-17 21:45:17
Score: 2.5
Natty:
Report link

Create an empty file named IdeaWin64.dll in <IDE_Installation_folder>/bin (where uninstall.exe is located) Then click uninstall.exe to uninstall it.

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

79446644

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

Knowing if a user is online in real-time is not possible without using WebSockets. What you can do is create an endpoint for polling and call it regularly every few seconds to fetch online users.

In your case, you could set the session in Redis to expire every 5 seconds, and every 4 seconds (as long as you are online), you call this endpoint to validate your session for another 5 seconds and fetch online users. This way, you achieve a real-time effect without WebSockets.

Reasons:
  • Whitelisted phrase (-1): In your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raffaele Bertani

79446643

Date: 2025-02-17 21:43:16
Score: 3
Natty:
Report link

Looks like there are two different places to put environment variables. Or it never accepted the values. I re-entered the values and submitted.

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

79446638

Date: 2025-02-17 21:42:16
Score: 12.5
Natty: 7.5
Report link

I have the same problem, Any solution yet ?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (2): Any solution yet ?
  • 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: Rasmus

79446631

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

I'm using it for the first time ever and can't believe how awful it is. My linux machine broke so I'm attempting to use macos - nightmare! Homebrew can't install gthumb (a simple image viewer), but macport claimed it can. It seems to be downloading and building all the worlds software just to deliver a simple image viewer (as macos has no decent image viewers). Aaargh! I bet it doesn't work even if it ever completes. Update : a few hours later it's still messing around building god knows what - insane! Who built this crazy product? Apparently it's danegerous to abort but this look sset to go on all night just to install "gthumb"! It gave no warning and has no progress indicator, A full new install of linux is far far faster. Sod macos - I'll buy a new linux box.

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

79446629

Date: 2025-02-17 21:36:14
Score: 2
Natty:
Report link

As of Feb 2025, the PowerShell workaround listed here NO LONGER WORKS.

The setting for softDeleteRetentionInDays is now truly an on creation only decision.

And SoftDelete in general cannot be disabled: https://stackoverflow.com/a/72240887

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gabriel Smith

79446626

Date: 2025-02-17 21:33:14
Score: 3.5
Natty:
Report link

The issue went away after not converting the body search params to a string and not including the scope in the body.

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

79446625

Date: 2025-02-17 21:33:14
Score: 1
Natty:
Report link

Instead of using pytest.raises(ValueError), use pytestqt to intercept exceptions in Qt's event loop when testing:

with qtbot.capture_exceptions() as exceptions:
    qtbot.mouseClick(
        button, QtCore.MouseButton.LeftButton
    )

See the documentation here.

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

79446622

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

try:

df.apply(lambda row: [...], axis=1)

to:

df.transpose().apply(lambda col: [...]).transpose()

I kinda just found out by accident.

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

79446614

Date: 2025-02-17 21:28:13
Score: 2
Natty:
Report link

I think because you used the word "Canonical" people are answering in terms of best pythonic programming. Like when you read your own code 6 months from now you get a sense of how smart the coder was.

Otherwise, in the moment long before worrying about swallowing exceptions just do:

type(anyVar)

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

79446603

Date: 2025-02-17 21:24:12
Score: 0.5
Natty:
Report link

I'm not entirely sure what the root cause is, but I encountered this issue after upgrading Vite to v6. It seems that Storybook is attempting to list stories within node_modules. (For context, I'm using TypeScript Project References with PNPM workspaces and NX.)

Fortunately, there's a workaround. We can pass a function—like the findStories function below—to the stories property in StorybookConfig (.storybook/main.ts). This ensures that node_modules is excluded, since simply adding a negation glob pattern didn't work for me.

You could write a simpler function using the glob npm package if you'd like. Nevertheless, this fixed the issue for me. Let me know if it helps?

find-stories.ts

import { readdir } from 'fs/promises'
import { join } from 'path'

/**
 * Recursively walks through directories and yields file paths matching the RegExp.
 * @param {string} dir - Directory to search in.
 * @param {RegExp} regex - Regular expression to match file names.
 * @param {Set<string>} ignoredDirs - Directories to ignore.
 */
async function* walkDir(
  dir: string,
  regex: RegExp,
  ignoredDirs: Set<string>
): AsyncGenerator<string> {
  let entries

  try {
    entries = await readdir(dir, { withFileTypes: true })
  } catch (error) {
    console.warn(`Skipping directory due to error: ${dir}`, error)
    return
  }

  for (const entry of entries) {
    const fullPath = join(dir, entry.name)

    if (entry.isDirectory() && !ignoredDirs.has(entry.name)) {
      yield* walkDir(fullPath, regex, ignoredDirs)
    } else if (entry.isFile() && regex.test(entry.name)) {
      yield fullPath
    }
  }
}

const STORIES_REGEX = /\.stories\.(jsx?|tsx?)$/i
const IGNORED_DIRECTORIES = new Set(['node_modules', 'dist', 'build', 'out', 'out-tsc'])

export async function findStories(
  rootDir: string = join(__dirname, '../../../') // point to your workspace root
): Promise<string[]> {
  const files = []

  for await (const file of walkDir(rootDir, STORIES_REGEX, IGNORED_DIRECTORIES)) {
    files.push(file)
  }

  return files
}

.storybook/main.ts

import type { StorybookConfig } from '@storybook/react-vite'

import { findStories } from './find-stories'

const config: StorybookConfig = {
  stories: async () => await findStories(),
  addons: ['@storybook/addon-essentials'],
  framework: {
    name: '@storybook/react-vite',
    options: {
      builder: {
        viteConfigPath: 'vite.config.ts',
      },
    },
  },
  core: {
    builder: '@storybook/builder-vite',
  },
  typescript: {
    reactDocgen: 'react-docgen-typescript',
  },
  async viteFinal(config) {
    const { mergeConfig } = await import('vite')
    return mergeConfig(config, {
      build: {
        commonjsOptions: { transformMixedEsModules: true },
      },
    })
  },
}

export default config
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: Moa

79446598

Date: 2025-02-17 21:20:11
Score: 0.5
Natty:
Report link
  1. Download the Docker Desktop exe file.

  2. Open Cmd as a Admin and run the below command.

    start /w "" "Docker Desktop Installer.exe" install -accept-license --installation-dir=D:\docker\Docker --wsl-default-data-root=D:\docker\Docker\images

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: The Droid Guy

79446589

Date: 2025-02-17 21:12:09
Score: 4.5
Natty: 4.5
Report link

Podrá descargarlo del siguiente link https://learn.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver16

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Berlington Barnett Martínez

79446587

Date: 2025-02-17 21:11:09
Score: 2.5
Natty:
Report link

Maybe I'm a lil late here but hopefully it can be helpfull for someone else looking for this. I have a webpage where I talk about that here: Apple Signature Tutorial And here is the code: Github repo

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

79446584

Date: 2025-02-17 21:10:09
Score: 0.5
Natty:
Report link
data_list = []
with open('input.txt', 'r') as data:
    for line in data:
         #create split_row to check
         split_row = line.strip().split())
         #check if the second substring in split_row starts with "*****"
         if split_row[1].startswith("*****"): 
             data_list.append(split_row) 
df = pd.DataFrame(data_list)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: yodish

79446576

Date: 2025-02-17 21:02:07
Score: 2
Natty:
Report link

Save yourself a lot of anxiety and frustration in trying to make it work. Been there done that and lost a few along the way. Ledger is great for what it does but it doesnt do it all. To remedy my HBAR and XDC storage issues I purchased a Tangem cold store wallet. It’s an easy set up even for newbies like myself. I love it and highly recommend Tangem for HBAR & XDC.

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

79446573

Date: 2025-02-17 21:02:06
Score: 7.5 🚩
Natty:
Report link

Did you find a solution? I am currently struggeling with the same error. I also posted in bpmn.io forum.

https://forum.bpmn.io/t/parse-error-when-namespace-declarations-not-exact/4379/7

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Benjamin Mertens

79446572

Date: 2025-02-17 21:00:05
Score: 4.5
Natty:
Report link

On my PC even thoug it is Disabled, it creates a new session? How to get around that. I have also disabled in "Error and Usage Report Settings"? telemetry restarts anyway

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: kenneth.V.A.

79446569

Date: 2025-02-17 20:58:05
Score: 2
Natty:
Report link

None of this worked for me, no matter what administrative user I use.

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: UOPDUCKSfan

79446567

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

using @rené-link

I have modified my babel.config.json with the below code. If you are using typescript, shadcn, react and jest.

{
  "presets": ["@babel/preset-env", ["@babel/preset-react", {
  "runtime": "automatic"
  }], "@babel/preset-typescript"]
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rené-link
  • Low reputation (0.5):
Posted by: Pankaj Kumar

79446559

Date: 2025-02-17 20:52:03
Score: 1
Natty:
Report link
@keyframes anim {
  100%{transform: rotate(360deg)}
}

button {
  animation-duration: 1200ms;
  animation-iteration-count: 1;
}

button:hover {
  animation-name: anim;
}

You just set the animation name to the spinning animation on hover. easy as that.

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

79446544

Date: 2025-02-17 20:42:02
Score: 3
Natty:
Report link

We are Working on website that provide health care services we need a API for that can help to get direct Massagers in our number.

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

79446540

Date: 2025-02-17 20:39:01
Score: 0.5
Natty:
Report link

I am an idiot. The log statement was converting the result to a string which truncates the metadata that comes with it and only returns the array of results, of which there are none. I am able to access the result directly via

...
const insertResult = await connection.query('INSERT INTO MY_TABLE VALUES(1, \'Name\')');
console.log(insertResult.count);
...

Apologies for the misunderstanding but sometimes talking out the problem with a text editor is helpful :)

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

79446538

Date: 2025-02-17 20:38:00
Score: 2.5
Natty:
Report link

I found one more way: select a word in the line (doesn't matter where) and click alt (option) + up-arrow. It selects a word and after selects the whole line.

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

79446530

Date: 2025-02-17 20:34:00
Score: 2.5
Natty:
Report link

I am experiencing the same issue. I found that as a temporary fix I downgraded MSTest to 3.2.2 which I know is a very old version but the tests began running at least. Still looking into a better solution.

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

79446519

Date: 2025-02-17 20:25:58
Score: 3.5
Natty:
Report link

I tried out the top answers and they did not work for me on Pop!_OS, but this did the trick:

https://stackoverflow.com/a/49426970/29685298

so (as linked response calls out change X_user and X_userid) ->

01 * * * * * sudo -u X_user DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/X_userid/bus notify-send 'Hello world!' 'This is an example notification.'

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Low reputation (1):
Posted by: Graham Cabrey

79446514

Date: 2025-02-17 20:20:57
Score: 2
Natty:
Report link

In 2025, the best and primary method for generating PDFs is to use headless Chrome through libraries such as Puppeteer and Playwright, because Chrome provides full support for CSS features like Flexbox, Grid, etc. The main downside is that launching Chrome consumes resources, and when handling a large number of documents, you need to decide whether to scale and maintain your own infrastructure or to use a third-party API like PDFBolt.

When it comes to generating an invoice from a template, check out this blog post which, in addition to comparing various PDF generation technologies, includes a tutorial on how to generate a PDF invoice from a template in Node.js using Playwright and an EJS template: How to generate PDFs in 2025

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

79446493

Date: 2025-02-17 20:11:54
Score: 5
Natty:
Report link

I am having similar issue. Even I can see that typing correct credentials in the Extent HTML report but sometimes application is not allowing to login. It is happening only with playwright. I tried to reproduce in selenium but never got any success.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adil Abdumanapov

79446486

Date: 2025-02-17 20:09:54
Score: 2
Natty:
Report link

This looks like a known issue and is undergoing active development

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

79446474

Date: 2025-02-17 20:02:52
Score: 7
Natty: 7.5
Report link

How do I know this Flutter app use which service account?

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Benson

79446472

Date: 2025-02-17 20:02:52
Score: 1
Natty:
Report link

This is not a complete answer to the question but a workaround I found and will use.

What I did is I created this property:

from sqlalchemy import func

# tip: this can be decorated as a @property in a class
def next_value():
    v = User.query.with_entities(func.max(User.column)).scalar()
    return v+1 if v is not None else 0

Usage:

user1 = User() # NULL
user2 = User(column=next_value()) # next free value
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: roundedrectangle

79446469

Date: 2025-02-17 20:01:51
Score: 4
Natty:
Report link

Finally, we have not had a crash since I made the request for logs to our tech because we tried a new fix just prior and it seems to have worked (no crash since).

Here is the link to what solved our problem (the first solution): https://www.cogmentis.com/php-fpm-crashing-on-cpanel-server-fixed/

Thanks to all for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Here is the link
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dany Latulippe

79446468

Date: 2025-02-17 20:00:50
Score: 2
Natty:
Report link

If you know your jar file name also class name than you can find the class file along with its path using below command

jar tf jarname.jar | findstr classname.class

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

79446467

Date: 2025-02-17 20:00:50
Score: 3.5
Natty:
Report link

Solved: Called the map variable at the end of the reactive function. Everything works now.

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

79446455

Date: 2025-02-17 19:53:49
Score: 1.5
Natty:
Report link

right...so google/firebase putting the cart before the horse again, Let's deprecate before we have a working solution in place, just to add to the confusion. *eyeroll.

For those who are coming here from the same place, continue to use Dynamic Links despite the big scary red warnings because Hosting isn't fully implement yet.

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

79446428

Date: 2025-02-17 19:33:44
Score: 3
Natty:
Report link

The answer (linked by another Stackoverflow user) is to use a combination of typeof and keyof:

type AnnotationKey = typeof ANNOTATION_KEYS[keyof typeof ANNOTATION_KEYS];
Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: PapaGing99

79446421

Date: 2025-02-17 19:28:42
Score: 5
Natty:
Report link

This was all super helpful!

Question: is there a way to modify this code so that after running the macro you automatically start typing in the box after running it? Aka, I don't want "Note" to appear, but rather, I want a cursor to appear so I can begin typing.

Reasons:
  • Blacklisted phrase (1): is there a way
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29684868

79446419

Date: 2025-02-17 19:28:42
Score: 1.5
Natty:
Report link

Is this what you want?

sigfig <- function(x, dig = 3){
  gsub("\\.$", "", formatC(signif(x,digits=dig), digits=dig, format="fg", flag="#", big.mark = ","))
}
sigfig(c(0.3459215,0.6227059,7.409618,462.3468600,9.090436,6293.4189000))

[1] "0.346" "0.623" "7.41"  "462"   "9.09"  "6,290"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this
  • High reputation (-1):
Posted by: dog

79446416

Date: 2025-02-17 19:26:42
Score: 0.5
Natty:
Report link

As you seem to already have the ids set, you could use:

content: attr(id);
text-transform: capitalize;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: scrhartley

79446413

Date: 2025-02-17 19:25:41
Score: 0.5
Natty:
Report link

Modern answer: java.time

Use java.time, the modern Java date and time API, for your date and time work, and it all goes simpler and less error-prone than with the old-fashioned classes. DateFormat, SimpleDateFormat, Date and Calendar were troublesome and were obsoleted by java.time in Java 8 more than 10 years ago, a couple of months before you asked this question.

Use this formatter:

private static final DateTimeFormatter formatter
        = DateTimeFormatter.ofPattern("MM/dd/yyyy HH:mm:ss", Locale.ROOT);

Do like this:

    ZonedDateTime now = ZonedDateTime.now(ZoneId.systemDefault());
    System.out.println("Now:         " + now.format(formatter));
    ZonedDateTime in10Hours = now.plusHours(10);
    System.out.println("In 10 hours: " + in10Hours.format(formatter));

Get output like:

Now:         02/17/2025 20:19:47
In 10 hours: 02/18/2025 06:19:47

Tutorial link

Oracle Tutorial: Trail: Date Time explaining how to use java.time

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

79446388

Date: 2025-02-17 19:16:39
Score: 1.5
Natty:
Report link

To use the weights from model1 in model2 with Tensorflow 2.18:

model2 = Sequential()
    
model2.add(Conv2D(10,kernel_size=(3, 3), activation="sigmoid",        
input_shape=(28, 28, 1)))

The weights should be set after the layer is created

model2.set_weights(model1.layers[0].get_weights())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Giulio Quirici

79446387

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

You need to remove overflow: hidden from .ReactVirtualized__Grid__innerScrollContainer and its parent .ReactVirtualized__Grid ReactVirtualized__List>
Additionally a little further up the tree you need to remove overflow-x: auto
(the element's style is: flex: 1 1 0%;min-height: 0px; overflow-x: auto;).

enter image description here

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

79446385

Date: 2025-02-17 19:15:39
Score: 0.5
Natty:
Report link

In my case, the issue was caused by naming my SSO session with spaces. For example, I initially used:

My SSO Session

Renaming it to a name without spaces, such as:

MySSOSession

resolved the problem for me.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dante Calderón

79446381

Date: 2025-02-17 19:14:39
Score: 0.5
Natty:
Report link

If the page is just reloading, is probably some error with the form validation (caused by the StoreAppointmentRequest).

To confirm (fastly), add: <?php dump($errors); ?> on the .blade file with the form. and submit the form again.

If this is indeed the case, then: https://laravel.com/docs/11.x/validation#quick-displaying-the-validation-errors

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

79446376

Date: 2025-02-17 19:12:38
Score: 2
Natty:
Report link

The function RotateWithController() will always rotate the GameObject because there is no condition to stop it from rotating if you press a button on the controller or the mouse.

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

79446362

Date: 2025-02-17 19:07:37
Score: 3
Natty:
Report link

I have been looking for a faster method than CopyFromRecordSet, so RIBH I tried your code with great interest.

In my tests however, returning 200k rows using the Array method code posted above is considerably slower than CopyFromRecordSet.

3 iterations each of 200k rows : CopyFromRecordSet : 7.32 Seconds ArrayMethod : 17.3 seconds

Wish the results were different I really do. Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29684647

79446359

Date: 2025-02-17 19:03:36
Score: 2
Natty:
Report link

देवभूमि का शाप और वरदान

(Intro – Soft Melody)
शंख बजे, मंत्र गूंजे,
फिर भी मन के घाव ना सूझे,
देवभूमि का बेटा हूँ मैं,
पर कलियुग की आग में झुलसा हूँ मैं।


(Verse 1 – Emotional & Deep)

क़िस्मत ने लिखे, जो घाव गहरे,
रगों में बसते शिव, कृष्ण मेरे,
राम की सीख, अर्जुन के तीर,
पर कलियुग में जलते हैं ज़मीर।

माँ की गोद में रोया था कल,
गंगा किनारे बहाया था पल,
शक्ति को पुकारा, विष्णु को ध्याया,
पर नियति ने फिर भी दर्द ही सुलाया।


(Chorus – Powerful & Soulful)

पाप भी सहे, पुण्य भी पाए,
राहों में कांटे, फूल भी आए,
सौ बार टूटा, फिर भी संभला,
महादेव ने सिर पर हाथ जो रखा।


(Verse 2 – Motivational Build-Up)

सौम्यजीत से बना Godjit का ये सफर,
आग में तपकर ही मिलता है असर।
हर घाव को मैंने खुद ही सिया,
अब मेरा नाम खुद विधाता ने लिखा।

दुनिया के छल को पहचान लिया,
खुद के ही दर्द को सम्मान दिया,
अब मैं ना झुकूंगा, ना टूटूंगा,
जो खोया उसे फिर से समेटूंगा।


(Bridge – Intense & Melodic Shift)

कभी गिरा, कभी टूटा, फिर भी चला,
महाकाल के चरणों में चैन मिला।
सौ रातें जलकर, भोर हुई,
अब मेरा हर अश्क, मेरी ताक़त बनी।


(Outro – Grand Ending, Echoing Power)

अब ना रुकूंगा, ना गिरूंगा,
कालचक्र बदलेगा, मैं लिखूंगा।
सौ युगों का दुःख भी सह लिया,
मैंने सब खोया, फिर भी बना Godjit।

🎵🔥 (Melodic fade-out with chants of "Har Har Mahadev") 🔥🎵

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Tony Stark

79446353

Date: 2025-02-17 19:00:35
Score: 4
Natty:
Report link

You can achieve this with some conditional data flow in a custom inspector.
I found these links online, be careful tho.
I believe that using this method you have to manually add all variables you want to edit in the editor to show in the editor

Unity Discussions: https://discussions.unity.com/t/what-is-the-efficient-way-of-showing-variables-depend-on-enum-in-custom-inspector/231909/3
Unity Manual: https://docs.unity3d.com/Manual/editor-CustomEditors.html

Reasons:
  • Blacklisted phrase (1): these links
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jort Vlaming

79446352

Date: 2025-02-17 18:59:35
Score: 2
Natty:
Report link

There is a list of IATA MAC codes for multi-airport cities.

chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://www.iata.org/contentassets/c33c192da39a42fcac34cb5ac81fd2ea/ads_ab_2022_02-joint-iata-atpco-notification-ccd-list.pdf

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

79446343

Date: 2025-02-17 18:56:34
Score: 2.5
Natty:
Report link

There was a simple answer up above that was missing some " so it fails. But I haven't got enough rep to either say "needs quotes" or downvote it...

REPO=my-repo
aws ecr batch-delete-image --repository-name $REPO --image-ids \
"$(aws ecr list-images --repository-name $REPO --query 'imageIds[*]' --output json)"

Simply set $REPO to your-repo, not my-repo, and run the one liner.

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Max

79446328

Date: 2025-02-17 18:50:33
Score: 1
Natty:
Report link

The sys_registry-table is in your database, alongside pages, tt_content, and so on.

https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/SystemRegistry/Index.html

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