79729287

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

"Regardless of the capacity mode you choose, if your access pattern exceeds 3000 RCU and 1000 WCU for a single partition key value, your requests might be throttled with a ProvisionedThroughputExceededException error."

Reference: https://aws.amazon.com/blogs/database/choosing-the-right-dynamodb-partition-key/

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

79729284

Date: 2025-08-08 03:14:17
Score: 3.5
Natty:
Report link

it isn't working for me either. I'm only using it for a notion template that requires it so im quite confused!

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

79729282

Date: 2025-08-08 03:13:17
Score: 1
Natty:
Report link

You can first convert it to a matrix and then call avg, which will calculate for each column. After that, you can aggregate by grouping according to the stock code and use toArray.

select toArray(avg(matrix(BidPrice))) 
from t 
where date(DateTime) =2025.08.01 
group by SecurityID
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andy

79729279

Date: 2025-08-08 02:55:12
Score: 4
Natty:
Report link

in version2024, it is called accessibility. see below picenter image description here

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

79729276

Date: 2025-08-08 02:49:11
Score: 1
Natty:
Report link

In my case, I simply modified the remote SSH path to Git's.
I added "remote.SSH.path": "C:\\Program Files\\Git\\usr\\bin\\ssh.exe" to my user settings.
Make sure to use the actual path to your ssh.exe file.

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

79729269

Date: 2025-08-08 02:37:08
Score: 3.5
Natty:
Report link

i know this is sucks, but unless someone changed that one goddamn line in the flutter dev teams, we should manually replace that ndkversion everytime we create a new flutter project, ask that gray mackall guyenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hanya Crafters

79729265

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

OG tags only work when the shared link points to a public webpage that already has those tags set in its HTML. If you’re just sharing text or a local asset from your app, the platforms won’t generate a preview.

For Twitter/LinkedIn, you’ll need to share a link to your post on your site (with OG tags for title, description, and image) instead of just passing text or an image. The share dialog will then pull the preview from that link.

So the flow is:

  1. Make sure your post’s URL is live and has correct OG tags.

  2. Share that URL (not just text/image) using Share_Plus or URL Launcher.

  3. Test the link in each platform’s preview/debug tool to confirm the image shows up.

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

79729252

Date: 2025-08-08 01:31:55
Score: 2
Natty:
Report link

If the problem is restated as finding the white input boxes in the pdf (credit to comment from [K J](https://stackoverflow.com/users/10802527/k-j)) it can be solved fairly simply:

import fitz  # PyMuPDF
import csv

INPUT_PDF = "input.pdf"
OUTPUT_PDF = "output.pdf"
OUTPUT_CSV = "output.csv"


def colour_match(color, target_color=(1, 1, 1)):
    """Return True if color exactly matches target_color, else False."""
    return color == target_color


doc = fitz.open(INPUT_PDF)

# Page numbers are zero based
# pages_to_mark = list(range(len(doc)))  # Default filter for all pages
pages_to_mark = [1]  # Example: only process page 2

with open(OUTPUT_CSV, mode="w", newline="", encoding="utf-8") as csvfile:
    csvwriter = csv.writer(csvfile)
    csvwriter.writerow(["page_num", "x0", "y0", "x1", "y1"])
    for page_num in pages_to_mark:
        page = doc[page_num]
        drawings = page.get_drawings()
        shape = page.new_shape()
        for d in drawings:
            rect = d.get("rect")
            fill_color = d.get("fill")
            if rect and colour_match(fill_color, target_color=(1, 1, 1)):
                x0, y0, x1, y1 = rect
                cx, cy = x0, y1  # Lower-left corner for circle
                # Draw circle on PDF page
                shape.draw_circle((cx, cy), 2)  # Radius = 2 points
                # Write full rect coords and page number to CSV
                csvwriter.writerow([page_num, x0, y0, x1, y1])
        shape.finish(color=(0, 0, 1), fill=None)  # Blue stroke circle, no fill
        shape.commit()

doc.save(OUTPUT_PDF)
doc.close()

The following image demonstrates the solution by showing character boxes on page 2 which were not previously returned:

example showing circles on white boxes of page 2

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: flywire

79729249

Date: 2025-08-08 01:23:54
Score: 2.5
Natty:
Report link

i am on Version 17.14.8 and this issue is still happening. These kind of issues is the reason I dont like working on Visual Studio. But my jobs kind of mandates it.

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

79729247

Date: 2025-08-08 01:14:52
Score: 2
Natty:
Report link

It's an alignment issue, int/float4 requires different alignment than int/float3. In my example the output pointer is passed as the first argument, therefore the second one starts with an offset of 4 bytes. That works for int3/float3, but a four element vector would be "cut in half", yielding the last two elements and two undefined ones as a result.

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

79729239

Date: 2025-08-08 00:54:48
Score: 3
Natty:
Report link

Dude, you Literally saved me.

I spent so much time on this. I'm honestly embarrassed to admit how much. But seriously you da man!!!!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: The geeky dawg

79729230

Date: 2025-08-08 00:42:46
Score: 1
Natty:
Report link

You're not setting the position with pos_x and pos_y

The problem is here:

Enemy::Enemy(float pos_x, float pos_y)
{
    this->initVariables();
    this->initTexture();
    this->initSprite();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Elit3d

79729227

Date: 2025-08-08 00:34:43
Score: 1
Natty:
Report link

This can also be overridden in the MUI Theme as follows:

const theme: ThemeOptions = {
  components: {
    MuiAutocomplete: {
      styleOverrides: {
        groupLabel: ({ theme }) => ({
          fontSize: theme.typography.body1.fontSize,
          color: theme.palette.primary.contrastText,
          backgroundColor: theme.palette.primary.light,
        }),
      }
    }
  }
}

https://mui.com/material-ui/customization/theme-components/
https://mui.com/material-ui/api/autocomplete/#autocomplete-classes-MuiAutocomplete-groupLabel

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

79729221

Date: 2025-08-08 00:24:41
Score: 1.5
Natty:
Report link

It appears that auto-reload and auto-preview are now turned off by default and turning it on is not something on one of the Preference tabs. It's a checkbox on the [Design] drop-down menu. I'm not privy to developer discussions so I don't know that it will stay there but that's where it is in version 2025.08.07

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

79729218

Date: 2025-08-08 00:17:39
Score: 0.5
Natty:
Report link

Something like

=OFFSET([Reference.xlsx]Sheet1!$B$1,COLUMN()-COLUMN($B$1),ROW()-ROW($B$1))

should work for you.

enter image description here

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

79729214

Date: 2025-08-08 00:12:38
Score: 1
Natty:
Report link

I am habving trouble digning in to my applications as this error is occuring

Server Error in '/' Application.

The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[InvalidOperationException: The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.]

System.Web.Mvc.ViewDataDictionary`1.SetModel(Object value) +187

System.Web.Mvc.ViewDataDictionary..ctor(ViewDataDictionary dictionary) +155

System.Web.Mvc.WebViewPage`1.SetViewData(ViewDataDictionary viewData) +78

System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) +137

System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +375

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +88

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +775

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +81

System.Web.Mvc.Async.<>c__DisplayClass3_1.<BeginInvokeAction>b__1(IAsyncResult asyncResult) +188

System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +38

System.Web.Mvc.<>c.<BeginExecuteCore>b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) +26

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73

System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +52

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +39

System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +38

System.Web.Mvc.<>c.<BeginProcessRequest>b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) +40

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73

System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +38

System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +648

System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) +213

System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +131

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.4063.0

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

79729197

Date: 2025-08-07 23:07:24
Score: 4
Natty: 5
Report link

Thanks strange error, but this post solved the problem Thanks Lampos

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roland Booth

79729190

Date: 2025-08-07 22:58:22
Score: 1.5
Natty:
Report link

You should consider adding use client at the top of your component. Read more about it on the official docs

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

79729183

Date: 2025-08-07 22:42:18
Score: 3
Natty:
Report link

With JPMS you’ll likely need to merge everything into a single module manually kind of like when you download p999 and bundle all assets into one clean package.

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

79729156

Date: 2025-08-07 21:45:05
Score: 2
Natty:
Report link

Your standard output stream (sys.stdout) is being redirected or replaced by some startup configuration, site customization, or environment hook that loads before your code runs

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

79729155

Date: 2025-08-07 21:41:04
Score: 4
Natty:
Report link

Mark! In case you're still wondering how to do this, I just got it working by using [openPanelObj setDirectoryURL: [NSURL fileURLWithPath: NSS(woof)]], where woof is the filename concatenated to the directory path and NSS is a #define that makes an NSString from a C string. It was a problem for me for 13 years until I reread Michael Robinson's answer here: How can I have a default file selected for opening in an NSOpenPanel?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Photovore

79729151

Date: 2025-08-07 21:34:01
Score: 5.5
Natty:
Report link

Thanks! I used the 2nd suggestion, by Michal and it worked! I appreciate your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): appreciate your help
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chi-town Brad

79729149

Date: 2025-08-07 21:30:00
Score: 1
Natty:
Report link

I put the following in the first cell of every notebook needing wrapping:

from IPython.display import HTML, display
def set_css(): display(HTML('\n<style>\n pre{\n white-space: pre-wrap;\n}\n</style>\n'))
get_ipython().events.register('pre_run_cell',set_css)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ken Ocheltree

79729146

Date: 2025-08-07 21:24:59
Score: 2.5
Natty:
Report link

I found that was a problem with the system gesture navigation.

The left back gesture at landscape mode is working strangely, while a right back gesture or three button navigation are working fine.

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

79729142

Date: 2025-08-07 21:09:51
Score: 7.5
Natty:
Report link

How did you manage to to convert YUV[] to RGB[]? I am trying to read the IntPtr param in the callback but i always get an Access Violation even if teh documentation states that depending on the type it should contain some data

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): did you manage to to
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Joe Frk

79729133

Date: 2025-08-07 21:05:49
Score: 4
Natty:
Report link

how did you achieve this in the end? Finding memory regions in TTD recording that is.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (0.5):
Posted by: t0m9er

79729125

Date: 2025-08-07 21:00:48
Score: 1
Natty:
Report link

Sure, there are several ways to convert images to PDF online. If you don't want to install any software or deal with watermarks, I suggest using a lightweight browser-based tool.

I recently used a free tool at PDFQuickly – Image to PDF and found it really fast and easy. You can upload JPG, PNG, or even WebP images and instantly convert them into a single PDF. There's no sign-up, no watermark, and it works across all devices — including mobile.

It also supports drag-and-drop reordering and bulk uploads, which is great when working with scanned images or screenshots.

Hope this helps someone looking for a quick and free solution.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: PDFquickly

79729116

Date: 2025-08-07 20:49:45
Score: 1.5
Natty:
Report link

With help from the other answer

<Box sx={{flex: 1, position: "relative"}}>
    <DataGrid
        style={{position: "absolute", width: "100%"}} 
        //...
    />
</Box>

The above code is a flex item. When placed in a flex container with flex-direction: column, it will fill its remaining vertical space.

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

79729112

Date: 2025-08-07 20:41:43
Score: 2
Natty:
Report link

I cannot see any code so it is hard to imagine what could be going on exactly.

but in general you should be able to monkey patch about anything in javascript as far as I know.

exactly where is the entry point for mocha I do not know, but for example you should be able to assign your custom implementation to any object on any fuction

like even this should be legal, for how it should work I guess you could go read source. I have no idea precisely.

performance.now=()=>{
  //do stuff
}
Reasons:
  • Blacklisted phrase (1): what could be
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gabrielesilinic

79729100

Date: 2025-08-07 20:19:37
Score: 1.5
Natty:
Report link

Telegram: @plugg_drop, How to buy We3d, 3xotics in Dubai, most reliable market .

In United Arab Emirates , most reviewed Coffee Shop, can i buy C0ca in Dubai? yes you can get plugg here. Order Ecst1sy, MDMA and other everyhwere here . We drop safely for turists in trip in Abu Dhabi... order Marihua, Ganja, Apothek, Medcine, … Delivery available 24/7 for Wasl , Al Ain prospects.

We have the biggest network in the Emirates, we can deliver you Has*ish, in Masdar City. Al-Bahiyah we can get as many flavors as you want at any time. How to order ketami in Dubai. Turism is growing fast in Arab countries, and our company have to provide plugg service in Abou Dabi, at Zabeel Park, and also Ibn Battuta Mall. We need adress to drop Flowers, its illegal and we try to provide you an discreet delivery. Some new comer dont know how to buy C0ca in Dubai, but its easy to buy lemmon haze here, also in Ajman. For that purpose you only need to contact the best in Al Dhafra Telegram ID: @plugg_drop. Just Send your order Canadian loud one of our best-seller in Oumm #al_Qaïwaïn.

Where to get vape , Cartridges in Dubai, How many puffs average available in Palm Island, UAE. It’s good place for a trip and you want to smoke Kush in Abu - Dhabi . Its why we have recored some visitor question and we rise the best place to obtains sparkling X3 Filtred in Charjah (Dubai) we have a structured delivery system , its handled for help any one to pay and get delivered Moonrocks in Fujairah, Dubai. No Prescription need

How is safe to buy LSD Bottler in Dubai with you .

We delivery C*cain in Abu Dhabi 24/7 Give us our location the delivery of ketam** or purple Haz* will be in a safe place near of you . The payment process in Dubai is fastly in the Emirates , we use Cryptocurenccies like USDT , TRONX, Ethereum, … you can also use your Visa Card for buy We3d in United Arab Emirates. Don’t worry about buy Fishscale in Jebel Ali Inbox @plugg_drop with telegram app.

While many ask how to buy exotics in Dubai we afford best service delivery of Molly and manies other stuff. We manage to have a good reliable customers plan . You can order Sparkling in Mushrif Park (Dubai) or you can get M0lly at Burj Al (Dubai) all is do in Dubai to like your trip .

Did you like Falkaw race in United Arab Emirates our service permitted that you can be drop your Kus8 directly there . Dubai is not only conservatory place, all the world are present here they need to have their lifestyle in al'iimarat alearabiat almutahidat. Best Camel races are in Dubai , you must see it for real.

While some countries have embraced legalization, buying weed in Dubai remains a serious offense. Tourists and residents must adhere to the local laws, as the authorities conduct stringent checks to maintain compliance.

Our Black Market in Dubai have some code to know who is Best Plugg , you can use Uber to buy Topshelf in Dubai , you can also Use Cyber Truck to buy Marihua in Abu Dabi.

Available In Dubai Market

We3d

C0ca

H1shis

MDM

L5D

Ecst1sy

2CB

Mushr00m

Her01n

Gummies

Puffs

Moonr0cks

Telegram: @plugg_drop

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @plugg_drop
  • User mentioned (0): @plugg_drop
  • User mentioned (0): @plugg_drop
  • User mentioned (0): @plugg_drop
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Brekke A

79729097

Date: 2025-08-07 20:18:37
Score: 1
Natty:
Report link

Add custom CSS to your Quarto presentation

Create a CSS file, for example custom.css, and add this:

.outside-right {
  margin-right: -5em; 
}

.outside-left {
  margin-left: -5em;
}

.outside-both {
  margin-left: -5em;
  margin-right: -5em;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BIBEK SABAT

79729090

Date: 2025-08-07 20:09:35
Score: 2.5
Natty:
Report link

Solved. I added the needed pypi repo. We have a company clone of pypi with approved libraries but also my team has its own where we place things we produce. That's where my plugin resides so my project needed to reference that repo too. Fair enough.

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

79729084

Date: 2025-08-07 20:04:34
Score: 0.5
Natty:
Report link

font-display: swap; in your CSS code tells the browser to use the default font when the desired font is not available immediatly. As soon as it's available, the browser swaps the font.

You can change it to

font-display: block;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: obs

79729070

Date: 2025-08-07 19:44:29
Score: 4
Natty:
Report link

All the below dll's were not moved to IIS. After moving, the .xls files are getting read correctly.

enter image description here

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

79729069

Date: 2025-08-07 19:43:28
Score: 1
Natty:
Report link

There is a library for exactly this usage profile_name_avatar.
Supports network and local image with caching and has placeholder and name as fallback.

import 'package:profile_name_avatar/profile_name_avatar.dart';

ProfileImage(
  imageSource: "https://example.com/avatar.jpg",
  placeholder: "assets/images/placeholder.png",     // Fallback when imagesource fail
  fallbackName: "J D",                              // Used when both above fail
  radius: 100,                                      // Optional
  textStyle: TextStyle(                             // Optional
    fontSize: 24,
    fontWeight: FontWeight.bold,
    color: Colors.white,
  ),
  backgroundColor: Colors.orange,                   // Optional
)

Fallback example
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shyamlal

79729049

Date: 2025-08-07 19:17:23
Score: 0.5
Natty:
Report link

You could put the format string into a query parameter:

sql = "select name, date_format(%s, birthdate) as date from People where name = %"

cursor.execute(sql, ("%Y-%m-%d", "Peter"))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Franz Fankhauser

79729047

Date: 2025-08-07 19:17:23
Score: 2.5
Natty:
Report link

Solved ! (thanks traynor and browsermator)

I have one angular interceptor where by default it adds 'Content-Type': 'application/json' .

So I just have to exclude the "/upload" path.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: JPMous

79729044

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

In Android Studio Narwhal, you can find that option to change location in Advanced Settings - Version Control - Use modal commit interface for Git and Mercurial to enable the local changes tab.

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

79729042

Date: 2025-08-07 19:13:21
Score: 3
Natty:
Report link

It seemed like the issue was me being on react 18 prevented this from working. Updating react and react dom (along with types) fixed this issue.

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

79729027

Date: 2025-08-07 18:53:17
Score: 3.5
Natty:
Report link

What happened, if you are using such combination ?

SELECT
    TS.MasterID,
    TS.RecordNr,
    TR.MasterName
    TR.Date1,
    C.MasterName
FROM TABLE_SUB TS
INNER JOIN TABLE_C C ON TS.MasterID = C.MasterID
INNER JOIN TABLE_R TR ON TS.MasterID = TR.MasterID AND TS.RecordNr = TR.RecordNr
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Vijay Bansode-Mali

79729021

Date: 2025-08-07 18:46:15
Score: 1.5
Natty:
Report link

with Docker Desktop and WSL

docker was unable to pull "hello world" with the following error

what helped is: 3 dots on left bottom (near engine status) -> Troubleshoot -> Reset to factory settings

after that images are started pulling
what I tried before:
- set dns at Docker Engine config
- set dns at wsl
- etc.

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

79729014

Date: 2025-08-07 18:44:14
Score: 1
Natty:
Report link

Just inline the bind value using DSL.inline()

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

79729010

Date: 2025-08-07 18:40:13
Score: 2.5
Natty:
Report link

can you use this oficial instructions: https://code.visualstudio.com/docs/remote/troubleshooting#_cleaning-up-the-vs-code-server-on-the-remote

# Kill server processes
kill -9 $(ps aux | grep vscode-server | grep $USER | grep -v grep | awk '{print $2}')
# Delete related files and folder
rm -rf $HOME/.vscode-server # Or ~/.vscode-server-insiders
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can you use this of
  • Low reputation (1):
Posted by: anderson buitron papamija

79729009

Date: 2025-08-07 18:38:12
Score: 1
Natty:
Report link

One natural way to handle this — especially if you're not strictly tied to real-time communication — is to use a message queue (like RabbitMQ, Kafka, or AWS SQS FIFO queues).

By having the sender push messages into a queue, and the receiver consume them in order, the queue itself can help preserve message ordering, retries, and even buffering when one side is temporarily unavailable.

This can offload complexity (like sequence number tracking) from your API/application layer and let infrastructure handle message delivery and ordering guarantees.

Considering you're using a REST API and not a socket-based solution, this approach can be especially helpful to enforce ordering and reliability in an asynchronous, stateless environment.

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

79729000

Date: 2025-08-07 18:32:11
Score: 3.5
Natty:
Report link

High_Traffic_Bangladshi_OBB.7z

1 Invalid password

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: MD Rubel

79728999

Date: 2025-08-07 18:32:11
Score: 2.5
Natty:
Report link

You can disable by turning MCP discovery off in VS Code settings.

Settings -> Features -> Chat -> Mcp -> Discovery:enabled (set to false)

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

79728989

Date: 2025-08-07 18:17:07
Score: 1
Natty:
Report link

You could perform a git blame on every file in the later commit that is also in the earlier commit then look for lines with a commit id earlier or the same as your earlier commit

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

79728984

Date: 2025-08-07 18:13:06
Score: 0.5
Natty:
Report link

1. Does Docker on macOS support GPU passthrough for MPS (Metal)?

No. Docker on macOS does not support GPU passthrough, including access to Apple's Metal API or MPS backend inside containers.

This is because Docker runs inside a lightweight Linux virtual machine (via HyperKit or Apple Virtualization Framework), and GPU access is not exposed to that VM.

2. Can I enable MPS access with any Docker settings or configurations?

No. There are currently no supported Docker settings, flags, or experimental features that allow a container to access the host's Metal/MPS capabilities.

Even with all dependencies and PyTorch correctly installed inside the container, torch.backends.mps.is_available() will return False.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: DUCKY Bahi

79728983

Date: 2025-08-07 18:13:06
Score: 3.5
Natty:
Report link

I made this little exe to close all msedgewebview2.exe process tree, on my Windows 11 it works flawelessy.

https://www.mediafire.com/file/1mri65opj0egagi/Chiudi+msedgewebview2.exe/file

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

79728981

Date: 2025-08-07 18:12:04
Score: 8
Natty:
Report link

Can you provide more details on how you get the radius for the bounding cylinder? Ideally, paste all your code. Can you also attach the step?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Behzad Tabari

79728976

Date: 2025-08-07 18:06:03
Score: 1
Natty:
Report link

I suspect this is a XY problem. Why do you want to do that? Minimizing the amount of lines serves no practical purpose. If you want to make your file smaller, you should use a minifier which will compress way more than just line breaks.

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

79728971

Date: 2025-08-07 18:03:02
Score: 2.5
Natty:
Report link

Read: https://github.com/solana-foundation/anchor/pull/3663

Essentially, use/upgrade to Anchor version 0.31.1, Nightly version 1.88.0 then build your project with the IDL and then use nightly to generate the IDL(.json & .ts files)

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

79728955

Date: 2025-08-07 17:52:00
Score: 1.5
Natty:
Report link

I've run into this issue a few times, and in all cases, I was able to solve it by simply adding a few more slides to the Swiper.

From what I’ve noticed, Swiper’s loop mode requires a minimum number of slides to properly clone the elements and build the loop structure. When there aren’t enough slides, blank spaces may appear between them.

My suggestion is to try adding more slides to the Swiper and see if the problem persists. Most of the time, that fixes it.

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

79728940

Date: 2025-08-07 17:34:56
Score: 1.5
Natty:
Report link

Is there any reason you weren't using an Enterprise CA with certificate templates? All of the configurations you were adding to your INF file could be specified in a certificate template. To create the template, start by duplicating the "Workstation" or "Web Server" template since the enrollee is a computer. You could grant the target servers enroll permissions on that template.

Then, you can get certs using pure PowerShell (Administrative, since the key gets created in the machine store):

$Fqdn = [System.Net.Dns]::GetHostByName($env:computername).HostName
Get-Certificate -Template SharePointSts -CertStoreLocation Cert:\LocalMachine\My -DnsName ($fqdn, 'server1') 
Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: Mike Bruno

79728938

Date: 2025-08-07 17:32:54
Score: 5
Natty:
Report link

Give me 3 downvotes, going for a badge xD

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Irakli

79728925

Date: 2025-08-07 17:18:51
Score: 1
Natty:
Report link

Oh hey, I actually faced something really similar a while back when I was working on a little time tracking project for train arrivals and departures. Your current setup works fine when the arrival is after the scheduled time, which usually means there’s a delay. But yeah, when the train shows up earlier, the logic kinda breaks, right?

So what I did back then was add a small tweak to handle both late and early arrivals without messing up the output. Here's a slightly adjusted version of your function that might help:

functiontomdiff(t1, t2) { var m1 = hour2mins(t1); var m2 = hour2mins(t2); var diff = m2 - m1; if (diff < -720) { diff += 1440; } else if (diff > 720) { diff -= 1440; } return mins2hour(diff); }

This way, the function should return a positive value if the train is late and a negative one if it arrives early, which makes it easier to understand at a glance.

Also, just as a side note, when I was testing time inputs and checking if the differences were calculated correctly, I found Stundenrechner really useful. It’s basically a simple tool to calculate time differences and delays between two times, and honestly, it helped me catch a few bugs in my own setup.
Regards
Muhamamd Shozab

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Muhammad Shozab

79728894

Date: 2025-08-07 16:53:45
Score: 2
Natty:
Report link

there are some components eg. n-grid n-flex n-space

read the related document

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

79728881

Date: 2025-08-07 16:43:40
Score: 9.5
Natty: 5
Report link

Did you find an answer or not? im also stuck in this

Reasons:
  • RegEx Blacklisted phrase (1.5): im also stuck
  • RegEx Blacklisted phrase (3): Did you find an answer
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find an answer
  • Low reputation (1):
Posted by: Alireza

79728878

Date: 2025-08-07 16:41:38
Score: 13
Natty: 5
Report link

I have the same issue, did you find way to fix it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you find
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bassem Qoulta

79728877

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

('/mnt/data/dogum_gunu_video_20250807_162553.mp4',

'MoviePy error: the file /mnt/data/arabic_style_instrumental.mp3 could not be found!\nPlease check that you entered the correct path.')

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: muhammed gaming zx

79728861

Date: 2025-08-07 16:22:32
Score: 2.5
Natty:
Report link

convert it to TreeOption sturcture as type defined

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

79728858

Date: 2025-08-07 16:20:31
Score: 4.5
Natty: 5
Report link

This post helped me to get it running: https://www.sipponen.com/archives/4024

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

79728855

Date: 2025-08-07 16:18:31
Score: 3
Natty:
Report link

I don't know exactly what your goals are but I might have something for you:
Notion Page to present a trading bot

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

79728853

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

Update folks, it used to work, but not anymore, Browsers have changed their behavior due to clutter and mobile display considerations. You need to use JavaScript to make this happen now.

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

79728851

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

Using var body []byte like this creates slice with a capacity 0. Passing this into Read() means that it will try to fill the capacity-0 slice with bytes. Since the slice has no more capacity, it returns with no error, and with the "empty" slice.

Replacing it with body, err := io.ReadAll(resp.Body) works, since io.ReadAll() consumes the entire Reader and returns it as a []byte.

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

79728848

Date: 2025-08-07 16:13:29
Score: 2.5
Natty:
Report link

Just 1 line of solution ->
softwareupdate --install-rosetta --agree-to-license

This would work like a charm. Thank me later :)

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

79728838

Date: 2025-08-07 15:59:25
Score: 1.5
Natty:
Report link

After adding @rendermode InteractiveServer, the data now loads properly with virtualization and scrolling.
Explanation:
Virtualization requires interactivity between the client and server. Without explicitly setting the render mode, Blazor renders the component as static HTML (non-interactive). By using @rendermode InteractiveServer, the component is rendered as an interactive server-side Blazor component, which supports virtualization and dynamic data loading.

Hope this helps someone else facing the same issue!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: hanushi

79728833

Date: 2025-08-07 15:50:23
Score: 2
Natty:
Report link

The 8171 Check Online is a digital portal provided by the Benazir Income Support Programme (BISP) and Ehsaas initiative, allowing users to enter their 13‑digit CNIC to instantly check payment eligibility and disbursement status. It simplifies access to programs like the Rs. 25,000 or Rs. 13,500 relief by providing real-time updates on eligibility and payment progress

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

79728826

Date: 2025-08-07 15:46:17
Score: 6
Natty:
Report link

@Rex Linder:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\BackupProductKeyDefault

Is the location for a generic key. It is not the final key, the final key is encrypted.

Best regards,
Steaky

https://learn.microsoft.com/en-us/answers/questions/3827140/windows-10-pro-oem-key?forum=windows-all&referrer=answers

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Rex
  • Low reputation (1):
Posted by: Steakmassaker

79728819

Date: 2025-08-07 15:38:15
Score: 1
Natty:
Report link

This is very useful to me, thanks! I took the code from the accepted answer above and generalized it a bit, so that it works with any number of interiors, and only needs one call to fig.add_trace:


import plotly.graph_objects as go
from shapely import Point

# Make some circles
shape_a = Point(0, 0).buffer(10)  # Exterior shape
shape_b = Point(0, 0).buffer(2)  # interior hole
shape_d = Point(5, 0).buffer(1)  # interior hole

# subtract holes using shapely
shape_c = shape_a - shape_b - shape_d

# The exterior shape gets added to the coordinates first
x, y = (list(c) for c in shape_c.exterior.xy)
for interior in shape_c.interiors:
    # `None` denotes separated loops in plotly
    x.append(None)
    y.append(None)

    # Extend with each interior shape
    ix, iy = interior.xy
    x.extend(ix)
    y.extend(iy)

fig = go.Figure(layout=go.Layout(width=640, height=640))
fig.add_trace(go.Scatter(x=x, y=y, fill="toself"))
fig.show()
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Blair

79728797

Date: 2025-08-07 15:24:11
Score: 1
Natty:
Report link

OK, that was my mistake! I've forgot to set private point dns in devops agent!

10.106.99.15 app-xxx-yada.scm.azurewebsites.net
10.106.99.15 app-xxx-yada.azurewebsites.net
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Imran Sh

79728777

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

You're seeing your model change correct answers just because a user says something different—like saying Paris is the capital of France, then later agreeing with a user who incorrectly says it's Berlin.

This happens because large language models are designed to be helpful and agreeable, even if the user is wrong. They also rely heavily on the conversation history, which can confuse them if the user contradicts known facts.

To fix this:

  1. Set clear system instructions telling the model to stick to the retrieved facts and not blindly follow the user.

  2. Improve your retrieval quality so the right information (like “Paris is the capital of France”) always appears in the supporting context.

  3. Add a validation step to check whether the model’s answer is actually backed by the retrieved content.

  4. Clean or limit the chat history, especially if the user introduces incorrect information.

  5. If needed, force the model to only answer based on what’s retrieved, instead of using general knowledge or previous turns.

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

79728769

Date: 2025-08-07 15:04:06
Score: 1.5
Natty:
Report link

InteliJ

Settings > Version Control > Git > Update > Use credential helper

enter image description here

I checked 'Use credential helper' and (Force) push worked without me doing anything..

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

79728756

Date: 2025-08-07 14:52:03
Score: 1
Natty:
Report link

.toISOString() is a JS function, not PostgreSQL, so it can't be passed raw to the db.

You'll need to calculate that value in the db using a PostgreSQL RPC or a built-in function like TO_CHAR(created_at, 'YYYY-MM-DD"T"HH24:MI:SSZ').

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: Bob VanLonkhuyzen

79728753

Date: 2025-08-07 14:50:02
Score: 0.5
Natty:
Report link

It's above Sunyatasattva's answer, but I added a small logic to be compatible with Web Workers.

import { useCallback, useRef, useState } from 'react'

const DEFAULT_LONGPRESS_INTERVAL_MS = 700

function preventDefault(e: Event) {
    if (!isTouchEvent(e)) return

    if (e.touches.length < 2 && e.preventDefault) {
        if (typeof e.cancelable !== 'boolean' || e.cancelable) {
            e.preventDefault()
        }
    }
}

export function isTouchEvent(e: Event): e is TouchEvent {
    return e && 'touches' in e
}

interface PressHandlers<T> {
    onLongPress: (e: React.MouseEvent<T> | React.TouchEvent<T>) => void,
    onClick?: (e: React.MouseEvent<T> | React.TouchEvent<T>) => void,
}

interface Options {
    delay?: number
    shouldPreventDefault?: boolean
}

export default function useLongPress<T>(
    { onLongPress, onClick }: PressHandlers<T>,
    {
        delay = DEFAULT_LONGPRESS_INTERVAL_MS,
        shouldPreventDefault = true,
    } : Options = {}
) {
    const [longPressTriggered, setLongPressTriggered] = useState(false)
    const timeout = useRef<NodeJS.Timeout>()
    const target = useRef<EventTarget>()

    const start = useCallback((e: React.MouseEvent<T> | React.TouchEvent<T>) => {
        e.persist()
        const clonedEvent = { ...e }

        if (shouldPreventDefault && e.target) {
            e.target.addEventListener('touchend', preventDefault, { passive: false })
            target.current = e.target
        }

        timeout.current = setTimeout(() => {
            onLongPress(clonedEvent)
            setLongPressTriggered(true)
        }, delay)
    }, [onLongPress, delay, shouldPreventDefault])

    const clear = useCallback((
        e: React.MouseEvent<T> | React.TouchEvent<T>,
        shouldTriggerClick = true,
    ) => {
        timeout.current && clearTimeout(timeout.current)
        shouldTriggerClick && !longPressTriggered && onClick?.(e)

        setLongPressTriggered(false)

        if (shouldPreventDefault && target.current) {
            target.current.removeEventListener('touchend', preventDefault)
        }
    }, [shouldPreventDefault, onClick, longPressTriggered])

    return {
        onMouseDown: (e: React.MouseEvent<T>) => start(e),
        onTouchStart: (e: React.TouchEvent<T>) => start(e),
        onMouseUp: (e: React.MouseEvent<T>) => clear(e),
        onMouseLeave: (e: React.MouseEvent<T>) => clear(e, false),
        onTouchEnd: (e: React.TouchEvent<T>) => clear(e),
    }
}
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: micttyoid

79728748

Date: 2025-08-07 14:47:01
Score: 2.5
Natty:
Report link

me helped next:

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

79728745

Date: 2025-08-07 14:45:01
Score: 3
Natty:
Report link

hey you can enter android studio contents then get info update the sharing&permissions to read and write

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

79728735

Date: 2025-08-07 14:35:59
Score: 0.5
Natty:
Report link

To implement authentication in Laravel 12 and later versions using Sanctum, follow these steps:

🔐 For web.php Routes:

Laravel Sanctum uses session-based authentication for routes defined in web.php. This works out of the box if you're already using the default Laravel authentication system (e.g., login via form, CSRF protection, etc.).

🔐 For api.php Routes:

For API routes, Sanctum expects token-based authentication. To access these routes:

First, generate a token for the user:

$token = $user->createToken('api-token')->plainTextToken;

Then, in your API requests, include the token in the Authorization header like this:

Authorization: Bearer <your-token-here>

This token is stored in the personal_access_tokens table and is used to authenticate API requests.

Read Official Doc


Laravel < 12

you can follow this Stackoverflow thread.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: M-Khawar

79728727

Date: 2025-08-07 14:27:56
Score: 1.5
Natty:
Report link

Nevermind, I found out how to do it. In the grid:

columns.Bound(p => p.ProductionLogID).Title("ID").Width(200)
                .Filterable(f => f.Cell(cell => cell.Template("IDFilter").ShowOperators(true)));

In javascript:

function IDFilter(e) {
    e.element.kendoNumericTextBox({format:"#"});
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ShawnO

79728726

Date: 2025-08-07 14:27:56
Score: 2
Natty:
Report link

there is a very simple procedure to do this, kindly follow these steps:

STEPS:

  1. Open the document or template where you want this shortcut key functionality.

  2. Record the Macro:

  3. Press Alt + F8 to open the Macros dialog.

If you have vba code:

  1. click on developer tab

  2. click on the record macro and  giev a name and saved it.

  3. click on stop recording

  4. go to Macros

  5. click your desired macro

  6. click on edit

  7. write or paste your vba code

  8. ctrl +S

  9. closs all and save.

Assign the Macro to a Shortcut Key:

https://artisthindustani.blogspot.com/2025/08/how-to-use-vba-code-and-assign-macro.html

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

79728710

Date: 2025-08-07 14:16:53
Score: 2
Natty:
Report link
string partial_information = "";
dynamic obj;
while (...)
{
    ... (out information);
    
    if (partial_information == "")
    {
        try
        {
            obj = JsonConvert.DeserializeObject(information);
        }
        catch (Newtonsoft.Json.JsonReaderException ex)
               // 'information' only contains the first part of the actual information
        {
            partial_information = information;
        }
    }
    else
    {
        obj = JsonConvert.DeserializeObject(partial_information + information);
                // in the previous loop, some 'information' was written to 'partial_information'.
                // Now the concatenation of both is used for deserialising the info.
        partial_information = ""; // don't forget to re-initialise afterwards
    }

    if (obj.Some_Property  != null) // <-- Compiler error (!!!)
    {

با این حال، این کامپایل نمی‌شود: خط خطای کامپایلر if (obj.Some_Property != null)ایجاد می‌کند CS1065:Use of unassigned local variable 'obj' : .

به نظر من، این بی‌معنی است، همانطور که objحتی خارج از کل [موضوع] اعلام شده است.while ‎-loop‎ نیز اعلام شده است.

چطور می‌توانم این را مدیریت کنم؟

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: مجتبی. جوهری.

79728709

Date: 2025-08-07 14:16:53
Score: 3.5
Natty:
Report link

I check this document about it https://blazorise.com/docs/extensions/datagrid/getting-started

RowSelectable
Handles the selection of the DataGrid row. If not set it will default to always true.
Func<TItem,bool>

And there is a RowSelectable attribute can you try implementing this , i dont know how your code structure if you struggle to implements this please share your code where to use it.

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-2): can you try
  • RegEx Blacklisted phrase (2.5): please share your code
  • RegEx Blacklisted phrase (1): i dont know how your code structure if you struggle to implements this please
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Yusuf

79728707

Date: 2025-08-07 14:13:52
Score: 1
Natty:
Report link

What I understand is you need user products + global products.

So in this case we need a OR condition where('isGlobal', 1)

$products = Product::where('user_id', $user->id)
->orWhere('isGlobal', 1)
->get();

result: this will give me all specific user productrs + gloabl products

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (0.5):
Posted by: Kamran Khalid

79728705

Date: 2025-08-07 14:10:51
Score: 1
Natty:
Report link

If you want the container id without the container running, this solves it:

docker inspect --format="{{.Id}}" <container_name> | sed 's/sha256://g'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ogabriel

79728704

Date: 2025-08-07 14:10:51
Score: 1.5
Natty:
Report link

من در حال تلاش برای ایجاد یک google_eventarc_trigger در ماژول Terraform هستم تا هنگام آپلود فایل‌ها در یک پوشه خاص در سطل GCS من، مطلع شوم. با این حال، نتوانستم راهی برای تعریف الگوی مسیر در Terraform پیدا کنم. چگونه می‌توانم این کار را انجام دهم؟ این کد من است.

resource "google_eventarc_trigger" "report_file_created_trigger" {
  name            = "report-file-created-trigger"
  location        = var.location
  service_account = var.eventarc_gcs_sa

  matching_criteria {
    attribute = "type"
    value     = "google.cloud.storage.object.v1.finalized"
  }

  matching_criteria {
    attribute = "bucket"
    value     = var.file_bucket
  }

  destination {
    cloud_run_service {
      service = google_cloud_run_v2_service.confirm_report.name
      region  = var.location
    }
  }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: مجتبی. جوهری.

79728703

Date: 2025-08-07 14:10:51
Score: 0.5
Natty:
Report link

Your problem is probably due to using Python 3.11 with TensorFlow — they’re not fully compatible yet. I recommend using Python 3.10 instead.

An easy way to manage different Python versions is with Anaconda. You can read the installation guide here: https://www.anaconda.com/docs/getting-started/anaconda/install
Then just create a new environment like this:

conda create -n venv python=3.10 
conda activate venv # Now you're using the Python version inside venv
conda install tensorflow # Or use pip: pip install tensorflow

More info here: Conda create and conda install

This should fix the DLL error. Good luck!

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

79728702

Date: 2025-08-07 14:09:51
Score: 1
Natty:
Report link

If you want the container id without the container running, this solves it:

docker inspect --format="{{.Id}}" <container_name> | sed 's/sha256://g'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ogabriel

79728694

Date: 2025-08-07 14:04:50
Score: 1
Natty:
Report link
MonthX Unique Events= CALCULATE(DISTINCT('Incident Tracker'[Incident Name]),'Incident Tracker' [Incident Date] >= DATE(2024,1,1) && 'Incident Tracker' [Incident Date] <= DATE(2024,10,1))

If you have a separate date table and a slicer on it (to make it more dynamic) i would consider using VALUES and TREATAS in the filter argument of CALCULATE

Reasons:
  • Blacklisted phrase (1): thX
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: STM

79728693

Date: 2025-08-07 14:04:50
Score: 1
Natty:
Report link

No problem, just add a separate file or section about nvim-tree/nvim-web-devicons and put your custom configuration there. Lazy will look for a plugin spec before loading it and if it finds one or more it will merge them and evaluate them.

Just make sure you're not calling setup somewhere else before that file/section is evaluated by Lazy. If you do, you should pass your configuration to that setup call.

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

79728688

Date: 2025-08-07 14:01:49
Score: 1
Natty:
Report link
  1. You’re building a voice assistant using AIML for dialog management.

  2. You use std-startup.xml to tell the bot to load another AIML file (output.aiml).

  3. Your pattern in std-startup.xml must exactly match what you pass in Python.

  4. The AIML loader line must be:

    python
    

    CopyEdit

    kernel.bootstrap(learnFiles="std-startup.xml", commands="LOAD AIML B")

  5. Your std-startup.xml should look like:

    xml
    

    CopyEdit

    <aiml version="1.0.1"><category><pattern>LOAD AIML B</pattern><template><learn>output.aiml</learn></template></category></aiml>

  6. Your output.aiml must include valid categories like:

    xml
    

    CopyEdit

    <category><pattern>I WANT A BURGER</pattern><template>Sure! What kind?</template></category>

  7. Make sure all files are in the same directory.

  8. The command LOAD AIML B is case-sensitive.

  9. Add this to debug:

    python
    

    CopyEdit

    print(kernel.numCategories()) # Should be > 0

  10. Now run it, and the bot will respond to I WANT A BURGER.

Reasons:
  • RegEx Blacklisted phrase (1): I WANT
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shivanand G

79728684

Date: 2025-08-07 13:58:48
Score: 2.5
Natty:
Report link

No, you can't read metadata directly from an <img> tag.

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

79728680

Date: 2025-08-07 13:56:47
Score: 1.5
Natty:
Report link

POLLEE fashion 🌍

Digital economy world profile image e-commerce Shopify store Amazon CNBC stock

Google payment profile wallet supported Google pay

GDPR heppy 10 year working journey

Modern sellary with other found

Digital asset

Sopported EU staff union member supported working journey POLLEE tree sitters 🌴 hello world 🌎 advisor marketing buy all social media with publisher Nasiruddin from Bangladesh

Bikash mobile banking app account 01994343295

AIBL bank progoti soroni bunch Dhaka 1212

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

79728668

Date: 2025-08-07 13:48:45
Score: 1
Natty:
Report link

Generic font families:

None of these generic families are designed to display icons, and attempting to use them as a fallback for an icon font would result in incorrect or unreadable characters being displayed instead of the intended icons.

Therefore, when using icon fonts, it is crucial to ensure that the specific icon font file is properly loaded and accessible, as there is no universal generic fallback that can replicate its functionality.

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

79728660

Date: 2025-08-07 13:43:43
Score: 1
Natty:
Report link

Adding to gitlab-ci.yml helped me:

variables:
  PATH: /home/gitlab-runner/.nvm/versions/node/v18.12.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

Maybe it will be useful for someone.

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

79728656

Date: 2025-08-07 13:41:43
Score: 3
Natty:
Report link

View Templates applied to the view

Filters

Worksets that are turned off

Links that are unloaded

View range or far depth clip

Design Option

Detail level

Phase settings
Autodesk's Revit Visibility Troubleshooting Guide: https://www.autodesk.com/support/technical/article/caas/guidedtroubleshooting/csp/3KGII0aL3ToAA8ArgwyLs4.html

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jorge de la Cova

79728654

Date: 2025-08-07 13:40:42
Score: 1
Natty:
Report link

Do you have a codeql-pack.yml file with the codeql/cpp-all pack as dependency?
If not, it might be easiest to set this up using the VS Code extension, see the documentation. This can also be done by using the command ">CodeQL: Create query" in VS Code.

Note that your query uses dataflow API which has been deprecated and removed in newer versions, see the changelog. So you would either have to adjust the query code to use the new API or use codeql/cpp-all: ^2.1.1 (which seems to be the last version which still contains the old dataflow API).

In the directory which contains your codeql-pack.yml and your query file, you can then run the following commands (or use the corresponding VS Code extension commands):

  1. codeql pack install
    To install the dependencies specified in the codeql-pack.yml. Respectively codeql pack ci if you have a codeql-pack.lock.yml lock file and only want to install the versions specified in it.
  2. database analyze ... my-query.ql
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Marcono1234

79728653

Date: 2025-08-07 13:40:42
Score: 4
Natty:
Report link

If you came here looking for it while on rails 8, you can find it here: https://github.com/rails/propshaft/blob/e49a9de659ff27462015e54dd832e86e762a6ddc/lib/propshaft/railties/assets.rake#L4

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

79728651

Date: 2025-08-07 13:40:42
Score: 2.5
Natty:
Report link

you only need to clean the cache by running this:

npm cache clean --force

In my case this worked.

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

79728650

Date: 2025-08-07 13:39:41
Score: 1
Natty:
Report link

People make stupid mistakes like letting people fetch a refresh-token using prior access-token... Don't do that. It's supposed to only exist through small time intervals. Essentially, if a bad actor steal an access-token they can just keep refreshing the same token indefinetely. Second issue, is people who only uses JWT for everything. Some user actions like changing password should have JWT and TFA before letting users change their password. Depending on the level of security, severity of damage done through one action - Implement more than one auth checks

The main benefit of JWT - is that it reduces DB calls by being stateless, every actions a user take doesn't make the backend request a new user instance

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

79728640

Date: 2025-08-07 13:29:39
Score: 2.5
Natty:
Report link

Try luaToEXE, which includes a Python library with a graphical user interface and a command-line tool: Intro

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