79811314

Date: 2025-11-06 13:27:07
Score: 1
Natty:
Report link

warning ⚠ ne faites pas cette commande cela empeche la connection au serveur

// Source - https://stackoverflow.com/questions/48583321/how-to-remove-port-from-url-for-node-application-using-nginx
// Posted by Harshit
// Retrieved 2025-11-06, License - CC BY-SA 4.0

server_name 21.11.42.250; // your current IP address or domain name
location / {
    proxy_pass http://127.0.0.1:3000; // local running port initialization
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xds74

79811311

Date: 2025-11-06 13:24:06
Score: 1.5
Natty:
Report link

Just generate a giant switch from all your classes ordered by most likely frequent messages, or a combination of that and a map based design. How many messages are you expecting to parse?

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

79811309

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

The first INSERT statement will not work (does it even compile?).
It is a multi-row insert, so RETURNING INTO cannot be used in this way.

A better solution to achieve something like this, would be to use LOG ERRORS or BULK COLLECT with SAVE EXCEPTIONS.
You can find an example of both here:
https://asktom.oracle.com/ords/f?p=100:11:0::::P11_QUESTION_ID:1422998100346727312

Another thing: the DUP_VAL_ON_INDEX exception does not return a function result, nor does it (re)raise an exception.

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

79811291

Date: 2025-11-06 13:10:01
Score: 0.5
Natty:
Report link

You have a typo in the config path configuration:

ENV SUPERSET_CONFIG_PATH=/app/pythonpath/superset_config.py

According to the documentation it should be declared so:

ENV SUPERSET_CONFIG_PATH /app/pythonpath/superset_config.py
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: orbanbalage

79811282

Date: 2025-11-06 12:58:59
Score: 1.5
Natty:
Report link

I had this issue due to app crash at launch due to a bug in WKWebview and iOS 18.4 – https://bugs.webkit.org/show_bug.cgi?id=293831.

This wasn't your issue for sure but maybe some other crash at launch. One could reproduce it with opening the app on the used simulator.

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

79811272

Date: 2025-11-06 12:51:58
Score: 3.5
Natty:
Report link

What is your Y goal? Enforce that any program that is run by sh, python etc. has the executable bit set?

Reasons:
  • Blacklisted phrase (1): What is your
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What is you
  • High reputation (-1):
Posted by: Mo_

79811269

Date: 2025-11-06 12:47:57
Score: 1.5
Natty:
Report link

I would choose 4 and it can be done automatically with a derived attribute see here https://developer.apple.com/documentation/coredata/nsderivedattributedescription

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

79811267

Date: 2025-11-06 12:40:55
Score: 3
Natty:
Report link

I researched this and found that CDs and DVDs still support autorun on Windows. If you somehow make a USB drive be recognized as a CD or DVD, autorun will work.

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

79811259

Date: 2025-11-06 12:26:53
Score: 1.5
Natty:
Report link

For .jar file it is in dist file after u click on project with right click inside the ide and find build or clean and build, go to folder of project u'll find dist folder, inside this folder called dist , u can find lib folder and .jar

after that, u can build .exe using the jpackage with that .jar file and use the jre u used in development.

In case, u still faced problem with some dependencies, u can build ur own jre customized with libs included in ur project using jlink

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Minari BLIИK

79811255

Date: 2025-11-06 12:20:51
Score: 2
Natty:
Report link

Do you want to impose that cost on the control points in the convex regions? You can use the AddCost API.

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

79811240

Date: 2025-11-06 12:10:49
Score: 0.5
Natty:
Report link

If you are sure that all requests has successful response, you should get those message's ids. You should have configure your webhook. In those webhook you can catch message status updates. For example there are some common statuses (not sure if there are more): sent, delivered, read, failed.
If you have failed status, there will be error code and its title. You can get more information about error on this page.
Reminder: to send templates you must have configured payment and some balance on your account

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

79811239

Date: 2025-11-06 12:01:47
Score: 1
Natty:
Report link

When I drop LIMIT from the query, it runs fast enough. It was my mistake not to show the clause initially.

The planner is mistaken in preferring index access:

Index Scan Backward using table_partition202508_ts_key_idx on table_partition202508 csh (cost=0.57..11776409.95 rows=2466994 width=109) (actual time=292447.147..292582.353 rows=10 loops=1)

It's mistaken in preferring the default sorting in the index and expecting to see the required rows in the first pages of the index based on the filter, and will abort execution upon finding the required 10 rows. In fact, the executor is forced to scan the entire/most of the partition using index access.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Sergei Grigoriev

79811232

Date: 2025-11-06 11:55:45
Score: 2
Natty:
Report link

Vs code is not best for java dev with its framework either use Intellij or net beans or eclipse

i had same problem with it two years ago and i'm using now netbeans for the java project with javafx (desktop app developement) i'm way too comfy with it

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Minari BLIИK

79811230

Date: 2025-11-06 11:54:45
Score: 1.5
Natty:
Report link

by the way: there are similar sites for ML: DataScience and CrossValidated

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

79811229

Date: 2025-11-06 11:52:45
Score: 1.5
Natty:
Report link

A black screen issue with Custom Resolution Utility (CRU) usually occurs when an unsupported resolution or refresh rate is applied to a display. This happens when the monitor or graphics card cannot handle the custom settings, causing the screen to go blank or lose signal. Common reasons include incorrect timing parameters, exceeding the monitor’s refresh rate limit, or using incompatible resolution settings.

To fix the CRU black screen problem, users can restart Windows in Safe Mode, run the reset-all.exe file included with CRU to restore default display settings, and then reapply safe custom resolutions. It’s always recommended to test new resolutions carefully and increase values gradually to avoid display loss.

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

79811219

Date: 2025-11-06 11:42:42
Score: 1.5
Natty:
Report link

You want characters that:

These are Unicode control or zero-width characters — they are invisible, but exist in the text buffer.

You can try with https://textinvisible.org/

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

79811218

Date: 2025-11-06 11:40:42
Score: 1
Natty:
Report link

I'd do it like this:

$page = $mpdf->page;

for ($i=1; $i<=$page; $i++)
{
    $mpdf->page = $i;
    $mpdf->WriteFixedPosHTML('whatever');
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kiko

79811214

Date: 2025-11-06 11:34:40
Score: 0.5
Natty:
Report link

As of react native 0.71 this is natively supported.

const styles = StyleSheet.create({
  screen: {
    maxWidth: '80%',
    width: 200,
    gap: 30,
    columnGap: 30 // if you want to be extra precise
    justifyContent: 'center',
    alignItems: 'center',
  },
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Oussama Bouthouri

79811212

Date: 2025-11-06 11:32:39
Score: 2
Natty:
Report link

This template typically utilizes a container or container-sm/md/lg class to limit the overall width of the content, creating a "narrow" layout.

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

79811208

Date: 2025-11-06 11:30:39
Score: 4.5
Natty: 4.5
Report link

Is this possible now? I don't see it on the website yet, but maybe that's not up to date.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Jelle B

79811204

Date: 2025-11-06 11:25:37
Score: 4.5
Natty: 6.5
Report link

Where do i have to put this into my Manifest?

xml <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where do i have to
  • Low reputation (1):
Posted by: TWO FELLAS

79811199

Date: 2025-11-06 11:22:36
Score: 0.5
Natty:
Report link

I have found that the plugin excluded arm64 architecture for iphone simulators. A such, I had to download the plugin and modify it's podspec From:

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }

To:

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => '' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => '' }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: adi

79811189

Date: 2025-11-06 11:09:33
Score: 1
Natty:
Report link

The layout shown in the screenshot cannot be achieved with a single TabStrip component. You need to render separate TabStrip components one after another. You can review the available positioning and configuration options in the Kendo UI for Angular TabStrip documentation.

Alternatively, you can check the PanelBar component as it provides a similar rendering from the screenshot.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Yan-dev

79811188

Date: 2025-11-06 11:08:33
Score: 0.5
Natty:
Report link

In my case I had a similar issue when I tried using

spark.conf.set("fs.azure.account.key.<storage account>.dfs.core.windows.net", 
               "keys")

I got the erorr SQLSTATE: 42K0I. Tried everything, the only solution that worked was I switched from serverless compute to classic compute.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sandesh Jadhav M

79811183

Date: 2025-11-06 11:01:30
Score: 4.5
Natty: 5.5
Report link

can you enlighten me on the config of the smartlogger? I have enable modbus TCP on the smartlogger but I cannot connect to it through modbus. I am connected to the port wan

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Hugo Denuit

79811179

Date: 2025-11-06 10:59:29
Score: 0.5
Natty:
Report link

When working with Telegram Mini Apps, extracting data from deep links depends on how you've set up your Mini App and which deep link format you're using. Here's a comprehensive guide:

Understanding Telegram Deep Link Formats

There are two main approaches to Telegram Mini Apps, each with different deep link formats:

1. Full Mini App (created with /newapp in BotFather)

Deep Link Format:

https://t.me/your_bot/app_short_name?startapp=your_parameter

Advantage: Parameters pass directly to your Mini App without needing bot backend code.

2. Menu Button Web App (without /newapp)

Deep Link Format:

https://t.me/your_bot?start=your_parameter

Disadvantage: Opens bot chat first; requires bot backend to handle the parameter and pass it to your Mini App.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: aryan

79811170

Date: 2025-11-06 10:51:27
Score: 0.5
Natty:
Report link

I agree with all the senior resources who answered, but these are my findings -

val numbers = List(1, 2, 3, 4, 5)
val sum = numbers.foldLeft(0)(_ + _)
# Output sum: Int = 15
val sum = numbers.foldRight(0)(_+_)
# Output: Int = 15
#---------------for addition its working fine --------------


# but when you perform subtract operation then it behaves differently 
val sum = numbers.foldRight(0)(_-_)
# Output sum: Int = 3
val sum = numbers.foldLeft(0)(_-_)
# Output  sum: Int = -15

In conclusion, when performing a fold left or fold right operation, the output may differ based on the anonymous function. Execution order is different for both

Taking same example List(a,b,c,d)

In foldLeft it goes a -> b

And for foldRight it goes b->a

You can read the documentation for further information.

Thanks

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

79811169

Date: 2025-11-06 10:50:27
Score: 4
Natty:
Report link

Your suggested solution works perfect. You made my day. Thanks a lot!

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

79811167

Date: 2025-11-06 10:49:26
Score: 1.5
Natty:
Report link

This solution worked 100% for me.

1.How to make docker use the proxy to get the base image?
Just add HTTPS or HTTP proxy into environment into your command line

export HTTP_PROXY="socks5://proxyhost:1080"
export HTTPS_PROXY="socks5://proxyhost:1080"
sudo docker build  
sudo docker pull

2.How to make docker use the proxy for the RUN and ADD instruction?

While @JSamir provided an answer, it seemed complex. Here is the solution explained in simple words:

You need to add --build-arg https_proxy=socks5://yourproxy:1080 --build-arg http_proxy=socks5://yourproxy:1080.

Important Note: Do not use single or double quotes (' or ") around the proxy address, as they prevented the proxy declaration from working in my case.

sudo docker build --build-arg https_proxy=socks5://yourproxy:1080  --build-arg http_proxy=socks5://yourproxy:1080 -t mycontainer:latest .
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @provided
  • Low reputation (1):
Posted by: CyberCr0w

79811165

Date: 2025-11-06 10:46:26
Score: 3
Natty:
Report link

I have also this problem, I configures allure commandline via global tools in jenkins, and add allure report step in the post build steps, but its not work:( allure version 2.28.0

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: אלישבע שלזינגר

79811155

Date: 2025-11-06 10:38:23
Score: 1
Natty:
Report link

If i'm not wrong, but far as i remember Windows Vault is just the service with the location where the credentials are stored, and the Credential Manager is the frontend of the Windows Vault, since is not an Service but rather an GUI application that utilizes the Windows Vault service for his operations.

Credential Manager indeed uses different approaches to store credentials in the OS (somehow, microsoft did it this way). I may be wrong but Windows has some services that doesn't work entirely alone and look like are the same, but they really aren't.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Héber Júlio

79811150

Date: 2025-11-06 10:35:22
Score: 0.5
Natty:
Report link

Find the file (path shown in error):

\env\localenv\Lib\site-packages\rest_framework_simplejwt\tokens.py

Find the line:

from django.utils.timezone import utc

and replace it with:

from datetime import timezone
utc = timezone.utc

This is temporarily fixing the issue

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

79811147

Date: 2025-11-06 10:35:22
Score: 0.5
Natty:
Report link

The problem with MailItem.PrintOut() is that it doesn't actually give you much control over where the email is printed and how. This is why we made Outlook Print and are giving it away absolutely 100% free. The mission is to reduce paper waste for eco reasons not to make money!

I thought it might be worth posting a link here to a product called Outlook Print (https://www.outlook-print.com). It's a shameless plug by me, but it is free and it is useful for people. It will save paper and toner and other consumables and help the environment.

So, please, if you'd like an add-in added to Microsoft Outlook, then please visit the site and give it a try. At the very least, just watch the two-minute video which will tell you all about it. Again, 100% free, no commitments!

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

79811145

Date: 2025-11-06 10:34:22
Score: 5
Natty:
Report link

Ok so i tried another package & this one works https://pub.dev/packages/flutter_pay_upi

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

79811144

Date: 2025-11-06 10:34:21
Score: 13 🚩
Natty: 6
Report link

I am also having the same problem. I have updated seleniumbase but still unable to login proxy. Has anyone ever solved this problem? I need your help

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2): I need your help
  • RegEx Blacklisted phrase (1.5): solved this problem?
  • RegEx Blacklisted phrase (3): Has anyone ever
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Điệp Vũ

79811142

Date: 2025-11-06 10:33:21
Score: 2
Natty:
Report link

It's possible, and thats what I recommend to do. I dont use their cloud service at all.

https://docs.expo.dev/guides/local-app-production/

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

79811137

Date: 2025-11-06 10:28:19
Score: 0.5
Natty:
Report link

While I do realize this doesn't exactly answer your question, I thought it might be worth posting a link here to a product called Outlook Print (https://www.outlook-print.com). It's a shameless plug by me, but it is free and it is useful for people. It will save paper and toner and other consumables and help the environment.

So, please, if you'd like an add-in added to Microsoft Outlook, then please visit the site and give it a try. At the very least, just watch the two-minute video which will tell you all about it. Again, 100% free, no commitments!

enter image description here

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

79811116

Date: 2025-11-06 10:14:16
Score: 2
Natty:
Report link

I had the same issue and disabling the first 2 options in html code style worked for me as shown in the picture

solution image

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: French Goulash

79811114

Date: 2025-11-06 10:13:15
Score: 3.5
Natty:
Report link

Start use slash commands that was easier

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

79811106

Date: 2025-11-06 10:05:13
Score: 3
Natty:
Report link

Yes. My entire site is down, just as people were starting to gain some kind of tentative interest. I will be exploring other hosting options. The radio silence is infuriating.

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

79811101

Date: 2025-11-06 10:01:13
Score: 3.5
Natty:
Report link

https://pythonanywhere.com/ it's not working, also all the websites that are hosted there.

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

79811095

Date: 2025-11-06 09:59:12
Score: 0.5
Natty:
Report link

I have a partial solution for those who might be interested, but it’s not complete. I can’t manage to convert my data into JSON-LD for my resource links.

I created a class that inherits from HttpOperation and is handled via POST.

        new SearchCollection(
            uriTemplate: '/chapters/search',
            name: 'chapter_search',
            provider: ChapterDataProvider::class,
            controller: ChapterDebugController::class,
            input: false,
            output: Chapter::class,
        ),

And next this controller

<?php

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;

final class ChapterSearchController extends AbstractController
{
    public function __invoke()
    {
        return new JsonResponse(['called' => true]);
    }
}

But it doesn’t use my provider, and I can’t manage to format my data in JSON-LD.

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

79811094

Date: 2025-11-06 09:58:12
Score: 1.5
Natty:
Report link

The post is already a few days old, but if anyone else encounters the same problem, I found the error using the solution described above.

The example in the documentation is still incorrect for the request.

The data for the appointment is specified as “start” and “end” in the demo body. However, the correct format is "startDateTime" and “endDateTime” in the JSON body.

After making this change, I was also able to omit optional parts of the request object and got the desired responses.

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

79811091

Date: 2025-11-06 09:57:11
Score: 0.5
Natty:
Report link

# Source - Python script through the Tor network

# Posted by James Brown

# Retrieved 2025-11-06, License - CC BY-SA 4.0

\>>> from torpy.http.requests import TorRequests

\>>>

\>>> def show_ip(resp):

... for line in resp.text.splitlines():

... if 'Your IP address appears to be' in line:

... print(line)

...

\>>> with TorRequests() as tor_requests:

... print("build circuit")

... with tor_requests.get_session() as sess:

... show_ip(sess.get("https://check.torproject.org/"))

... show_ip(sess.get("https://check.torproject.org/"))

... print("renew circuit")

... with tor_requests.get_session() as sess:

... show_ip(sess.get("https://check.torproject.org/"))

... show_ip(sess.get("https://check.torproject.org/"))

...

build circuit

<p>Your IP address appears to be: <strong>178.17.171.102</strong></p>

<p>Your IP address appears to be: <strong>178.17.171.102</strong></p>

renew circuit

<p>Your IP address appears to be: <strong>49.50.66.209</strong></p>

<p>Your IP address appears to be: <strong

\>49.50.66.209</strong></p>

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

79811090

Date: 2025-11-06 09:56:11
Score: 0.5
Natty:
Report link

@shingo I would say that it's not quite a duplicate question, although it is clearly related. That question has code that doesn't even compile; the code in this question compiles OK, but the ? on T? is silently ignored (hence why I think it should generate a compile warning at the very least).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @shingo
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79811073

Date: 2025-11-06 09:45:08
Score: 0.5
Natty:
Report link

Thank you for your insights. The idea behind workers is to execute parallel processing, for ex for 700k records, it makes chunks and then assign it to workers for calculations, then merge the results and send it back to client in a json format , my Api structure is request comes on api controller, parsing of excel file, goes to the service layer, data gets splits in chunks, chunks are distributed to workers for maths/calculations , we merge back the calculations and streaming response is sent to client.

My current approach is:

I will work on ditching pandas; my main issue was the impact of workers when the project is deployed in prod. Tbh I am not familiar with using the redis and producers but again after your comment I went through it and it may be a better approach in the case, so I am going to explore more about it. My focus to reduce the api response time and not use complex processes as I would be the one to debug it heh.

Original DataFrame (700,000 rows)
│
├─ Chunk 1  [0     - 19,999]   → 20,000 rows
├─ Chunk 2  [20,000 - 39,999]   → 20,000 rows
├─ Chunk 3  [40,000 - 59,999]   → 20,000 rows
├─ ...
└─ Chunk 35 [680,000 - 699,999] → 20,000 rows
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NOOB DEV

79811071

Date: 2025-11-06 09:40:07
Score: 1
Natty:
Report link

You would need to post all your code but this is not completely unexpected and is due to streaming semantics which you can read more about here: https://bengribaudo.com/blog/2018/02/28/4391/power-query-m-primer-part5-paradigm

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

79811070

Date: 2025-11-06 09:40:07
Score: 0.5
Natty:
Report link

To remove those redundant .js files you can use the webpack-remove-empty-scripts package.

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

79811067

Date: 2025-11-06 09:38:06
Score: 0.5
Natty:
Report link

@Fildor The same thing happens if you just use a plain int. It seems to me that the compiler should issue a warning for this case because it is basically ignoring the ? on TKey? field.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Fildor
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79811054

Date: 2025-11-06 09:25:03
Score: 2.5
Natty:
Report link

Use whitenoise to serve static files from a local folder. then in settings make it like this:

STATIC_ROOT = BASE_DIR / "staticfiles"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Minari BLIИK

79811045

Date: 2025-11-06 09:21:02
Score: 0.5
Natty:
Report link

We struggled with this for quite a while too. Google discusses an option about using registry values for this in this article:

https://chromeenterprise.google/policies/#LocalNetworkAccessAllowedForUrls

What we ended up doing was creating this registry path:

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\LocalNetworkAccessAllowedForUrls

And then adding a new string value, named 1 with a value of the test domain we worked with, e.g. [*.]our.test.domain.com

This then appeared to have applied the Local Access Network" exemption to all the web apps we test under that domain.

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

79811037

Date: 2025-11-06 09:08:59
Score: 2.5
Natty:
Report link

Thanks to C3roe:

<html>
<body>

<div class="container">
<object-fit src="korenmolendehoop.jpeg">
    
<!-- more types of divs etc !-->

</div>
</body>
</html>

works perfectly

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

79811036

Date: 2025-11-06 09:07:59
Score: 4
Natty:
Report link

You need to add current IP adress, on mongo atlas.

After doing that it will work

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 0o0 wIll

79811031

Date: 2025-11-06 09:02:57
Score: 1
Natty:
Report link

It looks like one crucial bit of information is missing from the picture: it's not clear what the housekeeping stuff should exactly be. Do you have in mind conditional removal of the "old" data from the database (like, each record has a timestamp, and you'd like to keep only the records younger than such and such age)?

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

79811029

Date: 2025-11-06 09:00:57
Score: 2.5
Natty:
Report link

Actually the correct trigger - actions is

admin/model/catalog/product.editProduct/after - extension/app/module/app.productEdit

Thats way the event was not triggered.

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

79811024

Date: 2025-11-06 08:56:56
Score: 2.5
Natty:
Report link

fork() ? usepipes() : show3d(); // works.

Very useful.

Now I have a 3D viewer that plays well with piped input/output.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
Posted by: jlettvin

79811016

Date: 2025-11-06 08:50:54
Score: 0.5
Natty:
Report link

To answer my own question:

There really seems to be no general way to achieve this, but I found the following workaround acceptable.

On API 36+, there is PRIORITY_SYSTEM_NAVIGATION_OBSERVER for OnBackInvokedDispatcher.registerOnBackInvokedCallback. From the documentation:

Callbacks registered with this priority do not consume back events. They receive back events whenever the system handles a back navigation and have no impact on the normal back navigation flow. Useful for logging or analytics.

Awesome, exactly what I was looking for. Unfortunately this value is only available from API 36 onwards, so predictive back can't be used on API 35 and lower. To achieve this, I'm not setting android:enableOnBackInvokedCallback in the AndroidManifest. It will then default to false on API <= 35 and to true on >= 36. On APIs up to 35 onBackPressed can be used as usual.

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

79811009

Date: 2025-11-06 08:44:53
Score: 2
Natty:
Report link

The white screen appears because your code runs on the main UI thread. Move heavy tasks to a background thread using AsyncTask, Handler, or coroutines so the UI can load properly.

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

79810996

Date: 2025-11-06 08:31:50
Score: 3.5
Natty:
Report link

If you run a lot of tasks (high load), then sched_min_granularity_ns can be observed.

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

79810990

Date: 2025-11-06 08:29:49
Score: 3.5
Natty:
Report link

"posted.

Get private feedback in Staging Ground

I want experienced community members to review my question.

I want to improve my question.

I can wait for answers.

Post question on Stack Overflow now

I'm sure that my question follows all guidelines.

I don't need private feedback.

I need answers immediately"

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alex ML

79810988

Date: 2025-11-06 08:27:48
Score: 2.5
Natty:
Report link

Please first confirm your DBeaver version. DBeaver Community 25.2.4? Is it for Windows, Mac OS X, or Linux?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: life888888

79810983

Date: 2025-11-06 08:21:46
Score: 0.5
Natty:
Report link

Installing Visual Studio directly on a Continuous Integration (CI) server is generally discouraged for several reasons related to efficiency, maintainability, and scalability. While Visual Studio is excellent for development, it’s not designed for automated build environments. Here’s why:


🔹 1. Visual Studio Is Developer-Oriented, Not Build-Oriented

Visual Studio is a full-fledged IDE (Integrated Development Environment) that includes a GUI, debugging tools, and extensions — none of which are needed on a CI server. CI servers only need build tools like MSBuild, NuGet, and the .NET SDK to compile and test code.

Installing Visual Studio wastes system resources and increases setup complexity without offering any real CI benefits.


🔹 2. Licensing and Maintenance Issues

Visual Studio requires proper licensing and regular updates, which can complicate compliance for automated servers. Build agents may also fail if license activation expires or if an update breaks dependencies.

In contrast, Microsoft Build Tools and the .NET SDK are free, lightweight, and designed for CI/CD automation.


🔹 3. Slower and Heavier Builds

CI servers aim to be fast and reproducible. Visual Studio installations increase build times due to their large footprint and unnecessary background services.
Using standalone build tools ensures leaner build pipelines and better scalability, especially when running multiple parallel builds.


🔹 4. Versioning and Consistency Problems

Different Visual Studio installations may use different compiler versions, SDKs, or extensions — causing inconsistent build results.
Using dedicated build toolchains (like msbuild.exe, dotnet build, or Azure Pipelines agents) ensures consistency across all build environments.


🔹 5. Better Alternatives Exist

Instead of installing the full Visual Studio IDE, use:

These options provide everything needed for automated builds without the overhead of a full IDE.

https://www.aqeelindustries.com/[enter image description here](https://i.sstatic.net/WHFUk1wX.png)

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aqeel Industries

79810977

Date: 2025-11-06 08:10:44
Score: 3
Natty:
Report link

This is now possible thru the UI of PowerBI. The data gateway does need to be able to reach public PowerBI and the internal sql server. If you want to automate this, the API used is still not documented.

I've created a method of encoding the credentials and published my results.

https://github.com/Audiodude-nl/PowerBIEncryptSP/blob/main/README.md

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

79810974

Date: 2025-11-06 08:06:42
Score: 2
Natty:
Report link

I think this is a bug in artifactory. I also use a dedicated helm repo in JFrog, and sometimes this issue appears. Other people i know solved this issue using OCI Repos instead of the dedicated helm ones. They never encountered these issue after switching.

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

79810964

Date: 2025-11-06 07:56:40
Score: 5
Natty:
Report link

Upgrading the androidx-compose-foundation version to 1.10.0-beta01 actually helped. I’m not sure if the developers will allow me to use a beta version, but thank you!
Do you know if there is any article about this issue?

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Red Cape

79810963

Date: 2025-11-06 07:54:39
Score: 1.5
Natty:
Report link

For me, this worked after installing the prisma client.

pnpm add -D prisma@latest
pnpm add @prisma/client@latest
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tharisha Perera

79810957

Date: 2025-11-06 07:46:38
Score: 1.5
Natty:
Report link

just write the right hand side code, you have indicated (inplace=True) so you don't have to reassign it to the data object.

code to use:

\>>> data.drop(['label1','label2'],axis = 1, inplace = True)

\>>> data.head()

Output:

your data frame without lable1 & label 2

otherwise you'll delete your data frame completely and a None object will be assigned to your data frame object.

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

79810952

Date: 2025-11-06 07:41:36
Score: 2
Natty:
Report link

// Source - How to specify x64 emulation flag (EC_CODE) for shared memory sections for ARM64 Windows?

// Posted by kresh11

// Retrieved 2025-11-06, License - CC BY-SA 4.0

typedef NTSTATUS(NTAPI* NtMapViewOfSectionEx)(HANDLE SectionHandle, HANDLE ProcessHandle, PVOID* BaseAddress, PLARGE_INTEGER SectionOffset, PSIZE_T ViewSize, ULONG AllocationType, ULONG Win32Protect, PMEM_EXTENDED_PARAMETER ExtendedParameters, ULONG ExtendedParameterCount);

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

79810951

Date: 2025-11-06 07:41:36
Score: 2
Natty:
Report link

@ADyson I'm using HttpURLConnection

url = new URL(urladr);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type",
        "application/x-www-form-urlencoded");
connection.setConnectTimeout(14000);
connection.setReadTimeout(60000);
connection.setRequestProperty("Content-Language", "fa-IR");
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(
        connection.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();

//Get Response
InputStream is = connection.getInputStream();
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
String line;
StringBuffer response = new StringBuffer();
while ((line = rd.readLine()) != null)
    response.append(line);

rd.close();
res = response.toString();
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ADyson
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: hamid

79810950

Date: 2025-11-06 07:40:36
Score: 2.5
Natty:
Report link

Well if you are using Namecheap Shared hosting delete the storage folder in the public folder and there is an terminal option in namecheap cpanel run the command php artisan storage:link

For Hostinger Shared Hosting

hostinger disabled the exec() and symlink function no worries go the php option section you will se a disable function section remove these function and run the storage:link command through ssh boom its worksenter image description hereenter image description hereenter image description here

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

79810945

Date: 2025-11-06 07:34:34
Score: 0.5
Natty:
Report link

In my case I checked Info tab where you can reach from Edit scheme and I found my scheme was set as Release build with Debug executable.

I modified from Release to Debug and my application was finally able to build.

Just try it.

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

79810944

Date: 2025-11-06 07:32:32
Score: 6.5 🚩
Natty: 5
Report link

Any updates on this, I'm trying to implement the draw feature like we have in Redfin, but google drawing library is only allowing to draw shapes like polygon, circle, but I want to implement free form polygon?

Reasons:
  • Blacklisted phrase (1): Any updates on
  • 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: Ayush Gupta

79810936

Date: 2025-11-06 07:24:31
Score: 1.5
Natty:
Report link

To show frequently visited sites on Chrome Tab

Click the pencil icon in the bottom left and choose Shortcuts on the side.

Show shortcuts --> click on My shortcuts --> click on Most-visited sites

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

79810935

Date: 2025-11-06 07:24:31
Score: 3
Natty:
Report link

@noitidart To be fair though, this "oPiNiOnAtEd QuEsTiOn ExPeRiMeNt" started just a few days ago, and it's thoroughly confusing. 🙄

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @noitidart
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Drew Reese

79810932

Date: 2025-11-06 07:17:29
Score: 3.5
Natty:
Report link

@Kpalser:
It work for me because after my mini player displayed then It will never hidden until user close app.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Kpalser
  • Low reputation (1):
Posted by: Le Do

79810930

Date: 2025-11-06 07:13:28
Score: 3
Natty:
Report link

Each dataset in RAGFlow has a corresponding folder under the root/.knowledgebase directory. For more u can see: https://ragflow.io/docs/dev/manage_files

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

79810927

Date: 2025-11-06 07:05:26
Score: 1.5
Natty:
Report link

Thanks all, been awhile since I used SO. Meant to post as question. Yes @Aleksander if I create refs within custom hook it works, but it's coming from somewhere else so I can't do that.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Aleksander
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Noitidart

79810925

Date: 2025-11-06 06:59:24
Score: 1.5
Natty:
Report link

If you have done sam build and sam package in advance of your sam deploy, you may need to provide --template-file .aws-sam/build/template.yaml to sam deploy, not --template-file ${SAM_FILE}. That's often the reason for the Unable to upload artifact None referenced by ImageUri parameter error.

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

79810924

Date: 2025-11-06 06:58:24
Score: 3.5
Natty:
Report link

This question is off-topic according to https://stackoverflow.com/help/on-topic.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): stackoverflow.com/help
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: the busybee

79810918

Date: 2025-11-06 06:54:23
Score: 2.5
Natty:
Report link

<?xml version="1.0" encoding="UTF-8"?>

<PrintLetterBarcodeData uid="522470703075" name="CHUMKI ROY" gender="F" yob="1995" gname="Sankar Roy" house="26" street="BABLAGHAT SOUTH DINAJPUR" vtc="English Bazar" po="Malda" dist="Malda" subdist="English Bazar" state="West Bengal" pc="732101"/>

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ramesh Roy

79810914

Date: 2025-11-06 06:51:22
Score: 0.5
Natty:
Report link

Looks like this code is basically recreating Airbnb’s old homepage header, the navigation bar, search bar, and menu links. If you’re trying to make your own Airbnb-style homepage, you can use this as a base template and then customize it with your own branding, search logic, and layout. Think of it like using an Airbnb listing template: you start with a ready-made structure, then tweak the content (logo, links, styling) to fit your own “listing”, in this case, your website.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James T. Walker

79810908

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

Use the .iloc attribute before the brackets to tell pandas that you are looking into the numeric indices not the label indices.

s=pd.Series([1, 2, 3])

s.iloc[-1]

output: 3

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

79810903

Date: 2025-11-06 06:33:18
Score: 0.5
Natty:
Report link

Yes, or more simply: getSelectedValue().replaceAll("\\[(.*?)\\]", "$1")

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Maurice Perry

79810902

Date: 2025-11-06 06:32:18
Score: 2.5
Natty:
Report link

@echo off

PowerShell -NoProfile -ExecutionPolicy Bypass "Add-AppxPackage -Path "C:\Microsoft.WindowsAppRuntime.1.8_8000.616.304.0_x64.appx"

PowerShell Expand-Archive -Path "%UserProfile%\Desktop\WinGet_Offline_Batch\WinGet_Appx_Files\DesktopAppInstaller_Dependencies.zip" -DestinationPath "%UserProfile%\Desktop\WinGet_Offline_Batch"

Reasons:
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Gürol Şekeroğlu

79810886

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

node-v24.11.0-linux-x64.tar.xz

1 Cannot create symbolic link : errno=13 : Permission denied : /storage/emulated/0/Download/node-v24.11.0-linux-x64/bin/npm

2 Cannot create symbolic link : errno=13 : Permission denied : /storage/emulated/0/Download/node-v24.11.0-linux-x64/bin/npx

3 Cannot create symbolic link : errno=13 : Permission denied : /storage/emulated/0/Download/node-v24.11.0-linux-x64/bin/corepack

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ulises Velázquez

79810878

Date: 2025-11-06 05:47:10
Score: 4
Natty:
Report link

Without knowing how you actually use that QueryContext in your code, its harder to answer that question, can you give actual code to see how you actually use and call that QueryContext function.
My questions are:

  1. Do you use that context with timeout.

  2. Do you check if there's rows.Err() returned by that QueryContext

If you give us some code sample to understand how you actually call that function, we can answer this question better.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you give
  • No code block (0.5):
  • Low reputation (1):
Posted by: CyberCr0w

79810877

Date: 2025-11-06 05:41:08
Score: 3.5
Natty:
Report link

Example:

@echo off

PowerShell -NoProfile -ExecutionPolicy Bypass "Add-AppxPackage -Path "C:\Microsoft.WindowsAppRuntime.1.8_8000.616.304.0_x64.appx"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Gürol Şekeroğlu

79810865

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

Not sure there is an officially supported KMP module for Stripe.

There does appear to be an Open source initiative: https://github.com/qburst/stripe-kmm

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

79810863

Date: 2025-11-06 05:04:00
Score: 1
Natty:
Report link

Assuming dob is 1990-10-10

SELECT timediff('now','1990-10-10')
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Fawaz Ahmed

79810860

Date: 2025-11-06 04:59:00
Score: 1.5
Natty:
Report link

Is it possible in Forge to store multiple named values within a single custom field and still have Jira track the change history of each value individually?

Well, yes and no. In Jira Cloud, the audit log tracks that a change was made to a field, however, it doesn't record what individual parts of the field's content or values were changed. You could get the change log of the Issue to know what the entire field's content or value was before and then after the change, but you'd have to parse that and compared the two to determine what specific 'individual' part within the field changed... and that's adding more complexity than just using multiple custom fields.

Rather than use custom fields to store information for the Issue, would entity properties work in your use case? They are flexible, searchable and unlimited per Issue.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: Sunny Ape

79810848

Date: 2025-11-06 04:42:56
Score: 0.5
Natty:
Report link

First, keep the code version somewhere like version.txt and increment.

Second, use gates like:

if (version >= x.x.x) { include new db fields }

Third, add version in your data. This way, for backward incompatible changes, you can have a message like:

$codeVersion = file.read(version.txt)
if (order.version > $codeVersion) {
Print "This order was created on newer software. Please use order.version (or beta website) to process or view this order."
// maybe redirect
}

Fourth, You must release backward incompatible changes in two phases (two version increments): phase i) push the above gate to all users, so it can check for a new version before reaching code that breaks. ii) once the gate exists for all users, release the next version and run the database migration.

Fifth: Add a comment "remove this block once version x.x.x+ moves from beta to www (or all users are on version x.x.x+)."

Sixth: keep a "change_management.txt" of all the steps you must follow when doing a release. It should contain reasons you broke things and a step so the same break never happens again. This list should be surprisingly short once you have a documented release process. For example

"Did you remember to update dependencies? Did you audit/patch or mitigate any new security vulnerabilities? Did you remember gates? Did you remember to turn on maintenance mode if needed, and run db migrations when code was released? Do you know how long db migration will take (for long running db operations, is down time acceptable?)

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Frank Forte

79810846

Date: 2025-11-06 04:37:55
Score: 2.5
Natty:
Report link

i think i should be worried about what's in memory because what if i add more levels later on, that's even more memory hogged by the game for no reason, i can already conglamerate all the data required to a big binary file next to the exe i can then at runtime lookup what i need from it as well as encrypt/decrypt it i just thought it'd be neat if it was possible to just deliver the game as 1 executable without extra files and without losing efficiency but im guessing that's impossible as of now.

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

79810845

Date: 2025-11-06 04:37:55
Score: 4.5
Natty: 5
Report link

this fix my issue a random youtube video

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

79810844

Date: 2025-11-06 04:36:54
Score: 1.5
Natty:
Report link

ThreeTen-Extra: org.threeten.extra.Interval

Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Basil Bourque

79810840

Date: 2025-11-06 04:29:52
Score: 0.5
Natty:
Report link

Remove <html>, <head>, and <body> tags from your Layout component.

keep only React elements like this:

export function Layout() {
  return (
    <>
      <NavBar />
      <Outlet />
      <Footer />
      <ScrollRestoration />
      <Scripts />
    </>
  );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kishan Dobariya

79810826

Date: 2025-11-06 04:03:45
Score: 2.5
Natty:
Report link

Just received this response from ~Termux IP a~request

To be fair, my android currently has a lot of issues I am banging my head on the wall trying to figure out.

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

79810824

Date: 2025-11-06 03:58:43
Score: 2.5
Natty:
Report link

Change the Static_Predicate to a Dynamic_Predicate. The relationship is evaluated at runtime rather than at compile time.

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

79810810

Date: 2025-11-06 03:30:37
Score: 2.5
Natty:
Report link
header 1 header 2

cell 1 | cell 2 |

Column A Column B
Cell 1 Cell 2
Cell 3 Cell 4
Column A Column B
-------- --------
Cell 1 Cell 2
Cell 3 Cell 4

| cell 3 | cell 4 |your text

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): --------
  • Filler text (0): --------
  • Low reputation (1):
Posted by: haydee castaneda

79810809

Date: 2025-11-06 03:30:37
Score: 2.5
Natty:
Report link

Open php.ini

Do same as below What I did

extension=pdo_mysql

extension=pdo_pgsql

extension=pdo_sqlite

extension=pgsql

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

79810804

Date: 2025-11-06 03:26:37
Score: 3.5
Natty:
Report link

Conditional fields are available without additional development starting from version 5.17

Introducing Conditional Fields in Strapi v5.17

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