79821744

Date: 2025-11-16 20:51:27
Score: 2.5
Natty:
Report link

I was also having the same issue and "terminal.integrated.tabs.hideCondition": "singleTerminal" doesn't seem to work, so i just disabled it all together: "terminal.integrated.tabs.enabled": false and just use the dropdown menu that shows up after disabling tabs

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

79821743

Date: 2025-11-16 20:49:26
Score: 3.5
Natty:
Report link

For .NET 10 try using @rendermode InteractiveWebAssembly(prerender: false) instead of InteractiveWebAssemblyRenderMode(prerender: false) because the rendering pipeline has been changed in .NET 10.

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

79821739

Date: 2025-11-16 20:42:24
Score: 2.5
Natty:
Report link

After a lot of searching, a custom OPEN API is needed with python code in order to search the id correctly.
Same applies with BigQuery but using sql and then a yalm to interpret the data to the agent.

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

79821734

Date: 2025-11-16 20:34:22
Score: 1.5
Natty:
Report link

The issue was my assignment of the postorder. I needed to use push_back in the postorder function instead and reverse after assigning.

for (u32 i = 0; i < m_nodes.size(); ++i) {
    m_nodes[rev_postdom[i]].m_postorder = i;
}
std::reverse(rev_postdom.begin(), rev_postdom.end());
rev_postdom.pop_back();
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DeepQuantum

79821731

Date: 2025-11-16 20:26:20
Score: 2
Natty:
Report link

For anyone who comes here in the future with a similar problem ...

As mentioned before, adding indexes made little difference on it's own, with the query as it stood.

However, I then changed my query to use apoc.coll.different() and apoc.coll.max() and this made a huge difference.

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

79821730

Date: 2025-11-16 20:23:20
Score: 0.5
Natty:
Report link

The setting is called View: Toggle Chat:

enter image description here

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

79821728

Date: 2025-11-16 20:14:18
Score: 1
Natty:
Report link

This -NoWait parameter did it for me

Get-Service -Computer $User -Name $_[0] | Stop-Service -NoWait

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

79821723

Date: 2025-11-16 20:06:15
Score: 0.5
Natty:
Report link

Often, a user might bump into permissions errors when trying to install gems on the same Ruby version that came installed on your OS. That version is usually "protected", it's meant to be used for common operations required by your system and you'd be better off avoiding to rely on it for your apps. Technically, you could do some workarounds, like sudoing the commands to force them to run, but it's not recommended to do so as you can end up messing up with basic configs.

The recommended way is to install Ruby through a package manager (such as Mise, as recommended the official docs link you shared in your original message).

By doing so, you'll install a Ruby version that's isolated from your OS and you should then have permissions to manipulate it as you wish.

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

79821708

Date: 2025-11-16 19:36:09
Score: 4
Natty:
Report link

See also Is equality testing possible between two infinite data structure in Haskell?.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Daniel Wagner

79821694

Date: 2025-11-16 19:13:03
Score: 0.5
Natty:
Report link

Example

In spring boot project, you have three warning with application.properties file:

btn.reporting=Reporting

btn.excel=Export Excel

max.nbr.line=12

Inside resources directory, you create META-INF directory.

Inside META-INF directory, you create : additional-spring-configuration-metadata.json file.

{"properties": [
  {
    "name": "btn.reporting",
    "type": "java.lang.String",
    "description": "'btn.reporting' ihm button to create reporting from datas"
  },
  {
    "name": "btn.excel",
    "type": "java.lang.String",
    "description": "'btn.excel' ihm button to load datas from data base to create Excel file"
  },
  {
    "name": "max.nbr.line",
    "type": "java.lang.String",
    "description": "'max.nbr.line' max number line to print in ihm"
  }
]}


enter image description here

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

79821691

Date: 2025-11-16 19:02:00
Score: 1.5
Natty:
Report link

In 2025 they are now storing the depth map(s) via concatenating multiple JFIFs after the main image. If you split those you can get the original image and the depth maps from Pixel Camera photos. Source and sample code: https://github.com/dragon66/icafe/issues/90#issuecomment-758031710

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Martin Rauscher

79821684

Date: 2025-11-16 18:53:59
Score: 1.5
Natty:
Report link

Godot Officially supports GDscript it's custom programming language and C# which is the industry standard for game development.

You can add plugins to unofficially support programming in python but given the python like nature of GDscript i would just recommend using GDscript. Godot Documentation is well structured and in depth and troubleshooting in a programming language which is not well used by the community will be harder

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

79821682

Date: 2025-11-16 18:51:57
Score: 6 🚩
Natty:
Report link

Brah nodriver's issues are open on github, what the fuck are you talking about? Ask the devs, cuz. I'm pretty sure it's an issue with nodriver

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Faggot Puncher

79821681

Date: 2025-11-16 18:51:57
Score: 3.5
Natty:
Report link

Well, I simply made a right click on the main.java of the Project HomeAutomaterHelper and said under "Build Path" -> "Use as Source Folder". Then I deleted the old src Folder.

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

79821669

Date: 2025-11-16 18:34:53
Score: 1
Natty:
Report link

It's a pretty simple answer that seems to be down to MacOS thinking for itself.

SublimeText saves the file as makefile.cpp, even when I tell it not to append .cpp

Then, when I go and rename the file (removing the .cpp), MacOS doesn't delete the .cpp, it just hides the extension!

So...

I have to 'Get Info', deselect 'hide extensions', then delete the extension there... every time I save the makefile; which kinda defeats the object.

I'll have a poke around and see if I can stop MacOS and SublimeText conspiring against me.

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

79821666

Date: 2025-11-16 18:32:53
Score: 0.5
Natty:
Report link
Option Explicit

Private oldAddress As String

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    On Error Resume Next

    ' Prevent drag fill by breaking the selection extension
    If oldAddress = Selection.Address Then
        Exit Sub
    End If
    
    oldAddress = Selection.Address
End Sub

Private Sub Worksheet_Change(ByVal Target As Range)
    On Error GoTo exitsafe
    If Application.EnableEvents = False Then Exit Sub
    Application.EnableEvents = False

    ' --- Detect autofill drag (Excel always delivers big block change)
    If Target.Cells.CountLarge > 1 And Application.CutCopyMode = False Then
        Application.Undo
        MsgBox "Drag Fill is disabled on this sheet.", vbExclamation
        GoTo exitsafe
    End If
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ahmed Magdy Tpozada

79821649

Date: 2025-11-16 18:04:46
Score: 2.5
Natty:
Report link

Updates from MacOS Sequoia 15.6.1:
In MacOS system: top-left apple icon, click > System settings > Desktop and Dock > "Windows" section > Prefer tabs when opening documents: "Always"
MacOS Settings > Desktop and Dock settings
In JetBrains IDE: Apparance & Behaviour > System settings > Project > Open project in: "New Window"
JetBrains IDE: Apparance & Behaviour, System settings, Project: Open project in: "New Window"

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Miguel M. Serrano

79821641

Date: 2025-11-16 17:57:44
Score: 4
Natty:
Report link

Thanks @laurenz-albe , you're a legend. I take it that once the db hits the threshold (200M in my case) for template1, the autovacuum to freeze is fairly harmless (and quick) because it's a tiny db? And I'm hoping to upgrade to pg18 soon so can't wait to have less maintenance burden.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @laurenz-albe
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Ali

79821638

Date: 2025-11-16 17:54:43
Score: 3
Natty:
Report link

Sorry for the late answer, proj4.defs("EPSG:23031","+proj=utm +zone=31 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs +type=crs");

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

79821632

Date: 2025-11-16 17:46:41
Score: 3
Natty:
Report link

I have an existing link, I should be able to change a calendar event with an existing google meet link. Such a simple feature, Google fails to provide.

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

79821624

Date: 2025-11-16 17:26:36
Score: 4.5
Natty:
Report link

Ohhh ok thank you @user207421 (i don’t know how to reply to people here). I know this example sounds weird, but it’s because my real DB is for school, and i don’t want to put any questions about it here so i don’t get flagged for plagiarism lol, this was the closest example i could think to it.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @user207421
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Theo

79821623

Date: 2025-11-16 17:25:35
Score: 0.5
Natty:
Report link

It seems like this works as expected -- thanks to @mkrieger1:

syllable = pp.Group(C + V + pp.Opt(C + pp.FollowedBy(C)) + pp.Opt(C + pp.FollowedBy(pp.WordEnd())))

Works for gaba, banana, bar, ba:

gaba -> [['g', 'a'], ['b', 'a']]
banana -> [['b', 'a'], ['n', 'a'], ['n', 'a']]
bar -> [['b', 'a', 'r']]
ba -> [['b', 'a']]
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: sventechie

79821622

Date: 2025-11-16 17:25:35
Score: 3.5
Natty:
Report link

Try minapi 24. Worked for me...!

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jibs

79821621

Date: 2025-11-16 17:23:35
Score: 0.5
Natty:
Report link

It seems to be an issue with the TextMate grammar file for TypeScript for VS Code.

It doesn't properly support the extends keyword, here is an open issue portraying the same behavior https://github.com/microsoft/TypeScript-TmLanguage/issues/1048

The workaround you found seems to be working

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

79821610

Date: 2025-11-16 17:07:31
Score: 4
Natty:
Report link

+1 Naim: Thanks for the idea of "semidecidability”!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Geoffrey Warne

79821600

Date: 2025-11-16 16:51:27
Score: 4
Natty:
Report link

I have a similar problem, but since my initial issue was simply organizing multiple classes into a "namespace," this is what I've come up with:

class A:
    pass

class B:
    other = A 

class Foo:
    A = A
    B = B
Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (0.5):
Posted by: nikicat

79821597

Date: 2025-11-16 16:47:26
Score: 1
Natty:
Report link

Python interprets:

[ x1 * ( y3 - y2) + x2 * ( y1 - y3 ) + x3 * ( y2 - y1 )]

as a list, as it is surrounded by square brackets [ ]. That is why your program points out that it is dividing two lists. You may have used them like you would use in math, but the correct way is to use only parenthesis on expressions like this.

So your a should be:

a = ( x1 * ( y3 - y2) + x2 * ( y1 - y3 ) + x3 * ( y2 - y1 )) / (( x1 - x2) * ( x1 - x3) * ( x2 - x3))

Which works properly.

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

79821596

Date: 2025-11-16 16:45:25
Score: 1.5
Natty:
Report link

I also had this problem and i somehow solved it by uninstalling my Antivirus. I used Norton 360 and it got really annoying and slowed my pc down so i uninstalled it and somehow that solved the problem. hope that helps!

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RiddleNeon

79821590

Date: 2025-11-16 16:34:23
Score: 3.5
Natty:
Report link

Check my dm on Reddit, I think I have the answer to this

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

79821588

Date: 2025-11-16 16:31:22
Score: 2.5
Natty:
Report link

Read the this blog for the explanation you seek: https://andreas.scherbaum.la/post/2024-06-19_understanding-vacuum-vacuum-template0-and-transaction-id-wraparound/

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Adrian Klaver

79821583

Date: 2025-11-16 16:22:20
Score: 1.5
Natty:
Report link

I ended up guessing on *forcing* users of my React.js library to enable enhanced wheel-roll scrolling explicitly into every parent group tag they need to. So .scrollTop/Left alone isn't entirely reliable unless you've a width/height to provide the component with.

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

79821572

Date: 2025-11-16 16:15:18
Score: 1.5
Natty:
Report link

All queries are made of intermediate "steps"; by the "programmer"; or the SQL engine. Most queries are just "added to" until they become incomprehensible. If one starts out with using "intermediate" queries and / or "temp tables", the "granularity" makes them more maintainable and re-usable. And surprisingly (or not) will outperform whatever the engine had trouble untangling. I see a lot of "I just wrote the biggest SQL query ever in one statement!" Yes; and that involves stored procedures.

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

79821563

Date: 2025-11-16 15:48:12
Score: 1.5
Natty:
Report link

What finally worked was adding this to the composer.json file:

{
"repositories": [
    {
        "type": "composer",
        "url": "https://repo.packagist.org",
        "options": {
            "ssl": {
                "verify_peer": false,
                "allow_self_signed": true,
                "cafile": "D:/xampp_7_4_33/apache/bin/curl-ca-bundle.crt",
                "capath": "D:/xampp_7_4_33/apache/bin"
            }
        }
    }
]
}

This solution was found in this post: Composer Curl error 60: SSL certificate problem: unable to get local issuer certificate (search for "Composer Specific Solutions").

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: guntersammet

79821555

Date: 2025-11-16 15:39:09
Score: 0.5
Natty:
Report link

That is an issue with the WAS LRU cache, disable it where it corresponds (not Hibernate)

Resources → JDBC → Data sources → [your datasource] → Connection pool properties → Statement cache size

If you analyze the stack trace the issue goes out of hibernate after having done it's job, not because Hibernate needs to do something on JDBC.

Reasons:
  • No code block (0.5):
Posted by: Raul Lapeira Herrero

79821553

Date: 2025-11-16 15:37:09
Score: 1.5
Natty:
Report link

I think my expectations were a bit unusual. I wanted a grid, which auto sizes every column to minimum its own content size (min-content/auto) and afterwards distributed the remaining space in each track between every column in every track.

repeat(auto-fit, minmax(auto, 1fr)

Grid does not seem to support different column sizes across grid tracks. Which kind of makes sense, but I first expected that to be possible.

I thought grid could look at the maximum content size of its items, to know the largest column. Then use that as an automatic value for minimum in minmax. Layout all the columns, then distribute remaining space with 1fr max. Is there a reason something like this is not possible?

repeat(auto-fit, minmax(max-content, 1fr)

The alternative is then using flexbox, using row direction, wrap and cross axis alignment of start or something like that. I guess that is perfectly valid.

But I thought 2D: I should use grid. However in this case flexbox fits, as mdn suggests, since I want to layout from "content out".

grid vs flexbox: grid page

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clockworks

79821547

Date: 2025-11-16 15:24:05
Score: 1
Natty:
Report link

Please do not use AI text generators for rewriting questions (or answers, for that matter). AI generated content is not allowed on Stack Overflow.

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

79821546

Date: 2025-11-16 15:23:05
Score: 1.5
Natty:
Report link

Give your AI a constantly running control loop so it can think even when no one speaks. This loop checks the world state and decides what to do next independently, while the LLM is used only occasionally for planning. Small behaviours, such as movements or reactions, should be handled by simple code, not the LLM.

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

79821544

Date: 2025-11-16 15:21:05
Score: 2
Natty:
Report link

From Source (Linux and Mac)

  1. Download the latest release from https://github.com/cs50/libcs50/releases

  2. Extract libcs50-*.*

  3. cd libcs50-*

  4. sudo make install

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

79821537

Date: 2025-11-16 15:07:01
Score: 1
Natty:
Report link

Best way i found out is to use thic command

open "$(xcrun simctl get_app_container booted com.your.bundle.id data)"

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

79821536

Date: 2025-11-16 15:07:01
Score: 3.5
Natty:
Report link

I had a very similar problem that mostly went away after I increased Corner and End-Cap Vertices from 0 to something higher (like 5)

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

79821535

Date: 2025-11-16 15:06:00
Score: 2.5
Natty:
Report link

This error usually occurs when the schema of our database changes, and indexDB is unable to create the new objectStore. In my case, I upgraded my DB version, and the error disappeared.

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

79821531

Date: 2025-11-16 14:47:56
Score: 1.5
Natty:
Report link

I don't use dd-wrt anymore, because I changed hardware. The firmware beta's are still being built for a large number of devices. The other download page and then beta shows the last bits from the 12th of November, 4 days ago.

How well it is maintained, I don't know. But it's still fresh. https://dd-wrt.com/support/other-downloads/?path=betas%2F2025%2F11-12-2025-r62606%2F

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

79821514

Date: 2025-11-16 14:06:45
Score: 3.5
Natty:
Report link

As what @ihor mentioned, your path may cause the problem, for me it was because of Arabic folder name in path, you need to keep the path valid for console with no quotations.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ihor
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Muhammad Aaref Al-Shami

79821512

Date: 2025-11-16 14:05:44
Score: 0.5
Natty:
Report link

To make it work normally I just had to set my guild_id on my commands, so they are forced for this server only :

@bot.tree.command(guild=guild_id, name='leave', description='Leave vc')
async def leave_call(interaction: discord.Interaction):
    vc = discord.utils.get(bot.voice_clients, guild=interaction.guild)
    if vc and vc.is_connected():
        if isinstance(vc, voice_recv.VoiceRecvClient):
            vc.stop_listening() 
            await vc.disconnect() 
            await interaction.response.send_message("Disconnected.", ephemeral=True)
        else:
            await interaction.response.send_message("Not connected.")

It's now working instantly and the logs returns the good value :

PS D:\MyBot> py main.py
2025-11-11 19:02:49 INFO discord.client logging in using static token
2025-11-11 19:02:50 INFO discord.gateway Shard ID None has connected to Gateway (Session ID: some_session_id).
Connected as My-Bot#1111
7 commands synced on server My(correct)-Guild-ID
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: skrylexx_

79821511

Date: 2025-11-16 14:02:43
Score: 3.5
Natty:
Report link

There is still an issue existing in expo-mail-composer : https://github.com/expo/expo/issues/37740
hope we solve it soon.

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

79821509

Date: 2025-11-16 13:58:42
Score: 3
Natty:
Report link

Take a look at AsyncCoreBluetooth. I think they are doing what you seek for.

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

79821491

Date: 2025-11-16 13:28:33
Score: 4.5
Natty:
Report link

Reducing PostgreSQL CPU load using sqlalchemy

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

79821484

Date: 2025-11-16 13:21:31
Score: 1.5
Natty:
Report link

This is ridiculous.

Our company has tens of thousands of users.

It is way too expensive to fetch all to resolve 1000 of email addresses.

And at the same time Slack has API limits, so we cannot call them one by one.

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

79821482

Date: 2025-11-16 13:20:31
Score: 3
Natty:
Report link

If you use a git, and just made a change to the relevant file, make sure you have 'git add'ed the change.

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

79821471

Date: 2025-11-16 12:50:22
Score: 1
Natty:
Report link

I could not comment on the answer by @Chris, therefore the new post.

The direction command has it's limitations. The directions can only be set when the nodes in the subgraph are not connected to anything outside the subgraph. Else, the top level layout is used.

See: https://docs.mermaidchart.com/mermaid-oss/syntax/flowchart.html#limitation

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Chris
  • High reputation (-1):
Posted by: Spenhouet

79821466

Date: 2025-11-16 12:41:21
Score: 3
Natty:
Report link

Same here, it doesn't bother me that fdroid cannot resolve the host name, i suggest that the fdroid store doesn't display the error

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

79821462

Date: 2025-11-16 12:34:19
Score: 1.5
Natty:
Report link

I'm from Germany.

It doesn't help. I entered my Austin, Texas (for testing purposes) data and was located using https://whatismyipaddress.com/, and it showed me in Germany, even though geo.de was changed.

I then investigated and found out that there are settings/scripts (on servers) that still send the data from the point of entry. While the exact location can't be determined, the country of origin can be identified.

Even with Tor, my home country was correctly displayed in 4 out of 10 cases.

I then used a VPN, and my country was displayed in 1 out of 10 cases.

So the claim that you don't leave any data when browsing via fake IPs or a VPN is a lie. Otherwise, the FBI, BKA, and other agencies wouldn't be able to track down and arrest people on the dark web. It's only a matter of time, and anyone who believes that Firefox, Chrome, VPNs, or internet providers don't have and send data from the original location is very gullible.

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

79821457

Date: 2025-11-16 12:27:17
Score: 1
Natty:
Report link

That happend because PrimeNg table doesn't have all the data as you do slicing on the first lazy event you can pass the whole data to the table and use paginator property with the table, as all the operations happens from the client side.

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

79821445

Date: 2025-11-16 12:19:14
Score: 3.5
Natty:
Report link

i get same problem in Windows with Rider and MAUI 10 with this setup

first img

i fix by adding in Settings | Toolset and Build | MSBuild global properties the params: AndroidSdkDirectory and JavaSdkDirectory with the same path of default SDK and JAVA in first screenshot

second img

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i get same problem
  • Low reputation (1):
Posted by: fabio1999ita

79821442

Date: 2025-11-16 12:17:14
Score: 1
Natty:
Report link

As @pilchard correctly commented in What are the differences between a TreeWalker and a NodeIterator?

The differences are clearly discussed in the spec: W3C: Document Object Model Traversal"The TreeWalker interface provides many of the same benefits as the Iterator interface. The main difference between these two interfaces is that the TreeWalker presents a tree-oriented view of the nodes in a subtree, and an Iterator presents a list-oriented view. In other words, an Iterator allows you to move forward or back, but a TreeWalker allows you to move to the parent of a node, to one of its children, or to a sibling."

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @pilchard
Posted by: Woodz

79821441

Date: 2025-11-16 12:16:13
Score: 3.5
Natty:
Report link

geolocator supports all platforms :
https://pub.dev/packages/geolocator/example

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
Posted by: Anh-Tuan Mai

79821440

Date: 2025-11-16 12:12:12
Score: 6
Natty:
Report link

Thanks for that extensive reply, I have up, and also somehow hit the downvote by mistake! Can't be changed unfortunately.....I'm really grateful regardless for the responee

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adrian M

79821436

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

If you programming language has functions like max - min, it's easy to do it in that way

def abs(a, b):
  return max(a, b) - min(a, b)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fatih Erikli

79821434

Date: 2025-11-16 11:52:06
Score: 11.5 🚩
Natty: 5.5
Report link

Did you have any luck with this djack109? I'm facing a very similar problem. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (3): Did you have any luck
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a very similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you have any
  • Low reputation (0.5):
Posted by: Warren

79821432

Date: 2025-11-16 11:51:05
Score: 1.5
Natty:
Report link

You can do offline positioning using Bluetooth beacons. With the Web Bluetooth API, a web app can scan nearby beacons, read their signal strength (RSSI), and estimate your position on a pre-made map, while combining barometer and motion sensors to track floor level and movement for (x, y, z) coordinates. Accuracy depends on beacon placement, calibration, and environmental factors like walls or interference, and RSSI-based positioning is inherently noisy, typically only accurate to a few meters. Web Bluetooth also has browser and platform limitations, and sensor-based tracking can drift over time without recalibration, so while this approach works in principle, it is not highly precise.

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

79821429

Date: 2025-11-16 11:48:04
Score: 4.5
Natty: 5.5
Report link

Many thanks - been tearing my hair out over this!

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

79821426

Date: 2025-11-16 11:43:02
Score: 1
Natty:
Report link

There is only one index on the table which is a primary key. There is nothing else.

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

79821416

Date: 2025-11-16 11:33:00
Score: 2.5
Natty:
Report link

I think that you asked 2 distinct questions:

Is there a way to implement fonts not existing in Google fonts into Google Slides/Docs/…?

Answer: No.

... how we could solve this problem without completely switching to Microsoft?

Answer: LibreOffice will allow you to use "external" fonts (that do not exist in Google Fonts) in your presentations and documents.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: jaimet

79821412

Date: 2025-11-16 11:25:58
Score: 3.5
Natty:
Report link

I think you have ONLY 8 branches!

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

79821406

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

The best practice is to use COPY, which you did. You should investigate the slowness, which looks abnormal. Do you have 57 GIN indexes or a slow trigger on the table?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Laurenz Albe

79821402

Date: 2025-11-16 11:00:52
Score: 2
Natty:
Report link

Why aren't you using the PostgreSQL built-in COPY funktion? I would expect it to be an order of magnitude faster than what you are doing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why aren't you
  • High reputation (-1):
Posted by: Jonathan Willcock

79821381

Date: 2025-11-16 10:06:41
Score: 0.5
Natty:
Report link

For anyone reaching here - The problem was that the logstsash.db file was stuck and somehow corrupted. I deleted it, and then it was automatically created again correctly and logs started flowing.

For anyone debugging this kind of issue:

There was no error indication on this problem in my application logs or in the different ELK components logs. All the logs I looked at had no errors or warnings. Only after following all the pipeline carefully and understanding the flow I learned about this file that is used for synchronization and I noticed in my environment it was not being updated at all. Sadly, I have lost all the logs from the gap between the time it stopped and until I deleted it. I think there probably is some way to re-scan the files with the data to index them (but I will leave this issue for a different question)

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

79821361

Date: 2025-11-16 09:31:33
Score: 1
Natty:
Report link
using System.Collections.ObjectModel;
using System.Net.Http;
using System.Text.Json;
using System.Text.Json.Serialization;

using Future.UX;

public partial class VMMeetman
{
    // Declared an HttpClient instance?
    private static readonly WBSMeeto? _apiService;

    //is now bindable to the UI as Meetmans property
    private ObservableCollection<Meetman>? __meetmans;

    // Creating instances of Meetman entity attributes for further binding?
    public async Task GetDataAsync__()
    {
        // Connect to HttpClient and retrieve data from the API?
        // Observable collection is now a property which can be Bound to the UI
        Meetmans = new ObservableCollection<Meetman>(await _apiService!.GetMeetmanAsync());

        // Trying to serialize the received data?
        string json = JsonSerializer.Serialize(Meetmans, options: new JsonSerializerOptions { WriteIndented = true });


        // Am I doing it right, and what should I do next?
    }
}

//class representing the Meetman entity with __field notifiaction
//Once built, this class can be bound to the UI as Properties i.e. Meetman.Iname, Meetman.Sname, etc.
public partial class Meetman
{
    #region Entity Attributes
    private int __MeetmanId;
    private string? __Iname;
    private string? __Sname;
    private string? __Tname;
    private string? __Phnumb;
    private string? __Datebirth;
    private string? __Location;
    private string? __Email;
    private string? __IsMan;
    private string? __IsWooman;
    #endregion
};


public class WBSMeeto
{

    private readonly HttpClient _httpClient;
    private readonly JsonSerializerOptions _jsonOptions;

    public WBSMeeto()
    {
        _httpClient = new HttpClient()
        {
            BaseAddress = new Uri("http://my connection string")
        };

        _jsonOptions = new JsonSerializerOptions
        {
            PropertyNameCaseInsensitive = true,
            DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
            WriteIndented = true
        };
    }

    public async Task<List<Meetman>>? GetMeetmanAsync()
    {
        var response = await _httpClient.GetAsync(_httpClient.BaseAddress);
        response.EnsureSuccessStatusCode();
        var json = await response.Content.ReadAsStringAsync();
        return JsonSerializer.Deserialize<List<Meetman>>(json, _jsonOptions);
    }
}
Reasons:
  • Blacklisted phrase (2): what should I do
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard Harrison

79821357

Date: 2025-11-16 09:21:30
Score: 3
Natty:
Report link

A tip - use print(df.columns) before trying df.usecols. This shows the headers, more importantly it shows any leading spaces which may not be obvious.

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

79821354

Date: 2025-11-16 09:13:28
Score: 3.5
Natty:
Report link

Sorry for the extremely late answer :-)
see example in this
infinite image carousel

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

79821353

Date: 2025-11-16 09:10:28
Score: 2.5
Natty:
Report link

It could happen if you are using delete by query or update by query. Are you using them ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: dadoonet

79821346

Date: 2025-11-16 08:52:23
Score: 0.5
Natty:
Report link

Simply remove EnableSession = true since you're not actually using session data:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static string SayHello(string name)
{
    return "Hello " + name;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mina Golzari Dalir

79821343

Date: 2025-11-16 08:41:21
Score: 1
Natty:
Report link

I could fix it by manually removing the proxy settings from the global gradle.properties file which is located in C:\Users\YouUserName\.gradle\gradle.properties

enter image description here

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

79821334

Date: 2025-11-16 08:02:11
Score: 7 🚩
Natty:
Report link

using Flask men !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1.5):
  • Filler text (0.5): !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Low entropy (1):
  • Low reputation (1):
Posted by: Miron933

79821333

Date: 2025-11-16 08:01:11
Score: 1
Natty:
Report link

As of 16th of November 2025, looks like setting SOCS cookie to CAI does the job: you then get Set-Cookie response headers which you should include in the next request to bypass the screen.

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

79821330

Date: 2025-11-16 07:52:08
Score: 5
Natty: 6.5
Report link

I have explained all the details about how to use the Dynamics 365 free trial in this blog:
https://medium.com/@imtejassingh/how-to-set-up-and-explore-microsoft-dynamics-365-free-trial-baa39a57d09f?postPublishedType=initial

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tejas singh

79821329

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

You can just add the below line in settings.json file:

"renderValidationDecorations": "off"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: G.Govardhan

79821322

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

the most common causes of OpenContexts spikes in Elasticsearch 6.8, even if you’re not using Scroll Queries or Point-in-Time (PIT).
In Elasticsearch, an “Open Context” is created whenever a search requires a point-in-time snapshot of the data. Scroll and PIT make this obvious, but regular searches can also create contexts depending on how they are executed.

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

79821316

Date: 2025-11-16 06:48:55
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lwin Ko

79821314

Date: 2025-11-16 06:35:53
Score: 2.5
Natty:
Report link

Ek 3D racing kar bnao jismein infinity sadak Ho sadak ke donon taraf hariyali Ho ped paudhe Ho mountain Ho dhimi dhimi Surya ki Roshani Ho aur sadak ke bich mein safed line ho left side se traffic jaen aur right side se rah paye Aisa 3D game ka HTML code do

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

79821305

Date: 2025-11-16 05:56:44
Score: 1.5
Natty:
Report link

Open cmd in your script's folder (as before: in File Explorer, click the address bar, type "cmd", and press Enter).

Instead of typing just scriptname.py, type this exactly (replace scriptname.py with your actual file name):

python scriptname.py

Press Enter. The script should now run directly in the current cmd window, without popping up a new one that disappears

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Håkansson

79821289

Date: 2025-11-16 05:02:33
Score: 1.5
Natty:
Report link

I use Ubuntu 24.04 LTS and solved it by adding an allow rule in my firewall using the below command

sudo ufw allow 8081/tcp
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SR_Warrier

79821267

Date: 2025-11-16 03:53:18
Score: 13.5 🚩
Natty: 6.5
Report link

@BrightLights I am running into same issue, were you able to solve it? Please help me.

See this for details: https://www.reddit.com/r/reactnative/s/hQQ5EfO1VR

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @BrightLights
  • Low reputation (1):
Posted by: Mihir Patel

79821264

Date: 2025-11-16 03:36:14
Score: 1.5
Natty:
Report link

The real answer is to reinstall git for windows, but this time check the box for ASLR exclusion (currently the last setting before the actual "install" button). Unlike the accepted answer, it actually worked for my use case and will work for all other use cases.

Why? The ASLR security feature breaks all these unix functions and everything built on top of them.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Dirk Bester

79821263

Date: 2025-11-16 03:35:14
Score: 3
Natty:
Report link

Hey guys I was battling with the same issue for hours. If you are using typescript, you need to set “noEmit”: false in the tsconfig.json compilerOptions property. This will make sure that when we run “npm run build” or “npm run build:watch” in the firebase project directory, it converts the type script code to java code.

Reasons:
  • RegEx Blacklisted phrase (1): Hey guys
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Olise

79821262

Date: 2025-11-16 03:33:14
Score: 1
Natty:
Report link

This is what fixed it for me.

If you're using a messaging service, which you have to now for A2P, then the FROM variable in the REST call should be the Messaging SID, not a phone number...

This solution is burried in the documentation and not mentioned anywhere in tutorials...

https://help.twilio.com/articles/17894300978843-FAQ-Why-Does-the-Send-Wait-for-Reply-Widget-Stop-Collecting-the-Users-Response-and-Creates-a-New-Execution-for-US-A2P-Registered-10DLC-Numbers

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: timh

79821256

Date: 2025-11-16 03:06:08
Score: 1.5
Natty:
Report link

The issue is that the windows security feature ASLR prevents these unix commands from working. They are not written with ASLR in mind so they break.

The simple fix is to reinstall git for windows. The final setting before you can click install is a checkbox for disabling ASLR for all the commands. Check it. Now the underlying fork will work. Thus all of git once again works.

You can also laboriously do it manually like @Gabriel Bercea above, but this is simpler and will not miss some use case.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @above
Posted by: Dirk Bester

79821251

Date: 2025-11-16 02:59:06
Score: 0.5
Natty:
Report link

Have you checked out this answer?

Disclosure: I am the author

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: ray

79821245

Date: 2025-11-16 02:14:57
Score: 0.5
Natty:
Report link

It is a strange habit to delete postings without any reason. Happy to repeat that use of PyWin32 and COM wrapping is a solution. Then you can use the normal EXCEL interface (and object methods) directly like you do in VBA. Of course you need to have an EXCEL installation for this to work.

To support such tasks I wrote an EXCEL wrapper that allows to use the EXCLE API even in a pythonic way i. e. you may call the saveas method of a workbook as SaveAs as defined, as saveas or as save_as. All done automatically. Same should work for the parameters. If you consequently use this, one may even won't notice you are using pure EXCEL API in your Python code. With that you only have the overhead of COM interfacing but not all internal file formattingt logic in openPyXL in Python. I think this has a substantial impact on runtime.

https://github.com/dornech/utils-msoffice

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dornech

79821241

Date: 2025-11-16 01:52:52
Score: 0.5
Natty:
Report link
<!--
Source - https://stackoverflow.com/q
Posted by corrieg
Retrieved 2025-11-16, License - CC BY-SA 4.0
-->

{
    "editor.accessibilitySupport": "off",
    "window.zoomLevel": 0,
    "liveServer.settings.donotShowInfoMsg": true,
    "liveServer.settings.donotVerifyTags": true,
    "[html]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "workbench.iconTheme": "material-icon-theme",
    "editor.minimap.enabled": false,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "workbench.colorTheme": "Night Owl",
    "[json]": {
        "editor.defaultFormatter": "vscode.json-language-features"
    },
    // "python.jediEnabled": false,
    "[python]": {

    },
    "editor.fontFamily": "Input",
    "editor.fontSize": 16,
    "[php]": {
        "editor.defaultFormatter": "kokororin.vscode-phpfmt"
    },
    "liveSassCompile.settings.autoprefix": [],
    "liveSassCompile.settings.formats": [
        {
            "format": "compact",
            "extensionName": ".css",
            "savePath": "/dist/assets/css"
        }
    ],
    "liveSassCompile.settings.generateMap": false
}
Instagram id men its me tiki
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sabya Kumar

79821237

Date: 2025-11-16 01:46:51
Score: 1.5
Natty:
Report link

In addition to using the like expression there is another similar way:

.join( b.alias("b"), col("a.city").contains(col("b.city")) )

because the contains function also works as a join condition.

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

79821232

Date: 2025-11-16 01:26:47
Score: 3.5
Natty:
Report link

its now re-posted here: Calculating the percent of time spent in a country

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

79821230

Date: 2025-11-16 01:23:46
Score: 2
Natty:
Report link

sure, I will repost it - I will make a new question

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

79821227

Date: 2025-11-16 01:14:44
Score: 4.5
Natty:
Report link

thank you! I think moving in_country might be beneficial in case this situation comes up?

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: stats_noob

79821225

Date: 2025-11-16 01:11:42
Score: 2.5
Natty:
Report link

A,B,C,D,E,F,G,,...

AA,AB,AC,AD,AE,AF..

AAA,AAB,AAC,AAD,AAE,AAF,AAH

This sequence would contain every possible word to be said, everything in jibberish.

This dictionary would be unforgiving, as the stuff that made sense would be distributed over a extremely long scale.//dictionary_of_sequencing_last_letters//

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

79821217

Date: 2025-11-16 00:50:38
Score: 1
Natty:
Report link

Ah, you're missing self in your update() method! That's why Python can't find your instance variables.

Your method should look like this:

def update(self):
    self.velocity = self.velocity.add(self.acceleration)
    self.position = self.position.add(self.velocity)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EchoOverflow

79821205

Date: 2025-11-16 00:05:29
Score: 0.5
Natty:
Report link

I'd start by opening the pdf in Word, which would likely preserve the formatting of the tables and then, assuming that the pdf tables were rendered as Word tables, use VBA to iterate them and copy them into an Excel worksheet.

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

79821204

Date: 2025-11-16 00:04:29
Score: 2.5
Natty:
Report link

Shoutout to the ethical hackers (jbee spy team, who saved me from a scam, they recovered my money, thay brought my account back, and handled the police/bank calls. Real lifesavers. you can contact them via email [email protected], Telegram +447456058620.

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

79821203

Date: 2025-11-16 00:03:28
Score: 2
Natty:
Report link

Problem was caused by other folder with same name, for some reason VS Code can distinguish modules only by names. To solve this, i just deleted other /core directory and it does work properly now,

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Иван Чернецов

79821196

Date: 2025-11-15 23:38:23
Score: 5
Natty:
Report link

I have... 04-Nov-2025 19:43:36 UTC ...and cannot convert that to a date that Excel recognizes. Not an Excel expert so can you provide simple instruction to get rid of the UTC. Flash fill doesn't work and I'm a baby with formulas but learning!

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Krista Simonetti