79724449

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

actually, AutoLISP is specialized language for CAD programs, so it is not compatible with CommonLISP in many ways.

the reason that the codes generated by AI are inaccurate is that there are relatively small autolisp codes, so the AI tries to use some codes of CommonLISP, but it is not compatible.

I recommend you to use VSCode with AutoLISP Extension, because it will colorize available autolisp function and keywords into pink

sample

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

79724439

Date: 2025-08-04 02:45:57
Score: 3.5
Natty:
Report link

I tried solution of @Sean Allred, and it worked like a charm.

I used below url replacing the earlier url's IP with hostname.

http://10.12.15.67:9090/svn/DFTProjects/

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Sean
  • Low reputation (1):
Posted by: Atha-rv

79724437

Date: 2025-08-04 02:40:57
Score: 1.5
Natty:
Report link

you need to checkout to

chatwoot/.env

inside it there are smtp setting, i use resend, they works fine

below for your reference:
SMTP_DOMAIN=smtp.resend.com

# Set the value to "mailhog" if using docker-compose for development environments,

# Set the value as "localhost" or your SMTP address in other environments

# If SMTP_ADDRESS is empty, Chatwoot would try to use sendmail(postfix)

SMTP_ADDRESS=smtp.resend.com

SMTP_PORT=587

SMTP_USERNAME=resend

SMTP_PASSWORD=re_yourpwd

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

79724435

Date: 2025-08-04 02:32:55
Score: 3
Natty:
Report link

The first thing that comes into my mind is the combination between the header and and the dock type

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

79724421

Date: 2025-08-04 02:14:50
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Archulan

79724400

Date: 2025-08-04 01:26:40
Score: 2
Natty:
Report link
  1. if etcd is deployed with milvus, it is recommended to use SSD disk. Sata throughput is too small and may hit into many issues.

  2. your log didn't see and solid information. we will need longer logs and check why the node crash. if you see etcd slow, that usually means you need better disk for etcd.

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

79724398

Date: 2025-08-04 01:21:39
Score: 0.5
Natty:
Report link

As mentioned above by Nate, the ucontext structure defined for use in kernel space does not match the ucontext structure defined for use in user space. Therefore, it is not possible to simply copy them byte by byte. Instead, you can do this member by member:

void from_kernel(ucontext_t *context, const ucontext_t *stored_context)
{
    context->uc_flags = stored_context->uc_flags;
    context->uc_link = stored_context->uc_link;
    memcpy(&context->uc_stack, &stored_context->uc_stack, sizeof(stack_t));
    memcpy(&context->uc_mcontext, &stored_context->uc_mcontext, sizeof(mcontext_t));
    memcpy(&context->uc_sigmask, &stored_context->uc_sigmask, sizeof(sigset_t));
}

, where:

Here is a link to a working example.

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

79724393

Date: 2025-08-04 01:08:36
Score: 2.5
Natty:
Report link

I had multiple <p-confirmdialog /> at different places, keeping this in the layout file and deleting from every else place helped me fix this issue.

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

79724386

Date: 2025-08-04 00:40:30
Score: 2
Natty:
Report link

You probably want cards.min.css. That should get you 90% of the way there. You'll probably also want some additional css - themes provide their own, along with additional HTML wrapping around the content, so it isn't going to be as simple as just swiping the css from the theme unless you'll also replicate the html structure.

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

79724384

Date: 2025-08-04 00:37:29
Score: 1.5
Natty:
Report link

Be aware of different notation in stat_smooth/geom_smooth : fct = L.4
and in drm: fct = LL.4

It tooks me an hour to notice ...

So this gonna work as intended:

enter image description here

ggplot(test_data, aes(x = Conc, y = Response )) +
  geom_point() +
  stat_smooth(
    method = "drm",
    method.args = list(
      fct = L.4()      #←----------------------------------------------------
    ),
    se = FALSE
  )+
  scale_x_continuous(trans="log10")
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DJBio

79724382

Date: 2025-08-04 00:34:28
Score: 3
Natty:
Report link

I've just realized that the composables that i imported are from wearOS, so keep that also in mind

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

79724379

Date: 2025-08-04 00:25:27
Score: 2
Natty:
Report link

You can integrate MoEngage in flutter using moengage_flutter: ^10.0.1. It provides support for both Android and iOS, but the platform specific setup is still required for each.

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

79724374

Date: 2025-08-04 00:09:24
Score: 0.5
Natty:
Report link

I still didn't find anywhere a reason for this (ok, didn't search that hard), but I guess that this might be related to anything created inside a testing session being cleaned after execution. Of course, for input stuff, this is a headache.

So far my best way to block that was by explicitly denying permissions to delete under Windows security properties tab. You must deny it on the directory, not on the file itself. I have denied it to Everyone, but, denying it only for your own user might have the same effect.

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

79724364

Date: 2025-08-03 23:14:12
Score: 0.5
Natty:
Report link

Example

procedure Test; 
var   b: Boolean; 
begin   
if b then  // undefined behavior — b is garbage    
 ShowMessage('b is true!'); end; 

Always write:

procedure Test; 
var   b: Boolean;
 begin  
 b := False; <<<<<<<<<<<<<
  if b then ... 
end; 

I recommend ever declare values in initialization..

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ezequiel Menegás

79724363

Date: 2025-08-03 23:11:12
Score: 3.5
Natty:
Report link

Ok, as pointed out by Sergey, iOS doesn't support the share_target feature. What a shame... :-(

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

79724362

Date: 2025-08-03 23:11:11
Score: 5
Natty:
Report link

I'm using VS code and having the same issue. Someone had said that it is because VS code is linked to an online server and that makes things cloudy. I followed the advice on this No Window Displayed by Tkinter in VSCode
but I just found myself on a new tab that couldn't do anything for me. I still that what is posted in think this link is onto somthing.

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: jacob 6823

79724355

Date: 2025-08-03 22:50:07
Score: 2
Natty:
Report link

You can find an example from a snippet in their Blockchain Interaction section:

const address = await modal.subscribeAccount((state) => state);

https://docs.reown.com/appkit/javascript/core/installation#blockchain-interaction

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

79724346

Date: 2025-08-03 22:18:00
Score: 5
Natty:
Report link

I have built the C code with the CLang compiler.

How do I tell the Swift Code about the foo symbol? That kind of is my question.

In XCode on the Mac you just include a c file in the project and voila! It ask you if you want to have a bridging header, you say yes and it's done.

oh well, I have been doing some reading since yesterday and realize that I have to do some kind of package, and that I have to know how git works as well. I have seen a number of posts but it is clear as mud. Looks lot more complicated than to learn Swift in the first place :(

Reasons:
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): I have to do
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31204927

79724341

Date: 2025-08-03 22:04:58
Score: 1
Natty:
Report link
const Alexa = require('ask-sdk');

const GuardarNomeIntentHandler = {
  canHandle(handlerInput) {
    return handlerInput.requestEnvelope.request.type === 'IntentRequest'
      && handlerInput.requestEnvelope.request.intent.name === 'GuardarNome';
  },
  handle(handlerInput) {
    const nome = handlerInput.requestEnvelope.request.intent.slots.nome.value;
    // Guardar o nome em um banco de dados ou em uma variável
    return handlerInput.responseBuilder
      .speak(`Nome guardado com sucesso!`)
      .getResponse();
  },
};

const ObterNomeIntentHandler = {
  canHandle(handlerInput) {
    return handlerInput.requestEnvelope.request.type === 'IntentRequest'
      && handlerInput.requestEnvelope.request.intent.name === 'ObterNome';
  },
  handle(handlerInput) {
    // Obter o nome guardado
    const nome = 'Nome guardado'; // substituir com o nome guardado
    return handlerInput.responseBuilder
      .speak(`Seu nome é ${nome}`)
      .getResponse();
  },
};
Reasons:
  • Blacklisted phrase (1): de dados
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zé Roberto Cluizy

79724340

Date: 2025-08-03 22:03:58
Score: 2
Natty:
Report link

I did this and it worked perfectly fine so i guess it's a good solution for a quick install, the docs for installing tailwind from thweir own page weren't that usefull

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

79724338

Date: 2025-08-03 21:58:56
Score: 3
Natty:
Report link

Thanks for sharing that! It looks like you're working with FastAPI and Pydantic, and you're running into an issue where nested models aren't showing up correctly in the response. Let's break it down and fix it. 🔧

🧩 Problem Summary

You're defining a response model like this:

The issue is with this line:

data: BaseModel | None = None

Using BaseModel as a type hint doesn't tell Pydantic what specific model to expect. It needs a concrete subclass of BaseModel to properly serialize the nested data.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cnutn fire

79724336

Date: 2025-08-03 21:53:54
Score: 11.5
Natty: 5
Report link

how do you fix it? I have the same problem

ruby -v 3.4.5
pod 1.16.2
flutter 3.32.8
dart 3.8.1
devtools 2.45.1

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (2.5): do you fix it
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): how do you fix it
  • Low reputation (0.5):
Posted by: EagleCode

79724325

Date: 2025-08-03 21:32:49
Score: 1.5
Natty:
Report link

The ternary operator may be used for assigning directly a value to a key of an associative array, but it is not possible to generate the key name itself by this way !

For such a scenario, it is better to append (or not) a key=>value as a whole, to the array, if a condition is true. Of course, that condition can be evaluated with a ternary operator.

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

79724324

Date: 2025-08-03 21:31:49
Score: 0.5
Natty:
Report link

The full prompt history is saved in sql databese used by cursor. Unfortunately I do not know, how to check if it was approved or not. Never searched or needed that. Maybe there is separate field for that.

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

79724320

Date: 2025-08-03 21:12:45
Score: 1
Natty:
Report link

DotNetZip is now deprecated (with vulnerabilities), presumably in favor of System.IO.Compression.

However, neither ZipFile, nor ZipArchive have any way to add/update entries except via filename or stream. This works well for standard usage, but does not work well for the likes of ODF/ODS files (which are zip files). In particular, LibreOffice depends on having the manifest be the first file, but any update of a file using ZipArchive re-orders the file set and breaks LibreOffice (if the manifest is not first entry).

No-one on the interwebs seems to have run into this problem and the simplest work around I have figured, so far, is to extract the original odf/ods file to a temp folder, update the files as required, and then zip them back up into the, newly initialized, original odf/ods file (maintains the original create time).

Would be interested any simpler methods.

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

79724314

Date: 2025-08-03 21:02:42
Score: 2.5
Natty:
Report link

You will probably be interested in the Xec project. It allows you to run ts/js scripts outside of the npm package (without package.json and node_modules) by using its own implementation of loading modules from CDN.

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

79724313

Date: 2025-08-03 21:02:42
Score: 2
Natty:
Report link

The best option is to follow the official instructions and select the required components: https://dev.epicgames.com/documentation/en-us/unreal-engine/setting-up-visual-studio-development-environment-for-cplusplus-projects-in-unreal-engine

enter image description here

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

79724311

Date: 2025-08-03 20:56:41
Score: 0.5
Natty:
Report link

Try to change "\Safety Docs\Training (" to "/Safety Docs/Training (".

Then avoid using Dir if it doesn't work as mentioned in comments.

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

79724310

Date: 2025-08-03 20:54:40
Score: 4.5
Natty:
Report link

The reason your password didn't work is because you started your password with a space, so your password was "(space)fucku" not just "fucku" or "_fucku"

Funny error, for future users, your password is everything after the ==

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anonymouscacti

79724308

Date: 2025-08-03 20:51:39
Score: 2
Natty:
Report link

Try installing @types/cors package.

I believe its because if you look into the node package cors index.js is an IFEE so the value, not the function, is exportable. Installing the types looks to give the TS compiler a function to export.

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

79724302

Date: 2025-08-03 20:26:34
Score: 3.5
Natty:
Report link

Use Xec - Universal Command Execution for TypeScript, a young but ambitious project.

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

79724299

Date: 2025-08-03 20:19:33
Score: 1
Natty:
Report link

It shows only three because you have two "B", so it takes unique letters,

instead of

'a': ['A', 'B', 'C', 'B'],

write

'a': ['A', 'B', 'C', 'D'],

So replace last 'B' with 'D' or with any other letter, once they are unique, you will see four bars.

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

79724298

Date: 2025-08-03 20:14:31
Score: 0.5
Natty:
Report link

You've run into a classic and frustrating quoting issue with the Drive API's query language. Your approach isn't wrong; you're hitting a limitation of the API's parser.


The Problem

The query parser has trouble distinguishing between the single quotes that delimit your search string and the literal single quotes that are part of the filename, especially when they appear at the very beginning or end of the name.

Your first query works because the quote is in the middle of the name:

name = 'test \' folder'

The parser correctly identifies test ' folder as the string literal.

Your second query fails because the escaped quotes are at the edges:

name = '\'test folder\''

The parser gets confused here and can't reliably interpret this as a search for the literal string 'test folder'.


The Solution

You are on the right track. The most reliable way to handle this specific edge case is to use the contains operator instead of the exact match =.

Here is the correct query:

Plaintext

'0AMbhVdUCBuc8Uk9PVC' in parents and name contains '\'test folder\'' and mimeType = 'application/vnd.google-apps.folder' and trashed = false

The contains operator seems to be more robust in handling these escaped characters.

Important Caveat: As you noted, contains can match substrings (e.g., it would also find a file named "'test folder' (copy)"). Your strategy of filtering the results on the client side after fetching them is the perfect way to ensure you get an exact match.

So, to summarize: Yes, this is a known issue, and your workaround of using contains and then filtering the results yourself is the correct and recommended approach.

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

79724297

Date: 2025-08-03 20:12:30
Score: 2.5
Natty:
Report link

OK I did what you wanted to do in this stackblitz

See if this helps

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

79724289

Date: 2025-08-03 20:00:27
Score: 2.5
Natty:
Report link

Bit late perhaps, but I ended up here while working on a fork of this:
https://github.com/matejker/everystreet

The only thing you would have to change for your application is the custom way filter.

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

79724273

Date: 2025-08-03 19:20:18
Score: 3
Natty:
Report link
header 1 header 2
cell 1 call 3
cell 4 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Furkan Ali

79724269

Date: 2025-08-03 19:14:16
Score: 0.5
Natty:
Report link

i am still geting 0 , even if i try to run as admin, getled, forcefeedback etc working but not showing wheel axis

enter image description here

#include <iostream>
#include <windows.h>
#include <map>
#include <dinput.h>
#include <string>
#include <algorithm>
#pragma comment(lib, "LogitechSteeringWheelLib.lib")
#include "LogitechSteeringWheelLib.h"

int main()
{
    DIJOYSTATE2* controller_state = NULL;
    DIJOYSTATE2ENGINES* last_state = NULL;
    std::map<std::string, int> current_state_map;
    int controller_idx = 0;
    HWND h_wnd = GetConsoleWindow();
    int range = 300;



 

    while (!LogiSteeringInitializeWithWindow(true, h_wnd)) {
        printf("try again.\n");
    }
    const int deadZone = 500;
    while (true) {
        if (!LogiUpdate()) {
            continue;
        }
       
        while (LogiIsConnected(controller_idx)) {
            
            LogiSteeringInitialize(true);
            std::cout << LOGI_MAX_CONTROLLERS << std::endl;
            wchar_t deviceName[128];
            LogiGetFriendlyProductName(controller_idx, deviceName, 128);
           
            if (LogiIsDeviceConnected(controller_idx, LOGI_DEVICE_TYPE_WHEEL) == 1)
            {
                std::cout << LogiIsModelConnected(controller_idx,  LOGI_MODEL_G29) << std::endl;;
                std::wcout << deviceName << " \ndevice id " << controller_idx << std::endl;
               
               
             
                
                // Read current wheel position
                controller_state = LogiGetState(controller_idx);
                last_state = LogiGetStateENGINES(controller_idx);

                std::cout << "-------------" << std::endl;
                std::cout << controller_state->lX << std::endl;
                std::cout << controller_state->lY << std::endl;
                std::cout << controller_state->lRz << std::endl;
                std::cout << "-------------" << std::endl;
                std::cout << last_state->lX << std::endl;
                std::cout << last_state->lY << std::endl;
                std::cout << last_state->lRz << std::endl;
                std::cout << "-------------" << std::endl;
                system("cls");

               
                system("cls");
                


            }
          


        }
        std::cout << "unconnected\n";
        LogiSteeringShutdown();
        return 0;

    }

}

enter image description here

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

79724260

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

What about using lambda function like this?

class FormCreatePlace(forms.ModelForm):    
    category = forms.ModelChoiceField(queryset=Category.objects.all())
    (...)

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.fields['category'].label_from_instance = lambda obj: obj.name
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: binaryEcon

79724254

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

If you are working with ai-sdk, you will likely have your environment file named as

.env.local

which Vercel can't read. I renamed it to

.env
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Syed Ayan Ali

79724251

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

Hey I'm very inexperienced. So this might be embarrassing.
But I think I got the same issue as you and I can't fix it anyhow. Very frustrating, not Cursor, not Grok, not ChatGPT can help.
I tried to implement your solution, but it still wouldn't work. These are the error messages:
Error Messages
I think the Packages are added properly as well.
Packages
Do you see any reason why it might still not work?

import Foundation
import AVFoundation
import AudioKit
import AudioKitEX

@MainActor
class AudioManager: ObservableObject {
    @Published var detectedNote: String = "No note detected"
    @Published var detectedFrequency: Double = 0.0
    @Published var audioLevel: Double = 0.0
    @Published var spectrumData: [Double] = []
    @Published var statusMessage: String = "Ready"
    
    private var audioEngine: AudioEngine?
    private var inputNode: Node?
    private var pitchTap: PitchTap?
    private var fftTap: FFTTap?
    private var isListening = false
    
    init() {
        setupAudioKit()
    }
    
    private func setupAudioKit() {
        // Initialize AudioKit engine
        audioEngine = AudioEngine()
        
        guard let audioEngine = audioEngine,
              let input = audioEngine.input else {
            statusMessage = "Failed to initialize audio input"
            return
        }
        
        inputNode = input
        statusMessage = "AudioKit initialized"
    }
    
    func startListening() {
        guard !isListening else { return }
        guard let audioEngine = audioEngine else {
            statusMessage = "Audio engine not initialized"
            return
        }
        
        // Request microphone permission
        AVAudioApplication.requestRecordPermission { [weak self] granted in
            DispatchQueue.main.async {
                if granted {
                    self?.startAudioEngine()
                } else {
                    self?.statusMessage = "Microphone permission denied"
                }
            }
        }
    }
    
    private func startAudioEngine() {
        guard let audioEngine = audioEngine,
              let mic = audioEngine.input else {
            statusMessage = "Audio components not initialized"
            return
        }
        
        // Set a silence node as the engine's output to ensure it processes audio input
        if let input = audioEngine.input {
            let silence = Fader(input, gain: 0)
            audioEngine.output = silence
        } else {
            statusMessage = "Failed to set silent output node"
            return
        }
        
        // Use AudioKit's PitchTap for pitch detection
        pitchTap = PitchTap(mic) { [weak self] pitch, amp in
            DispatchQueue.main.async {
                self?.audioLevel = Double(amp.first ?? 0)
                
                if let frequency = pitch.first, frequency > 0 {
                    self?.detectedFrequency = frequency
                    self?.detectedNote = self?.frequencyToNote(frequency) ?? "Unknown"
                } else {
                    self?.detectedNote = "No note detected"
                    self?.detectedFrequency = 0.0
                }
            }
        }
        pitchTap?.isActive = true
        
        // Use AudioKit's FFTTap for spectrum analysis
        fftTap = FFTTap(mic) { [weak self] fftData in
            DispatchQueue.main.async {
                self?.spectrumData = fftData.map { Double($0) }
            }
        }
        fftTap?.isActive = true
        
        do {
            try audioEngine.start()
            isListening = true
            statusMessage = "Listening..."
        } catch {
            statusMessage = "Failed to start audio engine: \(error.localizedDescription)"
        }
    }
    
    func stopListening() {
        guard isListening else { return }
        
        pitchTap?.isActive = false
        fftTap?.isActive = false
        audioEngine?.stop()
        isListening = false
        
        detectedNote = "No note detected"
        detectedFrequency = 0.0
        spectrumData = []
        statusMessage = "Stopped"
    }
    
    private func frequencyToNote(_ frequency: Double) -> String {
        // Standard A4 = 440Hz
        let a4 = 440.0
        let c0 = a4 * pow(2.0, -4.75)
        
        guard frequency > 0 else { return "No note detected" }
        
        // Calculate semitones from C0
        let semitones = 12.0 * log2(frequency / c0)
        let octave = Int(semitones / 12.0)
        let noteIndex = Int(round(semitones)) % 12
        
        // Safe array access with bounds checking
        let safeIndex = (noteIndex + 12) % 12  // Always positive
        let noteNames = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"]
        
        guard safeIndex >= 0 && safeIndex < noteNames.count else {
            return "Unknown"
        }
        
        let noteName = noteNames[safeIndex]
        return "\(noteName)\(octave)"
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: JoshBadert

79724246

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

https://github.com/modelcontextprotocol/typescript-sdk/issues/796

Please go through this post, this helped.

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

79724245

Date: 2025-08-03 18:37:08
Score: 4
Natty:
Report link

Django3.2 ORM is syncronous can't support async task and dnd never try to do so simply abandon any ideas of launching independent threads or processes from within a view

Reasons:
  • Blacklisted phrase (1): any ideas
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dylan

79724242

Date: 2025-08-03 18:29:05
Score: 0.5
Natty:
Report link

When I ran git branch -m master main before having made any commits, I got this error:

error: refname refs/heads/master not found
fatal: Branch rename failed

Git needs there to be at least one commit on the branch before you can work with it in this way. See this related question: git: rename local branch failed.

Do the initial commit:

$ git add -A
$ git commit -m "Initial commit"

Then the accepted answer works:

$ git branch -m master main
$ git status
On branch main
nothing to commit, working tree clean
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Matt

79724238

Date: 2025-08-03 18:26:04
Score: 0.5
Natty:
Report link

According to the documentation you also need MacOS Tahoe. I have all of the components you describe plus MacOS Tahoe Beta. Calling SystemLanguageModel.default.availability returns .available, but I get the following error:

"There are no underlying assets (neither atomic instance nor asset roots) for consistency token for asset set com.apple.modelcatalog"

Not sure this helps, but running MacOS 26 (beta) seems to be a step in the right direction.

Reasons:
  • RegEx Blacklisted phrase (1): I get the following error
  • No code block (0.5):
  • High reputation (-1):
Posted by: Philipp Schmid

79724235

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

add this annotation

@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
to the principal main class of spring boot application
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: adel

79724232

Date: 2025-08-03 18:16:02
Score: 2
Natty:
Report link

On thing to check on macos: make sure the result of echo $CONDA_EXE matches with the 'Conda Path' setting in VSCode's Python preferences. Especially relevant if you have recently reinstalled Conda

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

79724229

Date: 2025-08-03 18:13:59
Score: 11
Natty: 4
Report link

did u solve this problem?
*sorry for answer, can't comment without reputation :\

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (3): did u solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: mlt_melt

79724228

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

Although, you did a good job of adding importing Request and Response from express, this error will also appear if you don't import it from express.

If you have @types/node, when you type out the request or response type your ide will most likely show you the node types for req and res as the first option, instead of from express. Just watch out.

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

79724227

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

TESTIMONY: HOW DR. ITUA’S POWERFUL REVENGE SPELL TURNED MY PAIN INTO POWER CONTACT DR ITUA VIA EMAIL:(dr.ituastepven@ gmail. com)

I never imagined I’d seek out a revenge spell—until life left me no choice.

Someone I trusted shattered my world. This enemy destroyed my peace, dragged me into deep emotional suffering, cost me my inheritance and closed every door to justice. I was broken, angry and drowning in betrayal.

Then I found Dr. Itua on Google and everything began to change.

I reached out desperately for help. I asked for a powerful revenge spell because I needed justice. Dr. Itua didn’t judge me. He understood that some pain runs so deep only spiritual justice can truly make things right.

And the result? The death spell worked completely.

The person who tried to ruin me is gone from my life, He tried to kill me but I was fast ahead to take death spell revenge on him and he's no more alive now. I finally feel peace, my path is clear and I’ve reclaimed my power.

If you’re suffering if someone is trying to destroy your life or if justice has failed you don’t stay silent. Dr. Itua’s revenge spell is real fast and effective.

He also specializes in:

*Love & attraction spells

*Protection & spiritual cleansing

*Business success spells

*Spell to get your ex back

*Spell to win a court case

*Spell to win a lottery

* Spell to get someone out of jail.

*Fertility, health, and breakthrough rituals.

Contact Dr. Itua today,your solution may be one message away:

Email: (dr.ituastepven@ gmail. com)

Because sometimes real justice doesn’t come from a courtroom… it comes through spiritual power.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Karol Brown

79724198

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

You can swap using

n = [1, 2, 3, 4, 5]

n[0], n[1], n[2] = n[2], n[0], n[1]

n == [3, 1, 2, 4, 5]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ayincey

79724172

Date: 2025-08-03 16:28:35
Score: 2.5
Natty:
Report link

To supplement the answer @chris-maurer gave, here is your spreadsheet with an added C column with the internal representation of each date

The C column contains the formula =REGEXREPLACE("'"&A1, "'", "")

To convert your date to a string, use TEXT(A1,"dd/mm/yyyy") etc.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @chris-maurer
  • Low reputation (0.5):
Posted by: Brandon Lee

79724171

Date: 2025-08-03 16:27:34
Score: 2.5
Natty:
Report link

I've had the same problem. What I did was click copilot icon and uncheck the language which does not need code auto completes. Then the copilot icon will changed with crossed out icon means the code autocompletes are off for selected language.

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

79724167

Date: 2025-08-03 16:20:33
Score: 2.5
Natty:
Report link

Insert Emoji & Symbols:

Ctrl + Alt + :
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mykhailo Kostromin

79724165

Date: 2025-08-03 16:19:33
Score: 1
Natty:
Report link

for me Plugin worked
Add this plugin into POM file under build tag:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.10.1</version> <!-- use recent stable -->
    <configuration>
       <source>17</source>
       <target>17</target>
       <annotationProcessorPaths>
          <path>
             <groupId>org.projectlombok</groupId>
             <artifactId>lombok</artifactId>
             <version>1.18.36</version>
          </path>
       </annotationProcessorPaths>
    </configuration>
</plugin>
Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: suhas jadhav

79724162

Date: 2025-08-03 16:15:32
Score: 1.5
Natty:
Report link

It doesn't have a dash between "test" and "data", like so:

implementation "org.jmonkeyengine:jme3-testdata:$jmeVer"

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

79724161

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

Just call the method: self._post_process() after your self._set_done()

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Ahrimann Steiner

79724159

Date: 2025-08-03 16:12:31
Score: 1.5
Natty:
Report link

@startuml

|User|

start

:Open App;

:Login or Register;

if (Is User Verified?) then (Yes)

:Go to Dashboard;

else (No)

:Prompt Verification;

stop

endif

:Select Action;

partition Actions {

fork

    :Search Property;

    :Apply Filters;

    :View Listings;

    :Select Property;

    :View Property Details;

    :Contact Agent;

    :Schedule Visit;

fork again

    :Book Property Visit;

    :Choose Property;

    :Select Date and Time;

    :Confirm Visit;

fork again

    :Chat with Agent;

    :Select Agent;

    :Discuss Requirements;

    :Get Property Suggestions;

fork again

    :Post Property;

    :Enter Property Details;

    :Submit for Review;

    :Wait for Approval;

end fork

}

:Return to Dashboard;

:Logout;

stop

@enduml

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @startuml
  • User mentioned (0): @enduml
  • Low reputation (1):
Posted by: user31203668

79724155

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

Any action in Spark releases the data from memory once the DAG execution is completed. What this means is there'll be no references to that data anymore and the garbage collector will free up the memory.

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

79724149

Date: 2025-08-03 15:59:27
Score: 2
Natty:
Report link

JTabbedPane indexOfComponent(component) check with == method which means it check the components are same in memory. so if you are passing the same component it will not work,

You can override the indexOfComponent method and allow it to pass the duplicate component

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

79724127

Date: 2025-08-03 15:28:20
Score: 4
Natty:
Report link

This is 13 years old and I still have the same problem. Incredible.

For me the screen was only halfway off, so dragging the resize handle just a pixel or two is enough to bring it all back on screen.

Still super annoying. Have to do it every time you start the server.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (0.5):
Posted by: mateoc15

79724125

Date: 2025-08-03 15:27:20
Score: 1
Natty:
Report link

If you're using a schema library, you can derive a jit-compiled deep equals function that's ~5-10 times faster than fast-deep-equal, and ~70-80x faster than Lodash (or any other recursive solution).

// also supported: JSON Schema, TypeBox, ArkType, valibot
import { deepEqual } from '@traversable/zod' 

const myEqualsFn = deepEqual(z.array(z.object({ name: z.string(), age: z.number() })))

myEqualsFn(
  [
    {'name': 'john', 'age': 22},
    {'name': 'mike', 'age': 20},
  ],
  [
    {'name': 'john', 'age': 22},
    {'name': 'mike', 'age': 42}
  ] 
) 
// => false

Run / play with the benchmarks here: https://bolt.new/~/mitata-k7dj9raq

This works because we're able to use the schema to optimize the comparison.

I wrote a short blog post that goes into more detail here: https://dev.to/ahrjarrett/how-i-built-javascripts-fastest-deep-equals-function-51n8

Edit: forgot to include a link, the library is here: https://github.com/traversable/schema/

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

79724117

Date: 2025-08-03 15:15:17
Score: 2
Natty:
Report link

Maybe similar to drawables?:

config.set_property('image', image)
config.set_core_object_array('drawables', [drawable])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hanna

79724114

Date: 2025-08-03 15:13:16
Score: 5
Natty: 5
Report link

Коллеги, из ваших ответов очевидно, что вы не поняли вопрос. Ариан, задавший вопрос, желает получить не индекс [gcr_id] по значению 21, а желает получить индекс [3], зная, что [gcr_id]=>21.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: DaVaL

79724111

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

It's not quite "changeable." Then it would be the word "change." The word "mutate" means a variable, during its lifespan, arrives at the API from the frontend the same as it was defined. For example, a component could define default form values, like populating the input "name" with the string "John Doe". But if the form library supplies the API with an array ['john,' 'doe'] then it was mutated. This is not only based on changing types- you get the idea.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Randomly Angry-As-F-Ing

79724106

Date: 2025-08-03 14:59:13
Score: 4
Natty:
Report link

Hello Im trying to do the same thing here
when i start the Hikvision SDK Demo and Start Listen to incoming events nothing appears same thing with HTTP Listener mode Despite the connection success .
but when i call the Api from web browser it loads the data successfully.

how can i start the listening successfully
here is my web cam settings
enter image description here cam settings
enter image description here listening host settings

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): trying to do the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohamed Hanti

79724104

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

Try to use

'sms:$selectedPhone&body=${Uri.encodeComponent(message)}'

instead of

'sms:$selectedPhone?body=${Uri.encodeComponent(message)}'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gurbanmyrat Ataballyyev

79724090

Date: 2025-08-03 14:42:09
Score: 3
Natty:
Report link

Apparently google chrome hides the cookie field for wss requests. It's being sent, it's just not visible on chrome dev tools.

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

79724088

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

I have gone through the problem statement you have mentioned above, below might be the solutions

1. Handle validation exceptions manually,you can catch its validation exception and manually throw a ResponseStatusException(HttpStatus.UNAUTHORIZED).

public TokenResponse login(LoginUserRequest request){

try {

    validationService.validate(request);

} catch (ConstraintViolationException | SomeOtherValidationException ex) {

    throw new ResponseStatusException(HttpStatus.UNAUTHORIZED, "Username or password wrong");

}

}

2: Use @Valid in the controller

I hope it really helps

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Valid
  • Low reputation (1):
Posted by: Pooja Gupta

79724083

Date: 2025-08-03 14:32:06
Score: 0.5
Natty:
Report link

maybe something like this would be enough, to start command at next minute

sleep $(bc -l <<< '(60000-'$(date +%S%3N)')/1000'); yourcommand

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

79724066

Date: 2025-08-03 13:53:58
Score: 2.5
Natty:
Report link

The Code in Answer 1 works, but I think it is not "correct", because the StringVar var isn't used at all.
The "correct" code should initialize the variable with the parent widget, that is
self.var = StringVar(self)
Then you can call self.var.get() and this gives the expected result

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

79724065

Date: 2025-08-03 13:52:58
Score: 3
Natty:
Report link

I have now shifted to Unidata's NetCDF-Java to read NetCDF files and it works fine.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Quiescent

79724034

Date: 2025-08-03 12:54:45
Score: 1
Natty:
Report link
let inputArray = [10, 20, 30];

function arrayToList(array) {
  let list = {};

  list.value = array.splice(0, 1)[0];
  list.rest = array.length > 0 ? arrayToList(array) : null;

  return list;
}

console.log(arrayToList(inputArray));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rajesh Kumar

79724027

Date: 2025-08-03 12:45:43
Score: 1.5
Natty:
Report link

Use a Custom Field Instead of “State”

If you want to customize column labels without impacting global labels, create a custom choice field:

  1. Add a new field (e.g., vtb_status) to the table.

  2. Define your custom choices: “To Do”, “In Development”, “Review”, etc.

  3. Create a new Visual Task Board based on this field.

  4. You'll now see custom column names as per your values.

If anyone's interested, we documented one of our ITSM implementations here with results, read now!

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

79724024

Date: 2025-08-03 12:40:42
Score: 3
Natty:
Report link

I found the problem : in fact, CMake found the wrong Python interpreter, so I must specify the good one.

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

79724018

Date: 2025-08-03 12:14:37
Score: 0.5
Natty:
Report link

Thanks to Some programmer dude that suggested to check IR of my test C program. I should always to that in future. So the problem solution is:

There was another setjmp function that takes 2 parameters i32 @_setjmp(ptr, ptr). The first one is still JmpBuf but the second one is result of ptr @llvm.frameaddress.p0(i32 immarg) call. Everything works as expected now, thank you so much :)

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): solution is
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: crackanddie

79723996

Date: 2025-08-03 11:38:30
Score: 2
Natty:
Report link

After trying all sorts of thing from upgrading my npm and nodejs versions to recreating composer create-project, this sudo was the one thing that let me pgrade from tailwind 3 to 4 using the npx tool.

sudo npx @tailwind/upgrade - works a treat.

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

79723991

Date: 2025-08-03 11:26:28
Score: 3
Natty:
Report link
$table->point('latitude'), $table->bigInteger('longitude')
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: amirhosein babaei

79723980

Date: 2025-08-03 11:14:25
Score: 4
Natty:
Report link

Interested in knowing about this topic!

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

79723975

Date: 2025-08-03 11:07:23
Score: 3
Natty:
Report link

Natwok I work il wife I&

header 1 header 2
cell 1 cell4
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Furkan Ali

79723963

Date: 2025-08-03 10:51:20
Score: 1
Natty:
Report link

thank you guys

i'm using boot strap 5.3.7

just replaced the href with the asp-controller and asp-action now just a few more items on my list in this multi crud application and i can deploy

<li class="nav-item dropdown">
    <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Administration</a>
    <ul class="dropdown-menu" aria-labelledby="navbarDropdown">
        <li>
            <a class="ListUsers" asp-controller="Administration" asp-action="ListUsers">Manage Users</a>
        </li>
       <li>
            <a class="List Roles" asp-controller="Administration" asp-action="ListRoles">Manage Roles</a>
        </li>
    </ul>
</li>
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: John Finch

79723958

Date: 2025-08-03 10:42:18
Score: 3.5
Natty:
Report link

Also interested in someones better solution!

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

79723957

Date: 2025-08-03 10:41:15
Score: 6.5
Natty: 5.5
Report link

Самое главное, это в настройках бота, включить бизнес режим, без него оплата работать не будет.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Радиф Гатауллин

79723948

Date: 2025-08-03 10:22:10
Score: 5
Natty:
Report link

This might help you - https://mankeyss.gumroad.com/l/ios-theme there's a lot of different ios styling options

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

79723947

Date: 2025-08-03 10:21:09
Score: 2
Natty:
Report link

i use to do like this
Header 1 | Header 2 | Header 3 | Header 4 | Header 5 | Header 6
-|-|-|-|-|-
one <td colspan=3>three </td><td colspan=2>two</td></tr><td>1|2|3|4|5|6
1|2|3|4|5|6

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

79723945

Date: 2025-08-03 10:18:09
Score: 1
Natty:
Report link

According to the documentation, you need to put the plugin on a regular page and not a folder.

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

79723941

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

After enabling the location permission the map is showing. It is not mentioning is the document that the location permission is required for map to show. Personally I don't think that the permission is needed just to show until I'm not using client's Geolocation API.

Thank You

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: full_stack_developer

79723935

Date: 2025-08-03 10:02:05
Score: 4
Natty:
Report link

As Jesus said "it's sad that a negro like u is allowed to use a persona computer"

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

79723929

Date: 2025-08-03 09:58:03
Score: 4.5
Natty:
Report link

The problem is that you are a mentally ill nigger, let's be honest ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀

<img url="https://i.sstatic.net/AJ17h4j8.png">

What the fuck guys i cant enter a picture? Ah wait its src OH NO U CANT POST SRC ATTRIBUTES

Reasons:
  • Blacklisted phrase (2): fuck
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Stalin

79723928

Date: 2025-08-03 09:57:03
Score: 0.5
Natty:
Report link

The error shows "No module named matplotlib" in the installer.

Please install the matplotlib, you can install it via

pip install matplotlib

your final dependency will look like this:

PyQt6==6.9.1
PyQt6-Qt6==6.9.1
PyQt6_sip==13.10.2
qt-material==2.17
pyinstaller==6.14.2
matplotlib
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pratik Pathak

79723924

Date: 2025-08-03 09:52:01
Score: 5
Natty:
Report link

If you're doing IOS design i would suggest this: https://mankeyss.gumroad.com/l/ios-theme

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

79723923

Date: 2025-08-03 09:51:01
Score: 4
Natty:
Report link

⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

"I don't like Microsoft niggers either bro"
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (3):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Stalin

79723921

Date: 2025-08-03 09:43:59
Score: 3
Natty:
Report link

# حفظ كلمة المرور في متغير

كلمة_المرور = "admin123"

# طلب من المستخدم إدخال كلمة المرور

مدخل_المستخدم = input("رجاءً، أدخل كلمة المرور: ")

# التحقق من المطابقة

if مدخل_المستخدم == كلمة_المرور:

print("مرحبا بك يمكنك الدخول")

else:

print("كلمة المرور خاطئة")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: متع نظرك

79723916

Date: 2025-08-03 09:38:58
Score: 1
Natty:
Report link

As mentioned in official document you need to import theme variables

page css file path:
src/components/pages/login/page.css

@reference "../../../app/globals.css";

h3 {
  @apply bg-new-theme-color;
}

global css file path:
src/app/globals.css

@import "tailwindcss";

@theme {
--color-new-theme-color: #fbfbaa;
}

I hope its helpful

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

79723915

Date: 2025-08-03 09:36:57
Score: 0.5
Natty:
Report link

To vertically center the image + description block only in the space below the title, you just need to make sure that:

  1. the wrapper that contains the content (contentWrapper) has flex: 1, so it takes all the remaining space below the header, and

  2. you use justifyContent: 'center' to center its children vertically inside that space.

In your code you were already almost there — the only missing piece is that the title container above must not grow (so it doesn’t steal space), while the content wrapper must grow.


<View style={[styles.slide, { width }]}>
  <View style={styles.titleContainer}>
    <Text style={styles.title}>{item.title}</Text>
  </View>

  <View style={styles.contentWrapper}>
    <item.SlideImage style={styles.image} />
    <Text style={styles.desc}>{item.descr}</Text>
  </View>
</View>

Now make sure the styles look like this:

titleContainer: {
  // DON'T add flex here, or it will take unnecessary space
  paddingTop: 40,            // your fixed top offset
  paddingBottom: 20,
},

contentWrapper: {
  flex: 1,                   // <– grows to fill the rest of the slide
  justifyContent: 'center',  // <– vertical centering
  alignItems: 'center',
  paddingHorizontal: 20,
}
Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Conta

79723909

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

Table that doesn't look weird and only scrolls horizontally when there isn't enough space allocated on screen for it's width:

table {
    display: inline-block;
    overflow-x: scroll;
    white-space: nowrap;
    max-width: 100%
}

Add overflow-y and max-height for vertical size limit and scroll

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

79723900

Date: 2025-08-03 09:02:51
Score: 1
Natty:
Report link

i had the same issue when try to access routes/api.php with POST request in postman, as you can see in below image..

enter image description here

so just replace http WITH https and it will work well 🙏🙏

enter image description here

Hope it will Help :)

Reasons:
  • Blacklisted phrase (0.5): 🙏
  • Whitelisted phrase (-1): Hope it will Help
  • Whitelisted phrase (-1): i had the same
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: starterProgrammer

79723898

Date: 2025-08-03 08:59:50
Score: 0.5
Natty:
Report link

You use .append() which is for lists, but duplicateFiles is a set. You should use try add() instead of .append().

You can read more about sets here or here

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

79723892

Date: 2025-08-03 08:47:47
Score: 1
Natty:
Report link

import as React from 'react';

import { Text, View, StyleSheet } from 'react-native';

import Constants from 'expo-constants";

// You can import from local files

import AssetExample from './components/AssetExample';

// or any pure javascript modules available in nom

import { Card} from 'react-native-paper";

export default function AppO

return (

<View style [styles.container}>

<Text style(styles, paragraph]>

Change code in the editor and watch it change on your phone! Save to get

a shareable url.

</Text>

<Card>

<AssetExample />

</Card>

Single

);

}

const styles StyleSheet.create({

container: {

flex: 1,

justifyContent: 'center',

paddingTop: Constants.statusBarHeight,

backgroundColor: '#ecf0f1",

padding: 8,

},

paragraph: {GH43-03241A+AB463446BU

margin: 24,

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

79723891

Date: 2025-08-03 08:46:47
Score: 1
Natty:
Report link

Here's a regex

^-?(?:[1-9]\d*|0)\.(?:0{9}|[0-9]{0,8}[1-9])$

Then just post-filter -0.000000000 in code, since regex alone (without lookaround) can't exclude that exact case.

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

79723890

Date: 2025-08-03 08:44:47
Score: 1.5
Natty:
Report link

I removed spaces before the definition of error function;

it worked. But I don't know why.

Is there anyone explain this?


from ibapi.client import EClient
from ibapi.wrapper import EWrapper
 
class TradingApp(EWrapper, EClient):
    def __init__(self):
        EClient.__init__(self,self)
        
def error(self, reqId, errorCode, errorString):
        print("Error {} {} {}".format(reqId,errorCode,errorString))
 
app = TradingApp()      
app.connect("127.0.0.1", 7497, clientId=1)
app.run()



python testreq.py
-->

ERROR -1 1754209901652 2104 Market data farm connection is OK:usfarm.nj
ERROR -1 1754209901652 2104 Market data farm connection is OK:usfuture
ERROR -1 1754209901652 2104 Market data farm connection is OK:eufarm
ERROR -1 1754209901659 2104 Market data farm connection is OK:usopt.nj
ERROR -1 1754209901660 2104 Market data farm connection is OK:cashfarm
ERROR -1 1754209901661 2104 Market data farm connection is OK:usopt
ERROR -1 1754209901661 2104 Market data farm connection is OK:usfarm
ERROR -1 1754209901662 2106 HMDS data farm connection is OK:ushmds
ERROR -1 1754209901662 2158 Sec-def data farm connection is OK:secdefil
Reasons:
  • Blacklisted phrase (1): Is there any
  • Whitelisted phrase (-1): it worked
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jinwon Lee