79703675

Date: 2025-07-16 15:43:41
Score: 2
Natty:
Report link



header 1
header 2


cell 1
cell 2

cell 3
cell 4
header 1 header 2
cell 1 cell 2
cell 3 cell 4


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

79703665

Date: 2025-07-16 15:36:38
Score: 5.5
Natty:
Report link

is there any way out there to make a mode "by yourself"
like a plugin or a code? which i can use? just in case i want unicorns running there too?

*just curious

Reasons:
  • Blacklisted phrase (1): is there any
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is there any
  • Low reputation (1):
Posted by: Sachita Dhillon

79703663

Date: 2025-07-16 15:34:37
Score: 2
Natty:
Report link

In your ConstrainLayout the parent view you are using fitsSystemWindow="True" change it to false or just delete it so it's false by default...

Also in your main activity u don't need to call it choose to call it from xml or programmatically and if u don't want this white Space just delete it from both

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

79703662

Date: 2025-07-16 15:34:37
Score: 3
Natty:
Report link

I was denied upvoting since I'm a new user but I would like to say that @tbielaszewski is spot on! His solution using the urlp_sub substring matching works perfectly : )

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

79703657

Date: 2025-07-16 15:27:36
Score: 3
Natty:
Report link

In 2025 here is Alternative of Zxing it's very good fast and Free I like This Tool zxing decoder Zxing Decoder fast Decode online.

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

79703650

Date: 2025-07-16 15:25:35
Score: 0.5
Natty:
Report link

It's a bit of an old question, but Yandex/Google finds it by searching for "simple distortion models", which I needed. Unfortunately, no answer is perfect, and most importantly, simple.

the one-parameter division model by Fitzgibbon:

The one-parameter division model by Fitzgibbon looks a bit different:

_division_citeria = (cv2.TermCriteria_COUNT + cv2.TermCriteria_EPS,
                     10,  # 5 for cv2.undistortPoints()
                     0.1)

def division_distorted(p, k, dc=[0, 0]):
    p = p - dc
    return p/(1 + k*np.dot(p, p)) + dc

def division_undistorted(x, k, dc=[0, 0], criteria=_division_citeria,
                        verbose=False):
    p0 = x - dc
    for i in range(criteria[1] if criteria[0]&cv2.TermCriteria_COUNT
                   else 99999):
        p = x*(1 + k*np.dot(p0, p0))
        if verbose:
            print(f"division_undistorted: {i}: {np.round(p - p0, 3)}")
        if ((criteria[0]&cv2.TermCriteria_EPS) and
            np.linalg.norm(p - p0) < criteria[2]):
            # This is inaccurate, simplistic, OpenCV compares projections
            break
        p0 = p
    return p + dc

OpenCV uses the one-parameter division model when setting the following parameter settings:

dis_und_distCoeffs = np.asarray([0, 0, 0, 0, 0, k, 0, 0])

I have experience with OpenCV (undistort(), initUndistortRectifyMap(), etc.), however, these methods require an estimate of the camera focal properties (fx, fy) which I do not have.

Roughly speaking, (fx, fy) these are scale factors along the axes, if you need to process an image pixel-by-pixel, then they can be set to 1.

dis_und_cameraMatrix = np.array([[1., 0., dc[0]],
                                 [0., 1., dc[1]],
                                 [0., 0., 1.]])

I am wondering what the best way is to process this transform as fast as possible.

In my opinion, cv2.undistort() is quite simple and quite efficient, at least 12...19 times faster, depending on the data types, than `scipy.interpolate.RegularGridInterpolator()'.

A more detailed comparison of methods and performance can be found in my Jupyter notebook on Colab: https://github.com/Serge3leo/temp-cola/blob/main/SO/77889635-fast-implementation-of-the-1-parameter-division-distortion-model.ipynb.

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

79703646

Date: 2025-07-16 15:20:34
Score: 2
Natty:
Report link

I just noticed the exact same thing moments ago. I had mine set to automatically copy to clipboard and to also open in the editor. I use the editor to make notes / comments all the time. I am pretty sure it was there yesterday.

I am very curious what changed.

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

79703638

Date: 2025-07-16 15:16:33
Score: 2
Natty:
Report link

Subversion plugin uses SVNKit client inside Jenkins, and SVNKit emulates older (1.6-style) working copy behavior by default.

Under Jenkins Configuration - Subversion format can be changed to 1.8. In that case no more .svn folders are created

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

79703627

Date: 2025-07-16 15:07:31
Score: 2.5
Natty:
Report link

I know this is a very old post now, but if range is a vector of column names you'd like to remove, you can do this:

DT<-DT[,.SD,.SDcols=-range]

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

79703608

Date: 2025-07-16 14:55:28
Score: 1
Natty:
Report link

Instead of trying to make Prisma Client Go work, consider RediORM which natively reads Prisma schemas in Go. Your workflow would be:

This solves the model sharing problem since both frontends and backend use the same schema source. See https://github.com/rediwo/redi-orm for implementation details.

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

79703606

Date: 2025-07-16 14:52:27
Score: 1.5
Natty:
Report link

For a Prisma-like experience in Go without client generation, check out RediORM. It uses runtime schema loading instead of code generation, supports the same Prisma schema syntax, and includes both Go and JavaScript APIs. Works with PostgreSQL, MySQL, SQLite, and MongoDB. See https://github.com/rediwo/redi-orm

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

79703599

Date: 2025-07-16 14:46:26
Score: 1.5
Natty:
Report link
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Layla Sghaier

79703581

Date: 2025-07-16 14:33:22
Score: 1
Natty:
Report link

To start the Claude AI Android app from another Android app, use an explicit intent with its package name:

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.anthropic.claude");
if (launchIntent != null) {
    startActivity(launchIntent);
} else {
    // Claude app not installed; handle accordingly
}

Currently, Claude AI does not publicly support passing prompts or data via intents, so you can only launch the app but not open a specific chat or send input programmatically. For deeper integration (such as sending prompts and receiving AI responses), consider using the Claude AI API directly in your app instead.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hitechnectar

79703575

Date: 2025-07-16 14:27:20
Score: 3.5
Natty:
Report link

here is the solution:

https://github.com/CANopenNode/CanOpenSTM32/pull/44

File changes in CanOpenSTM32 Library

Best regards,
C.O

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: embed_obrist

79703566

Date: 2025-07-16 14:22:19
Score: 2.5
Natty:
Report link

URL in Replit for importing an existing code / github repo (must be authenticated)

https://replit.com/import/github

Here are Replit docs :

https://docs.replit.com/getting-started/quickstarts/import-from-github

As simple as that

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Vladyslav Didenko

79703556

Date: 2025-07-16 14:16:17
Score: 3
Natty:
Report link

I had a similar issue in Visual Studio due to incorrect property configuration in my android.csproj. The solution was simple: in my application's settings (Options → Android → Advanced → Supported Architectures), x86_64 wasn't checked.

Important note: arm64 and armeabi are for Linux/MacOS builds, while x86_64 is needed for running Android apps in Windows emulation. This fixed my problem - hope it helps others facing the same issue.

Image of my French IDE with the precoess

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: AÏM0

79703548

Date: 2025-07-16 14:13:16
Score: 0.5
Natty:
Report link

Right. After all last night and most of today investigating this problem, I believe I've got to the bottom of it and felt it may be useful to record the answer here for anyone else (and my own future reference), in case they might encounter the same problem.

TLDR: It appears the code is/was correct as shown above, but that the solve state of the top-level model file is pretty crucial.

The key difference between my 'test' and 'production' models that was throwing up the problem, was that I had initially solved my 'test' model outside of Load Case Manager, using the Right-click study name => Run command. So there was a 'default' result set sitting there in the 'CWStudy.Results' slot.

In my 'production' model, I hadn't first solved via the same route. I'd just gone straight to Load Case Manager (LCM) and set that running. So in that case, even though there were results sets stored in the Load Case Manager, there was nothing in the 'default' result slot.

It appears that the API's CWStudy.Results property doesn't successfully initialise if there isn't at least a set of solved 'default' study results. So even though there are LCM result sets available, and even though the command LoadCaseManager.LoadResultsOfPrimaryLoadCase(x) apparently loads said results and returns a boolean true assuring that, when you try and access CWStudy.Results it is just 'Nothing'.

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

79703546

Date: 2025-07-16 14:12:16
Score: 0.5
Natty:
Report link

When using drawImage method, you need to provide width and height:

from reportlab.lib.utils import ImageReader

image_path = '/opt/rspro/home/e8409/projects/CRAMM logo.png'
img = ImageReader(image_path)
img_width, img_height = img.getSize()
canvas.drawImage(image_path, 0, 0, width=desired_width, height=desired_height, preserveAspectRatio=True)
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RCDevs Security

79703536

Date: 2025-07-16 14:08:15
Score: 0.5
Natty:
Report link

Both VirtualSize and SizeOfRawData are DWORD (32-bit unsigned integers), so the maximum value is:

2^32 - 1 = 4,294,967,295 bytes (~4 GB)

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Alon Alush

79703535

Date: 2025-07-16 14:07:14
Score: 11
Natty:
Report link

Did you manage to fix the error?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to fix the
  • RegEx Blacklisted phrase (1.5): fix the error?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ольга Сакаль

79703534

Date: 2025-07-16 14:05:13
Score: 2.5
Natty:
Report link

I switched to QINA Clarity, enabled its reachability check across our Flask and Node services, and suddenly the legacy helpers stopped cluttering my reports. It plugged straight into our CI, trimmed false positives by nearly 60%, and still caught every real issue I cared about.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raymond M. Roberts

79703532

Date: 2025-07-16 14:04:13
Score: 1
Natty:
Report link

Well, it's not the job of a microcontroller manufacturer to explain how a standardised wireless interface works. Everything you need to know about Bluetooth can of course be found on the pages of the Bluetooth SIG. Bluetooth (Specifications and documents)

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

79703521

Date: 2025-07-16 14:00:12
Score: 3
Natty:
Report link

I had a similar problem. To fix it, I opened the XLSX file, cleared all formatting from the cells (using the 'Clear Formats' option), and saved the file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Ротмистров

79703520

Date: 2025-07-16 13:59:11
Score: 1
Natty:
Report link

in my case

SizedBox.expand(
  child: FittedBox(
    fit: BoxFit.cover,
    clipBehavior: Clip.hardEdge,
    child: SizedBox(
      width: _controller.value.size.width,
      height: _controller.value.size.height,
      child: VideoPlayer(_controller),
    ),
  ),
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Artem Pronenko

79703518

Date: 2025-07-16 13:57:11
Score: 1
Natty:
Report link

Delta-Parquet is the same as parquet type (Compressed) with the addition of its underlying storage, adds metadata for features like ACID transactions, versioning, and schema enforcement. This allows for transactional operations like updates, deletes, and merges, while still maintaining the benefits of Parquet's columnar storage for efficient querying.

The Delta-Parquet file has been used where required to manage the history.

If you compare these 2 types, then parquet has been used while you need to interact with Gold(final) data value.

Delta-parquet occupies more space than the parquet format.

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

79703487

Date: 2025-07-16 13:35:05
Score: 3
Natty:
Report link

This may be a bug in GNU Make 3.82. After I upgraded to GNU Make 4.4, the issue was resolved.

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

79703485

Date: 2025-07-16 13:33:04
Score: 5.5
Natty: 5.5
Report link

hi sir how are you? is your closed play console available?

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

79703481

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

This seems like an error vscode displays. You probably have the document language set to 'plain' css, which is why directives from tailwindcss like @apply don't get recognised.
Depending on your project structure and how you use tailwind e.g via postcss the directives should still be applied. But for good measure you'd want to check the install guide again.

To fix the vscode error you have to do 2 things.
First it's likely that you haven't installed the tailwindcss plugin for vscode which you can download (and read about) here.
Once you installed this plugin you need to change the language of the file. Here are also the docs to do this.
But it boils down to navigating to view->Command Pallet... and then type in Change Language mode, in this modal you'd then search for tailwindcss and hit apply.

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

79703478

Date: 2025-07-16 13:29:03
Score: 1.5
Natty:
Report link
  <tr
            *ngFor="let car of cars; let i = index"
            (click)="selectedRow = car.id"

i try to make click events inside nz-table <tr
but event aren't fired

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

79703475

Date: 2025-07-16 13:24:02
Score: 1.5
Natty:
Report link

I also noticed in EF Core v 9.0.3 if the field is included in a composite key, its field size is instead set to 450, whereas those that are not, are set to the default of max.

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

79703474

Date: 2025-07-16 13:23:02
Score: 1
Natty:
Report link

Here's the unified command to flatten a Docker image by exporting and re-importing it (removes layer history):


    docker export your_source_container | docker import - target_image:target_tag
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amazomic

79703467

Date: 2025-07-16 13:13:59
Score: 0.5
Natty:
Report link

The only answer I have is to reload the window altogether to stop the testing process, e.g. Ctrl+P; > Reload Window. (command:workbench.action.reloadWindow)

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

79703457

Date: 2025-07-16 13:09:58
Score: 4.5
Natty:
Report link

You are attached a link ProcessAdd here. but it was not showing any xmla file, could you please share the file,
Because am also need to update dimension table from other table, i dont have access to touch VS Code and Cube Properties, just i need to insert data from Incr table to main tables, and also i dont have access to copy or move data from main table, currently cube pointing the main table but i need to update data from Incr table.

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): could you please share
  • No code block (0.5):
  • Low reputation (1):
Posted by: Neelam Manikanta

79703455

Date: 2025-07-16 13:08:58
Score: 0.5
Natty:
Report link

For those who face it in 2025, when there's no dedicated plist file for watch and tries to duplicate main app target and watch os app target - look at main target/General settings, "Frameworks, Libraries and Embedded content".

In my case "old" target's framework was sitting there, producing this wrong (as 50% of Apple's error messages) error message, and I even wasn't able to delete it using xCode UI - only by editing .pbxproj file directly by text editor. After that no runtime errors

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

79703454

Date: 2025-07-16 13:08:58
Score: 3.5
Natty:
Report link

Have you tried using tabBarStyle?

https://reactnavigation.org/docs/bottom-tab-navigator/#tabbarstyle

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: cmcodes

79703431

Date: 2025-07-16 12:50:53
Score: 2.5
Natty:
Report link

open keyboard setting by ctrl k + ctrl f then find in search bar it will shown if the shortcut keys is changed or used by other features.

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

79703427

Date: 2025-07-16 12:45:52
Score: 4.5
Natty: 6
Report link

This is very helpful -

^q::
sendinput ^l
send refreshcss
sendinput {enter}
return 

But how do i make it so that the page opens in a new tab instead of the current?

Reasons:
  • Blacklisted phrase (1): how do i
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: nolty

79703425

Date: 2025-07-16 12:43:51
Score: 0.5
Natty:
Report link

Nothing like a good night of sleep and a bit of rubber ducking with you people.

All I had to do was to use a relative path in my main.ts as such:

import { initFederation } from '@angular-architects/native-federation';

initFederation('./assets/federation.manifest.json')
  .catch(err => console.error(err))
  .then(_ => import('./bootstrap'))
  .catch(err => console.error(err));

In my defence, that's probably how the automatic setup should have created that file (it created without the .).

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

79703423

Date: 2025-07-16 12:43:51
Score: 1.5
Natty:
Report link

Use an img tag instead:

<img width="400" src="https://cdn.shopify.com/s/files/1/0725/7427/1766/files/royal_warrant_mono_colour.svg?v=1745408579">

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

79703417

Date: 2025-07-16 12:41:51
Score: 2
Natty:
Report link

Maybe, the thread that you open the modal dialog in it is the same with the other thread that controls the signals.
According to my knowledge in windowsform C#, these dialogs stop the thread untill you close them(for example clicking on OK).
So, seperate the threads of it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sedna.Kianfarooghi

79703407

Date: 2025-07-16 12:31:48
Score: 1.5
Natty:
Report link

A very simple solution using PowerPoint:

  1. Select the cells in your Excel-Sheet, copy them

  2. In PowerPoint: create a new slide, remove everything

  3. Paste the cells into the new slide; use option "Keep source formatting"

  4. Select the pasted cells in PowerPoint & right-click: select Save as picture

  5. In the Save-Panel: choose option 'Save as Type' PDF

  6. Select file path and save

Hope this works for you!

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

79703402

Date: 2025-07-16 12:28:47
Score: 1.5
Natty:
Report link

... I had to use the following:

\newcommand{\myboxdefinition}[1]{
    \begin{mybox}{Definition}
        \includegraphics[scale=.1]{lion.jpg}
        \tcblower
        #1
    \end{mybox}
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Beckx Dorfkind

79703399

Date: 2025-07-16 12:26:47
Score: 2
Natty:
Report link

Currently, there is no API or method to batch-trigger the "Generate Insights for free" feature for multiple BigQuery tables. You can try filing this as a feature request in Google Cloud. They might consider adding this for future updates.

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

79703384

Date: 2025-07-16 12:17:45
Score: 3
Natty:
Report link

For structured streaming write to managed tables is it advisable to have external location for checkpoint files or what is the recommended approach for checkpoint files in relation to managed tables

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

79703381

Date: 2025-07-16 12:14:44
Score: 3
Natty:
Report link

In Vercel there are two different place to add environment variables. After spending a few hours more suddenly I saw the second place. one is for team(I guess) and the other one is directly for project. when I added in the project, the problem disappeared.

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

79703371

Date: 2025-07-16 12:07:43
Score: 2.5
Natty:
Report link

In order to get the current project you will need to add the project scope "vso.project" to the manifest of the extension.

const webContext = await SDK.getWebContext();

const projectName = webContext.project?.name; // Current project name

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

79703364

Date: 2025-07-16 11:56:40
Score: 1
Natty:
Report link

I saw a colleague of mine use this neat trick to one-line it:

const obj = { up: 1, down: 2, left: 3 };

// rename left -> right
console.log(
    (({ left, ...rest }) => ({ right: left, ...rest }))(obj)
);  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dyma

79703356

Date: 2025-07-16 11:51:39
Score: 2.5
Natty:
Report link

loadFormatInfo error: V8ScriptExecutionException: undefined:1: ReferenceError: 1OY is not defined _executeStringScript(V8.java:-2)

0

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

79703337

Date: 2025-07-16 11:37:36
Score: 1
Natty:
Report link

php artisan serve runs Laravel's backend server at localhost:8000, which serves your actual web app.
npm run dev runs Vite's dev server at localhost:5173, used only for frontend asset building and hot reload.

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

79703315

Date: 2025-07-16 11:08:29
Score: 0.5
Natty:
Report link

Power BI's Bookmark Navigator doesn't support exclusive toggle behavior out of the box. That is, if you click Button 1 and then Button 2, both remain visually "active" unless you manually configure them. To achieve mutually exclusive buttons (where activating one deactivates the others), you should avoid using the Bookmark Navigator and instead set up manual buttons with custom bookmarks.

Create separate visual states for each button (for example showing different visuals or layouts).

Then, using the Bookmarks Pane, create a bookmark for each button state (Button1_View, Button2_View, etc.). While creating each bookmark, make sure that Selection, Display, and Current Page options are checked, and uncheck Data unless you want slicer states to change as well. Use the Selection Pane to control which visuals and which button versions are shown in each state.

Next, insert manual buttons via Insert > Buttons > Blank.

For each button, enable the Action, set it to Bookmark, and link it to the appropriate bookmark.

To visually simulate an active/inactive toggle, create two versions of each button (e.g., Button1_Active and Button1_Inactive) and use the Selection Pane to show the active version only in its corresponding bookmark. So in Button1_View, you show Button1_Active and hide Button1_Inactive, while doing the reverse for all other buttons. Repeat this for every button.

The reason Bookmark Navigator alone won’t work is that it doesn't allow for conditional formatting or dynamic hiding of buttons, it just cycles bookmarks without controlling visual or button state. For exclusive toggle behavior with correct visual feedback, only manual button + bookmark + selection pane logic will work.

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

79703302

Date: 2025-07-16 10:59:27
Score: 1
Natty:
Report link

data:text/html;charset=utf-8,

<!DOCTYPE html>

<html lang="ar" dir="rtl"><head><meta charset="UTF-8"/><title>طاش ما طش – لعبة فيصل المجنونة</title><style>body{font-family:Arial;text-align:center;padding:30px;direction:rtl;background:#f3f3f3}h1{color:#8b0000}button,select{margin:10px;padding:10px;font-size:18px;text-transform:uppercase} #questionContainer{display:none;margin-top:20px} .answer{display:block;width:60%;margin:10px auto;padding:10px;background:#eee} #timer{font-size:24px;color:#b22222} #feedback{margin-top:20px;font-size:20px} </style></head><body><h1>🎮 طاش ما طش – لعبة فيصل المجنونة</h1><label>اختر الفرقة:</label><select id="teamSelect"><option>الفرقة الأولى</option><option>الفرقة الثانية</option></select><br><label>اختر المستوى:</label><select id="levelSelect"><option>سهل</option><option>محترف</option></select><br><button id="startButton">ابدأ التحدي</button><div id="message"></div><div id="questionContainer"><h2 id="question"></h2><button class="answer" onclick="selectAnswer(0)"></button><button class="answer" onclick="selectAnswer(1)"></button><button class="answer" onclick="selectAnswer(2)"></button><button class="answer" onclick="selectAnswer(3)"></button><div id="timer">⏱️ الوقت: <span id="time">10</span> ثواني</div><div id="feedback"></div></div><audio id="correctSound" src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_b27a690cf3.mp3?filename=success-1-6297.mp3"></audio><audio id="wrongSound" src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_8f07dfb028.mp3?filename=error-2-141564.mp3"></audio><script>const s=document.getElementById;const start=s('startButton'),msg=s('message'),qc=s('questionContainer'),qe=s('question'),ans=document.querySelectorAll('.answer'),tm=s('time'),fb=s('feedback'),lvl=s('levelSelect'),cs=s('correctSound'),ws=s('wrongSound');let qn=0,qs,tmr,t;const easy=[{q:"ما هي عاصمة المملكة العربية السعودية؟",a:["جدة","الرياض","مكة","الدمام"],c:1},{q:"ما هو الحيوان الذي يُلقب بسفينة الصحراء؟",a:["الأسد","الحمار","الجمل","الغزال"],c:2},{q:"كم عدد أركان الإسلام؟",a:["3","4","5","6"],c:2}];const hard=[{q:"ما هو أكبر كوكب في المجموعة الشمسية؟",a:["المريخ","الأرض","زحل","المشتري"],c:3},{q:"من هو مؤسس علم الجبر؟",a:["الخوارزمي","ابن سينا","البخاري","الفارابي"],c:0},{q:"كم عدد سور القرآن الكريم؟",a:["112","113","114","115"],c:2}];start.onclick=_=>{start.style.display='none';msg.innerText="وإذا منت جلس…";qs=(lvl.value=="محترف"?hard:easy).sort(()=>.5-Math.random()).slice(0,5);setTimeout(_=>{msg.innerText='';qn=0;showQ();},2000)};function showQ(){qc.style.display='block';fb.innerText='';const o=qs[qn];qe.innerText=o.q;ans.forEach((b,i)=>{b.innerText=o.a[i];b.disabled=false});startTimer()}function startTimer(){clearInterval(tmr);t=10;tm.innerText=t;tmr=setInterval(_=>{t--;tm.innerText=t;if(t==0){clearInterval(tmr);fb.style.color='#b22222';fb.innerText='⏰ انتهى الوقت!';disable();nextQ()}},1000)}function selectAnswer(i){clearInterval(tmr);const o=qs[qn],c=o.c;disable();if(i==c){fb.style.color='#006400';fb.innerText='✅ إجابة صحيحة!';cs.play()}else{fb.style.color='#b22222';fb.innerText='❌ خطأ! الإجابة الصحيحة: '+o.a[c].toUpperCase();ws.play()}nextQ()}function disable(){ans.forEach(b=>b.disabled=true)}function nextQ(){qn++;setTimeout(_=>{if(qn<qs.length)showQ();else{qc.style.display='none';msg.innerText='انتهى التحدي! شكراً يا بطل.'}},2000)}</script></body></html>

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: فيصل ال فاضل

79703298

Date: 2025-07-16 10:55:26
Score: 0.5
Natty:
Report link

Just in case someone else needs it, for the second bit of the code provided by the user, this would be the correction:

From:

mutate_all(~na_if(.,""))

To:

mutate_all(~na_if(as.character(.),""))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A.Mstt

79703295

Date: 2025-07-16 10:54:25
Score: 2
Natty:
Report link

mssparkutils is a package for synapse integration, and thus not available locally, but you can leverage
https://pypi.org/project/dummy-notebookutils/

and leverage it locally.

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

79703291

Date: 2025-07-16 10:51:25
Score: 1.5
Natty:
Report link

Simple method that worked for me after trying many, I just close inteliJ and started it again, Then started working

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

79703288

Date: 2025-07-16 10:47:24
Score: 1.5
Natty:
Report link

Sometimes in local development, you install a Composer package, but if it's not installed on the server, you may get an error like: Target class [view] does not exist in Container.php.

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

79703287

Date: 2025-07-16 10:47:24
Score: 1.5
Natty:
Report link

now it's

import io.swagger.v3.oas.annotations.media.Schema;
@Schema(description="Group Value", requiredMode = Schema.RequiredMode.REQUIRED)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ousseynou Thiaw

79703285

Date: 2025-07-16 10:44:23
Score: 1
Natty:
Report link

I had this problem after switching from importmaps to webpacker. Needed to install several packages:

yarn add css-loader style-loader

Then, in app/javascript/packs/application.js:

import 'select2/dist/css/select2'
import 'select2'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nelly

79703284

Date: 2025-07-16 10:41:22
Score: 3.5
Natty:
Report link

I need not to change the structure of the table i.e,suppose the place of the primary key is first in the table so when we are adding a new column ,it goes to the last so rectify my problem as soon as possible

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sathwika

79703280

Date: 2025-07-16 10:34:21
Score: 2.5
Natty:
Report link
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: frktheman

79703271

Date: 2025-07-16 10:28:19
Score: 4
Natty: 4
Report link

Such a great job you are doing I am proud

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

79703260

Date: 2025-07-16 10:19:16
Score: 0.5
Natty:
Report link

I moved the redirect to OnParameterSet from OnInitialized. It helped me.

    protected override void OnParametersSet()
    {
        Navigation.NavigateTo("/", forceLoad: true);
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex Soloh

79703249

Date: 2025-07-16 10:09:12
Score: 2
Natty:
Report link

selfless plug: I released https://binrev.vercel.app/ (and its open source, so any change you need - open a PR :)

Hope it helps someone.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: dmon

79703240

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

Accepted answer has some flaws:

---

My answer based onb multi-tenancy logic: Entra ID backend assigns guid and handles potential collisions.

Reasoning: all multi-tenancy service principal onboarding prosesses only take application id as input:

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: jikuja

79703239

Date: 2025-07-16 10:03:10
Score: 0.5
Natty:
Report link

For anyone else still struggling with the accepted answer, if the bottom of the emulator is visible at the top of your screen - try to drag the corner to resize, this popped the window back into view for me

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

79703236

Date: 2025-07-16 10:02:10
Score: 1.5
Natty:
Report link

You can try:

<nav> {
position: static; // Will not move on scroll
top: 2%;
margin-bottom: 10px;
z-index: 1; // so it is displayed over other content when scrolling 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tachaeus

79703223

Date: 2025-07-16 09:46:06
Score: 5.5
Natty:
Report link

Currently I am also facing similar issue with Qwen2.5-3B model where full fine tuning on 5k dataset takes only 38 minutes while inference on 1319 data take 1 hour 24 minutes.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saurabh Kumar

79703211

Date: 2025-07-16 09:37:03
Score: 1
Natty:
Report link

There is (supposed to be) a feed generator.

On the general Apple RSS Feeds page https://www.apple.com/ca/rss/ there is link in the top right corner...

enter image description here

... which will take you to http://itunes.apple.com/rss/generator/ and at the moment I'm writing this (2025-07-16) it's unfortunately broken.

enter image description here

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

79703209

Date: 2025-07-16 09:34:02
Score: 0.5
Natty:
Report link

Your build command has a space typo: - t instead of -t. This causes the image to be untagged, so docker run can’t find imageubuntu1.

  1. Rebuild with the right syntax: docker build -t imageubuntu1 .

  2. Run your container: docker run -d container1 imageubuntu1

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

79703206

Date: 2025-07-16 09:32:02
Score: 1
Natty:
Report link

Depending on the Mapstruct version you are using, this solution works:

@Named("valueToString")
String valueToString(value){return value.toString()};
@Mapping(source = "value.toString()", target = "date", qualifiedByName="valueToString")
String map(Foo value);

Voilà!

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Named
  • User mentioned (0): @Mapping
  • Low reputation (0.5):
Posted by: Ems

79703205

Date: 2025-07-16 09:31:01
Score: 0.5
Natty:
Report link

14 y.o. but no real simple answer so.

Real short answer since Java 8 is just (with the real example given in the question):

LocalDate.now().format(DateTimeFormatter.ofPattern("MM/dd/yy"));

At the time of this post it will just display: 07/16/25

You don't need anything else.

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

79703204

Date: 2025-07-16 09:31:01
Score: 2
Natty:
Report link

I used ChatGPT with your image and it was able to decode. Maybe you can use OpenAI api to do the job.
enter image description here

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

79703197

Date: 2025-07-16 09:25:59
Score: 1
Natty:
Report link

You can compare column of BYTE data type like this:

SELECT * FROM byte_users WHERE userId='00003b77'XB;

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

79703195

Date: 2025-07-16 09:23:59
Score: 3.5
Natty:
Report link

Your image has a white border.

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

79703191

Date: 2025-07-16 09:21:58
Score: 5.5
Natty:
Report link

hello i had this same issue today also,some forums are suggesting it is a gateway issue but my data is sharepoint so it should not be related to that?

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

79703181

Date: 2025-07-16 09:12:56
Score: 1
Natty:
Report link

It is simple.

First you have to check if you have .git already:

ls -a

(.git)will show as a repo

then

rm -rf .git
ls .git

(will not show anymore)

then

git clone 

or

git init

to reinitialize

then

ls -a 

(.git will show again)

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

79703176

Date: 2025-07-16 09:08:54
Score: 5.5
Natty:
Report link

Timpan,s storms,inside bot satlte.program.bluhets.order.77FFY5.O98.6651.CB6.P04tecnologey component , of yanotengonada

Reasons:
  • Blacklisted phrase (2): tengo
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: HugohstDraiverchrome

79703171

Date: 2025-07-16 09:05:53
Score: 2.5
Natty:
Report link

This package triggers sequential and continuous API calls, even if the user keeps the app open. To optimize performance and prevent unnecessary API calls, avoid using this package.

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

79703160

Date: 2025-07-16 08:56:50
Score: 6
Natty: 7
Report link

If you are communicating with one service to another microservice and no response comes from 1 microservice,then how do you handle it?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manish Mahajan

79703155

Date: 2025-07-16 08:50:48
Score: 4.5
Natty: 5
Report link

for version v23.0, you could see this page: https://developers.facebook.com/docs/graph-api/reference/v23.0/insights

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

79703148

Date: 2025-07-16 08:47:47
Score: 0.5
Natty:
Report link

The problem you are facing is caused by mapstruct's mapping method resolution. From the docs(https://mapstruct.org/documentation/stable/reference/html/#mapping-method-resolution):

When mapping a property from one type to another, MapStruct looks for the most specific method which maps the source type into the target type. The method may either be declared on the same mapper interface or on another mapper which is registered via @Mapper#uses()

Because you have declared a String -> String mapping method inside the mapper interface, it is more specific than implicit String -> String mapping(https://mapstruct.org/documentation/stable/reference/html/#implicit-type-conversions).

To fix this, you can encode and map password inside @afterMapping method:

@Mapper(componentModel = MappingConstants.ComponentModel.SPRING)
public abstract class UsuarioRegisterMapper {

    @Mapping(target = "rol", constant = "User")
    @Mapping(target = "id", ignore = true)
    Usuario toEntity(RegisterRequest request, @Context PasswordEncoder passwordEncoder);
    
    @AfterMapping
    protected void after(RegisterRequest request, @MappingTarget Usuario usuario, @Context PasswordEncoder passwordEncoder) {
        usuario.setContrasena(encodePassword(request.getContrasena()));
    }

    private String encodePassword(String rawPassword, PasswordEncoder passwordEncoder) {
        return passwordEncoder.encode(rawPassword);
    }
}

Note that the `encodePassword` method is private in mapper, so the implementation will not use it to map other fields.

You could also implement string encoding outside the mapper, and use qualifiers to apply it.

Also, refrain from using expression attribute in @Mapping, it is considered bad practice.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @afterMapping
  • User mentioned (0): @Mapping
  • Low reputation (1):
Posted by: Jan Borowy

79703137

Date: 2025-07-16 08:41:46
Score: 3.5
Natty:
Report link

Just build the project before archiving

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alejandro Bello Iglesias

79703127

Date: 2025-07-16 08:31:43
Score: 2.5
Natty:
Report link

There was a similar issue on our end, and it turned out that this was a bug on the PuppeteerSharp side

https://github.com/hardkoded/puppeteer-sharp/releases/tag/v20.2.1

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

79703123

Date: 2025-07-16 08:29:43
Score: 0.5
Natty:
Report link

Solution was to update my tsconfig file. I didn't think Metro relied on TS because I thought Metro and TypeScript resolution worked separately, but apparently the TS alias was essential for the Metro build. I think Metro relies on the tsconfig to resolve imports, so without it, Metro didn't understand the alias

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@outputs/*": ["../shared/*"]
    }
  },
  "include": ["src/**/*", "../shared/**/*"]
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mnai

79703118

Date: 2025-07-16 08:26:42
Score: 1
Natty:
Report link

Can you share the versions of React Native & AsyncStorage used and also the implementation of AsyncStorage in your code?

In the meanwhile, maybe try this:

  1. Uninstall app from your iOS simulator / android emulator.
  2. yarn react-native clean --> a --> return
  3. yarn install
  4. yarn start --reset-cache
  5. yarn react-native run-android / yarn react-native run-ios
Reasons:
  • Whitelisted phrase (-2): try this:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you share the
Posted by: cmcodes

79703111

Date: 2025-07-16 08:19:40
Score: 0.5
Natty:
Report link

I had restarted R and R sessions many times at first, still got the same results. But two days later, I re-ran the program, and got very different results. The isoweek() is much faster than strftime() this time, althought still much slower than {clock} package. Don't know what happened. But I'm glad the problem is solved. So I'm using {clock} package for my program.

library(lubridate)
library(dplyr)
library(clock)

system.time({
  sim_data |> 
    mutate(week_base = strftime(dates, format = "%V"))
})
# user  system elapsed 
# 3.00    0.02    3.04

system.time({
  sim_data |> 
    mutate(week = isoweek(dates))
})
# user  system elapsed 
# 0.56    0.03    0.60 

system.time({
  sim_data |> 
    mutate(isoweek = get_week(as_iso_year_week_day(dates)))
})
# user  system elapsed 
# 0.05    0.02    0.09
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: JohnYoung

79703104

Date: 2025-07-16 08:12:38
Score: 1.5
Natty:
Report link

In my opinion the reason $bytes ends up empty is that if your attachment file is over about 3-4MB, Microsoft Graph just skips filling in the ContentBytes to avoid making the response too heavy.

Can you try with a smaller file (under 3MB) to see if ContentBytes gets populated?

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: John Park

79703102

Date: 2025-07-16 08:11:38
Score: 0.5
Natty:
Report link

Switch to using the regular @elasticsearch plugin instead of @elasticsearch_data_stream. It handles retries and errors much more reliably.

Here’s how to make it behave correctly with data streams:

<match your.tag.here>
  @type elasticsearch
  host your-es-host
  port 9200
  scheme https
  user elastic
  password changeme

  index_name logs-yourapp           # Your data stream name
  type_name _doc
  write_operation create            # Required for data streams
  id_key log_id                     # Optional: use if your logs have a unique ID
  <buffer>
    @type file
    path /var/log/fluentd/buffer
    flush_interval 5s
    retry_forever true
    chunk_limit_size 1MB
    total_limit_size 100MB
    overflow_action block
  </buffer>
</match>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: David Belhamou

79703096

Date: 2025-07-16 08:00:35
Score: 1.5
Natty:
Report link

Bound field:

   It is Directly used to bound the data

Template Field:

 In this you can customize using item tempalte  and also eval functions
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: avatar

79703094

Date: 2025-07-16 07:58:35
Score: 5
Natty: 5.5
Report link

The solution how to connect is described here: https://blog.consol.de/software-engineering/ibm-mq-jmstoolbox/

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

79703087

Date: 2025-07-16 07:54:33
Score: 4.5
Natty:
Report link

implementation found its way into

Đèn Led Paragon Đèn led Philips  Đèn led MPE  Đèn led Duhal

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dung ngo

79703083

Date: 2025-07-16 07:51:32
Score: 1.5
Natty:
Report link

Problem solved, in my case I wanted to force the focus when initializing my UserControl only it did not go through GotFocus, I understood that it was necessary to set a param to true like here

_inputControl.Focusable = true;
_inputControl.Loaded += (_, __) => _inputControl.Focus();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sharnalk

79703074

Date: 2025-07-16 07:44:30
Score: 1
Natty:
Report link

Use string.match with a pattern anchored to the end of the string ($)

s = "foo> <bar ... <baz.ind>"
print(s:match("<(.*)>$"))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shivam Bhosle

79703072

Date: 2025-07-16 07:42:29
Score: 3
Natty:
Report link

I was reviewing everithing, cleaning cache, node modules, adjusting versions of react , and dont have solution this problem

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

79703070

Date: 2025-07-16 07:40:29
Score: 0.5
Natty:
Report link

My points to the question how to write readable code without comments:

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

79703062

Date: 2025-07-16 07:33:26
Score: 2.5
Natty:
Report link

Using twig only, try this to keep it simple:

{{ 'my first car'|title|replace({' ':''}) }}

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: krdau

79703055

Date: 2025-07-16 07:29:25
Score: 3.5
Natty:
Report link

Because you delete the file name xxx.wal ,you need to ensure the file exist

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

79703052

Date: 2025-07-16 07:28:25
Score: 0.5
Natty:
Report link

This variant works with an array literal, so there is no need to assign it to a variable first.

Let's say you have the literal value:

["a", "b", "c", "d", "e"]

Then, to get a random item out of that:

["a", "b", "c", "d", "e"].map(n => [Math.random(), n]).sort()[0][1];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: meedstrom

79703041

Date: 2025-07-16 07:17:22
Score: 1
Natty:
Report link

try writing "_" at start of each variables.

from:

<div className=" bg-gray-100 rounded-lg grid  grid-cols-[repeat(4,minmax(100px,500px))]  ">

to:

<div className=" bg-gray-100 rounded-lg grid  grid-cols-[repeat(_4,minmax(_100px,_500px))]  ">
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 재외국민

79703039

Date: 2025-07-16 07:16:21
Score: 6.5
Natty: 4.5
Report link

Any news on that topic? I do have exactly the same problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): have exactly the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cuprum

79703022

Date: 2025-07-16 06:58:16
Score: 1
Natty:
Report link

As Chris Haas mentioned in his comment, if the shared memory operations aren't going to work for you, you can instead investigate using file mapping operations.

Honestly, I would use a regular file and perform regular reads and writes instead of bothering with file mapping, as Linux is going to be caching in memory any portion of the file that is regularly used. This avoids having to write code especially for file mapping operations.

If you find later that regular file IO is a bottleneck, then switch to file mapping.

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