79518280

Date: 2025-03-18 17:43:51
Score: 9 đŸš©
Natty: 5.5
Report link

please can someone help me explaining this part of the code,
if [Index.1]>0

then if [Index.1] - 1 and [Index] = [Index]

then 0

else 1

else 1
I'm having the same issue has the example but I was not able to use the M code
thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: user29988187

79518279

Date: 2025-03-18 17:42:51
Score: 2.5
Natty:
Report link

I am not a expert in PINN. But I think the problem is about extrapolation. Like a polynomial a neural network is NOT a genetic function approximator. You may use a Fourier Layer. This can help.

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

79518275

Date: 2025-03-18 17:40:50
Score: 4.5
Natty: 6
Report link

Nice piece of code. How can I see only directories in the selection

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bertrand

79518270

Date: 2025-03-18 17:38:49
Score: 4
Natty:
Report link

I have been facing this challenge for almost a week I am so frustrated... I have tried everything here but still.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fuse Koda

79518269

Date: 2025-03-18 17:36:48
Score: 15.5 đŸš©
Natty: 5
Report link

I wanted to know if you could help me by giving me the code for how you logged in. I have the same problem and I don't know how to solve it.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): you could help me
  • RegEx Blacklisted phrase (2): I don't know how to solve
  • RegEx Blacklisted phrase (2): know how to solve
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Renato Tejada

79518266

Date: 2025-03-18 17:35:47
Score: 3
Natty:
Report link

You can change @ng-bootstrap/ng-bootstrap from 13 to "@ng-bootstrap/ng-bootstrap": "^12.0.0".This will resolve your problem.

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

79518264

Date: 2025-03-18 17:34:47
Score: 1.5
Natty:
Report link

The most simple solution is probably to create a script (.bat/.sh/...) which will run a proccess for each bot by passing different tokens to main(). What's more, you can put them into different tmux session, cmd windows and etc.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 3RD

79518262

Date: 2025-03-18 17:34:47
Score: 3
Natty:
Report link

Try using "wrap-table-header"

Specifies how the table header is wrapped. Set to 'all' to wrap all column headers. Set to 'none' to clip all column headers. Set to 'by-column' to wrap/clip column headers based on the wrap/clip setting for that individual column. The default is 'none'.

https://developer.salesforce.com/docs/component-library/bundle/lightning-datatable/specification

Thanks You,
Preeti Pujari,
Salesforce Consultant, Winobell Inc
For amazing insights on upcoming trends in Salesforce platform follow us at:
https://www.linkedin.com/company/winobell/
https://www.winobell.com/contact

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Preeti Pujari

79518256

Date: 2025-03-18 17:32:46
Score: 1.5
Natty:
Report link

It seems that although the __getitem__-docs list slice support as optional, the typing information requires both support for integer indices and slices. Implementing them resolves both warnings.

The code below no longer produces warnings for me.

from collections.abc import Sequence
from typing import override, overload

class MySeq(Sequence[float]):
    def __init__(self):
        self._data: list[float] = list()

    @override
    def __len__(self) -> int:
        return len(self._data)

    @overload
    def __getitem__(self, key: int) -> float:
        pass

    @overload
    def __getitem__(self, key: slice) -> Sequence[float]:
        pass

    @override
    def __getitem__(self, key: int | slice) -> float | Sequence[float]:
        return self._data[key]

Thanks for the comments of @jonrsharpe and @chepner for providing the right direction with this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jonrsharpe
  • User mentioned (0): @chepner
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 502E532E

79518244

Date: 2025-03-18 17:28:45
Score: 11.5 đŸš©
Natty: 5.5
Report link

I'm having the same issue and was wondering if you were able to resolve this issue?

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SMcN89

79518243

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

Bootstrap 5 has reserved a $zindex-fixed: 1030; variable which places elements below the $zindex-modal: 1055;. It took me a while to wrap my head around but this actually helped me solve this same issue in my Vue project. My child component also has the modal inside it, whereas the element that I want to be "above everything else 
 but not modals" I just assign this variable to.

@use 'bootstrap' as bs;

.my-fullscreen {
  position: fixed;
  z-index: bs.$zindex-fixed;
  // 

}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
Posted by: WoodrowShigeru

79518239

Date: 2025-03-18 17:25:44
Score: 2.5
Natty:
Report link

Temporarily deactivate all plugins except Elementor and Elementor Pro (if you have it) can help rule out plugin conflicts. If the issue resolves, reactivate plugins one by one to identify the culprit.

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

79518234

Date: 2025-03-18 17:21:43
Score: 1
Natty:
Report link

This is the easy way:

<%= form_with url: destroy_user_session_path, method: :delete do %>
  <%= submit_tag 'Log Out' %>
<% end %>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohammad Habibur Rahman

79518231

Date: 2025-03-18 17:20:43
Score: 4
Natty:
Report link

@Ben Richards, I know this method and I like it a lot, the code looks very clear. Your code doesn't work for me, I have applied minor improvements and now it works.

# Define variables for readability
$IDMPath = "C:\Program Files (x86)\Internet Download Manager\IDMan.exe"
$DownloadPath = "C:\Users\Andrzej\Desktop\qap 22"
$FileName = "foo bar.exe"
$DownloadURL = "https://www.foobar2000.org/files/foobar2000-x64_v2.24.3.exe"

# Build the argument list as an array to avoid quoting issues
$Arguments = @(
     '/p'
     """$DownloadPath"""
     '/h'
     '/n'
     '/q'
     '/f'
     """$FileName"""
     '/d'
     """$DownloadURL"""
)

# Start IDM with arguments using Start-Process
Start-Process -FilePath $IDMPath -ArgumentList $Arguments -NoNewWindow -Wait

or

# Define variables for readability
$IDMPath = "C:\Program Files (x86)\Internet Download Manager\IDMan.exe"
$DownloadPath = "C:\Users\Andrzej\Desktop\qap 22"
$FileName = "foo bar.exe"
$DownloadURL = "https://www.foobar2000.org/files/foobar2000-x64_v2.24.3.exe"

# Build the argument list as an array to avoid quoting issues
$Arguments = @(
     "/p ""$DownloadPath"""
     '/h'
     '/n'
     '/q'
     "/f ""$FileName"""
     "/d ""$DownloadURL"""
)

# Start IDM with arguments using Start-Process
Start-Process -FilePath $IDMPath -ArgumentList $Arguments -NoNewWindow -Wait
Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Ben
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Andy666

79518222

Date: 2025-03-18 17:15:41
Score: 1
Natty:
Report link
(setq make-backup-files nil) ; stop creating backup~ files
(setq auto-save-default nil) ; stop creating #autosave# files
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kingsjester

79518220

Date: 2025-03-18 17:15:41
Score: 0.5
Natty:
Report link

If you're using SQL Server, you're looking for UNPIVOT:

select Location, Type, Date, Account, Value
from t unpivot (Value for Account in (Quantity, Net)) av;

See it running on some of your data.

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

79518217

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

I would like to add that if you don't want to use migrationBuilder.Sql() and are trying to change the column type via standard EF Core methods, there is a workaround. The only way to get around this without SQL is to create a new column, drop the old one, and rename the new one.

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

79518215

Date: 2025-03-18 17:13:41
Score: 3
Natty:
Report link

I'm seeing the same, unfortunately. I haven't reached any quotas, and I have the necessary speech permissions.

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

79518211

Date: 2025-03-18 17:11:40
Score: 3
Natty:
Report link

Uninstall and reinstall the app;

that should resolve the issue.

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

79518199

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

After debugging, this was the answer:

  1. Run a build with EAS_LOCAL_BUILD_SKIP_CLEANUP=1 eas build --platform ios --profile preview --local
  2. Pull the logs from the error log
  3. If the error is because "Provisioning profile "*[expo] XXX AdHoc XXX" doesn't include signing certificate "Apple Distribution: XXX" #1201”, then follow this comment: (delete all apple distribution
) vertificates in keychain access, then use this comment: Provisioning profile "*[expo] XXX AdHoc XXX" doesn't include signing certificate "Apple Distribution: XXX" · Issue #1201 · expo/eas-cli
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ganning Xu

79518194

Date: 2025-03-18 17:07:39
Score: 12
Natty: 7
Report link

Having similar problems. How did you solve the problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: fixxel

79518188

Date: 2025-03-18 17:05:39
Score: 1
Natty:
Report link

In case anyone else runs into the issue, there was problem in the reverse proxy where the whole request wasn't being properly forwarded to the Firebase Auth server - just the URL. We had to change from fetch(updatedURL) to `fetch(new Request(updatedUrl, oldRequest))`. And then it worked :)

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cory Harasha

79518183

Date: 2025-03-18 17:03:38
Score: 0.5
Natty:
Report link

In case it helps anyone, this error was solved by setting the AbstractFileSystem for gs URIs per (this)[https://github.com/GoogleCloudDataproc/hadoop-connectors/blob/master/gcs/INSTALL.md].

.config("spark.hadoop.fs.gs.impl", "com.google.cloud.hadoop.fs.gcs.GoogleHadoopFileSystem")

I have no idea why downloading the JAR file from https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-hadoop3-latest.jar works though

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

79518164

Date: 2025-03-18 16:57:37
Score: 1.5
Natty:
Report link

I believe that you need to use no buffer -N or --no-buffer in curl for this.

curl -N XYZ | jq -r -c '.results[0].data[0].row[]'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Federico Caputo

79518160

Date: 2025-03-18 16:54:36
Score: 0.5
Natty:
Report link

In older versions of Android Studio there was an option for "Empty Activity" (as well as "No Activity" and other Activity options). These activities used the Views XML layout format. Now in Android Studio, all the older activities are called Views Activity as they use the older Views format. There is now a choice for "Empty Activity" which uses the Compose layout, which is declarative (programmatic) layout, not XML. The old "Empty Activity" is now called "Empty Views Activity".

The views are for backward compatibility. For new projects it is suggested you use the new Compose declarative layout which is much easier to handle in code.

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

79518159

Date: 2025-03-18 16:54:36
Score: 0.5
Natty:
Report link

Since version 3.12.0 it's possible to omit the version of the annotation processor library if it is defined inside the dependency management.

See MCOMPILER-391

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

79518153

Date: 2025-03-18 16:52:35
Score: 1.5
Natty:
Report link

You likely can't directly make an element inside a closed new accordian tab visible outside before it's opened due to Elementor's optimization. Consider these shorter alternatives:

  1. Move the visible element next to the accordion itme and position it visually.
  2. Use the older toggle widget if it suits your needs.
  3. Build a custom accordion like structure with HTML/CSS/JS.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zaheer Ahmad Safeer

79518152

Date: 2025-03-18 16:52:35
Score: 1
Natty:
Report link

With Gnome 47, move emacs.desktop from /usr/share/applications/ or /usr/share/emacs/30.1/etc/to ~/.local/share/applications/. Then Emacs path with be the same if launched from Activities or Terminal in default shell. exec-path-from-shell is not useful.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pierre ALBARÈDE

79518145

Date: 2025-03-18 16:47:34
Score: 0.5
Natty:
Report link

My exact issue was that Python was 32 bit ( Python38-32 ), some old project, and it wasn't working with the latest installation of GTK. I was also getting the same error. Once i updated python version to 3.11, reinstalled GTK and set PATH To point to C:\Program Files\GTK3-Runtime Win64\bin it worked ( notice that GTK also has to match the python version )

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Puzzleshock

79518139

Date: 2025-03-18 16:46:34
Score: 2.5
Natty:
Report link

Did you tried this kind of syntax with " referencedTable" ?

const { data, error } = await supabase
        .from('friends')
        .select('recieved!inner(*), sent!inner(*)')
        .eq('accepted', true)
        .or(`id.eq.${user?.id}`, { referencedTable: 'sent' })
        .or(`id.eq.${user?.id}`, { referencedTable: 'receive' })
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: bk3

79518134

Date: 2025-03-18 16:43:34
Score: 2
Natty:
Report link

You don't even need printf format

seq -w 0 0010
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Greg Matthews

79518123

Date: 2025-03-18 16:40:33
Score: 2.5
Natty:
Report link

Downgrading to @auth/prisma-adapter 2.7.2 should solve it. There is an open issue for this, see https://github.com/nextauthjs/next-auth/issues/12731

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

79518121

Date: 2025-03-18 16:39:33
Score: 1.5
Natty:
Report link

OK. Found the culprit!

When maxing out LZMADictionarySize, LZMABlockSize must be left out or remarked, because in the newest LZMA SDK, this directive heavily degrades compression ratio. Don't know what has been changed in this newest version, but LZMABlockSize directive is really degrading compression with the settings above.

Hope this helps...

Regards

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

79518117

Date: 2025-03-18 16:38:33
Score: 1.5
Natty:
Report link

We can simplify the proposition of Esteban Filardi with this code :

const oldDate = new Date('July 21, 2001 01:15:23');
const todayDate = new Date();
const oneYear = 1000 * 60 * 60 * 24 * 365;

isPastOneYear = todayDate - oldDate > oneYear;
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ehtomit

79518108

Date: 2025-03-18 16:34:32
Score: 1
Natty:
Report link

I have a hack for this-

But you'll have to wait a few more seconds after starting the server.

The hack is to create a .bat file and write the routes you are working on. (you can write all of them, but it will take more time)

Let's say I'm working on the dashboard today. like this:

curl http://localhost:3000/dashboard/home

curl http://localhost:3000/dashboard/help

curl http://localhost:3000/dashboard/something.....

Now just run your bat file just after starting your dev server.

Pro Tip: you can make files like dashboard-prerender.bat, landingpage.bat, api-routes.bat, all.bat for all different kind of needs.

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

79518104

Date: 2025-03-18 16:33:31
Score: 1.5
Natty:
Report link
It seems you mentioned having "same three file" which I interpret as having three similar files (e.g., three Excel or CSV files containing payment data like the one you shared). To create an effective data model in Power BI for analyzing the 24-hour payment trend across these files, you’ll need to combine and structure the data properly. Below is a step-by-step guide to perform data modeling in Power BI with multiple files.

---

### Assumptions
- You have three files (e.g., `File1.xlsx`, `File2.xlsx`, `File3.xlsx`) with similar structures, each containing columns like `T_TRANSACTION`, `T_DATE_VALUE`, `T_FILTERED`, `T_AMOUNT`, `T_ENTITY`, and `T_TYPE`.
- Each file represents a subset of your payment data (e.g., different days, batches, or entities).
- The goal is to create a unified 24-hour payment trend dashboard as discussed earlier.

---

### Step-by-Step Guide to Data Modeling in Power BI

#### 1. **Load the Three Files into Power BI**
- Open **Power BI Desktop**.
- Click **Get Data** > **Excel** (or **Folder** if the files are in the same directory).
  - If using **Excel**, load each file individually:
    - Select `File1.xlsx` > Click **Load** or **Transform Data**.
    - Repeat for `File2.xlsx` and `File3.xlsx`.
  - If using **Folder** (recommended for multiple files):
    - Choose **Get Data** > **Folder**, browse to the directory containing your files, and click **Combine & Transform**.
    - Power BI will detect similar tables across the files and create a single table by appending the data. Ensure the column names and data types match across all files.

- In the Power Query Editor:
  - Check that `T_FILTERED` is set to **Date/Time** type.
  - Remove any unnecessary columns (e.g., if some files have extra metadata).
  - Rename the table (e.g., `PaymentData`) if needed.

#### 2. **Append the Data**
- If you loaded each file separately, append them into a single table:
  - In the Power Query Editor, click **Home** > **Append Queries**.
  - Select `File1`, `File2`, and `File3` to combine them into one table (e.g., `PaymentData`).
  - Click **OK** and ensure the data aligns correctly (e.g., same column order and types).
- Click **Close & Apply** to load the combined data into the model.

#### 3. **Create a Date Table (Calendar Table)**
- To enable time intelligence and ensure all 24 hours are represented (even with no data), create a separate Date table:
  - Go to **Modeling** > **New Table**.
  - Use the following DAX to generate a Date table:
    ```
    DateTable = CALENDAR(DATE(2024, 12, 1), DATE(2024, 12, 31))
    ```
    - Adjust the date range based on your data (e.g., if it spans multiple months).
  - Create additional columns for the hour:
    ```
    HourBucket = FORMAT(TIME(HOUR([Date]), 0, 0), "h:mm AM/PM")
    ```
    - This generates hourly buckets like "1:00 AM", "2:00 AM", etc.
  - Mark this as a **Date Table**:
    - Go to **Modeling** > **Mark as Date Table**, and set the `Date` column as the unique identifier.

#### 4. **Create a Relationship**
- Ensure a relationship exists between your `PaymentData` table and the `DateTable`:
  - Go to the **Model** view.
  - Drag the `T_DATE_VALUE` (or a derived date column from `T_FILTERED`) from `PaymentData` to the `Date` column in `DateTable`.
  - Set the relationship to **1-to-many** (one date in `DateTable` can relate to many transactions in `PaymentData`).
  - Ensure the `HourBucket` from `DateTable` will be used for hourly aggregation.

#### 5. **Add HourBucket to PaymentData (Optional)**
- If you want to keep the hour logic in the `PaymentData` table (instead of relying on `DateTable`):
  - In Power Query Editor, add a custom column for `HourBucket` using:
    ```
    Text.From(DateTime.Hour([T_FILTERED])) & ":00 " & if DateTime.Hour([T_FILTERED]) < 12 then "AM" else if DateTime.Hour([T_FILTERED]) = 12 then "PM" else "PM"
    ```
  - This ensures each transaction is tagged with its hour.

#### 6. **Create a Measure for Payment Count**
- Go to **Modeling** > **New Measure**.
- Enter:

NumberOfPayments = COUNTROWS('PaymentData')

- This counts the number of transactions based on the filters applied (e.g., by date and hour).

#### 7. **Build the 24-Hour Trend Dashboard**
- **Add a Matrix Visual**:
- Drag a **Matrix** visual.
- Set:
  - **Rows**: `Date` (from `DateTable`) and `HourBucket` (from `DateTable` or `PaymentData`).
  - **Values**: `NumberOfPayments`.
- Enable "Show items with no data" in the visual options to display all 24 hours, even if no payments occurred.

- **Add a Line Chart**:
- Drag a **Line Chart** visual.
- Set:
  - **Axis**: `HourBucket`.
  - **Values**: `NumberOfPayments`.
  - **Legend**: `Date` (to show trends for each day).
- Sort `HourBucket` using a custom sort order (see Step 8).

- **Add a Slicer**:
- Drag a **Slicer**, set it to `Date`, and allow users to filter by day.

#### 8. **Sort HourBucket**
- Create a sorting table to ensure hours are in the correct order (1:00 AM to 12:00 AM):
- Go to **Modeling** > **New Table**.
- Enter:
  ```
  HourSort = DATATABLE("HourBucket", STRING, "SortOrder", INTEGER,
      {
          {"1:00 AM", 1}, {"2:00 AM", 2}, {"3:00 AM", 3}, {"4:00 AM", 4},
          {"5:00 AM", 5}, {"6:00 AM", 6}, {"7:00 AM", 7}, {"8:00 AM", 8},
          {"9:00 AM", 9}, {"10:00 AM", 10}, {"11:00 AM", 11}, {"12:00 PM", 12},
          {"1:00 PM", 13}, {"2:00 PM", 14}, {"3:00 PM", 15}, {"4:00 PM", 16},
          {"5:00 PM", 17}, {"6:00 PM", 18}, {"7:00 PM", 19}, {"8:00 PM", 20},
          {"9:00 PM", 21}, {"10:00 PM", 22}, {"11:00 PM", 23}, {"12:00 AM", 24}
      }
  )
  ```
- Relate `HourBucket` in `PaymentData` (or `DateTable`) to `HourBucket` in `HourSort`.
- Set the sort order of `HourBucket` to use the `SortOrder` column.

#### 9. **Verify and Test**
- Check that the Matrix and Line Chart show all 24 hours for each day, with zeros where no payments occurred.
- Use the Slicer to filter by specific days and confirm the trends.

#### 10. **Publish and Share**
- Save your Power BI file and publish it to the Power BI Service if needed.

---

### Expected Output
Your Matrix visual might look like this:
| Date       | HourBucket | Number of Payments |
|------------|------------|--------------------|
| 12/11/2024 | 1:00 AM    | 33                 |
| 12/11/2024 | 2:00 AM    | 0                  |
| 12/11/2024 | 3:00 AM    | 0                  |
| ...        | ...        | ...                |
| 12/11/2024 | 12:00 AM   | 0                  |
| 12/12/2024 | 1:00 AM    | 25                 |
| 12/12/2024 | 2:00 AM    | 10                 |
| ...        | ...        | ...                |

The Line Chart will plot the 24-hour trend for each selected day.

---

### Tips for Success
- **Consistency**: Ensure column names and data formats are identical across the three files before appending.
- **Missing Hours**: The `DateTable` with `HourBucket` ensures all 24 hours are displayed, even if your data is sparse.
- **Upload Files**: If possible, upload the three files here, and I can guide you through the exact modeling process with your data.

### Next Steps
- Upload the three files (e.g., as `.xlsx` or `.csv`) if you’d like me to assist with the specific data modeling.
- Let me know if you need help with any step (e.g., appending, creating the Date table, or sorting hours)!
Would you like to proceed with uploading the files?
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: shankar satpati

79518099

Date: 2025-03-18 16:31:31
Score: 2.5
Natty:
Report link

There's an easier way, iOS has a hidden enum that lets you do is using NSData: https://objectionable-c.com/posts/brotli-ios/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Tim Johnsen

79518098

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

use this:

function foo {
  typeset x=2  # Makes x local to the function
}

x=1
foo
echo $x  # This will print 1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Martin

79518087

Date: 2025-03-18 16:29:30
Score: 1
Natty:
Report link

Try setting the security protocol to:

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Martin

79518086

Date: 2025-03-18 16:28:30
Score: 2.5
Natty:
Report link

My issue was that the Working directory inside the Run/Debug Configurations was not set to the folder where I have package.json.

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

79518081

Date: 2025-03-18 16:25:29
Score: 5
Natty:
Report link

looks like you have got Dialogflow embed code in google tag manager. i am having issues with GTM not recognizing <df-messenger> html component, saying its not standard. Could you describe how you have set up GTM with Dflow . Thanks for the help

V

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you describe how you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vinod K

79518061

Date: 2025-03-18 16:13:26
Score: 0.5
Natty:
Report link

In 2025, you need to disable the --turbopack option run the dev run configuration for debugging to work in webstorm.

I made a dev-no-turbo run configuration in package.json for use in debugging:

"dev": "next dev --turbopack",
"dev-no-turbo": "next dev",
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tim White

79518059

Date: 2025-03-18 16:13:26
Score: 1
Natty:
Report link

Two solutions offered here didnt work for me since labelStyle and renderLabel dont exist on TabBar or TabView, so after looking at the docs, I found that you can set the fontSize by:

commonOptions={{ labelStyle: {fontSize: 16, }}

on the TabView

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

79518057

Date: 2025-03-18 16:11:26
Score: 2.5
Natty:
Report link

flutter clean

flutter pub get

flutter run

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Rahul Kumar Tiwari

79518053

Date: 2025-03-18 16:10:25
Score: 7.5 đŸš©
Natty: 5
Report link

I have exactly the same problem using mdns_dart when WLAN disconnected. I can't catch the exception. Any news?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alexander Irion

79518049

Date: 2025-03-18 16:08:24
Score: 1
Natty:
Report link

From List children of a driveItem

If a collection exceeds the default page size (200 items), the @odata.nextLink property is returned in the response to indicate more items are available and provide the request URL for the next page of items. You can control the page size through optional query string parameters.

enter image description here

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

79518045

Date: 2025-03-18 16:07:24
Score: 2
Natty:
Report link

enter image description hereselect image help

A B C
1122 24_hhgf =if(Isnumber(match(A1&"*";B1:B10;0));Yes;No)
1354 1122_hfff
=if(Isnumber(match(A1&"*";B1:B10;0));Yes;Not)


ۚۧ ŰȘۧۚŰč match
 ŰłÙ„ÙˆÙ„ ŰŻŰ§Ű±Ű§ÛŒ ŰčŰŻŰŻ ŰšÙ‡ Ù‡Ù…Ű±Ű§Ù‡ Ú©Ű§Ű±Ù„Ú©ŰȘ۱ Ű§Ű¶Ű§ÙÛŒ ۱ۧ ÙŸÛŒŰŻŰ§ ŰźÙˆŰ§Ù‡ÛŒŰŻ ک۱ۯ
=match(112&"*";B1:B10;0)
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sedi

79518031

Date: 2025-03-18 16:00:22
Score: 3.5
Natty:
Report link

Can anybody tell me what's wrong with this query? Getting Error Incorrect syntax near ','. but it doesn't tell me where it is.


    mysql = mysql + " SET @sql = N'"
    mysql = mysql + " SELECT [REP CODE], [CUST CODE], [REP NAME], [CUSTOMER NAME],"
    mysql = mysql + "     '' +"
    mysql = mysql + "     (SELECT STRING_AGG(''ISNULL('' + QUOTENAME(MonthYear) + '', 0) AS '' + QUOTENAME(MonthYear), '', '')"
    mysql = mysql + "     FROM ("
    mysql = mysql + "         SELECT DISTINCT"
    mysql = mysql + "             DATENAME(MONTH, bolh_shp_or_prt_date) + '' '' + CAST(YEAR(bolh_shp_or_prt_date) AS NVARCHAR) AS MonthYear,"
    mysql = mysql + "             MIN(bolh_shp_or_prt_date) As MinDate"
    mysql = mysql + "         From sisl_data04.dbo.so_bol_headers"
    mysql = mysql + "         WHERE (bolh_salesrep_id = @salesrep_id OR @salesrep_id='''')"
    mysql = mysql + "           AND bolh_shp_or_prt_date BETWEEN @from_date AND @to_date"
    mysql = mysql + "           AND bolh_stage_flg >= @bolh_stage_flg"
    mysql = mysql + "         GROUP BY DATENAME(MONTH, bolh_shp_or_prt_date), YEAR(bolh_shp_or_prt_date)"
    mysql = mysql + "     ) AS MonthList"
    mysql = mysql + "     ) +"
    mysql = mysql + "     '',"
    mysql = mysql + "     ISNULL('' + (SELECT STRING_AGG(''ISNULL('' + QUOTENAME(MonthYear) + '', 0)'', '' + '') "
    mysql = mysql + "     FROM ("
    mysql = mysql + "         SELECT DISTINCT"
    mysql = mysql + "             DATENAME(MONTH, bolh_shp_or_prt_date) + '' '' + CAST(YEAR(bolh_shp_or_prt_date) AS NVARCHAR) AS MonthYear,"
    mysql = mysql + "             MIN(bolh_shp_or_prt_date) As MinDate"
    mysql = mysql + "         From sisl_data04.dbo.so_bol_headers"
    mysql = mysql + "         WHERE (bolh_salesrep_id = @salesrep_id OR @salesrep_id='''')"
    mysql = mysql + "           AND bolh_shp_or_prt_date BETWEEN @from_date AND @to_date"
    mysql = mysql + "           AND bolh_stage_flg >= @bolh_stage_flg"
    mysql = mysql + "         GROUP BY DATENAME(MONTH, bolh_shp_or_prt_date), YEAR(bolh_shp_or_prt_date)"
    mysql = mysql + "     ) AS MonthList) + '', 0) AS [TOTAL],"
    mysql = mysql + "     SortOrder, SortKey"
    mysql = mysql + " INTO #PivotResult"
    mysql = mysql + " FROM ("
    mysql = mysql + "     SELECT"
    mysql = mysql + "         bolh_salesrep_id AS [REP CODE],"
    mysql = mysql + "         bolh_cust_id AS [CUST CODE],"
    mysql = mysql + "         UPPER(sr.sr_salesrep_name) AS [REP NAME],"
    mysql = mysql + "         UPPER(c.cu_name) AS [CUSTOMER NAME],"
    mysql = mysql + "         DATENAME(MONTH, bolh_shp_or_prt_date) + '' '' + CAST(YEAR(bolh_shp_or_prt_date) AS NVARCHAR) AS [MonthYear],"
    mysql = mysql + "         SUM(ISNULL(bolh_taxinclship_amt, 0)) AS TOTALSales,"
    mysql = mysql + "         0 AS SortOrder, -- Regular rows (SortOrder = 0)"
    mysql = mysql + "         bolh_salesrep_id + ISNULL(bolh_cust_id, '''') AS SortKey"
    mysql = mysql + "     FROM so_bol_headers bh WITH (NOLOCK)"
    mysql = mysql + "     INNER JOIN sales_reps sr WITH (NOLOCK) ON bh.bolh_salesrep_id = sr.sr_salesrep_id"
    mysql = mysql + "     INNER JOIN customers c WITH (NOLOCK) ON bh.bolh_cust_id = c.cu_cust_id"
    mysql = mysql + "     WHERE (bolh_salesrep_id = @salesrep_id OR @salesrep_id='''')"
    mysql = mysql + "       AND bolh_shp_or_prt_date BETWEEN @from_date AND @to_date"
    mysql = mysql + "       AND bolh_stage_flg >= @bolh_stage_flg"
    mysql = mysql + "     GROUP BY bolh_salesrep_id, bolh_cust_id, sr.sr_salesrep_name, c.cu_name, DATENAME(MONTH, bolh_shp_or_prt_date), YEAR(bolh_shp_or_prt_date)"
    mysql = mysql + " ) AS SourceTable"
    mysql = mysql + " PIVOT ("
    mysql = mysql + "     SUM (TOTALSales)"
    mysql = mysql + "     FOR [MonthYear] IN ('' + @cols + '')"
    mysql = mysql + " ) AS PivotTable;"
    mysql = mysql + " SELECT [REP CODE], [CUST CODE], [REP NAME], [CUSTOMER NAME],"
    mysql = mysql + "     '' + @cols + '',"
    mysql = mysql + "     [Total]"
    mysql = mysql + " FROM ("
    mysql = mysql + "     SELECT [REP CODE], [CUST CODE], [REP NAME], [CUSTOMER NAME],"
    mysql = mysql + "         '' + @cols + '',"
    mysql = mysql + "         [TOTAL], 0 AS SortOrder, SortKey"
    mysql = mysql + "     FROM #PivotResult"
    mysql = mysql + "     Union ALL"
    mysql = mysql + "     SELECT"
    mysql = mysql + "         '''' AS [REP CODE],"
    mysql = mysql + "         '''' AS [CUST CODE],"
    mysql = mysql + "         '''' AS [REP NAME],"
    mysql = mysql + "         [REP CODE] + '' TOTAL'' AS [CUSTOMER NAME],"
    mysql = mysql + "         '' + @TOTALCols + '',"
    mysql = mysql + "         ISNULL(SUM([TOTAL]),0) AS [TOTAL],"
    mysql = mysql + "         1 AS SortOrder,"
    mysql = mysql + "         [REP CODE] + ''ZZZZZZ'' AS SortKey"
    mysql = mysql + "     FROM #PivotResult"
    mysql = mysql + "     GROUP BY [REP CODE]"
    mysql = mysql + "     Union ALL"
    mysql = mysql + "     SELECT"
    mysql = mysql + "         '''' AS [REP CODE],"
    mysql = mysql + "         '''' AS [CUST CODE],"
    mysql = mysql + "         '''' AS [REP NAME],"
    mysql = mysql + "         ''GRAND TOTAL'' AS [CUSTOMER NAME],"
    mysql = mysql + "         '' + @TOTALCols + '',"
    mysql = mysql + "         ISNULL(SUM([TOTAL]), 0) AS [TOTAL],"
    mysql = mysql + "         2 AS SortOrder,"
    mysql = mysql + "         ''ZZZZZZZZZZ'' AS SortKey"
    mysql = mysql + "     FROM #PivotResult"
    mysql = mysql + " ) AS FinalResult"
    mysql = mysql + " ORDER BY SortKey, SortOrder, [CUST CODE];"
    mysql = mysql + " DROP TABLE #PivotResult;';"

    mysql = mysql + " EXEC sp_executesql @sql, N'@salesrep_id NVARCHAR(MAX), @from_date DATE, @to_date DATE, @bolh_stage_flg NVARCHAR(10)', @salesrep_id, @from_date, @to_date, @bolh_stage_flg;"
Reasons:
  • RegEx Blacklisted phrase (2.5): Can anybody tell me what
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Can anybody
  • Low reputation (1):
Posted by: Harpreet

79518027

Date: 2025-03-18 15:58:22
Score: 0.5
Natty:
Report link

Some of your underlying code maybe using the legacy Places API instead.
For a test, I would try and activate the legacy Places API as well via this direct link:
https://console.cloud.google.com/apis/library/places-backend.googleapis.com

Because the legacy API is going away, it's currently been made not visible, so the deep link is the only way to activate it. Once it's active, it's visible again.

Reasons:
  • No code block (0.5):
Posted by: regeter

79518018

Date: 2025-03-18 15:54:21
Score: 1.5
Natty:
Report link

If it's a windows box and you can install diff somewhere, then install diff. Check it by running diff in a dos shell. Then add the path to the diff.exe to your path environment variable and restart emacs. That worked for me.

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

79518017

Date: 2025-03-18 15:54:21
Score: 0.5
Natty:
Report link

This is the way that I understand it.

Let me first illustrate the forward pass.

Given that self-attention is Softmax(QKT)V (ignoring scaling factor in flop calculation, and sorry for the use of the same notation for different things!).

Since we only care about the flop of a single token, our query Q has size (1xQ). K and V has size (TxQ), which the query will use to interact with the neighboring tokens.

If we focus on just 1 head of 1 layer, we can ignore L and H for now. QKT is a multiplication between (1xQ) and (QxT), which has ~2QT operations. This operation yields a single vector of size (1xT)

But there is still the operation of computing the product between Softmax(QKT) and V. The product is between a vector (1xT) and a matrix (TxQ), which has again ~2QT operations.

Combining both steps, we get 2(2QT). Then finally we scale by the number of heads (H) and the number of layers (L), giving us 2LH(2QT) for the forward pass. If we take the backward to be twice the flop of the forward pass, we get:

2LH(2QT) (1 + 2) = 6LH(2QT) = 12LHQT flops per token.

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

79518006

Date: 2025-03-18 15:49:19
Score: 0.5
Natty:
Report link

im my case when i tried to do any flutter command it was saying
Waiting for another flutter command to release the startup lock so enter this command to shutdown all dart activities

killall -9 dart

then it works

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

79518002

Date: 2025-03-18 15:47:19
Score: 1
Natty:
Report link

it was actually very easy - and the answer was actually in the description - the optional part regard the cancelation token:


emailClientMock.Setup(c => c.SendAsync(WaitUntil.Started, It.IsAny<EmailMessage>(), It.IsAny<CancellationToken>()))

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

79518001

Date: 2025-03-18 15:47:19
Score: 3
Natty:
Report link

Please pay attention on the problem that may happened with awaitables that migrate between the threads https://github.com/chriskohlhoff/asio/issues/1366.

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

79517994

Date: 2025-03-18 15:44:18
Score: 0.5
Natty:
Report link

Excerpt from Linux Device Drivers, Third Edition, Chapter 7: Time, Delays, and Deferred Work

A device driver, in many cases, does not need its own workqueue. If you only submit tasks to the queue occasionally, it may be more efficient to simply use the shared, default workqueue that is provided by the kernel. If you use this queue, however, you must be aware that you will be sharing it with others. Among other things, that means that you should not monopolize the queue for long periods of time (no long sleeps), and it may take longer for your tasks to get their turn in the processor.

Otherwise, it may be better to create your own workqueue.

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

79517979

Date: 2025-03-18 15:39:17
Score: 3
Natty:
Report link

If you create a fragment without adding it to the activity using the fragment transaction manager it will show up as a false positive.

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

79517977

Date: 2025-03-18 15:38:17
Score: 2.5
Natty:
Report link

Syntax like ${env.MY_VAR} works.

Did i found in docs? No - just guessed :D

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Checker

79517973

Date: 2025-03-18 15:37:16
Score: 10.5
Natty: 7
Report link

I'm having the same problem. I'm using OAuth for Facebook. I've already verified my business, but it still says the app isn't active. What can I do?

Reasons:
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): What can I do
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Renato Tejada

79517969

Date: 2025-03-18 15:36:15
Score: 4
Natty:
Report link

You can checkout this website. May be this example helps you to solve your issue. A JSChart is deployed on this link

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SEO Task

79517966

Date: 2025-03-18 15:36:15
Score: 1.5
Natty:
Report link
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: escalator

79517958

Date: 2025-03-18 15:34:15
Score: 3
Natty:
Report link

This is also exact answer for default keeping console process. Tools-Options-Node.js Tools- click "wait for input when process exits normally" in Microsoft Visual Studio 2022.

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

79517950

Date: 2025-03-18 15:30:13
Score: 4.5
Natty:
Report link

PhoneGap is now depreciated. Use https://volt.build/

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

79517945

Date: 2025-03-18 15:30:13
Score: 0.5
Natty:
Report link

this worked for me.

WHERE user_id::uuid = :tenantId::uuid
Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Samantha Chan

79517932

Date: 2025-03-18 15:24:12
Score: 2
Natty:
Report link

If you are getting this when inserting a row, the solution for me was that I'd failed to add AUTOINCREMENT to the SQLite primary keys while creating the temporary test DB. Ordinal 0 is the first column (usually the integer PK)

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

79517930

Date: 2025-03-18 15:24:12
Score: 0.5
Natty:
Report link

When running Nest in start:dev mode, make sure to set deleteOutDir to false in the nest-cli.json configuration file:

{
  "compilerOptions": {
    "deleteOutDir": false
  }
}

Also, add the following to your .gitignore file to avoid committing build artifacts:

dist            // or your chosen output directory
*.tsbuildinfo

This is important because, in watch mode (--watch), TypeScript relies on the .tsbuildinfo file. This file helps TypeScript to recompile only the files that have changed. If the output directory were deleted on every build, you’d lose the cached, unmodified files, slowing down the build process.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Kacper Obrzut

79517926

Date: 2025-03-18 15:22:11
Score: 3.5
Natty:
Report link

You can access the legacy API and enable it here: https://console.cloud.google.com/apis/library/places-backend.googleapis.com Once enabled, you will be able to manage the API as usual in the Maps console.

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

79517923

Date: 2025-03-18 15:20:11
Score: 1
Natty:
Report link

it seems pretty similar to https://github.com/ansible-collections/ansible.netcommon/issues/551 which is open

Getting the following error when enabling commit with or without confirm_commit:

false, "msg": "Argument must be bytes or unicode, got 'int'"}

I have seen bug reports on the same on previous ansible version 2.9 and 2.7 - we are on 2.13

it is the waiting time specified under "commit: 10" that fails
But also fails to identify "confirm_commit: true" or "confirm_commit: yes"

There is a fix to it, but not sure when it is going to be merge https://github.com/ansible-collections/ansible.netcommon/pull/670

I don't see a workaround for it, other than not using "confirm"

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

79517917

Date: 2025-03-18 15:19:10
Score: 1.5
Natty:
Report link

It seems that the Google Cloud engineering team has temporarily rolled back the changes to the TLS protocol versions for the App Engine Standard and Flexible Environments. They may send another email regarding the update. At this time, I would suggest keeping an eye on the issue tracker link you shared in the comments or review the Google App Engine release notes for the most recent updates.

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

79517905

Date: 2025-03-18 15:14:08
Score: 1.5
Natty:
Report link

When the Model Context is building, make sure CalData is in schema or Swift will not be able to find it

  private var models: [any PersistentModel.Type] = [
        CalData.self, CalDataVal.self,
    ]

    lazy public var container: ModelContainer = {
        let schema = Schema(models)
        //...
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When the
  • Low reputation (1):
Posted by: Brandon Guerra

79517895

Date: 2025-03-18 15:10:07
Score: 1.5
Natty:
Report link

Did you look at what it's complaining about? When I got that error the issue was that PostgreSQL had escaped the backslashes within the strings twice. Which you can fix as follows:

sed -e 's/\\\\/\\/g'< input.json |jq . >output.json
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: kleptog

79517869

Date: 2025-03-18 15:01:06
Score: 2
Natty:
Report link

Save the existing file if you need some of the variables written there. Copy the .env.example and change the name to .env. Finally try running it again.

Other scenario: > sail Try to see if the file is already present in the container and have permission to change it.

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

79517856

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

For me what worked was to use the right path when I was calling the web socket from the front. Something like "wss://a1d5-83-39-106-145.ngrok-free.app/ws/frontend". The "/ws/frontend is very important.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jose RamĂłn Bohopo Binohari

79517855

Date: 2025-03-18 14:57:05
Score: 3.5
Natty:
Report link

Try your change with this repo: https://github.com/HydraDragonAntivirus/AutoNuitkaDecompiler if your goal is detect malicious payload from Nuitka then you need look: https://github.com/HydraDragonAntivirus/HydraDragonAntivirus

otherwise AutoNuitkaDecompiler is enough to make some progress.

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

79517851

Date: 2025-03-18 14:56:04
Score: 3.5
Natty:
Report link

Apparently, this is a limitation of the platform Android itself, when the dark mode is enabled: https://github.com/MaikuB/flutter_local_notifications/issues/2469

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

79517849

Date: 2025-03-18 14:54:04
Score: 4
Natty:
Report link

Be careful because if you cut\paste the controls like @Tony H said you will keep the properties but lose all the events of each control.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Tony
  • Single line (0.5):
  • Low reputation (1):
Posted by: sgra

79517846

Date: 2025-03-18 14:53:03
Score: 1.5
Natty:
Report link

Use php's builtin solution for this:

$username = getenvvar('USERNAME') ;

Or on unix: $username = gettnvvar('LOGNAME') ;

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

79517840

Date: 2025-03-18 14:51:03
Score: 1.5
Natty:
Report link

You have a big problem. Order need UNIQUE constraint. For move a item you need:

1. Removes the UNIQUE constraint.
2. Moves the item.
3. Reactivates the UNIQUE constraint.

Other another way is use strings ("a", "b", "c", etc..), or integer * 100 list (100, 200, 300, etc...). But this way is most simple moves, but add complexity in reorder and automatize when you have a 100, 101 and 102 itens.

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

79517839

Date: 2025-03-18 14:51:03
Score: 3
Natty:
Report link

Is this happening each time you deploy? Also, if the functions are not visible are they still working? As in does your http trigger still work?

I've encountered this issue before in app service; however, I was missing these two environment variables

SCM_DO_BUILD_DURING_DEPLOYMENT : true
ENABLE_ORYX_BUILD : true

here's the entire list of settings with explanation: https://learn.microsoft.com/en-us/azure/azure-functions/functions-app-settings

Reasons:
  • RegEx Blacklisted phrase (2): working?
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (0.5):
Posted by: Apurv G

79517835

Date: 2025-03-18 14:50:03
Score: 2.5
Natty:
Report link

for me it was not having an await in front of screen.findByRole("row")

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

79517816

Date: 2025-03-18 14:44:01
Score: 1
Natty:
Report link

Your query:

While https://stackoverflow.com/users/205608/o-jones has good answer, there's a scope of further optimisation.

SELECT * 
FROM account
WHERE client_id = ?
  AND disabled IN (?)
  AND (username LIKE '%?%' OR name LIKE '%?%' OR surname LIKE '%?%')
ORDER BY name, surname
LIMIT ?;

Your constraints: client_id might have high number of rows.

How to optimize this query?

Observation 1:

No index would binary search on username LIKE %?% or other similar LIKE statements. One has to do a full index scan (this is different from table scan that currently your query might be doing, its order of magnitudes faster).

Observation 2:

The conjunction between clauses in your query is OR i.e. username, name OR surname. That implies, you have to do a composite index containing these three.

Observation 3:

The other clauses contain client_id , disabled. However, selectivity of either of these are not as high. So, an individual index on any of these columns is of no use. However, a composite index containing these columns + above three columns do make sense but is optional [But index selection would only work if these guys are present]. So, till now we are at: client_id,disabled,username,name,surname [I1]

Observation 4:

You want to optimize ORDER BY clause as well. Only way to do that, is to keep the data physically sorted in the order of your clause. Remember, index is always physically sorted. So, let's change

client_id,disabled,username,name,surname

To:

name,surname,username,client_id,disabled

Long term items:

  1. Consider partitioning your data.

  2. The above index will speed up your query but would have negative consequences. So, you might want to drop the last two items and use an index hint.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Shah Kushal

79517814

Date: 2025-03-18 14:43:01
Score: 1.5
Natty:
Report link

It doesn't make sense, but what actually solved my problem in a simple way was simply changing

jniLibs.srcDirs = ['src/main/jniLibs']

To

jniLibs.srcDirs = ['src/main/libs']
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinicius Lavrador

79517810

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

Your issue is due to the UWP class library not being properly registered. Deploy the UWP project first (Right-click → Deploy), or package the WPF app using MSIX to ensure the UWP component is registered. Let me know if you need setup guidance!

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

79517808

Date: 2025-03-18 14:41:00
Score: 1
Natty:
Report link

I would recommend you to use basic marker and refactor the function in order to instantiate it with L.marker :

this.routingControl = L.Routing.control({
    waypoints: [
        L.latLng(pickup.location.latitude, pickup.location.longitude),
        L.latLng(dropOff.location.latitude, dropOff.location.longitude),
    ],
    routeWhileDragging: true,
    createMarker: (i: number, waypoint: L.Routing.Waypoint, n: number) => {
        return L.marker(waypoint.latLng, {
            icon: this.createIcon(i.toString()), // Custom icon if needed
        });
    }
}).addTo(this.mapAdmin);

You can check this documentation to prevent any syntax error : https://leafletjs.com/reference.html#marker

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BubbleWrap1631

79517791

Date: 2025-03-18 14:36:59
Score: 3.5
Natty:
Report link

Manage tasks efficiently with BoldDesk Task Management System—automate, collaborate, and track progress seamlessly!

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

79517787

Date: 2025-03-18 14:35:59
Score: 0.5
Natty:
Report link

I didn't know the error code: 0x80004005 has so confused like above..

In my case, the error caused by duplicated key like this

Error: 0xC0202009 at Data Flow Task, ACR_ARP_DATA Client_ACR_AFW [65]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.

An OLE DB record is available. Source: "Microsoft OLE DB Provider for SQL Server" Hresult: 0x80004005 Description: "Duplicate key was ignored.".

Once I have cleared out the duplicated PK conflict, it has resolved.

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

79517783

Date: 2025-03-18 14:32:58
Score: 1
Natty:
Report link

I had a similar issue that was really a pain. I was getting an error because of the domain mismatch. I necessarily didn’t want to remove the domain parameter in the return response. I went ahead and create a certificate for the custom subdomain I wanted in my naming scheme. Update the dns records. Then I created a custom api domain name with the same subdomain and mapped it to the api I was having issues with. I hope this helps so you don’t have to remove the domain parameter because this does pose security risk.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Emanuel

79517781

Date: 2025-03-18 14:32:58
Score: 2.5
Natty:
Report link

It seems to me that all that you have to do is just move the files (if it's a git project, do not move the .git folder...). After that you need a clean build.

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

79517778

Date: 2025-03-18 14:32:58
Score: 1.5
Natty:
Report link

As @sonle mentioned, this is the expected behavior. I call it the "Most Permissive Group Rule". This means that when a tester belongs to multiple groups, they will automatically receive builds distributed to the most inclusive group they're part of, regardless of individual group settings.

That's why I prefer setting manual distribution for every group so I have a more granular control.

My key recommendations to mitigate this issue would be:

  1. Create all tester groups with manual distribution by default

  2. Use programmatic scripts integrated into CI pipelines to control build distribution

  3. Carefully manage group memberships to minimize overlap

  4. Implement a dynamic distribution system that provides precise control over which builds are sent to specific groups

By using manual distribution and custom scripts, developers can achieve granular control over build access for different tester groups.

I've worked on this article that covers topics like the one you mentioned. Hope you can use it as a reference!

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @sonle
  • Low reputation (0.5):
Posted by: Ramiro

79517776

Date: 2025-03-18 14:31:58
Score: 2.5
Natty:
Report link

I was getting a very similar error but with error code -532462766.

In Visual Studio (2022), doing Build | Clean Solution fixed the problem.

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

79517775

Date: 2025-03-18 14:31:58
Score: 2
Natty:
Report link

when configuring the firebase hosting you mistakenly overwrote the public/index.html, to correct it just copy any other project public/index.html and replace with it, then run npm run build and firebase deploy --only hosting

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: Anurag TIwari

79517769

Date: 2025-03-18 14:29:57
Score: 2.5
Natty:
Report link

I found the issue here. The culprit here is 'All workspace users' with default 'Can Manage' access. This cannot be modified for the 'Shared' folder inside 'Workspace' folder. We have to create notebooks outside 'Shared' folder to impose such permissions. Its preferable to have it in Git.

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

79517747

Date: 2025-03-18 14:23:56
Score: 3.5
Natty:
Report link

Here is the component in esp registry with support for C++ google-protobuf official library:

https://components.espressif.com/components/albkharisov/esp_google_protobuf

Usage example included.

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

79517743

Date: 2025-03-18 14:21:55
Score: 2.5
Natty:
Report link

una vez que se genera la clave, puede suceder que los nuevos datos no se carguen por ya estar registrados en cache. lo que podrías intentar es ejecutar šphp artisan optimizeš, para limpiar la cache de las rutas también. no solo de las configuraciones

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

79517735

Date: 2025-03-18 14:19:54
Score: 11 đŸš©
Natty: 6.5
Report link

Did u find any solutions? Going through the exact same issue :/

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did u find any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: Dadulescu Andrei

79517732

Date: 2025-03-18 14:18:53
Score: 4
Natty:
Report link

Where did you get "org.zaproxy.zap.extension.script.CryptoJS" from? That class does not appear to be in the ZAP codebase.

ZAP does not provide its own SHA265 implementaion, it uses the standard Java MessageDigest class. Any standard Java class can be accessed via ZAP scripts.

Reasons:
  • RegEx Blacklisted phrase (3): did you get
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where did you
  • High reputation (-1):
Posted by: Simon Bennetts

79517716

Date: 2025-03-18 14:12:51
Score: 4.5
Natty:
Report link

I am having the same issue with a vue + typescript setup.
The Problem seems to be the standard plugins not loading correctly, since only the buttons that are considered plugins are not loading. I will keep you updated if I ever figure this out.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Low reputation (1):
Posted by: user29987524

79517713

Date: 2025-03-18 14:11:51
Score: 2.5
Natty:
Report link

Check the settings related to the commit window. There may be an option that determines how diffs are opened: in a new window/tab or in an area within the commit window. Look for settings related to "Commit Dialog" or "Commit Window". Pay attention to options related to "Show DiffĐ­ "Open Diff", "Diff ViewerĐ­

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

79517709

Date: 2025-03-18 14:10:50
Score: 2.5
Natty:
Report link

I came across the same situation, where I don't want the test report to say pass for fail for that particular test. I tried Assert.Warn("This scenario not required") which is helping me identify the test which were not executed. - @BernardV

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @BernardV
  • Single line (0.5):
  • Low reputation (1):
Posted by: Devanathan M

79517706

Date: 2025-03-18 14:09:50
Score: 0.5
Natty:
Report link

Another option is viewer.js. Might be worth a try.

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

79517703

Date: 2025-03-18 14:08:50
Score: 1
Natty:
Report link

I would go with form objects. The unique rule allows to ignore a defined ID like so

Rule::unique('recipes,name')->ignore($existingId), 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ya-cha