79619126

Date: 2025-05-13 07:19:33
Score: 2
Natty:
Report link

Isntree is a trusted Korean skincare brand known for its gentle, plant-based formulas that focus on hydration, soothing, and skin barrier care. With popular ingredients like hyaluronic acid, green tea, and centella asiatica, Isntree products are perfect for sensitive and acne-prone skin. Explore the full range of cruelty-free, effective skincare solutions now available on Korean Homee.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mir Murtaza Memon

79619120

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

Perhaps the version of dotenv you're using might be having some issue (just a guess since I can't reproduce the same error). Maybe try changing (downgrading) the dotenv version you're using. Also, are you getting this issue just in your project directory or is it throughout your system? And are you getting the same problem both in VS Code terminal and OS terminal?

Or just sanitize every value in your env file (might potentially create a performance overhead) -

endpoint = os.getenv("ENDPOINT", "").encode("utf-8").decode("unicode_escape")
print(endpoint)

Or just parse the hex values using regex, something like this -

def decode_hex_escapes(s: str) -> str:
    return re.sub(
        r'\\x([0-9A-Fa-f]{2})',
        lambda m: chr(int(m.group(1), 16)),
        s
    )

endpoint = decode_hex_escapes(unquote(os.getenv("ENDPOINT", "")))
print(endpoint)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Archit Mishra

79619109

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

This error was already fixed in 4.6.0:

https://pub.dev/packages/open_filex/changelog

Update open_filex and the error should be gone.

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

79619104

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

You may need to set api_key and secret in your .env too. That's what got me.

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

79619090

Date: 2025-05-13 06:53:27
Score: 1
Natty:
Report link
@export_custom(PROPERTY_HINT_RANGE, "-360,360,0.1,or_greater,or_less,radians") var rotation : Vector3;

This would be the most recent method of doing this, I am unsure when this was added but it works in 4.4. Adding this answer incase anyone is still looking for good ways to replicate the rotation transform.

It does automagically change the values from degrees to radians under the hood just the same as the transform settings for nodes do.

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

79619087

Date: 2025-05-13 06:51:27
Score: 3
Natty:
Report link
header 1 header 8
cell 1 cell 2
cell 3 cell 4

dumpsys battery set level 999

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

79619085

Date: 2025-05-13 06:49:25
Score: 9.5 🚩
Natty: 5.5
Report link

did you find a solution for it ?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution for it
  • Low reputation (1):
Posted by: saker Jamal Khaled abu omar

79619080

Date: 2025-05-13 06:45:24
Score: 3.5
Natty:
Report link

It's interesting but I always use chatgpt/deepseek for my problems..

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

79619079

Date: 2025-05-13 06:44:24
Score: 2
Natty:
Report link

It seems like problem is with ESM Format try renaming postcss.config.js to postcss.config.cjs

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

79619078

Date: 2025-05-13 06:44:24
Score: 2
Natty:
Report link

To answer my own question: I got the bright idea of using SMS. Google Assistant can send them. I have an Arduino with a number that can receive them, and if they are from my number they can get passed through using a POST request. Not the most secure solution in the world, but good enough for my personal needs.

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

79619074

Date: 2025-05-13 06:42:23
Score: 0.5
Natty:
Report link

To transform the compressed table into the desired expanded format, each row must be unpacked based on the Count field by generating consecutive hourly timestamps starting from the given Datetime. For each row, we replicate the Value for the number of hours specified by Count, incrementing the timestamp by one hour for each replication. This can be efficiently done using Python with Pandas by iterating through each row, creating new entries with updated timestamps, and compiling the results into a new DataFrame. Sorting the final output by Category and Datetime ensures the structure aligns with the expected chronological order. This approach effectively restores the original granularity of the time series data while maintaining category-wise separation.

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

79619073

Date: 2025-05-13 06:42:23
Score: 1.5
Natty:
Report link

Thanks for the suggestions.

Before moving to openshift the agent was the same Windows Server as the Jenkins master. This seems to be the reason why the "new File()" part worked there, because it references the master system for some reason.

As daggett suggests the part should look like this:

def props = readJSON file: '.conf/config.json'

The Pipeline Utility Steps Plugin is required for this step.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Martin1999

79619062

Date: 2025-05-13 06:34:21
Score: 2
Natty:
Report link

You can use this open source React component to embed Android Emulators to your website. See free online demo here.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: karlbaumg

79619050

Date: 2025-05-13 06:25:18
Score: 0.5
Natty:
Report link

you should ensure the proguard-maven-plugin runs before spring-boot-maven-plugin,just edit pom.xml and reorder plugin.

<plugin>
   proguard plugin...before spring plugin
</plugin>

<plugin>
  spring maven repackage plugin...
</plugin>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 桃桃桃子

79619039

Date: 2025-05-13 06:16:16
Score: 3.5
Natty:
Report link

It's a known compatibility issue which is being tracked here:
https://github.com/supabase/supabase-js/issues/1400#issuecomment-2843653869

There is a partial solution by using these package versions:

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

79619034

Date: 2025-05-13 06:11:14
Score: 12.5 🚩
Natty: 6.5
Report link

how did you solve it ? i am facing same issue

Reasons:
  • Blacklisted phrase (1): how did you solve it
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am facing same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you solve it
  • Low reputation (1):
Posted by: sumaiya rahman chowdhury prion

79619031

Date: 2025-05-13 06:05:13
Score: 2
Natty:
Report link

I know this is an old question, but...

Sometimes setting:
APP_DEBUG=false

can prevent Laravel from storing large debug logs in memory.

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

79619028

Date: 2025-05-13 06:03:12
Score: 0.5
Natty:
Report link

The init(NULL) call is to an ios_base::init function which is only available on Clang. This call is required on Clang to prevent a unit test (streamtestcase) failure.

I have added support for GNU g++-14 on MacOS in this Log4cxx PR

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

79619013

Date: 2025-05-13 05:52:10
Score: 0.5
Natty:
Report link

In my case connecting host controller through ethernet cable solved the problem.

As per Android documentation

Open Location Code (OLC): A system for encoding geographic locations into a concise string.

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

79619007

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

Make the TabLayout scrollable like this:

<com.google.android.material.tabs.TabLayout
    android:id="@+id/tab_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:tabMode="scrollable" />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Manabu Nakamura

79619006

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

1. https://myfreebingocards.shop     100% up to ₱25000

2. http://pagcor.life/              100% up to ₱15000

3. https://bingo-baker.com/          Up to ₱2024 free bonus

4. http://quantumcom.xyz/         Up to 200% welcome bonus

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

79619003

Date: 2025-05-13 05:44:07
Score: 3.5
Natty:
Report link

Try re-installing or updating the Bluetooth driver.

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

79619002

Date: 2025-05-13 05:43:07
Score: 0.5
Natty:
Report link

To achieve this, we start by

  1. splitting the text by newline character ('\n') split(variables('Source'),outputs('New_Line'))
  2. store headers for future reference outputs('Split_text_lines')?[0]
  3. filter array to find lines that contain 'EMPTY' contains(item(),'EMPTY')
  4. join the lines back with headers by newline character ('\n') join(union(outputs('Store_Headers'),body('Filter_lines_that_contain_EMPTY')),outputs('New_Line'))

enter image description here

We preserve headers so that final text files does not get ambiguous data.

P.S. power automate does not treat '\n' string well so we achieve this by defining a compose and placing a new line there as follows (hit enter in input section to achieve this)

enter image description here

Here's the full implementation

enter image description here

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

79618990

Date: 2025-05-13 05:30:04
Score: 1
Natty:
Report link

Just run the below command, it will work.

npm install --save-dev vite laravel-vite-plugin sass
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nazmul Haque

79618986

Date: 2025-05-13 05:27:03
Score: 3
Natty:
Report link

F=658

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: Aryan verma Verma

79618985

Date: 2025-05-13 05:24:03
Score: 0.5
Natty:
Report link

The issue lies in your incorrect computation of the gradient for the output layer during backpropagation. When using softmax activation followed by cross-entropy loss, the gradient simplifies to the predicted probabilities (self.output) minus the one-hot encoded ground truth labels. Your current implementation manually iterates over each class and sample, reapplying softmax and calculating differences, which is both inefficient and prone to numerical instability. Instead, you should directly subtract 1 from the softmax outputs at the target class indices (self.output[range(batch_size), desired_outputs] -= 1) and normalize over the batch size. This gives the correct gradient for backpropagation. Additionally, ensure that weights and biases are updated using this gradient, scaled by the learning rate. Correcting this will allow the model to learn properly and reduce the loss during training.

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

79618977

Date: 2025-05-13 05:14:00
Score: 2
Natty:
Report link

For Mac use this command

\! clear
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Md. Rumon Khan

79618976

Date: 2025-05-13 05:10:59
Score: 1
Natty:
Report link

Cache-Control: no-store is not enough. Put additionaly these headers to your server:

Cache-Control: no-cache, no-store, must-revalidate
Expires: Thu, 19 Nov 1981 01:02:03 GMT
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergey Soltanov

79618975

Date: 2025-05-13 05:10:59
Score: 2
Natty:
Report link

I faced the same issue, have you tried this:

chart.setClipDataToContent(false)

enter image description here

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tadashi

79618965

Date: 2025-05-13 05:03:57
Score: 3
Natty:
Report link

Dism /online /Enable-Feature /FeatureName:"NetFx3"

try to use this.

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

79618958

Date: 2025-05-13 04:54:55
Score: 4.5
Natty:
Report link

Absolutely loved this! You’ve explained it so clearly and creatively – truly a great read!

So well-written and informative! Definitely bookmarking this for future reference

Wow, this gave me a fresh perspective! Thanks for sharing such valuable insights.

https://iimskills.com/medical-coding-courses-in-varanasi/

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user30506292

79618955

Date: 2025-05-13 04:52:55
Score: 1.5
Natty:
Report link

Overtype Mode is a text editing mode where new characters replace existing ones instead of being inserted. When activated, typing a letter will overwrite the character in front of the cursor rather than pushing it forward.

How to disable overtype mode in VSCode

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

79618950

Date: 2025-05-13 04:49:54
Score: 1
Natty:
Report link

when we talk about real-time distributed systems, the first thing to understand is that it's not just about sending data from one place to another. There are several key factors to consider to ensure these systems work correctly in real-time.

  1. Clock Synchronization:
    In a distributed system, the different nodes need to be synchronized in terms of time. This is typically done with protocols like NTP (Network Time Protocol). That way, even though the nodes might be in different locations, they all "sync up" to avoid any time mismatches in the data being processed and transmitted.

  2. Data Consistency:
    Consistency is another important aspect. You need to make sure that the data being generated and consumed is up-to-date and correct. In distributed systems, consistency is often handled as eventual consistency, meaning the data will eventually sync across all nodes, but not at the same time.

  3. Latency Management:
    Latency is the delay between when an event happens and when it reflects on the user interface. To keep latency low, techniques like buffering or message queues can be used. As you mentioned, the Producer/Consumer pattern is useful, but it's also key for the backend to be optimized for sending data with minimal latency.

  4. Communication Patterns:
    To display data in almost real-time on the UI, the backend can use patterns like pub/sub or push notifications to send updates to the user interface. Systems like WebSockets or Server-Sent Events are quite common in these types of applications, as they allow real-time communication between the client and server.

  5. Scalability and Fault Tolerance:
    In a distributed system, it's crucial that it can scale as the workload increases. Additionally, it needs to be fault-tolerant, meaning it continues to function even if some of the nodes fail. This can be achieved through data replication and implementing strategies like circuit breakers.

  6. Real-Time Guarantees:
    Depending on the type of system, you might need to meet strict real-time guarantees. This means that certain tasks must be completed within a specified time frame, with no exceptions. To achieve this, it's necessary to use scheduling techniques like EDF (Earliest Deadline First) or RMS (Rate-Monotonic Scheduling).

As for the interview, what they're asking you to do is a good starting point. The Producer/Consumer pattern is helpful, but it's also important for the backend to use a messaging system like Kafka or RabbitMQ, where data generated by the producer is sent to the consumer, which handles processing and updates the UI. When it comes to displaying this data in real-time, the backend can use WebSockets to send updates directly to the frontend.

If you have time, I recommend reading more about WebSockets and Kafka, as these are tools commonly used in real-time distributed systems. Also, it's a good idea to understand a bit about how errors and failures are handled in these systems, like retry mechanisms.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): when we
  • Low reputation (1):
Posted by: jesus Sánchez Zamora

79618946

Date: 2025-05-13 04:46:53
Score: 1.5
Natty:
Report link

How do the functions work without a connected storage account, even though the docs say it's required?

-App Service Plan functions can technically start without AzureWebJobsStorage, especially for HTTP triggers or Service Bus (without checkpointing). -You might see unreliable behavior (e.g., no checkpointing, duplicate messages). -V4 isolated process, App Service Plan, no bindings needing state = technically allowed but unsupported for certain bindings. -Follow the MS doc1, doc2 for better understanding.

After deploying a Python Azure Function that listens to a Service Bus Queue, the function wouldn’t trigger even though messages were successfully sent to the queue.

The issue was due to an incorrect application setting. Instead of using the correct Service Bus connection string, only the queue name was set. Also, the storage connection string was initially misconfigured using AzureWebJobsStorage__accountName.

repro-function/
├── host.json
└── ServiceBusTrigger/
    ├── __init__.py
    └── function.json

I made sure the AzureWebJobsStorage app setting was configured using:

az functionapp config appsettings set --name FuncName --resource-group RsrGrpNme --settings AzureWebJobsStorage="StorageConnectionString"

Then, added the AzureWebJobsServiceBus setting with the primary connection string of the Service Bus:

az functionapp config appsettings set --name FuncNme --resource-group RsrGrpNme --settings AzureWebJobsServiceBus="PrimaryConnectionString"

Confirm your function.json matches the actual queue name:

{
  "bindings": [
    {
      "name": "msg",
      "type": "serviceBusTrigger",
      "direction": "in",
      "queueName": "repro-queue",
      "connection": "AzureWebJobsServiceBus"
    }
  ]
}

Then restart and retest

az functionapp restart --name FunctionNme --resource-group RsrGrpNme

enter image description here enter image description here Follow the MS Doc1 , Doc2 , Doc3 for better understanding.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do the
  • Low reputation (1):
Posted by: Gaurav Kumar

79618945

Date: 2025-05-13 04:44:53
Score: 2.5
Natty:
Report link

user = User.find(10)

user.delete

OR want to delete multiple users like this
ids = [10,2,5,7,3]

users = User.where(id:ids)

users.delete_all

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

79618944

Date: 2025-05-13 04:44:53
Score: 3
Natty:
Report link

Using passwordPolicies instead of passwordRequirements fixed the issue.

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

79618941

Date: 2025-05-13 04:40:52
Score: 3.5
Natty:
Report link

when you are using mac os if the issue came you should use flutter fvm and change it to stable version 3.27.4 and lets see the magic it will probably fixed the issue

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when you are
  • Low reputation (1):
Posted by: S M Tanvir Hasan Faysal

79618936

Date: 2025-05-13 04:34:50
Score: 2.5
Natty:
Report link

Answer on Windows is to kill all background processes in VSCode and restart the application

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

79618934

Date: 2025-05-13 04:29:45
Score: 6 🚩
Natty:
Report link

What is Gradle artifact transform?

In Gradle, artifact transform tasks are internal or custom tasks used to transform artifacts (like JARs, AARs, or other binary files) from one format or variant to another as part of the build process. This feature is especially useful in dependency resolution, caching, and task optimization.

enter image description here

For more information please check this video: https://www.youtube.com/watch?v=XpunFFS-n8I

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): please check this
  • Blacklisted phrase (1): this video
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (0.5):
Posted by: Pushpendra Kushvaha

79618929

Date: 2025-05-13 04:15:41
Score: 1
Natty:
Report link

Each uvicorn worker is an independent process with its own memory space. The MemorySaver() you're using cannot be shared between two workers. You need to either persist your checkpointer or use a load blancer to ensure the same user's requests are routed to the same worker.

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

79618911

Date: 2025-05-13 03:57:36
Score: 7.5 🚩
Natty: 6.5
Report link

Did you figure this out? (sorry, wouldn't let me comment)

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure this out
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Elinor Krits

79618910

Date: 2025-05-13 03:55:35
Score: 2
Natty:
Report link

Its module loader file, php5.load should appear in the /etc/apache2/mods-enabled/ directory if it's enabled (it'll be a symbolic link to the file in mods-available).

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

79618906

Date: 2025-05-13 03:49:34
Score: 1
Natty:
Report link

You have defined a function inside a Twig block early in the page, so it might not make it globally available in time.

I would also move the to "block javascripts" at the bottom of the page.

And just to be safe, it is better to use addEventListener() in DOMContentLoaded.

Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: gooselover gooselover

79618898

Date: 2025-05-13 03:32:30
Score: 1
Natty:
Report link

Maybe this piece of code could work? (I'm not an expert):

//Header files up here

bool thinkingProcessDone = false;

int main()
{
    string name;
    getline(cin, name);
    //Think and show progres bar
    thinkingProcessDone = true;
    cout << "Ended with exit code 1";
    if (thinkingProcessDone) {
    getchar();
    }
    return 1;
}

This might not be what you're asking, but it's the best I can come up with.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ayam Cemani Chicken

79618893

Date: 2025-05-13 03:25:29
Score: 1
Natty:
Report link

Update your vite.config.js:

export default defineConfig({
    ...,
    build: {
        chunkSizeWarningLimit: 1600
    }
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tommy Hoang

79618891

Date: 2025-05-13 03:23:27
Score: 6.5 🚩
Natty: 5.5
Report link

IDK, just a WAG: try preceding it with "@MainActor" ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: LGLB

79618887

Date: 2025-05-13 03:21:27
Score: 3
Natty:
Report link

I think you don't need to use so many command lines.
Because if you don't use,the default is simmliar to the gui

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

79618883

Date: 2025-05-13 03:10:24
Score: 4
Natty:
Report link

Most major companies are using https://recall.ai/ for this.

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

79618880

Date: 2025-05-13 03:05:23
Score: 1.5
Natty:
Report link
  1. Delete node_modules
  2. Delete package-lock.json
  3. Add below to your package.json "resolutions": { "rollup": "npm:@rollup/wasm-node" },
  4. npm install
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3147403

79618879

Date: 2025-05-13 03:00:22
Score: 1.5
Natty:
Report link

Useing windows-build-tools@4.0.0 can work.

npm --python_mirror=https://registry.npmmirror.com/-/binary/python/ install --global windows-build-tools@4.0.0

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

79618868

Date: 2025-05-13 02:49:19
Score: 2.5
Natty:
Report link

There are many services that provide an API for Google Reviews. My platform ReviewKite uses BrightLocal's API to fetch reviews from Google and other review platforms on a daily basis. In my experience, the Google API was extremely difficult to work with.

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

79618865

Date: 2025-05-13 02:47:19
Score: 2.5
Natty:
Report link

addres_to_city = lamda address:address.split(',')

df['City'] = df['Purchase Address].apply(address_to_city)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 19- Phan H.N Nam 12.3

79618862

Date: 2025-05-13 02:44:18
Score: 1
Natty:
Report link

I had the same issue in my app and solved it by adding the following in tsconfig.json. "compilerOptions": { "strict": true, "paths": { }, "types": ["expo", "expo-sqlite", "expo-file-system"] },

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Javier Gracia

79618852

Date: 2025-05-13 02:27:14
Score: 1
Natty:
Report link

If you want to / have to maintain organisation-only access to the group, you won’t be able to use the groups.google.com UI to do this. Instead, you can add service accounts to an organisation-only group via the GCP Console, in the Groups tab. If you can’t see the Groups tab, follow that URL, and it’ll prompt you to select your organisation’s account (rather than your project). Then follow the prompts to add a new account to a group, paste your account’s email address, set appropriate permissions, and it’ll work!

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: huw

79618847

Date: 2025-05-13 02:21:12
Score: 4
Natty: 5
Report link

Thanks cardmagic, your way is the best answer for my needs.

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

79618842

Date: 2025-05-13 02:07:10
Score: 0.5
Natty:
Report link

The issue is that the header.png doesn't exist- when 302 Found status codes are returned, they just route to your hosting service's 404 page. The issue is actually most likely with InfinityFree- strange rate limiting, IP bans, and more. Their aggressive anti-bot measures can lead to inconsistent fetch behaviour- especially if your site is attracting traffic and people are pinging the image a lot (when the page loads). Or maybe your image is just missing. I recommend you switch to (literally) any other free hosting service- well established ones like Netlify, Vercel, and Fly.io. Also, check that the image actually exists! Normally it missing would 404, but there's no guarantees with InfinityFree.

curl response

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

79618841

Date: 2025-05-13 02:05:09
Score: 4
Natty: 4
Report link

This is the most useless piece of s**t I have ever read!

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

79618840

Date: 2025-05-13 01:59:08
Score: 0.5
Natty:
Report link

You're on the right track with your observations! The behavior you're describing with the field in Chrome versus Firefox stems from how browsers handle default styles and input field sizing when min and max attributes are used.

Key Points: Input Width Calculation: By default, browsers try to automatically size the input field based on the possible range of values (i.e., the min and max attributes). This is especially true in Chrome, where the input field’s width may be based on the longest number that can fit between the min and max values. If min and max are not defined, Chrome may default to a generic width that could vary depending on the browser's internal settings.

Browser Differences: Chrome and Firefox tend to have slightly different rendering engines, so they interpret form element sizing in ways that can lead to visual discrepancies. Firefox might not adjust the width of the input field as much as Chrome does, and it could stick to a more fixed or simple size, ignoring the size of the potential numbers.

No min or max Defined: If the min or max attributes are not defined, browsers usually size the input based on what they expect is “good enough” for general use. In many cases, this means using a default width that fits the typical number values.

Conclusion: You are correct that there’s no "objectively correct" size for an input element without any styling. It’s up to the browser to decide, and that's why you're seeing different behavior in Chrome and Firefox.

To have consistent behavior across browsers, it’s a good practice to explicitly define input widths (using CSS) or specify min and max values according to your design needs. This way, you can control the layout and avoid unexpected sizing issues.

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

79618834

Date: 2025-05-13 01:51:05
Score: 3
Natty:
Report link

# Convert labels to character format

new_labels <- as.character(labels(dend1))

# Ensure labels are characters

new_labels <- paste("Cluster", new_labels)

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

79618821

Date: 2025-05-13 01:40:02
Score: 7 🚩
Natty:
Report link

Im facing the same issue some weeks ago, it seems be related with fmpeg-kit retired package. I'll be looking for any solution

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nelson Salazar

79618814

Date: 2025-05-13 01:14:56
Score: 2
Natty:
Report link

Use app:fabCustomSize.

<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:id="@+id/floatingActionButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:srcCompat="@drawable/ic_launcher_foreground"
    app:fabCustomSize="74dp" />

https://github.com/material-components/material-components-android/blob/master/docs/components/FloatingActionButton.md#sizing-fabs

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

79618807

Date: 2025-05-13 01:00:53
Score: 0.5
Natty:
Report link

unsigned char binary_data[] = {

0x55, 0x6e, 0x69, 0x74, 0x79, 0x57, 0x65, 0x62, 0x46, 0x69, 0x6c, 0x65, 0x00, 0x02, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Lokesh War

79618805

Date: 2025-05-13 00:58:52
Score: 0.5
Natty:
Report link

Issues are resolved.

  1. Adjust the positions of errorbars.

    Add group = FertMethod in geom_errorbar 's aes setting.

  2. Adjust the widths of bars.

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

79618801

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

The config you provided is correct, but you need to set those values in the tsconfig.app.json instead of the tsconfig.json.

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

79618799

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

under the row subtotal, turn on the per row level, select group 3 and turn off show subtotal

and do the turn off the row subtotal for group 2 as well.

enter image description here

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

79618790

Date: 2025-05-13 00:27:45
Score: 5.5
Natty: 5
Report link

@Macosso

I have been trying to use the xtsum package you developed. There was no obvious data.frame returned to the RStudio Environment when using the command "xtsum(df, ... return.data.frame=TRUE, ...)" and so there was no "object" to work with subsequently. Is this a known issue? Where else would the summary statistics results end-up?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Macosso
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Va Nee L. Van Vleck

79618785

Date: 2025-05-13 00:22:44
Score: 3
Natty:
Report link

same problem here, I implemented it with scrollflow.js and it worked, because of ContentOverflow which makes this automatic

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1): same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: code monster

79618778

Date: 2025-05-13 00:14:42
Score: 1
Natty:
Report link

Your approach rn is totally fine and common for apps with lightweight components or when you want to keep state in each subcomponent alive between views. I use it in most of my smaller React apps. But it's not always ideal, mostly performance wise.

Like in @moonstar-x's example, AnimatePresence is sort of the best of both worlds. Here's a little example of my own:

import { AnimatePresence, motion } from 'framer-motion'
import { ComponentA } from './path/to/ComponentA'

<AnimatePresence mode="wait">
  {currentComponent === 'A' && (
    <motion.div
      key="A"
      initial={{ x: 300, opacity: 0 }}
      animate={{ x: 0, opacity: 1 }}
      exit={{ x: -300, opacity: 0 }}
      transition={{ duration: 0.3 }}
    >
      <ComponentA />
    </motion.div>
  )}
</AnimatePresence>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @moonstar-x's
  • Low reputation (1):
Posted by: displaynameishere

79618773

Date: 2025-05-13 00:07:40
Score: 3
Natty:
Report link

Online Sabong Site                 Welcome Bonus

1. https://myfreebingocards.shop     100% up to ₱25000

2. http://pagcor.life/              100% up to ₱15000

3. https://bingo-baker.com/          Up to ₱2024 free bonus

4. http://quantumcom.xyz/         Up to 200% welcome bonus

5. https://jili7777.bet/              10% cashback bonus

6. https://yaman88.fun/            50 free bonus on live and slot games

7. https://8k8.cool/                100% up to ₱38888

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

79618772

Date: 2025-05-13 00:06:40
Score: 2.5
Natty:
Report link

Why don't you just do
ffmpeg -i index.m3u8 -map 0 -c copy out.mp4
That way you only have the one rendition.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Adrian

79618765

Date: 2025-05-12 23:56:37
Score: 5
Natty: 5
Report link

I am just writing an article about this topic https://henwib.medium.com/rust-understanding-and-operators-63e571632b6a

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hendro Wibowo

79618763

Date: 2025-05-12 23:52:36
Score: 1.5
Natty:
Report link

401 usually means a credentials issue.

I would suggest recording the page directly, rather than go through the HAR file as a proxy. Record with all headers. You likely have a missing credentials header on the fourth request.

As to removing the redirect, do you have a justification for altering in your script for a page load how the page load will work in production. Temporary redirects can be expensive on a collective basis, simply bypassing this load because it is inconvenient means that the load you are generating does not actually match the load in production, as you are loading the redirect target without the load of the redirect on the system (origin servers, network, client response, ....)

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: James Pulley

79618756

Date: 2025-05-12 23:45:35
Score: 2
Natty:
Report link

Me.List833.ColumnCount = 3

Me.List833.ColumnWidths = "1 cm;4.8 cm;1 cm"

Me.List833.RowSourceType = "Value List"

Me.List833.AddItem ("1;2;3")

'You can also add items using variables

'Example: Me.List833.AddItem (Ttest1 & "; " & Ttest2 & "; " & Ttest3)

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

79618748

Date: 2025-05-12 23:33:32
Score: 2
Natty:
Report link

The YAML format is crisp, but, unlike JSON, the element structure is not that readable if the reader is not well-versed with the syntax. So, if in doubt, convert to JSON and see. For example, the JSON-YAML equivalents at https://www.bairesdev.com/tools/json2yaml/ makes the YAML syntax clear.

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

79618731

Date: 2025-05-12 23:08:26
Score: 2.5
Natty:
Report link

regex works to find empty field values in influxql as well

select time, my_field, another_field from my_measurement where my_field =~ /^$/

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

79618730

Date: 2025-05-12 23:08:26
Score: 5
Natty: 5
Report link

Dude, looking at your site I think it would look much better with an overlapping approach than snap, have you tried scrollflow.js?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: code monster

79618728

Date: 2025-05-12 23:07:26
Score: 0.5
Natty:
Report link

If you want the behaviour where undefined instance variable reads raise a NameError, you can use the Ruby gem strict_ivars.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joel Drapper

79618727

Date: 2025-05-12 23:06:25
Score: 6
Natty: 7
Report link

How do I turn this off? It is taking away apps I used everyday

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Autumn

79618723

Date: 2025-05-12 23:02:24
Score: 2
Natty:
Report link

Column contents can be removed from an rtable during post-processing using the workaround demonstrated in the following example.

For a more precise solution, instead of attaching your table code please provide a fully reproducible example (with output). This can be generated in R using the reprex::reprex() function.

This method of creating empty columns is generally not recommended - it is advised that rtables users create a custom analysis function that does exactly what is needed instead of removing values during post-processing.

library(rtables)

lyt <- basic_table() %>%
    split_cols_by("ARM") %>%
    analyze("AGE", afun = list_wrap_x(summary), format = "xx.xx")

tbl <- build_table(lyt, DM)
tbl
#>           A: Drug X   B: Placebo   C: Combination
#> —————————————————————————————————————————————————
#> Min.        20.00       21.00          22.00     
#> 1st Qu.     29.00       29.00          30.00     
#> Median      33.00       32.00          33.00     
#> Mean        34.91       33.02          34.57     
#> 3rd Qu.     39.00       37.00          38.00     
#> Max.        60.00       55.00          53.00

# empty all rows in columns 1 and 3
for (col in c(1, 3)) {
    for (row in seq_len(nrow(tbl))) {
        tbl[row, col] <- rcell("", format = "xx")
    }
}
tbl
#>           A: Drug X   B: Placebo   C: Combination
#> —————————————————————————————————————————————————
#> Min.                    21.00                    
#> 1st Qu.                 29.00                    
#> Median                  32.00                    
#> Mean                    33.02                    
#> 3rd Qu.                 37.00                    
#> Max.                    55.00
Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: edlr

79618720

Date: 2025-05-12 22:58:23
Score: 4
Natty:
Report link

Get a second opinion. Have another researcher perform a VADER analysis. Or use a web app to calculate.

https://observablehq.com/@chrstnbwnkl/vader-sentiment-playground

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

79618719

Date: 2025-05-12 22:57:22
Score: 1.5
Natty:
Report link

Try sqlcmd ... -F vertical.

Source: https://learn.microsoft.com/en-us/sql/tools/sqlcmd/sqlcmd-utility?view=sql-server-ver16&tabs=go%2Cwindows%2Cwindows-support&pivots=cs1-bash#enhancements

I can't comment on how far back that option goes, but it is working on the version that's currently available these days on MacOS via Homebrew:

brew info sqlcmd
==> sqlcmd: stable 1.8.2 (bottled)
Microsoft SQL Server command-line interface
https://github.com/microsoft/go-sqlcmd
Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Kyle Krull

79618717

Date: 2025-05-12 22:52:21
Score: 2.5
Natty:
Report link

You are on the right track with Jsoup but lets refine the approach to be more dynamic and flexible, your goal is to extract specific sections without hardcoding element structures, so a more generic solution involves using Jsoup's selectors dynamically based on user input.

Approach:

Use Jsoup to parse the HTML
Extract sections dynamically
Handle both text and tables appropriately
Convert extracted content into JSON 

Step-by-Step Solution
1. Parse the HTML using Jsoup
        Document doc = Jsoup.parse(htmlContent);
2. Locate the section dynamically
Instead of hardcoding specific elements, allow users to provide section names:
    Element section = doc.selectFirst("#your-section-id");

3. Extract content dynamically
Since the section may contain both plain text and tables, handle them accordingly:

    String textContent = section.text();
Elements tables = section.select("table");

JSONArray jsonTables = new JSONArray();
for (Element table : tables) {
    JSONArray tableData = new JSONArray();
    for (Element row : table.select("tr")) {
        JSONObject rowData = new JSONObject();
        Elements cells = row.select("td, th");
        for (int i = 0; i < cells.size(); i++) {
            rowData.put("column_" + (i + 1), cells.get(i).text());
        }
        tableData.put(rowData);
    }
    jsonTables.put(tableData);
}

JSONObject result = new JSONObject();
result.put("text", textContent);
result.put("tables", jsonTables);

System.out.println(result.toString(4)); 

Making It a Reusable Library
To integrate this into your application as a Maven dependency:

Wrap it in a class with a method extractSection(String sectionId).

Package it into a JAR and deploy it to Maven.

public class HtmlExtractor {
    public static JSONObject extractSection(String htmlContent, String sectionId) {
        Document doc = Jsoup.parse(htmlContent);
        Element section = doc.selectFirst(sectionId);
        if (section == null) return null;

        String textContent = section.text();
        Elements tables = section.select("table");

        JSONArray jsonTables = new JSONArray();
        for (Element table : tables) {
            JSONArray tableData = new JSONArray();
            for (Element row : table.select("tr")) {
                JSONObject rowData = new JSONObject();
                Elements cells = row.select("td, th");
                for (int i = 0; i < cells.size(); i++) {
                    rowData.put("column_" + (i + 1), cells.get(i).text());
                }
                tableData.put(rowData);
            }
            jsonTables.put(tableData);
        }

        JSONObject result = new JSONObject();
        result.put("text", textContent);
        result.put("tables", jsonTables);

        return result;
    }
}

Next Steps
Test different HTML structures to ensure flexibility.

Enhance error handling to deal with missing sections or empty tables.

Consider XML serialization if needed for integration.
Please let me know above solution fit or not. Thank You !!
Reasons:
  • Blacklisted phrase (0.5): Thank You
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashok Singh

79618706

Date: 2025-05-12 22:25:15
Score: 1.5
Natty:
Report link

I think I might see what’s going on here. You're getting a StaleElementReferenceException, right? That usually happens when the element you’re trying to interact with is no longer attached to the page — maybe because the page has refreshed or the DOM has changed after switching the radio button.

After selecting the "Rooms Wanted" option and submitting the search, are you sure the search_box element is still the same? Could it be that the page reloads or rerenders that part of the DOM when the radio button is changed?

You should try to re-find the search_box element after switching to the second radio button like this:

rent_button = driver.find_element(By.ID, "flatshare_type-offered")

driver.execute_script("arguments[0].checked = true;", rent_button)

search_box = driver.find_element(By.ID, "search_by_location_field")

search_box.send_keys(postcode, Keys.ENTER)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: nkhalmatay

79618698

Date: 2025-05-12 22:11:12
Score: 2
Natty:
Report link

If you don't write plain text but html you can select text and use Emmet plugin to wrap part of the text with <strike> tag. There is the ctrl+shift+g shortcut for this.

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

79618697

Date: 2025-05-12 22:09:12
Score: 1
Natty:
Report link

The autoplot method for class 'tbl_ts' (not 'fbl_ts') allows for variable selection. Just cast the fable into a tsibble before autoplot.

cafe_fc |> lift_fc(lift = 2) |> as_tsibble() |> autoplot(.vars = .mean)

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

79618693

Date: 2025-05-12 22:06:11
Score: 2
Natty:
Report link

Answering my own question: AFAIK there is no 'proper' EL9 repo hosting libc++ packages

There is, however, a way to build the RPMs so they can be self hosted. I believe this [1] github repo has basically taken the RPM sources from upstream (Fedora) and made them available to build for EL9. There are also binary packages for x84_64 in the github release section, but it's probably not wise to trust those, and just build the RPMs yourself.

I'd be happy to retract this answer if there was a 'proper' EL9 repo to avoid the self build and host option. I'd also be interested if anyone knows the reason for the fact there is no official EL9 libcxx package.

[1] https://github.com/luscent/libcxx-el9/

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Neil Stephens

79618689

Date: 2025-05-12 22:03:09
Score: 5
Natty:
Report link

enter link description herehere is a quick solution while using expo version 53

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: james

79618677

Date: 2025-05-12 21:51:05
Score: 8 🚩
Natty: 5
Report link

Excuse me were you able to use the exchange microsoft email in Java Mail?

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: malta59

79618674

Date: 2025-05-12 21:50:05
Score: 0.5
Natty:
Report link

Provided you don't need to worry about keeping track of calculated nulls, you can make use of null-ish coalescing assignment (??=).

function memoize(result) {
  const cache = {};

  return function() {
    cache[result] ??= calculate(result);
    return cache[result];
  };
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andy Doyle

79618673

Date: 2025-05-12 21:49:04
Score: 2
Natty:
Report link

It seems that the NumPy maintainers decided it was best to not deprecate these conversions. It was:

Mind you, a warning is still raised, just a UserWarning that datetime64 keeps no datetime information. So, to answer the question:

OK, so how do I avoid the warning? (Without giving up a significant performance factor)

import warnings
import numpy as np

with warnings.catch_warnings():
    warnings.filterwarnings("ignore", category=DeprecationWarning)
    warnings.filterwarnings("ignore", category=UserWarning)
    t = np.datetime64('2022-05-01T00:00:00-07:00')  # np.datetime64 has no tz info
Reasons:
  • Blacklisted phrase (1): how do I
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: gabelepoudre

79618664

Date: 2025-05-12 21:32:01
Score: 1
Natty:
Report link

If anyone is still having trouble with this issue, I found setting the UPdateSource trigger to LostFocus instead of Propertychanged to work:

Text="{Binding NewAccountBalance, UpdateSourceTrigger=LostFocus, StringFormat=C}"

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

79618659

Date: 2025-05-12 21:30:00
Score: 2
Natty:
Report link

The problem is that you have to use "use client" for NextJs components using React Hooks.

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

79618645

Date: 2025-05-12 21:18:57
Score: 1.5
Natty:
Report link

I think I might see what’s going on here. You're getting a StaleElementReferenceException, right? That usually happens when the element you’re trying to interact with is no longer attached to the page — maybe because the page has refreshed or the DOM has changed after switching the radio button.

After selecting the "Rooms Wanted" option and submitting the search, are you sure the search_box element is still the same? Could it be that the page reloads or rerenders that part of the DOM when the radio button is changed?

You should try to re-find the search_box element after switching to the second radio button like this:

rent_button = driver.find_element(By.ID, "flatshare_type-offered")

driver.execute_script("arguments[0].checked = true;", rent_button)

search_box = driver.find_element(By.ID, "search_by_location_field")

search_box.send_keys(postcode, Keys.ENTER)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: nkhalmatay

79618633

Date: 2025-05-12 21:09:55
Score: 0.5
Natty:
Report link

In my case, I had to explicitly specify @latest to resolve the issue:

npm install --save-dev @types/node@latest
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @latest
  • High reputation (-1):
Posted by: DedaDev

79618632

Date: 2025-05-12 21:08:55
Score: 1
Natty:
Report link

The old methods may not work anymore. This is what is working for me to toggle copilot completions:

Add this snippet to your keybindings.json (Ctrl + Shift + P >>> Preferences: Open Keyboard Shortcuts)

{
    "key": "ctrl+shift+alt+o",
    "command": "github.copilot.completions.toggle"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matheus Antunes

79618624

Date: 2025-05-12 20:55:52
Score: 3.5
Natty:
Report link

Ok, so problem was that the redirect url for github must be http://localhost:8080/login/oauth2/code/github by default. After changed it, i can reach /secured (but it wouldn't redirect me there right after login - i need to do it manually)

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cichyvx

79618619

Date: 2025-05-12 20:53:51
Score: 4
Natty:
Report link

"نزدیکیوں کا فاصلہ"

نومان کے لیے پاکیزہ صرف ایک دوست نہیں تھی، وہ اُس کی زندگی کا وہ حصہ تھی جس کے بغیر سب ادھورا لگتا۔ پاکیزہ ہر بار اُس کی باتوں پر ہنستی، اُس کا خیال رکھتی، ہر دکھ میں ساتھ کھڑی ہوتی — لیکن جب بات محبت کی آتی، تو خاموش ہو جاتی۔

نومان نے کئی بار چاہا کہ وہ اپنے دل کی بات کھل کر کہے، مگر اُس نے کبھی پاکیزہ پر زور نہیں دیا۔
وہ جانتا تھا، محبت دباؤ سے نہیں، احساس سے پروان چڑھتی ہے۔

پاکیزہ کے دل میں بھی کچھ تھا — لیکن وہ ڈرتی تھی…
شاید کسی پر مکمل بھروسہ کرنے سے،
شاید ٹوٹ جانے کے خوف سے،
یا شاید اس لیے کہ نومان اتنا خاص تھا کہ وہ کھونا نہیں چاہتی تھی۔

ایک شام، بارش میں بھیگتے ہوئے دونوں کافی کے کپ ہاتھ میں لیے ایک بنچ پر بیٹھے تھے۔

نومان نے آہستہ سے کہا:
“پاکیزہ، میں تمہیں مکمل طور پر اپنانا چاہتا ہوں… تم جیسی ہو، ویسی۔ نہ بدلی ہوئی، نہ چھپی ہوئی۔”

پاکیزہ نے نظریں جھکا لیں۔ دل جیسے تیز دھڑکنے لگا۔

“میں تم سے دور رہ کر بھی تمہارے قریب محسوس کرتا ہوں، پاکیزہ۔
بس ایک بار، ایک بار کہہ دو کہ تم بھی چاہتی ہو…”

پاکیزہ خاموش رہی۔ لیکن اُس کی آنکھوں میں ایک نمی سی چمک رہی تھی — جو شاید ‘ہاں’ تھی، مگر الفاظ ڈر گئے تھے۔

وہ بولی:
“نومان… میں تمہارے ساتھ بہت خوش رہتی ہوں، تم پر بھروسہ بھی ہے، لیکن… مجھے محبت سے ڈر لگتا ہے۔
اگر کبھی ٹوٹ گئی تو؟
اگر کبھی تم بدل گئے تو؟”

نومان نے مسکرا کر اس کے ہاتھ تھام لیے:

“اگر ٹوٹ گئی، تو میں سنبھالوں گا۔
اگر کبھی بدلا، تو صرف وقت ہوگا… میں نہیں۔”

پاکیزہ نے آنکھیں بند کر لیں — جیسے وقت رک گیا ہو۔

اور وہ جانتی تھی — فاصلہ چاہے کتنا بھی ہو، دل کبھی دور نہیں تھا۔


انجام:
شاید وہ “ہاں” آج نہ آئی ہو، لیکن کبھی کبھی محبتیں مکمل ہونے کے لیے نہیں، بس سچی ہونے کے لیے ہوتی ہیں۔

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Noman khan

79618616

Date: 2025-05-12 20:53:51
Score: 2.5
Natty:
Report link

You can update the package name and keystore in EAS credentials. If you do this and the app is set up correctly, you should be able to update the app on the store

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

79618614

Date: 2025-05-12 20:50:50
Score: 1
Natty:
Report link

u dont need to deleted home/USER/.local/solana/install or something, just delete home/USER/.cache/solana and u can build or test the anchor program

This case occurs because there is a download/extract/build error in the anchor build/test process

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

79618603

Date: 2025-05-12 20:43:49
Score: 1
Natty:
Report link

The project runs okay, it's only a typescript error.

Changed the filename Env.ts -> Env.d.ts and the error went away... enter image description here

enter image description here

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