79576362

Date: 2025-04-16 03:54:08
Score: 0.5
Natty:
Report link

add --host to your package.json

vite doesn't server requests that are not originated from your localhost

image of package.json added --host to vite

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

79576361

Date: 2025-04-16 03:54:08
Score: 2.5
Natty:
Report link

Usually, data is read in batches to fine-tune the model.

For example, there is 1M of data, but I only use 64 non-overlapping data to fine-tune the model each time. After 15,625 iterations, the training of the entire data set can be completed.

Please refer to it, thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: CNLiu

79576360

Date: 2025-04-16 03:52:07
Score: 3
Natty:
Report link

Even if all parameters have default value in the report design, once deployed to the SSRS server, just simply uncheck 'Use default' of at least one parameter from the SSRS report web portal. The report will not run upon initial load/browsing to it.

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

79576350

Date: 2025-04-16 03:45:05
Score: 1
Natty:
Report link

Actually, due to the formulation of problem, the solver is always placing the item only on the edges, adding one more constraint helped to solve the issue:


m.constraints.append(node_p_var_dict[p][(0, shelf)] + node_p_var_dict[p][((section_width*bay_count)-1, shelf)] <= 1)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anand

79576346

Date: 2025-04-16 03:37:03
Score: 1
Natty:
Report link

As at 2025 the following line

tm_shape(mxr)+tm_raster(col="value")+tm_facets(by="class1","class2")

should be

tm_shape(mxr)+tm_raster(col="value")+tm_facets_grid(rows="class1",columns = "class2")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mark Randall

79576336

Date: 2025-04-16 03:23:00
Score: 2
Natty:
Report link

configure this:

@Bean
public TaskExecutor taskExecutor() {
    return new SimpleAsyncTaskExecutor("spring_batch");
}

@Bean
public Step sampleStep(TaskExecutor taskExecutor, JobRepository jobRepository, PlatformTransactionManager transactionManager) {
    return new StepBuilder("sampleStep", jobRepository)
                .<String, String>chunk(10, transactionManager)
                .reader(itemReader())
                .writer(itemWriter())
                .taskExecutor(taskExecutor)
                .build();
}

check out for this documentation : https://docs.spring.io/spring-batch/reference/scalability.html

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinay Rajaikar

79576328

Date: 2025-04-16 03:10:57
Score: 0.5
Natty:
Report link

Based on my experience, yes, it's definitely possible to get information about currently playing media on Android, though it requires some specific APIs.

The most reliable approach is to use the Media Session API, which lets you discover active media sessions and retrieve their metadata (title, artist, album art, etc.). You'll need to:

Here's what you'll need in your AndroidManifest.xml:
<uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL"/>
<uses-permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"/>

The trickiest part is that you need to implement a NotificationListenerService and request the user to grant notification access to your app - this is unavoidable since reading this data is considered sensitive.

One gotcha: media apps implement these APIs differently, so test with multiple players (Spotify, YouTube Music, etc.) to ensure your app works reliably.

If you run into issues with certain apps, you can fall back to reading media notifications, though that's more fragile.

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

79576323

Date: 2025-04-16 03:05:56
Score: 1.5
Natty:
Report link

The issue is likely caused by incorrect middleware order in Startup.cs. Try the following modification:

app.UseHttpsRedirection();
app.UseRouting();
app.UseCors("AllowAll");
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
    endpoints.MapControllers();
});

You can also refer to this document:

https://learn.microsoft.com/en-us/aspnet/core/fundamentals/middleware/?view=aspnetcore-3.1#middleware-order-2

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1): Try the following
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ballway

79576318

Date: 2025-04-16 02:56:54
Score: 1.5
Natty:
Report link

Some of the ways I couldn't understand achieved the desired effect : (

ggplot() +
  geom_raster(
    data = terra::as.data.frame(x[[1]], xy = TRUE) |>
      mutate(x1 = x - 180),
    aes(x = x1, y = y, fill = lyr.1)
  ) +  
  geom_sf(data = st_break_antimeridian(st_as_sf(a), lon_0 = 180)) +
  coord_sf(
    crs = "+proj=longlat +datum=WGS84 +lon_0 = 180",
    default_crs = sf::st_crs(4326),
    expand = FALSE
  )

enter image description here

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

79576315

Date: 2025-04-16 02:53:53
Score: 0.5
Natty:
Report link
sourceanalyzer -b PROJECT_NAME touchless cmake --build .
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: MiloDC

79576314

Date: 2025-04-16 02:53:53
Score: 0.5
Natty:
Report link

Sometime back I wrote an extension specifically designed to do just what your are asking:

Toggle Line Comments.

Once you install the extension the default keybinding is Ctrl/Cmd+Alt+/

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Mark

79576313

Date: 2025-04-16 02:52:52
Score: 4
Natty:
Report link

Thanks for suggestions from @ssbssa. I tried the GDB version 16.2 with the aforementioned settings, and the problem was solved.

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

79576306

Date: 2025-04-16 02:44:50
Score: 0.5
Natty:
Report link

Matplotlib does not offer a built-in function in its core library to enable hover effects. For this functionality, you may consider using the mplcursors library. Kindly try running the code below after installing mplcursors.

import matplotlib.pyplot as plt
import numpy as np
import mplcursors

x = np.random.rand(20)
y = np.random.rand(20)
colors = np.random.rand(20)
area = (30 * np.random.rand(20))**2

metadata = [f"Point {i}, Value: ({x[i]:.2f}, {y[i]:.2f})" for i in range(len(x))]

fig, ax = plt.subplots()
scatter = ax.scatter(x, y, s=area, c=colors, alpha=0.5)

plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.title('Interactive Scatter Plot')

cursor = mplcursors.cursor(scatter, hover=True)

@cursor.connect("add")
def on_add(sel):
    sel.annotation.set_text(metadata[sel.index])

plt.show()

Output:

enter image description here

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

79576304

Date: 2025-04-16 02:40:49
Score: 3
Natty:
Report link

The error stems maybe from version mismatches or missing native libraries in your JavaCPP/OpenCV setup.

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

79576303

Date: 2025-04-16 02:39:48
Score: 1.5
Natty:
Report link

I think you need to load the data to model

enter image description here

then you open the data model

enter image description here

you can add the calculated column in Power Pivot

enter image description here

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

79576298

Date: 2025-04-16 02:34:47
Score: 3.5
Natty:
Report link

Alright.. just when I was thinking I was crazy I bumped into this post. I think it could be a fabulous implementation and a very profitable business . If you are still interested, please let me know. NOW is probably a better time.

My Reasons:

1. **Enterprise WordPress users** would be most interested:

2. **Hosting providers** could be major customers:

3. **Specific use cases** would drive adoption:

The key is that you'd be targeting the upper end of the WordPress market - perhaps 1-5% of WordPress sites, but these represent the highest-value installations.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dr T

79576297

Date: 2025-04-16 02:33:46
Score: 3
Natty:
Report link

I had been WITH MY BABIES, SINCE BIRTH... BEFORE FAKE ASS CORRECTIONS AND PROBATION ON MY FINANCIALS,TOOK MY LIFE OVER A DWI ON MRIS AS A DIFFUSER,ON A FELONY PUNISHMENT SUBSTNCE ABUSE BEHAVIOR CORRECTION THERAPEUTIC ROB LINDSEY ANNE MAXFIELD, AS A COMMUNITY.ON AS SAFP SAPFASTRAC, AS OF FENDER. FIRST OFFENSE AND REPEAT OFFENDER... 87 WEEKS THATS 17MONTHS... IN 2010 AFTER A 2008 FIRST AMD ONLY, .W.I. DRIVER WITH INSURANCE OR DELIVERY WITH INTENT... AS A COURIER ASA CONCIERG.. YOU JUST GOT KE AS INGREDIENTS. AS IF IN MY COMPANY AS ACCOMPANIED BY EACORTED BY. . . CITY AS FED. PSEUDAFED. BABY KILLING ORGAN SELLING FUKN ASSHOLE MASTERMIND IDIOTS. ON MY CREDENTIALS.AND EVERY SUBJECT AS SCIENCES AS THT BURN BABIES ON MY SWAPPED BURNETT TEXAS FOR HUNTSVILLE. THEYRE KILLING THE CHILDREN. YOU STUPID ASS FUKN CANADIAN RETARD DOWNESYNDROME FOR REAL FOR REAL DUMBASS THINKING FUKN GOONS. STOP ANDI MEAN STOP NOW! I HATE YOU ALL OF YOU. IHAVE BEEN PUNKED AROUND ALL MY LOFE VY YOUR FUKN FIP THE REAL FOR THE "LAME"... FUCKERS.MUNICIPAL

Reasons:
  • Blacklisted phrase (2): FUCK
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Keitharentthee Lindseyannemaxf

79576294

Date: 2025-04-16 02:25:44
Score: 4.5
Natty: 4.5
Report link

Video link contains link to malicious website Please correct it Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Video link
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Qulu Quliyev

79576287

Date: 2025-04-16 02:18:42
Score: 1.5
Natty:
Report link
// path = @"C:\Program Files\Audials\Audials 2025\Audials.exe"
string LastTokenFromPath(string path) => path.Split('\\').Last();

Result: "Audials 2025"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Latency McLaughlin

79576280

Date: 2025-04-16 02:04:39
Score: 1
Natty:
Report link

java-sqs-listener a lightweight, dependency-free library was developed for exactly, with a design that supports seamless future upgrades. Refer to java-sqs-listener-springboot-example for a demonstration of how to integrate the java-sqs-listener library within a Spring Boot application.

Disclaimer: I’m the author.

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

79576275

Date: 2025-04-16 01:54:36
Score: 1.5
Natty:
Report link

The issue is with the Iceberg catalog configuration in the PySpark setup. Try below steps

Change SparkSessionCatalog to SparkCatalog

Add region configuration for Glue catalog

Remove redundant spark.sql.datalake-formats setting. Make sure you have the correct dependencies in your Glue job.

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

79576250

Date: 2025-04-16 01:25:29
Score: 2.5
Natty:
Report link

please see this: https://github.com/playframework/playframework/issues/3334
I also have this issue when using Form class with bindFromRequest() . Just use JSON should be ok

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

79576249

Date: 2025-04-16 01:24:28
Score: 4.5
Natty: 5
Report link

I encountered the same question , and the website http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec can't be open

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

79576248

Date: 2025-04-16 01:24:28
Score: 1
Natty:
Report link

The easiest solution would be to use SimpleQueue as suggested by user2357112's response - but I need to maintain support for python <3.7 which doesn't include it.

Upon further reading on python reentrancy, I learned signals can only trigger between atomic operations.

Therefore I switched from queue to deque, which is O(1) and atomic on both append() and popleft(), and therefore also thread-safe + signal-safe.

import signal
from collections import deque

event_queue = deque()

def signal_handler(signum, frame):
    event_queue.append(signum)
        
signal.signal(signal.SIGWINCH, signal_handler)

while True:
    if event_queue:
        evt = event_queue.popleft()
        print(f"Got an event: {evt}")
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ShawnM

79576241

Date: 2025-04-16 01:09:25
Score: 3.5
Natty:
Report link

You should be able to add -ErrorAction SilentlyContinue to the command that is throwing an error for you. See: https://serverfault.com/questions/336121/how-to-ignore-an-error-in-powershell-and-let-it-continue

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

79576238

Date: 2025-04-16 01:03:24
Score: 2
Natty:
Report link

You should use the metrics filter with the correct syntax to delete AWS Lambda functions that haven’t been invoked in the last 90 days using Cloud Custodian. Your Version 3 is closest, but the statistic field should be Statistics (capital S) and the value should be a list.

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

79576237

Date: 2025-04-16 01:01:23
Score: 1.5
Natty:
Report link

I am using GKE, and because I have a VPC enabled cluster, the BackendConfigs were using NEG to route traffic directly to pods, completely bypassing the usual kubernetes service behavior I was used to.

I had to declare my own backend config instead of allowing the default version, and I also had to instruct my service to use it of course.

This change was absolutely brutal to unpack. I'm confused that I haven't been able to find documentation very easily, and not much help from AI.

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

79576236

Date: 2025-04-16 01:01:23
Score: 3
Natty:
Report link

Although I have learnt a lot with the solutions presented here, none of them worked on my android 11.0.0.

At the end, I succeed make it work installing the apk "shellms" on my mobile as suggested in this link

Do not mix up shellms with f-droid.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Miltoneo

79576229

Date: 2025-04-16 00:51:21
Score: 1
Natty:
Report link

java-sqs-listener a lightweight, dependency-free library built for this exact use case, with a design that supports seamless future upgrades. Refer to java-sqs-listener-springboot-examplefor a demonstration of how to integrate the java-sqs-listener library within a Spring Boot application.

Disclaimer: I’m the author.

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

79576217

Date: 2025-04-16 00:37:18
Score: 1
Natty:
Report link

Since react-native-keyevent not updated anymore, please take a look at this one: react-native-external-keyboard-listener. It provide the same feature but you not need to setup your MainApplication and AppDelegate anymore. It also supports detect if external keyboard is connected or not.

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

79576216

Date: 2025-04-16 00:34:17
Score: 1.5
Natty:
Report link

Try to new brew command:
brew install --cask font-sauce-code-pro-nerd-font

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chung-Yen Hung

79576211

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

Have you tried this?

document.addEventListener('visibilitychange', () => {
  if (document.visibilityState === 'hidden') {
    // Optional: notify or log
  } else {
    // Resume any UI updates if needed
  }
});
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Joanne Leung

79576206

Date: 2025-04-16 00:26:15
Score: 1.5
Natty:
Report link

Great breakdown – this reminds me of a pattern I’ve been building recently in .NET called StackWeaver.
It's a service metadata registry that tracks layers, dependencies, and fallback capabilities across large-scale systems.
It’s not low-level like AQS, but it models fallback paths, callbacks and failure detection at the application architecture level.

Your analysis of tail == null and relaxed writes made me wonder if the same state-tracking principles could be represented or orchestrated in a metadata-driven way.

If you're curious, I'd love to hear what you think:
Modular .NET service registry with metadata, tagging and .bat execution (StackWeaver project)
(also on GitHub soon)

Thanks again for the deep dive – this was fun to read!

First try here :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maggio333

79576202

Date: 2025-04-16 00:12:12
Score: 3
Natty:
Report link

Thanks Azim! That worked for me, also using double quotes like mykonos commented.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fleur_du_mal

79576196

Date: 2025-04-16 00:04:10
Score: 0.5
Natty:
Report link

In case anyone else still encounters this issue even when applying the correct RBAC permissions, we had a difficult to diagnose edge case that led to the same symptoms.

We have a use for both System and User Managed Identities assigned to the Logic App (Standard). Our Bicep templates were assigning the above RBAC permissions correctly to the System Managed Identity principal. We also had AZURE_CLIENT_ID set in the Logic App environment variables with the identity of the User Managed Identity so that this could be used as the principal for auth with certain other services.

It seems that the Azure Blob Storage SDK being used by the Logic App internal connector picks up AZURE_CLIENT_ID if present and uses that identity for its authentication with the Storage Account (which in our case, didn't have the "Storage Blob Data Contributor" RBAC permission set because that identity was not intended to be used for that purpose).

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

79576194

Date: 2025-04-16 00:00:09
Score: 2
Natty:
Report link

I found a fairly simple solution (which worked for our purposes):

I simply opened the https://login.microsoftonline.com/..etc.. URL in a new browser tab. No more CORS error, because now there is no 'origin' :)

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

79576189

Date: 2025-04-15 23:51:06
Score: 3.5
Natty:
Report link

You can have separate lambda only to generate random numbers. It will be uniform for all of your environments.

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

79576188

Date: 2025-04-15 23:51:06
Score: 3
Natty:
Report link
Check that the import is java.util.Date and not java.sql.Date


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

79576187

Date: 2025-04-15 23:50:06
Score: 1.5
Natty:
Report link

You can assume they are the same as most of toolchains would interpret "RV32" target as "RV32I", treating I as a default extension. However you may expected some tools may not work. Using "RV32I" is a clearer message. Although "I" can be considered as a default extension, it has an alternative: the "E" extension ("RV32E") is an I-equivalent for embedded, limited-resources systems. It provides the same instruction set as "I", but only 16, rather than 32 registers.

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

79576180

Date: 2025-04-15 23:39:04
Score: 1
Natty:
Report link

It's a little late, but I found that in my case, I was losing mouse capture to the containing scrollviewer almost immediately, so I canceled the event bubbling up using e.Handled = true; and that solved my problem.

 private void VolumeSlider_PreviewTouchDown(object sender, TouchEventArgs e)
 {            
     (sender as Slider).CaptureTouch(e.TouchDevice);
     e.Handled = true;
     return;            
 }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: nixkuroi

79576178

Date: 2025-04-15 23:38:03
Score: 5.5
Natty: 5.5
Report link

There's a big folder, are we uninstalling the whole folder - deleting it?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fopefoluwa Ikufisile

79576176

Date: 2025-04-15 23:31:01
Score: 1
Natty:
Report link

unnest the field before you do the export so that is resembles a flat table (csv, etc). Looks like you have an array_agg(struct(.., ..)) fields (called _headers and data) in your source table, see error, e.g.:
_headers.sourceId AS sourceId, _headers.uid AS uid, _headers.messageId AS messageId

unnest these columns and you should be good to go.

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

79576175

Date: 2025-04-15 23:27:59
Score: 6 🚩
Natty: 4.5
Report link

Im facing the same issue at the moment, will you be able to explain how you resolved it please. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • 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: UII

79576173

Date: 2025-04-15 23:25:59
Score: 3
Natty:
Report link

Which C++ language server are you using? The language server is different from the compiler. None of gcc/g++/clang provides a language server. Likely the toolchain installed together with Visual Studio happened to include a language server, e.g., clangd.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (0.5):
Posted by: Cheng Lian

79576170

Date: 2025-04-15 23:21:58
Score: 1.5
Natty:
Report link

I found that is a bug at [email protected] .

polyfilling setImmediate didn't help.

For now, the only way to removes the problem is downgrading react-native to 0.76.7

github://react-native/issues/49739

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

79576167

Date: 2025-04-15 23:20:57
Score: 2.5
Natty:
Report link

I wanted to follow up and see if you guys ever figured this out. I'm currently struggling with understanding AkGeometry and AkRoom nodes. I was hoping that what I could do was simply make a parent of a group of StaticBody3D nodes have a AkGeometry node as a child, making that whole grouping share the same settings for AkGeometry such as defining the texture as Wood, but I can't figure out how this works. It's really frustrating that there isn't enough documentation for how these things work with this plugin

Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30283399

79576156

Date: 2025-04-15 23:06:54
Score: 3.5
Natty:
Report link

AzureWebJobsStorage in local.settings.json needs to be added to the Logic App as an environment variable on the Azure portal.

enter image description here

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

79576154

Date: 2025-04-15 23:04:53
Score: 4
Natty: 5
Report link

Super intuitive and helpful-- many thanks

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

79576152

Date: 2025-04-15 23:03:52
Score: 4
Natty:
Report link

After more slicing and dicing, I've found the problem. It's the existence of a selectizeInput.

I'll add a dummy selectizeInput to the minimal code below, which now demonstrates the filtering clearing issue.

Does anyone know how to get the filter clearing working properly while still using a selectizeInput?

#these are all the packages used in my real app, which I wanted to load for the minimal example
library(ggplot2)
library(tidyverse)
library(pool)
library(DT)
library(glue)
library(pool)
library(shinyjs)
library(stringr)
library(data.table)
library(lubridate)
library(shinydashboard)
library(rmarkdown)
library(shinyBS)
library(plyr); library(dplyr)
library(stringi)

# UI
ui <- navbarPage(useShinyjs(),
                 tabPanel(
                   titlePanel("DT Filters with Characters"),
                   DTOutput("filtered_table"),
                   actionButton("mybutton","testing"),
                   selectizeInput("test1", label = "nothing", choices = c("1")) #the problem
                 )
)  
# Server
server <- function(input, output, session) {
  
  names <- sample(c("Mike", "Dave", "Anna", "Sara", "John"), 11, replace = TRUE)
  
  results <- c("<1.3", ">20", "&50", "\"quoted\"", "'single'","semi;colon", "slash/", "\\backslash", "equal=sign","#hash", "comma,separated")
  
  data <- data.frame(Name = names, Result = results, stringsAsFactors = TRUE)
  
  output$filtered_table <- renderDT({
  
    datatable(
      data,
      plugins = "input",
      rownames = TRUE,
      filter = "top",
      options = list(pageLength = 10)
    )
  })
}


shinyApp(ui, server)
Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave916

79576148

Date: 2025-04-15 22:56:50
Score: 2.5
Natty:
Report link

Thanks to @OscarBenjamin, I learned that the SymPy function expand_trig() (but not method, which I tried) does the job: indeed,

from sympy import S,expand_trig
tanh,artanh = S("tanh, artanh")
def f(n):
    n=S(n)
    return expand_trig(tanh(sum(artanh(k/n) for k in range(1,n))))

f(3)  # does return 9/11 !
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @OscarBenjamin
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Max

79576144

Date: 2025-04-15 22:54:49
Score: 1.5
Natty:
Report link

Like @cafce25 said RUSTFLAGS='--cfg getrandom_backend="wasm_js"' trunk serve in the CLI works.

But, if you're tired of doing it the whole time and just want to use trunk serve (and also make it easier for other people working on your project), I'd recommend to add a cargo config.

Create a .cargo directory with config.toml inside with:

[target.wasm32-unknown-unknown]
rustflags = ["--cfg", "getrandom_backend=\"wasm_js\""]
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @cafce25
  • Low reputation (1):
Posted by: Shader

79576130

Date: 2025-04-15 22:44:46
Score: 3.5
Natty:
Report link

Just checking in my analytics and privacy systems folder and I came across this piece in the given file format, just curious as to my timing is definitely not in accordance

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

79576129

Date: 2025-04-15 22:43:46
Score: 1
Natty:
Report link

from pydub import AudioSegment

from scipy.io import wavfile

import numpy as np

# Simulate the creation of an "anfotonio" style gospel ballad audio (as placeholder)

# Generate a simple sine wave as placeholder content

duration_seconds = 5 # short placeholder audio

sampling_rate = 44100

frequency = 440 # A4 note

t = np.linspace(0, duration_seconds, int(sampling_rate * duration_seconds), endpoint=False)

audio_wave = 0.5 * np.sin(2 * np.pi * frequency * t)

audio_wave = (audio_wave * 32767).astype(np.int16) # Convert to 16-bit PCM

# Save as WAV file

output_path = "/mnt/data/sandy_bob_anfotonio_gospel_ballad.wav"

wavfile.write(output_path, sampling_rate, audio_wave

)

output_path

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

79576115

Date: 2025-04-15 22:35:43
Score: 1
Natty:
Report link

In my case, the workaround was to change the interpreter version from 3.12 to 3.11 and the moviepy version to

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

79576114

Date: 2025-04-15 22:34:43
Score: 1
Natty:
Report link

The best answer I have come up with is to use named semaphores in pairs. The second one of the pair is used to count processes waiting on the first. You post to the second just before waiting on the first, incrementing the count. When you are done, you do a wait on the second semaphore just before doing the post to the first, releasing it. The wait on the counting semaphore will never actually wait, because the first thing that thread did was to increment it. Instead it just decrements the count of threads using the first semaphore. Any monitoring process can open the counting semaphore and use getvalue to check the count.

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

79576111

Date: 2025-04-15 22:32:42
Score: 1.5
Natty:
Report link

This is the solution that I found:
(If you have an OS build in solution please let me know)

  1. Get file2clip utility
    Download from github.com/rostok/file2clip or compile it yourself (C#).

  2. Add to yazi.toml config

[[manager.prepend_keymap]]
on = "y"
run = [ "shell --block -- file2clip %*", "yank" ]

How to use:

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: rubStackOverflow

79576109

Date: 2025-04-15 22:31:42
Score: 2
Natty:
Report link

Assuming your SCP is in raw JSON then ${PARTITION} has no meaning — are you trying to use the CloudFormation AWS::Partition pseudo parameter? Try hardcoding aws instead.

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

79576107

Date: 2025-04-15 22:28:41
Score: 0.5
Natty:
Report link

Avalanche recently renamed the option --staking-enabled to a more general one --sybil-protection-enabledUnfortunately, they did not mention the renaming in the new documentation.

So, the correct options are ``--network-id=local --snow-sample-size=1 --sybil-protection enabled=false`

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vader B

79576106

Date: 2025-04-15 22:27:40
Score: 3
Natty:
Report link

An answer has been found for the causes by @kgoebber and posted at https://github.com/Unidata/MetPy/issues/3790#issuecomment-2807622049.

The cause for both the unreasonably large negative and positive CAPE values were from the mixing-ratio calculation at levels above at least 10 hPa levels, where normal sounding would not be able to reach. By limiting the calculations to levels below 100 hPa (kgoebber) or 50 hPa (my test), the unreasonable values disappear.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @kgoebber
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Xingang Fan

79576101

Date: 2025-04-15 22:19:39
Score: 2
Natty:
Report link

According to the godartsass doc:

Note: The v2.x.x of this project targets the v2 of the Dart Sass Embedded protocol with the sass exexutable in releases that can be downloaeded here. For v1 you need to import github.com/bep/godartsass and not github.com/bep/godartsass/v2.

You have to install dart-sass standalone binary instead of dart-sass-embedded. It's also important to not have JavaScript SASS (installed with e.g. npm i -g sass) version in a $PATH - you will also get the same error, because sass --embedded is not available in this version. You should be able to pass dart-sass binary location in godartsass.Options.

I was just struggling with this issue and finally realized what caused the problem.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): also get the same error
  • Low reputation (0.5):
Posted by: MarcinC

79576100

Date: 2025-04-15 22:19:39
Score: 1
Natty:
Report link

I think this should achieve your goal

let some_on_click_handler = Callback::new(move |evt: FretClickEvent| {
    if let Some(node) = error_text_node_ref.get() {
      // access the current style
      let style = window().get_computed_style(&node).unwrap().unwrap();
      let animation_name: String = style.get_property_value("animation-name").unwrap();

      // [...] do something with this information

      // change the style
      node.style("animation-name: shake");
    }

    // some other logic for setting error_text..
});

First, you get all the current styling of an element using Window's get_computed_style() (Rust binding by web_sys of the JS function) and then use get_property_value() to access a specific CSS style value.

Then, to set the style you use the style() which you found yourself. You can e.g. pass it a dynamically created String.


instead I want to access the style and change one property on it

What you're asking for here is mutable reference to a specific style, and this is impossible as far as I know.

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

79576096

Date: 2025-04-15 22:16:38
Score: 0.5
Natty:
Report link

Spark does not support creating a persistent view using a DataFrame, this is not limited to PySpark.

This is because a persistent view is backed by a "view text", essentially a cleaned SQL query. DataFrames, OTOH, only produces an in-memory query plan without a SQL query in text format, and therefore cannot back a persistent view.

With Spark Connect, now we have a stable API to represent query plans. It would be an interesting project to support this feature by persisting the serialized query plan instead of SQL query text.

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

79576091

Date: 2025-04-15 22:05:36
Score: 2
Natty:
Report link

For issues pertaining to "Got permission denied while trying to connect to the Docker daemon socket at..." I had that resolved by adding myself to the docker group:

sudo usermod -a -G docker $USER

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

79576090

Date: 2025-04-15 22:05:36
Score: 1
Natty:
Report link

It seems that you might experience the one of the following scenario:

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

79576088

Date: 2025-04-15 22:03:34
Score: 4
Natty:
Report link

Used Batch Interceptor and it works.

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

79576074

Date: 2025-04-15 21:56:32
Score: 3
Natty:
Report link

bootstrap node

header 1 header 2
header node
headed node
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jawad swati

79576072

Date: 2025-04-15 21:56:32
Score: 0.5
Natty:
Report link

This library "BlackSheep" is helpful for converting ObjectList to Excel file.

This NuGet package simplifies the process of exporting data from your .NET applications to Excel files. It allows you to convert a list of objects directly into an Excel spreadsheet, saving you the hassle of manual file creation and formatting.
https://www.nuget.org/packages/BlackSheep

Reasons:
  • No code block (0.5):
Posted by: Nihar Sarkar

79576071

Date: 2025-04-15 21:55:32
Score: 0.5
Natty:
Report link

I had the same error where setting backButtonHidden on the first page lead to a freeze when swiping back from a second page. I found two things that fixed it:

  1. Switching title to inline mode

  2. Root cause for me was I set .becomeFirstResponder() on a textView in the second page and moving this to be more tightly tailored to the UITextView's lifecycle lead to fixing the issue/

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

79576067

Date: 2025-04-15 21:52:31
Score: 3
Natty:
Report link

It looks like I can do it this way:

PERMISSIONS=$(stat -c %a $FILE)
.......
chmod $PERMISSIONS $FILE

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

79576064

Date: 2025-04-15 21:49:30
Score: 0.5
Natty:
Report link

I literally just ran into this . . .

My issue was that I had created a custom build (for reasons), but I had spaces in my build configuration. I had "Release for Andy". This gets buried in your bin folder. Looks like msbuild or xamarin didn't like that. Changing the name of the build configuration (create a new one as a rename doesn't work), to one without spaces solved it for me.

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

79576061

Date: 2025-04-15 21:44:29
Score: 6
Natty: 8
Report link

This is exactly what I needed !! However my code stops after one copy, so it works for Copy 01 but than it exits. Do you know what this could be?

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user15079730

79576059

Date: 2025-04-15 21:43:28
Score: 0.5
Natty:
Report link

You probably did not set your api key.
You can confirm using the following:

import getpass
import os

if "OPENAI_API_KEY" not in os.environ:
    os.environ["OPENAI_API_KEY"] = getpass.getpass("Enter your OpenAI API key: ")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adeva1

79576056

Date: 2025-04-15 21:39:27
Score: 2.5
Natty:
Report link

You can try right-clicking on the "incompatible" project in the Solution Explorer and selecting "Reload Project".

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

79576052

Date: 2025-04-15 21:35:26
Score: 1
Natty:
Report link

Adding this in case anyone is looking to use the filter function to filter out not visible cells without using a helper column.
You can combine ROWS, SEQUENCE and INDIRECT to force excel to feed an array into and out of SUBTOTAL (or whatever other function you like). In my opinion this is easiest in a LET function, but up to your use case. Example below.

Working backwards, [YourArray] is passed to ROWS to grab how many rows are in your array. This is then used by SEQUENCE to make an array of row numbers, using 1 column, 1 step and start position of 1. This is then combined with the column letter (in the example below this is E) into an address string for each row number passed from SEQUENCE, creating an array of strings {"E1";"E2";"E3";....}.
This array is passed to INDIRECT in A1 format which outputs as an array of cell address' {E1;E2;E3;....}.
SUBTOTAL then takes the array of address' and evaluates each individual address before returning it to the array. If E1 & E3 are visible and E2, the array will look like this {1;0;1;...}.
It then passes the array to FILTER as a TRUE FALSE for each cell in the column.

Example:
=FILTER([YourArray],SUBTOTAL(3,INDIRECT("E"&SEQUENCE(ROWS([YourArray]),1,1,1),TRUE)),"")

Note: This formula checks for visible rows.

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

79576042

Date: 2025-04-15 21:26:24
Score: 0.5
Natty:
Report link

As mentioned already by Mikael Eliasson, once you have run your query, you can left click on a data cell and do CTRL+A, to select all your data (except not the headers),

then hold down CTRL+SHIFT and press 'C', this copies all your data including Headers,

then go into Excel and paste your data into a new Excel document. Job done.

Or you can right-click on your data to show the pop up menu, then "Select All", then "Copy with Headers". Then paste into an new Excel document.

enter image description here

Added this as I feel more precedence should be given to his last comment (I initially missed it and found this answer by trial and error myself)

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

79576037

Date: 2025-04-15 21:19:22
Score: 2.5
Natty:
Report link

Using @mike-m's suggestion correctly, i.e.:

On the `<ToggleButton>` itself, you would use `style="@android:style/Widget.Button.Toggle"`, not the theme.

got me going. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @mike-m's
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: mmo

79576029

Date: 2025-04-15 21:14:20
Score: 2.5
Natty:
Report link

We had the same issue and it turned out someone had added a capacitor plugin for firebase. Not exactly sure which one, I think "FirebaseAuthentication". This plugin was not used when we built it for web and android which is why it worked, but for some reason it picked it up during the ios build and it broke the app.

Reasons:
  • Blacklisted phrase (1): This plugin
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ionic-helper-123

79576027

Date: 2025-04-15 21:11:20
Score: 3.5
Natty:
Report link

If you select text from the first character onwards, the number of characters you select will be visible next to your line/col number. Awfully hacky!

enter image description here

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

79576021

Date: 2025-04-15 21:04:18
Score: 0.5
Natty:
Report link

Extending jamessan answer

Unquote next quoted string on line that's enclosed in double quotes

For visual-block selection, patternwise rather than linewise, double to single

For visual-block selection, patternwise rather than linewise, removing

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

79576018

Date: 2025-04-15 21:01:17
Score: 1
Natty:
Report link

I recommend reading Vladimir Khorikov's excellent post: https://enterprisecraftsmanship.com/posts/database-versioning-best-practices/.

The main choice is between state based and migration based.

I'd recommend Database Projects (for MSSQL) aka dacpac for state based and DBUp for migration based.

If you have money to spend look into https://www.red-gate.com/products/flyway/

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

79576017

Date: 2025-04-15 21:01:17
Score: 1.5
Natty:
Report link

You can't use parenthesis in your strings do it like this:

console.log("This is how you do it --> \'")

You need to use \' instead of '.

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

79576011

Date: 2025-04-15 20:49:13
Score: 1.5
Natty:
Report link

You can try using item.field to access the property field of item

const item = {'field': 2};
console.log(`${item.field}`)

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

79576010

Date: 2025-04-15 20:48:13
Score: 1.5
Natty:
Report link

curl http://localhost:3000/hello?id=123

Proper short-hand way to use curl with query params is to encapsulate url in quotes. Try:

curl "http://localhost:3000/hello?id=123"

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

79575994

Date: 2025-04-15 20:37:06
Score: 2.5
Natty:
Report link

I ran into the same exception (but not with Quarkus). For me, it was caused by 2 different versions of log4j on the classpath... make sure you only have one version in your dependency hierarchy.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: N. M. Folts

79575993

Date: 2025-04-15 20:36:00
Score: 7 🚩
Natty: 5
Report link

looking for the same thing. any luck?

Reasons:
  • Blacklisted phrase (1.5): any luck
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Brandon Austin

79575988

Date: 2025-04-15 20:30:59
Score: 3.5
Natty:
Report link

Azure AI Search now supports metrics facets and hierarchical facets. Please see more here: https://learn.microsoft.com/en-us/azure/search/search-faceted-navigation-examples#facet-hierarchy-example

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

79575987

Date: 2025-04-15 20:29:58
Score: 3.5
Natty:
Report link

var randomVariable = Math.floor(Math.random() * (6-1) + 1);

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FRANCISCO IGNACIO IRARRZABAL H

79575984

Date: 2025-04-15 20:28:58
Score: 1
Natty:
Report link

So I found a workaround. I realised that the GIF url context variable was not being updated.

So in the context hook I extracted the array of urls from the backend and I added that in as another context variable.

Then I used a currentIndex variable that is I used in the context to move to the next question to access the elements in my urls array.

That way I just extracted the urls and put them in an array and then passed that through context and looped through the array to extract the relevant gif url

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

79575980

Date: 2025-04-15 20:23:49
Score: 0.5
Natty:
Report link

It should be the following query-generating code.

sender = aliased(User)
recipient = aliased(User)
query = (
    select(Message)
    .join(sender, Message.id_from == sender.id)
    .join(recipient, Message.id_to == recipient.id)
    .options(contains_eager(Message.sender.of_type(sender)),
             contains_eager(Message.recipient.of_type(recipient)))
    .order_by(direction(sender.id))
)

Found it here

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

79575979

Date: 2025-04-15 20:22:45
Score: 5
Natty: 5.5
Report link

I had a similar problem. For me, I had to split my dataset, otherwise when I went to change my date data into a YMD format, it turned everything into NA's. Is there an upper limit on the number of rows/entries?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30282596

79575973

Date: 2025-04-15 20:15:42
Score: 10.5 🚩
Natty: 5
Report link

Did you find a solution? Because i'm having the same problem... I mean, i can see the home page but everytime i have to comunicate with a controller and going to another url, i have a 500, and no more information, no logs, no laravel log... i don't know what else to do. I tried making an example controller with a simply method for try in the IONOS host, but it didn't work. Everything works locally but not when i try in IONOS. I tried modifying the .htaccess as your answers say but it didn't do anything :(

Reasons:
  • Blacklisted phrase (1): i'm having the same problem
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Alvaro

79575969

Date: 2025-04-15 20:13:41
Score: 1.5
Natty:
Report link

I had the same issue and deleting Debug/Release did not help but deleting the obj folder resolved my issue :)

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

79575966

Date: 2025-04-15 20:13:41
Score: 2.5
Natty:
Report link

In the most recent version of scikit-learn (v1.4) they added support for missing values to RandomForestClassifier when the criterion is gini (default).

Source: https://scikit-learn.org/dev/whats_new/v1.4.html#id7

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

79575965

Date: 2025-04-15 20:13:41
Score: 2
Natty:
Report link

In my response to a similar question, I mentioned that you can do this using surveydown. Since you specifically asked "Do you know any similar projects that would be a good start", I feel it's appropriate to point you to surveydown as a possible solution. I am the surveydown maintainer, and some of my responses are getting flagged as promotion, so I'm trying to be careful here and make sure I am actually answering your question and not be perceived as simply promoting the project. In this case, I think it's fair to suggest surveydown as a possible solution since that is exactly what was asked.

In any case, to be even more specific, here's any example of a survey where the questions gets displayed based on responses to other questions. I'm not sure if this kind of question dependency is what you want but it's an example.

To implement this. You would need a survey.qmd and app.R file. First, start with a generic template using sd_create_survey(). Then edit the files.

In the survey.qmd file, you could have something like this:

---
format: html
echo: false
warning: false
---

```{r}
library(surveydown)
```

::: {#welcome .sd-page}

# Sushi Survey

```{r}
sd_question(
  type = "mc_multiple",  # For multiple selection
  id = "sushi_rating",
  label = "On a scale from 1-3, how much do you love sushi?",
  option = c(
    "1" = "1",
    "2" = "2", 
    "3" = "3"
  )
)

# Question that shows conditionally if user selected "1"
sd_question(
  type = "mc",
  id = "really_question",
  label = "Really?",
  option = c(
    "Yes" = "yes",
    "No" = "no"
  )
)

# Question that shows conditionally if user selected "2"
sd_question(
  type = "mc",
  id = "test_question",
  label = "Test",
  option = c(
    "Yes" = "yes",
    "No" = "no"
  )
)

sd_next()
```

:::

::: {#end .sd-page}

# Thank you!

Thank you for completing the survey.

:::

Then in your app.R file, something like this:

library(surveydown)

# Connect to database or use preview mode
db <- sd_db_connect(ignore = TRUE)

server <- function(input, output, session) {
  
  # Conditionally show questions based on sushi rating
  sd_show_if(
    # Show "really_question" if user selected "1"
    "1" %in% input$sushi_rating ~ "really_question",
    
    # Show "test_question" if user selected "2"
    "2" %in% input$sushi_rating ~ "test_question"
  )
  
  # Main server function
  sd_server(db = db)
}

shiny::shinyApp(ui = sd_ui(), server = server)
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Do you know any
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jhelvy

79575955

Date: 2025-04-15 20:08:39
Score: 5.5
Natty: 5
Report link

If I want to select inserting an image into the tab bars, hope do I do it? Instead of the bar just being a solid color, I want it to be a bunch of tiny Cinnamorolls! Perhaps you would know?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Purdence Henry

79575953

Date: 2025-04-15 20:05:37
Score: 5.5
Natty:
Report link

I only need the whole screen to zoom but I dont know how to do it can someone tell me with python pygame. also I use techsmart

Reasons:
  • RegEx Blacklisted phrase (2.5): can someone tell me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brixton Ottley

79575950

Date: 2025-04-15 20:05:37
Score: 3.5
Natty:
Report link

I found a solution. Steps to Generate LinkKit.framework.dSYM Manually.
Make sure to follow each step.
https://github.com/jorgefspereira/plaid_flutter/issues/148#issuecomment-2807321076

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

79575930

Date: 2025-04-15 19:52:32
Score: 3
Natty:
Report link

For it was that i forgot to change namespace in build.gradle. you have to change both application id and namespace

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

79575926

Date: 2025-04-15 19:47:30
Score: 0.5
Natty:
Report link

Try to use a service account and authenticate with a Bearer token on your backend to call the ReCAPTCHA Enterprise API:

Tip: Try replacing %7B and &7D with your actual project-id and %7BAPI_KEY%7D with your raw API key. Do not enclosed them to {} or use it

From:

https://recaptchaenterprise.googleapis.com/v1/projects/%7BPROJECT_ID%7D/assessments?key=%7BAPI_KEY%7D

To:

https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/assessments?key=API_KEY

If you’ve recently upgraded to Enterprise but haven’t updated your verification backend, that’s likely the source of your issue.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KikoZam

79575922

Date: 2025-04-15 19:44:29
Score: 0.5
Natty:
Report link

The Angular DatePipe automatically converts UTC to local timeszone. I specifiy you need to put the timezone:

<td class="px-4 py-2">{{ meal.date | date: 'fullDate' }}</td>

This worked since my dates are stored in UTC

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