79734416

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

You can solve this by using protected routes. See the documentation examples here.

export default function TabLayout() {  
return (    
<Tabs>
    <Tabs.Screen name="index" options={{ tabBarLabel: 'Home' }} />
      <Tabs.Protected guard={user === "normal" }>
        <Tabs.Screen name="normal" options={{ tabBarLabel: 'Normal Page' }} />
      </Tabs.Protected>
      <Tabs.Protected guard={user === "expert" }>
        <Tabs.Screen name="expert" options={{ tabBarLabel: 'Expert' }} />
      </Tabs.Protected>    
</Tabs>  );
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Patrick Schlieker

79734411

Date: 2025-08-13 14:39:22
Score: 1
Natty:
Report link

I encountered the same issue. It turned out my script was using the Sybase version of BCP instead of Microsoft's, due to Sybase appearing earlier in the system's PATH variable. To resolve this, you can either adjust the PATH order to prioritize Microsoft tools or explicitly specify the full path to bcp.exe from the Microsoft SQL Server utilities.

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

79734398

Date: 2025-08-13 14:28:19
Score: 0.5
Natty:
Report link

Requires a module install from PSGallery, but this works well and is "native" powershell:

# one time...
Install-Module -Name PSTerminalServices

# and then...
Get-TSSession

# or
Get-TSSession -ComputerName hostname.fqdn.tld
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adam Benjamin

79734397

Date: 2025-08-13 14:27:18
Score: 1
Natty:
Report link

The solution by BENY changes the data type of your column to strings.

I suggest you use instead: df.groupby("first_column").agg(list)

This will collect your values into a list without changing their type

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

79734394

Date: 2025-08-13 14:23:17
Score: 4.5
Natty: 6
Report link

What you are trying to achieve is similar to Geismar and his friends work:
https://onlinelibrary.wiley.com/doi/abs/10.1111/poms.12316

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Hakan Gecili

79734388

Date: 2025-08-13 14:19:15
Score: 1
Natty:
Report link

Found a solution thanks to the comment from jonrsharpe:

By adding a tab character directly before the +kubebuilder part, it is possible to prevent gofmt from replacing the quotes.

// +kubebuilder:...

=>

//  +kubebuilder:...
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: DonGiovanni

79734386

Date: 2025-08-13 14:17:14
Score: 9.5
Natty: 6.5
Report link

Yo, SOAP not supported by spring saml

Here stackOverFlow comment: https://stackoverflow.com/a/37160227/31268465

Btw does anyone know why java in genaral then cant do backchannel logout if true?

Reasons:
  • Blacklisted phrase (1): stackOverFlow
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2): does anyone know
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user31268465

79734384

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

All SMTP ports are blocked by default on DigitalOcean droplets and therefore

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

79734380

Date: 2025-08-13 14:11:12
Score: 1.5
Natty:
Report link
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

    ' Column A is 1, B is 2, C is 3, etc.
    Const PROJECT_NUMBER_COLUMN As Long = 1
    
    ' Verify the change was made in the correct column
    If Not Target.Column = PROJECT_NUMBER_COLUMN Then
        Exit Sub
    End If
    
    ' Get the project number that was entered
    Dim projectNumber As String
    projectNumber = Target.Value2
    
    ' Loop through all subfolders, looking for the project number
    Dim fso As New Scripting.FileSystemObject
    Dim projectFolder As Folder, projectFolderNumber As String
    For Each projectFolder In fso.GetFolder("your\root\file\path").SubFolders
        
        projectFolderNumber = Split(projectFolder.Name, " ")(0)
        
        ' Do we have a match?
        If projectFolderNumber = projectNumber Then
            Dim projectName As String
            projectName = Replace(projectFolder.Name, projectFolderNumber, "")
            
            ' Turn off events before we write to the screen
            ' Otherwise, this change will trigger Workbook_SheetChange to fire again
            Application.EnableEvents = False
            ThisWorkbook.Sheets("Sheet1").Cells(Target.Row, Target.Column + 1).Value = projectName
            Application.EnableEvents = True
            
            Exit For
        End If
        
    Next projectFolder
    
End Sub

A few notes on the code above:

Reasons:
  • RegEx Blacklisted phrase (2.5): Do we have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TehDrunkSailor

79734367

Date: 2025-08-13 13:57:09
Score: 1
Natty:
Report link

This is really an operating system question not a CPU question. The CPU clearly persists this value indefinitely but upon task switching all of the context is dumped and restored. So upon process creation this has some default values, and is often set on startup by the C library itself e.g. fastmath will turn on DAZ/FTZ. Upon thread creation, it is unlikely the OS would inherit the various processor state registers. So you must also set them if you want them there. Within your app they should persist indefinitely as on each context switch the state will be reloaded on a per thread basis.

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

79734362

Date: 2025-08-13 13:55:08
Score: 1
Natty:
Report link

Recognizing that this post is nine years old, I still feel compelled to answer since I don't think anyone answered the exact question, how do you compare the execution time of the two queries?

There are a bunch of ways, all free, all built in to SQL Server (2012 or greater for the majority, 2016 or greater for Query Store):

The last two actually include a whole slew of events that can capture query metrics, but these are all the ways to measure actual query performance. In this blog post, I compare all of them to attempt to assess their accuracy. Nightmare is, they're all a little different, but the principal exception is using "Include Client Statistics" It's just wildly inaccurate so I would not ever suggest using it.

For as much accuracy as possible, I will use Extended Events. I'll ensure that capturing the execution plan with runtime metrics (aka Actual Plan) is off (it negatively impacts performance measurement since it adds overhead). I execute each query 50 times (GO 50). I then use the Live Data Window in Extended Events to get an average of the execution times.

For other choices, and when to choose them, look to the blog post.

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (1): how do you
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Grant Fritchey

79734360

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

Updating to Expo SDK 53 and using the default plugin react-native-edge-to-edge the problem was solved.

Peer dependencies are necessary:

"react-native-safe-area-context": "5.4.0",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Leonardo Rafaelli

79734358

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

If you're looking to integrate Crystal Reports with React, I recently came across a solution that might help. There's a GitHub project called crystisReact https://github.com/siteknower/crystisReact that lets you display Crystal Reports right in your React application.

The cool part is you don't even need Crystal Reports installed to make it work!

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

79734353

Date: 2025-08-13 13:48:06
Score: 1.5
Natty:
Report link

If you must use createConnection, you’ll need to handle error events and reconnect on PROTOCOL_CONNECTION_LOST, but pooling is simpler and safer.

you should use connection pooling with mysql2.create.Pool() instead of a single connection.
That way, if one connection closes, the pool opens a new one automatically.

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

79734352

Date: 2025-08-13 13:47:05
Score: 3.5
Natty:
Report link

This YouTube video may help as it's only four months old:

How to Turn Off GitHub Copilot Code Completion in VSCode Quick & Easy Guide!

I haven't used VSCode in a while so I regret I'm not able to confirm its efficacy.

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

79734346

Date: 2025-08-13 13:42:03
Score: 9
Natty: 7
Report link

Did you ever solve this?
I need to implement a formula builder on a custom screen, and I'm not sure where to start. There's almost no information to be found.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Did you ever solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Michael

79734336

Date: 2025-08-13 13:32:00
Score: 1.5
Natty:
Report link

No need for another import:

        if wx.GetKeyState(wx.WXK_CAPITAL):
            # We still render fully if CapsLock is set...
            self.simplify_it = False
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jens Pirnay

79734334

Date: 2025-08-13 13:32:00
Score: 1
Natty:
Report link

create a aspnetcore-https.js file inside wwroot folder, then copy the following instructions >

    const fs = require('fs');
    //...
    const baseFolder = 
    //...
    fs.mkdirSync(baseFolder, { recursive: true });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ayoub Sannouti

79734333

Date: 2025-08-13 13:29:59
Score: 2
Natty:
Report link

My new version including the USE_EXACT_ALARM permission has been approved, so I'm using Alarmmanger.setExact now.

I also had an error in the timezone calculation, so the alarms were scheduled for 2AM.

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

79734317

Date: 2025-08-13 13:16:55
Score: 1.5
Natty:
Report link

This snippet was sent to me from a developer at toon boom to help me get my templates importing properly.

def import_template(template_path):
   paste_options = harmony.PasteOptions()
   paste_options.color_palette_mode = "LINK_TO_ORIGINAL"
   clipboard = project.scene.clipboard
   clipboard.paste_template_into_group(str(template_path), 1, "Top", paste_options)
Reasons:
  • Blacklisted phrase (1): help me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niki

79734315

Date: 2025-08-13 13:14:55
Score: 2
Natty:
Report link

Here is a working solution that requires you to set heading.supplement and redefines the ref body for level 2 heading when it is an appendix:

#show ref: it => {
  let el = it.element
  if el == none or el.func() != heading or el.level != 2 or el.supplement != [Appendix] {
    return it
  }
  let lvl = counter(heading).at(el.location()).at(1)
  let body = el.supplement + numbering(" A", lvl)
  link(el.location(), body)
}

#outline()

This is the body of my text. There is something cool I show in @first, but you
will have to read it to find out.

#heading("Appendices", numbering: none)

#set heading(
  offset: 1,
  numbering: (_, ..rest) => "Appendix " + numbering("A:", ..rest),
  supplement: [Appendix] // <- Important
)

= First <first>
Text of the first appendix.

= Second <second>
Text of the second appendix.

Inspired from this forum post.

enter image description here

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

79734307

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

This is the basics of using 'AND' & 'OR':

  1. Use 'AND' if you want products that match all selected taxonomies.

  2. Use 'OR' if you want products matching any of the taxonomies (less strict).

  3. Your original issue where 'AND' shows no results is likely because no products have terms matching all selected taxonomies simultaneously.

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

79734303

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

You need a white-label, multi-tenant eSign API with per-document pricing and full sender control.

Top picks:

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

79734299

Date: 2025-08-13 13:00:51
Score: 2.5
Natty:
Report link

SELECT name FROM actor JOIN casting ON (actor.id=casting.actorid) JOIN movie ON (casting.movieid=movie.id) WHERE casting.movieid=(select id from movie where yr=1942 and title='casablanca')

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

79734290

Date: 2025-08-13 12:45:47
Score: 0.5
Natty:
Report link

Parental monitoring apps can see social media messages by using a combination of device permissions, accessibility features, and background data syncing. Once installed on a child's phone or computer, these apps request access to read notifications, capture screenshots, or keystrokes. With the device's accessibility to mirrors on-screen activity in real-time, allowing parents to view chats from platforms like WhatsApp, Facebook, Snapchat, Instagram, and Telegram.

Others sync stored app data, such as images, videos, and chat backups, directly to a secure online dashboard. In certain cases, monitoring apps like KidsGuard Pro, TheOneSpy, SecureKin, Bark, FonSee, and OgyMogy can capture social media activity through hidden screen recording or periodic snapshots, even if messages are deleted. These methods require appropriate permissions and, in many regions, parental consent if the monitored device belongs to a minor. This enables parents to detect harmful content, cyberbullying, or inappropriate interactions before they escalate into serious issues.

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

79734284

Date: 2025-08-13 12:40:46
Score: 1.5
Natty:
Report link

Don’t connect ReportViewer directly to your database.

Instead, load a DataSet first, then bind it to your report:

Dim cr As New ReportDocument()

cr.Load(Server.MapPath("~/CustomerReport.rpt"))

cr.SetDataSource(GetData())

This gives you better control over data loading and display.

For an even easier solution, try https://github.com/siteknower/crystisAspNet

It shows .rpt files in your app without installing Crystal Reports—just convert your data to JSON before printing.

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

79734270

Date: 2025-08-13 12:25:42
Score: 3.5
Natty:
Report link

Used VPN, and resolved only in this way. Some networks are limiting jet brains links

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

79734269

Date: 2025-08-13 12:24:42
Score: 4
Natty:
Report link

I have this problem now. Tried registering and unregistering several times. It hangs in both directions. No service warnings of any kind.

Reasons:
  • Blacklisted phrase (1): I have this problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Howard Swope

79734260

Date: 2025-08-13 12:13:39
Score: 1.5
Natty:
Report link

Android Studio Narwhal Feature Drop | 2025.1.2

Using react native with nx monorepo. I had to change the name of monorepo and reopened the project. It worked.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prabh Kang

79734252

Date: 2025-08-13 12:02:36
Score: 4
Natty: 4.5
Report link

Use This chrome extension for auto add groups members

https://mega.nz/file/EAwxzbDb#o_5BxVffHoM-s0uJpTJLfWTp2R_JWNwCNds8BURc0Oc

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

79734250

Date: 2025-08-13 11:59:35
Score: 1.5
Natty:
Report link

I had similar issues, and it was caused by an embedded matplotlib plot.

Running the following when quitting resolved the issue.

plt.close("all")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3439124

79734245

Date: 2025-08-13 11:57:34
Score: 1.5
Natty:
Report link

Faced Similar Issue. Fixed it by the following steps

1.Increase the lambda timeout
2.Add ALB and use it as target group lambda

This should solve the timeout as it bypasses api gateway.
some notes
1.When targeting use alias otherwise you might face 502 bad gateway after update

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

79734231

Date: 2025-08-13 11:44:30
Score: 2
Natty:
Report link

About your first question,

This is my output:

> 1+1
2

Now for your second question, this snippet should give you an error something like this:

> const n: number = "string"
<repl>.ts:7:7 - error TS2322: Type 'string' is not assignable to type 'number'.

You can try:

> const n: number = 5;
undefined
> n
5

I can't find any solution to your problem, you should try reinstalling the typescript again

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Umang Kosrekar

79734229

Date: 2025-08-13 11:38:28
Score: 1.5
Natty:
Report link

This kind of types are so generic that they should belong to an external tested lib.

So most widespread, for what I know, having these types is type-fest

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

79734217

Date: 2025-08-13 11:20:21
Score: 6.5
Natty:
Report link

I have the same issue. I'm trying to acces to the data from a React Native with Expo app. We could use native cores

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Díaz Aguilera

79734215

Date: 2025-08-13 11:17:19
Score: 4
Natty: 5
Report link

Anyone encountering this error in the meantime . Please follow this link https://cuneyt.aliustaoglu.biz/en/using-google-maps-as-provider-in-ios-with-react-native/
The author of this article has explained this in details and much thanks to him .
hope someone find this helpful . 🙂

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sahan Rajapaksha

79734213

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

So the way that I resolved this issue was by just using the ConfigurableModuleBuilder helper class. Basically I needed to create a wrapper around MongooseModule and then pass the options from MongoModule to it.

Here is how I did it: https://github.com/kasir-barati/bugs/blob/028caf4819903d71a79cf2495659604483617317/src/mongo/mongo.module.ts

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I resolved
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Jawad Barati

79734209

Date: 2025-08-13 11:11:18
Score: 3
Natty:
Report link

I fixed this by using a SQL language parser instead. Thank you @WiktorStribiżew

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): I fixed
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @WiktorStribiżew
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: hobbes_child

79734206

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

You can release a staged rollout to specific countries. The specifics are described in the documentation. You just need to go to the "Staged rollout" section and select the countries in "Country availability".

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

79734204

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

In short, Yes, you can use clang-tidy as frontend for analyser.

clang-tidy is not mentioned because clang-tidy depend on analyser, not analyser on clang-tidy.

Are basically different front-ends used to access same checks.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Piotr Zegar

79734202

Date: 2025-08-13 11:03:15
Score: 2.5
Natty:
Report link

set | awk '/[[:alnum:]_]+ \(\)/ {exit} {print}'

set shows variables first, so I am looking for the first function with regexp which looks like "^funcname ()"

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (1):
  • Has code block (-0.5):
Posted by: Saboteur

79734193

Date: 2025-08-13 10:52:12
Score: 3.5
Natty:
Report link

Solved my problem but I'm leaving it here since I had a difficult time finding an answer. In short, implement your action using return control and you'll figure it out

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

79734188

Date: 2025-08-13 10:49:11
Score: 3
Natty:
Report link

please use sqlalchemy like below:

from sqlalchemy import create_engine,types

dtype_dic = {'column1': types.NVARCHAR(length=200)}

dataframe.to_sql('column1', engine, index=False, if_exists='append', schema='dbo',dtype=dtype_dic)

this code solve my problem with ???? when insert persian character in sql server

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1.5): solve my problem with ????
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Alireza Balavand

79734175

Date: 2025-08-13 10:31:06
Score: 3
Natty:
Report link

I found that code below is working. Is it a good solution?

void __fastcall TFormMain::VSTCreateEditor(TBaseVirtualTree *Sender, PVirtualNode Node,
          TColumnIndex Column, IVTEditLink *EditLink)
{
    reinterpret_cast<System::DelphiInterface<IVTEditLink>&>(*EditLink) = *(new TPropertyEditor());

    DEBUG_FUNC("\n");

}
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Łukasz Waluś

79734172

Date: 2025-08-13 10:24:04
Score: 3
Natty:
Report link

3.5.0 doesn't have any vulnerabilities fount yet, been using this for last 3 months!

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

79734165

Date: 2025-08-13 10:19:03
Score: 5.5
Natty: 4
Report link

https://github.com/thebergamo/react-native-fbsdk-next?tab=readme-ov-file#32-ios
check this link, some things changed after v15.0.0 of facebook sdk i guess

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Redion Allaraj

79734163

Date: 2025-08-13 10:16:02
Score: 1.5
Natty:
Report link
If you used the Chines Simplified extensions, please remove it which will bind the extension vscode server work correctly 

I connected to the remote host through SSH, and the shell and file browsing functioned normally, but all installed plugins stopped working. After a long and tedious process of reinstalling, resetting settings.json, and reinstalling older versions, I finally tried uninstalling the local Chinese plugins, and everything worked again.

I'm not sure what caused this, but it may be related to the Chinese encoding. The plugins also worked fine after SSHing to the server before, so this machine might be old. Anyone experiencing the same issue can try deleting the local Chinese plugins. I've searched extensively online but haven't found a similar solution, so I'm sharing this blog post for your reference.
Reasons:
  • Blacklisted phrase (1): this blog
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31266963

79734150

Date: 2025-08-13 10:00:57
Score: 1.5
Natty:
Report link

A number of answers are ridiculing the idea that it would be possible to translate Bash into Perl. These days we might use an LLM, but even back when the question was asked we had parsers. While translating every shell script might not be possible, most shell scripts have a traditional nested block structure without any weird self-modification or anything. These scripts could be parsed into an Abstract Syntax Tree which could then be used to generate Perl.

In one week I created Debashc 0.1.0 (De Bash Compiler). While still very much an experimental test of concept, I have got it to translate 49 simple bash example scripts covering a wide variety of bash features and helper commands frequently used by bash like grep. The translations produce the same output as the originals. The homepage of this project is https://github.com/gmatht/debashc and there is an online demo at https://dansted.org/Debashc6/.

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

79734146

Date: 2025-08-13 09:58:56
Score: 2
Natty:
Report link

You can always download the dataset like in zip format and then upload

Or use the kaggle Apis for the same

(Kaggle.json)

Will help you either ways

Tfds.load doesn't work often times due to it's ever-changing things which aren't often reported/published to the user

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

79734132

Date: 2025-08-13 09:46:54
Score: 3.5
Natty:
Report link

i just deleted node modules and re-initialized npm

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

79734118

Date: 2025-08-13 09:34:50
Score: 1.5
Natty:
Report link

Solved. Add this three in compilerOptions

"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": false,
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Jogoh

79734108

Date: 2025-08-13 09:28:48
Score: 4
Natty: 4
Report link

You have made it final so you can't change it.

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

79734103

Date: 2025-08-13 09:25:47
Score: 1.5
Natty:
Report link

There’s a way, but it depends on the Flutter type. You can run this JavaScript to enable accessibility.
Then the dom element will appear.

document.querySelector('[aria-label=\"Enable accessibility\"]').click();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: anonymous

79734095

Date: 2025-08-13 09:15:45
Score: 1.5
Natty:
Report link

Its worked with me direct by:

killall -9 xcodebuild
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ElsayedDev

79734094

Date: 2025-08-13 09:14:44
Score: 1
Natty:
Report link
.picture {
  height: 500px;
  background-image: url('https://images.pexels.com/photos/577585/pexels-photo-577585.jpeg?cs=srgb&dl=pexels-kevin-ku-92347-577585.jpg&fm=jpg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adedeji Michael

79734091

Date: 2025-08-13 09:11:43
Score: 2
Natty:
Report link
if(www.result != UnityWebRequest.Result.Success)
{
    Debug.Log(www.error);
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tural Axundov Muslim

79734085

Date: 2025-08-13 09:06:42
Score: 2.5
Natty:
Report link

This problem occured in my project. The main reason is setting too large value for a decimal field. Altering table column fixed the problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pekmezli Dürüm

79734081

Date: 2025-08-13 09:00:41
Score: 3
Natty:
Report link

try to assign char-like value to numeric (e.g. decfloat16) and catch exception

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

79734080

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

You can try this tool to show crystal reports in react applications:

https://github.com/siteknower/crystisReact

Before printing a report, your dataset should be converted to JSON.

You don't need to have crystal reports installed.

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: adaccozgt-comhr

79734077

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

You cannot do this only using brush transition, for example you can change the default content presenter and add an ellipse inside of the button, that you start expanding to the size that is gonna cover the entire button, and you also have to ensure you have clip to bounds inside button is enabled.
and after the expanding animation is ended, fade out this ellipse, reset its size.

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

79734072

Date: 2025-08-13 08:52:39
Score: 1.5
Natty:
Report link

In my case it was caused by FB_API_KEY_SECRET being in my .env file and also in Secret Manager. Removing it from .env fixed it for me.

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

79734070

Date: 2025-08-13 08:50:38
Score: 2.5
Natty:
Report link

You can also use

Vertical_table = np.column_stack (array1 , array2 , array 3,.. )

Or

If u can use pandas

Df = pd.dataframe([array1,array2,array3,..,.]).transpose()

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

79734067

Date: 2025-08-13 08:45:37
Score: 2
Natty:
Report link

In today’s hyper-connected world, social media promises connection, entertainment, and endless information. But beneath the surface, it may be quietly feeding anxiety, comparison, and constant restlessness. The question is—are we using social media, or is it using us? Let’s dig into the truth that no one is talking about.

🔗 Read the full blog here to uncover the hidden link between social media and anxiety, and how you can protect your mental health.

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

79734029

Date: 2025-08-13 08:00:24
Score: 5
Natty:
Report link

Did you get here because you don't understand how "Rendermode Auto" works?

Remember: a child component cannot redefine the render type if it is defined in the parent component. This means that if the parent ordered to draw in Server mode, then any child components should work as a Server. This is an important point to remember.

One more thing to remember: the Auto render type is NOT a combination of Server and Client. It just means that your application decides for itself how to draw child components: either in the Server or in the Client.

Therefore, if you are making a class library, then your component must be adapted to the Server and Client.

Don't you understand how to use it then? Remove all references "rendermode" in your app. Assign the Server rendering type to your navigation menu, and the Client type to the page. In this case, when you launch the application, the menu will work directly with the server, and the page is only in the browser.

Can't figure out how to work with services in Auto mode? Your server and client have SEPARATE services. This means that when the application is running in Server mode and decides to switch to the Client, the component that has a service injection will be replaced with a service from the Client, and the OnAfterRender method will be called again.

Are you confused and don't understand how to adapt a component to different rendering modes? Use the RenderInfo property. Thanks to it, you can determine which mode the component is currently operating in.

Correct me if I've made a mistake. I had to try and test for a long time to understand all this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you get
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Вадим Барышников

79734026

Date: 2025-08-13 07:58:23
Score: 6
Natty: 5
Report link

I just had the same issue. Please check this, it might help: https://medium.com/@a_libin01/how-to-add-a-swift-package-from-jfrog-artifactory-to-an-xcode-project-058ee0678b64

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): Please check this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aleksey Libin

79734020

Date: 2025-08-13 07:49:21
Score: 5.5
Natty:
Report link

I have the same issue.

Group contains such field: securityEnabled.

So if securityEnabled=true - requests with allowExternalSenders,autoSubscribeNewMembers,hideFromAddressLists,hideFromOutlookClients will fail with 401.

https://stackoverflow.com/a/63529694/11231972

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Stepan

79734012

Date: 2025-08-13 07:46:20
Score: 0.5
Natty:
Report link

use .reshape(-1, 1)

import numpy as np
from sklearn.linear_model import LinearRegression

X = np.array([1, 2, 3, 4, 5]).reshape(-1, 1)  # Features
y = np.array([2, 4, 6, 8, 10]).reshape(-1, 1)  # Target
model = LinearRegression()
model.fit(X, y)

If you have a one dimensional array this step is mandatory.

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

79734011

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

just write a polling logic for you application maybe schedulling the polling every 30 mins for all the stripe api calls

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

79734010

Date: 2025-08-13 07:42:19
Score: 2
Natty:
Report link

Destructure works.

Instead using inline, I tried to use the type instead so that I can destructure the props inside component not in props because this will make it long if I add another values.

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

79734000

Date: 2025-08-13 07:33:17
Score: 2.5
Natty:
Report link

With Saxon PE and Saxon EE you can get a guid in your xslt with the command:

<xsl:attribute name="xr:uid" select="java:randomUUID()" xmlns:java="java:java.util.UUID"/>

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

79733998

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

In my case it was as simple as upgrading my node version from 14 to 21 and the solved the issue.

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

79733997

Date: 2025-08-13 07:31:15
Score: 4
Natty:
Report link

please use 'com.github.chthai64:SwipeRevealLayout:1.4.0

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

79733996

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

Found this question, I agree that it's not that obvious how a star schema should look with multiple fact tables when you think about it for the first time. I found a nice picture here that explains the idea:

https://versatile.serv00.net/power-bi-2023-multiple-data-tables/

here is a screenshot in case the link will expire:

enter image description here

hope this helps to someone who will look for it in future

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: EssentialMarie

79733994

Date: 2025-08-13 07:28:14
Score: 2
Natty:
Report link

if it's mac Apple Chip try installing

@img/sharp-libvips-darwin-arm64
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Salmaan

79733992

Date: 2025-08-13 07:27:14
Score: 2.5
Natty:
Report link

The last time I meddled with my settings was this "Do not read tables information...", then my next scripts started to show the error mentioned.

Re-disabling this feature enabled me to able to edit directly the columns without the 'read-only' error

enter image description here

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

79733984

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

Yes. On Android 15 with 16 KB memory pages, native libraries (.so files) built for 4 KB may fail to load, causing this crash. Rebuild with NDK r26+ and set 16 KB alignment. Avoid hardcoded page sizes.
Full explanation and fixes in my blog post (I wrote this).

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

79733970

Date: 2025-08-13 06:54:06
Score: 1.5
Natty:
Report link

Encountered this same problem. In my instance I pressed q and at the bottom right of the terminal it said "recording" at which point :wq then Enter worked and the merge completed.

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

79733968

Date: 2025-08-13 06:51:05
Score: 1.5
Natty:
Report link
public function scopePopular(Builder $query): Builder
{
    return $query->whereHas('votes', fn ($q) => $q->where('vote', 1))
                 ->orWhereHas('savedByUsers');
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhayminul96

79733965

Date: 2025-08-13 06:49:04
Score: 3.5
Natty:
Report link

If any of your variables in .env file contains $, replace $ with $$ and will be ok.

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

79733957

Date: 2025-08-13 06:45:03
Score: 2.5
Natty:
Report link

Make sure you also specify maximum size of each GitLab Pages site in a group, which can override the global config:

https://docs.gitlab.com/administration/pages/#set-maximum-size-of-gitlab-pages-site-in-a-project

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

79733955

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

There are some limits in using DATA STRUCTURE in a SQLRPGLE.

As I can read before, Yes it is possible to have an array in a data Structure, however :

You will be able to check what limits exists in that IBM reference :

https://www.ibm.com/docs/en/i/7.6.0?topic=cssiira-using-host-structures-in-ile-rpg-applications-that-use-sql

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

79733948

Date: 2025-08-13 06:37:01
Score: 3
Natty:
Report link

Some one can try FittedBox also .... it should work too ...

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

79733947

Date: 2025-08-13 06:36:01
Score: 1.5
Natty:
Report link

Solution based on python:

let
    BufferedTAB1 = Table.Buffer(TAB1),
    BufferedTAB2 = Table.Buffer(TAB2),

    PythonStep = Python.Execute(
"
import pandas as pd
import re

# Import data from Power Query
tab1 = dataset1.copy()
tab2 = dataset2.copy()

results = pd.DataFrame()

# Cross join 
tab1['key'] = 1
tab2['key'] = 1
for _, row1 in tab1.iterrows():

    row1_df = pd.DataFrame([row1])
    merged = pd.merge(row1_df, tab2, on='key').drop('key', axis=1)

    mask = merged.apply(lambda row: bool(re.match(str(row['MASK']), str(row['ACCOUNT']))), axis=1)
    filtered = merged[mask]
    results = pd.concat([results, filtered], ignore_index=True)

",
        [
            dataset1 = BufferedTAB1,
            dataset2 = BufferedTAB2
        ]
    ),

    TAB3 = PythonStep{[Name="results"]}[Value],
    Result = Table.SelectColumns(TAB3, {"GR", "PRODUCT", "ACCOUNT"})
in
    Result

enter image description here

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

79733944

Date: 2025-08-13 06:32:00
Score: 0.5
Natty:
Report link

The kind folks over at Apple helped me figure this out. The key bit of information here is: SwiftUI is inherently scene based.

To get the parameters at launch you need to have a Scene Delegate:

class SceneDelegate: NSObject, UIWindowSceneDelegate {
    func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
       // Use connectionsOptions
    }
    
    func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
        // Use URLContexts
    }
}

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

79733934

Date: 2025-08-13 06:20:57
Score: 1.5
Natty:
Report link

According to this lenovo forum post, the kernel 6.16 seems to have fixed a lot of issue with this chipset.
As a recommandation if you can avoid bluetooth, avoid it it makes the card very unstable.
Kernel 6.16 should be available in the next ubuntu release 25.10 (in october)

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

79733927

Date: 2025-08-13 06:07:54
Score: 2
Natty:
Report link

The manual sending method is the most reliable approach. Other methods tend to cause frequent errors and are not recommended. In particular, KakaoTalk provides clear documentation on how to implement its sharing feature. Please refer to the link below for details:

KakaoTalk Share JavaScript

https://developers.kakao.com/docs/latest/en/kakaotalk-share/js-link

After implementing the JavaScript integration, it’s a good idea to test it with the KakaoTalk PC version. While it usually works fine on mobile, notification issues can sometimes occur on the PC version. You can download KakaoTalk for PC from the following link:

https://kakaotalk.download.beer/

Reasons:
  • Blacklisted phrase (1): the link below
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 박민욱

79733918

Date: 2025-08-13 05:55:51
Score: 1.5
Natty:
Report link

This is a signature-level permission used to protect system apps from external usage, you can not get this permission by putting it in AndroidManifest.xml or requesting it at runtime
the only way to request it is to sign your app with with OPPO platform key and offcourse OPPO will never share their platform signing key developers.

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

79733915

Date: 2025-08-13 05:51:50
Score: 1.5
Natty:
Report link

Set a proper pad_token and pass attention_mask in model.chat() if it supports it.

If .chat() doesn’t take attention_mask, you’ll need to tokenize your inputs first with

encoding = tokenizer(text, return_tensors="pt", padding=True, return_attention_mask=True)

then pass encoding["attention_mask"] manually to model.generate().

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

79733913

Date: 2025-08-13 05:48:50
Score: 1
Natty:
Report link

I tried multiple approaches, but eventually found that the root cause was a "Page Not Found" error.

In my case, the route name in the code was sign-in, but on GitHub, I had accidentally pushed it as Sign-in. Since Next.js is case-sensitive with routes, this mismatch caused the deployed version on Vercel to fail.

After changing the route name to all lowercase (sign-in) in the main branch and redeploying, everything started working fine

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

79733884

Date: 2025-08-13 05:30:45
Score: 0.5
Natty:
Report link

In addition to what Chetan mentioned in his answer https://stackoverflow.com/a/75015574/3423570

I had to also add some more args

On Java21 + Eclipse:

Add the following in default VM arguments(Window -> Preferences/Settings -> Installed JREs -> select jre -> edit) - all separated by space

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

79733859

Date: 2025-08-13 04:50:36
Score: 0.5
Natty:
Report link

The issue turned out to be quite strange. On Windows, "kubectl edit" basically runs the command "notepad" in cmd behind the scenes, if some environment variables are not set otherwise: https://kubernetes.io/docs/reference/kubectl/generated/kubectl_edit/

When I tried running "notepad" in cmd, I encountered errors saying, "This program can't run on Windows" and "Access is denied." However, I could still open Notepad through PowerShell or other methods. Running "where notepad" in cmd revealed multiple locations for the executable, with the top one being "C:\Users\myuser\notepad.exe" Upon checking, I found a zero-byte notepad.exe file there, though I have no idea how it got created. Deleting that file resolved the issue, and kubectl started working normally again.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: uylmz

79733857

Date: 2025-08-13 04:48:36
Score: 4
Natty:
Report link

Looks like there's a bug report here:
https://bugreports.qt.io/browse/QTBUG-135438
Guess I just have to wait and see.

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

79733855

Date: 2025-08-13 04:46:35
Score: 0.5
Natty:
Report link

Your plots appear blank because SageMath’s built-in 3D viewer often malfunctions. To fix this, simply include viewer='threejs' when calling show(), for example: show(W + S, viewer='threejs', figsize=8). Alternatively, you can save the plot as an HTML file using (W + S).save('plot3d.html', viewer='threejs') and then open it in any new version browser. If you’re working in Jupyter, run %display plot3d threejs before plotting to ensure the correct viewer is used. Additionally, if you’re running Sage locally, make sure the OpenGL libraries are installed on your system to avoid rendering issues.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Milan tetar

79733832

Date: 2025-08-13 04:02:25
Score: 3
Natty:
Report link

I hate that it took the better part of a day to solve this but I finally figured it out. The problem is "/login". Giving VSCode http://10.10.10.55:8888?token=**** works fine and seems to store the token for reuse once you name the server

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

79733828

Date: 2025-08-13 03:40:20
Score: 3.5
Natty:
Report link

In Kafka there is no offset commit for a particular record. It can only commit offset per partition. We had implemented this using our own implementation.

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

79733822

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

Try:

if (Platform.OS === "android") {
  audio.shouldCorrectPitch = true;
  audio.setPlaybackRate(rate);
} else {
  audio.setPlaybackRate(rate, "high");
}

Credit to neiker: https://github.com/expo/expo/issues/37025#issuecomment-3027988621

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

79733806

Date: 2025-08-13 02:50:08
Score: 1
Natty:
Report link

-h -1 avoid using headers. Maybe you should write:

sqlcmd -S SERVERNAME -U TEST -P TEST123 -d TESTDB -Q "set nocount on;select * from ALLDATA" -o "C:\test\test.csv" -s, -W
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Xabi

79733799

Date: 2025-08-13 02:37:05
Score: 1
Natty:
Report link

Just wanted to let people know that I was able to solve this issue by using

comboBox.setVisibleRowCount(items.size());

that runs after every update of the list (I have a listener on comboBox.valueProperty())

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

79733797

Date: 2025-08-13 02:32:04
Score: 10.5
Natty: 5.5
Report link

I am facing similar issue. Is there any fix ?

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): fix ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kamakshi Muthukrishnan

79733796

Date: 2025-08-13 02:28:03
Score: 1.5
Natty:
Report link

_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_CAEaAhAB.401609C2C58990BF91B1C81B4F6AA562D2F8503D25605BF8D129BA992BE43314B45A47AF06369F0DEC1736A5E0B5A230E4E5227D2A74985DCFD68C5149977D64DED53755401D91DDD6F0D6414CDD9ADF17F6115CDFC706EF3D82E68BCF417C5B941486E6F3A29959714CE989C6D6DC1C5AF9FE99BA485489EE944C49BBA6209E6005361E641E7B4FA92869DBC55C221323DF69A7C166665CC82D5A338731B30A51065528B3674BAC5DCE618AF862062669FDC84807A4AC3D08EC1470D9174CB6C2BA50294B8EB95564996DB10FD79C33CB7E9EA2CF692C0535045F466589CA66BD7C2A6CCBB5F2BB64573F9252E2E9B1F3497FA8AF6E4D7D6FAA12B42EA7485D9F5C9E372CBC01E15A0261EB5C7B9316E2831AFAB68A052D2FA564BBCBAD4E30B4DE4E7DABABFE9B4A21ED060232FFE739DA3471453F1CEC15859E91AB4946A176B6AF1A2061F715651625350AF8809723F8071DDEEA78A88D96C9F8C6AE509C618D838E7316473E9502C632D54DA6A0F853BFD1C1329A1F31CF225B5F927EF735265BDFEACC49924961DC699AEEE4E35B181AF93852AD9044DA2EC6FE41EC34F6A44AA3CB024B7B609416BBAF842892E56A832F9EF4B24FE5BAAB0DD6C1BBC91303176CA5A61483C78B4F24816816EB2D4EA712AC7D6ACFFD0D265838C8ED177BB8ACC4143178546F1D1C8F1FD145CE830CE20624464F2964BDC518F7DD4AB64A187F53AE84295A85CD01EA6268DB3814CA1749764C78A75F6EB777663FE07C5895A7AFB25808D275C6C4C6F45F9B974ACC142497E0FA746DC5CDD95DC4C3A836DD001B2D91BA8BE7C984ED9AB287EA46F50B4CEA7F1B9BE9772E64BBD2241BFDF1CC2F6215E6B645B40F78E5C1554B20937385F186068762AD79F4EA64DBFB0D5B5497EE3A11987D4611486958020B36B9154A912E6083F02EA48EE42277107B926E67AC02B6D9066A83239D8EA955D6FB294AF34365C209C5EAC2CA71E79F51404063F3CBBA705D6FEA6465E0D45DDF66758C26C763BE954D789B214AD01940BE32AF75E01E57981D2249A405C20AD67FF831D375AC79E17FEFB898A64B852CE357D78513EDC3AC3752742DBBC2F30707B0C7F5B77470124AA2CFC4E9BBBA061A009F9E40FC3C37563C9D5FAA80EB1774BD54E3B19EB274FDD97D605E74B69B36207B8490B45F0468D1CFA64713D1EA2F6A72F08DA1B9A65F8795AE5C804F212165094198ECF9945FC27DE9C0E47ADD789568

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sikandar Khaksar