79829796

Date: 2025-11-25 14:10:06
Score: 1
Natty:
Report link

Just to add to Stevan's reply: if you're using Vite, any variables with the VITE_ prefix are statically replaced at build time. So if you build locally, the build will use your local VITE_ variables not the server’s .env. Make sure the correct values are set before building.

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

79829781

Date: 2025-11-25 13:52:02
Score: 2.5
Natty:
Report link

Set overflow : hidden on the parent container: This also establishes a new block formatting context, preventing margin collapse.

It helps me to preventing collapse

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

79829770

Date: 2025-11-25 13:40:59
Score: 1.5
Natty:
Report link

@rozsazoltan thanks for the answer. i just tried the suggested code and found it's not working

  1. the types are wrong - lightningcss.Targets expects numbers as values
  2. i tried to use targets option the way the docs suggested using baseline newly available and baseline 2023 to test the build, but it was not working
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';
import { browserslistToTargets } from 'lightningcss';
import browserslist from 'browserslist';

export default defineConfig({
  plugins: [tailwindcss()],
  css: {
    lightningcss: {
      // did not help
      targets: browserslistToTargets(browserslist('baseline newly available')),
    },
  },
});

the problem is in fact in lightningcss so i just switched to esbuild (do not forget to install esbuild as dev dependency)

import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
  plugins: [tailwindcss()],
  build: {
    cssMinify: 'esbuild',
  },
});
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rozsazoltan
  • Low reputation (1):
Posted by: Rassul

79829765

Date: 2025-11-25 13:36:58
Score: 8.5 🚩
Natty: 6.5
Report link

@Ben Bolker, what would be the difference if landcover is discrete (eg 5 landcover categories)? Thank you. Cheers.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Cheers
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Ben
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Leopold Berger

79829758

Date: 2025-11-25 13:29:55
Score: 11.5 🚩
Natty: 5
Report link

I have the same issues, but don't use Jetpack. Are there any other fixes?

Thanks in advance,

Regina

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1.5): fixes?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Regina Sommerfeld

79829755

Date: 2025-11-25 13:27:54
Score: 2.5
Natty:
Report link

Here's what I do:

I would make a shortcut to where your VBscript is and use that* to run the VBscript. I don't mean to sound rude.

*It might not work.

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

79829747

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

Make sure these 3 libs are present in Build Phases > Link Binary with Libraries
enter image description here

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

79829744

Date: 2025-11-25 13:14:50
Score: 2
Natty:
Report link

A good reference for this is the Python Universal Feed Parser which has thorough sanitization based on a list of HTML elements and attributes that are allowed through, and excludes any elements that allow script to be run.

If you want a test suite for this, there is an extensive one for the allowed and disallowed attributes in the python project.

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

79829741

Date: 2025-11-25 13:11:49
Score: 1
Natty:
Report link

effectuer la mise à jour de spring doc vers la version 2.8.9 resout le probleme.

<dependency>
    <groupId>org.springdoc</groupId>
    <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
    <version>2.8.9</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mendel Ba

79829735

Date: 2025-11-25 13:08:48
Score: 5
Natty: 5
Report link

Dude before applying the accumulated gradients should we first divide the accumulated gradient by number by size of the effective mini batch / target accumulation_count . ?

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

79829729

Date: 2025-11-25 13:00:46
Score: 1.5
Natty:
Report link

Aren't you supposed to add a receiver for a notification? Update your Android Manifest.

// Source - https://stackoverflow.com/a/79829404
// Posted by Bhavin Parghi
// Retrieved 2025-11-25, License - CC BY-SA 4.0

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
    android:exported="false" />

<receiver
    android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
    android:exported="false">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
    </intent-filter>
</receiver>
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Cayden Joseph

79829727

Date: 2025-11-25 12:58:45
Score: 0.5
Natty:
Report link

Not sure I understand the issue. Your concern is that glReadPixels will block until rendering is complete but I don't see how you can possibly perform any hit-test before the rendering process has completed, right? Or have I missed the point?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: G.M.

79829726

Date: 2025-11-25 12:58:45
Score: 1
Natty:
Report link

You can block it with while loop

<script>
(function() {
  const delay = 3000; // delay in ms
  const start = Date.now();
  while (Date.now() - start < delay) {
    // block html loading
  }
})();
</script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dergachev

79829719

Date: 2025-11-25 12:46:43
Score: 0.5
Natty:
Report link

I've found out the reason behind difference in behavior. RadContextMenu is a child of RadGridView while ToolTip is in a different branch build around PopUp primite so we access columns by Ancestor source. I've write a work-around based on this code:

https://stackoverflow.com/a/1759923

public class HiddenColumnsToTooltipConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value != null && value is Camera camera)
        {
            try
            {
                var window = Application.Current.Windows.OfType<Window>().SingleOrDefault(x => x.IsActive);
                var columns = ((RadGridView)FindChild(window, $"{parameter}", typeof(RadGridView))).Columns;

                ...

                return result;
            }
            catch
            {

            }
        }

        return "Nothing to show";
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return Binding.DoNothing;
    }

    public static DependencyObject FindChild(DependencyObject reference, string childName, Type childType)
    {
        DependencyObject foundChild = null;
        if (reference != null)
        {
            int childrenCount = VisualTreeHelper.GetChildrenCount(reference);
            for (int i = 0; i < childrenCount; i++)
            {
                var child = VisualTreeHelper.GetChild(reference, i);

                if (child.GetType() != childType)
                {
                    foundChild = FindChild(child, childName, childType);
                    if (foundChild != null) break;
                }
                else if (!string.IsNullOrEmpty(childName))
                {
                    var frameworkElement = child as FrameworkElement;

                    if (frameworkElement != null && frameworkElement.Name == childName)
                    {

                        foundChild = child;
                        break;
                    }
                }
                else
                {
                    foundChild = child;
                    break;
                }
            }
        }
        return foundChild;
    }
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KwarcPL

79829716

Date: 2025-11-25 12:44:43
Score: 0.5
Natty:
Report link

I just had the same problem (again) and finally came up with the following command macro that takes care of the shell's piping symbol, even in more difficult situations as below

macro cmd_cmd(expr)
    pipemask = "--__|__--"
    @show expr
    expr = replace(expr, "\\r" => "\r", "\\n" => "\n", "\\t" => "\t", "'|'" => pipemask, "\"|\"" => pipemask)
    ex = Base.shell_parse(expr)[1]
    inds = findall(==(:(("|",))), ex.args)
    push!(pushfirst!(inds, 0), length(ex.args) + 1)
    exprs = []
    for i in 1:length(inds) - 1
        args = replace(ex.args[inds[i]+1:inds[i+1]-1], :(($pipemask,)) => :(("|",)))
        x = Expr(:call, :(Base.cmd_gen), Expr(:tuple, args...))
        push!(exprs, x)
    end
    Expr(:call, :pipeline, exprs...)
end

read(cmd`echo 'hello\nhello | world\nhello world' | grep '|'`, String)
# "hello | world\n"
Reasons:
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: HHFox

79829707

Date: 2025-11-25 12:38:41
Score: 5.5
Natty:
Report link

I'm facing the exact same issue...

Sorry to not be able to help you

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the exact same issue
  • Low reputation (1):
Posted by: Quentin Boillat

79829706

Date: 2025-11-25 12:35:39
Score: 7 🚩
Natty: 4.5
Report link

@bahram mosadegh suggestion's worked like a charm for me :) thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): worked like a charm
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @suggestion's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wagner-Otto Wutzke

79829680

Date: 2025-11-25 12:08:31
Score: 0.5
Natty:
Report link
SELECT    EmplID
        , EmplName
        , InTime
        , [TimeOut]
        , [DateVisited]
        , formatmessage('%d:%d', datediff(hour, InTime, [TimeOut]), datediff(minute, InTime, [TimeOut]) % 60) 'Elapsed time'
from times
Order By EmplID, DateVisited 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Johann Contuzi

79829678

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

The setting below does not work for me, focus still jumps to the Terminal after running a line with F8.

Any ideas of what could be causing it to not take effect?

  "powershell.integratedConsole.focusConsoleOnExecute": false, 
Reasons:
  • Blacklisted phrase (1): Any ideas
  • Blacklisted phrase (1): what could be
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: greycloud

79829677

Date: 2025-11-25 12:06:30
Score: 3
Natty:
Report link

For engineering teams running multiple projects across varied stacks, the best tools are the ones that integrate cleanly with Git and automate visibility.

A few solid options:

Each of these gives you unified dashboards, automation, and integration without forcing process changes.

What tools are you currently considering so far?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sterlingnext

79829674

Date: 2025-11-25 12:03:29
Score: 1
Natty:
Report link

Make sure your main.dart uses GetMaterialApp, NOT MaterialApp

void main() {
  runApp(
    GetMaterialApp(
      home: MyApp(),
    ),
  );
}

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

79829673

Date: 2025-11-25 12:03:29
Score: 1
Natty:
Report link

a) Nope, you can’t send push notifications to iOS devices without an Apple Developer account. Apple requires it because push notifications go through their APNs (Apple Push Notification service), and only accounts can generate the required certificates/keys.

b) Nobody’s going to share theirs. Without an Apple Developer account, you can only play around with local notifications.

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

79829670

Date: 2025-11-25 12:02:28
Score: 2
Natty:
Report link

I've also had a great deal of fun with this extension. In the end, the extension was very unhappy that there was a space in the path of my Haskell files.

I was, however, using it in HIE-BIOS mode, not Stack mode.

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

79829660

Date: 2025-11-25 11:57:27
Score: 3.5
Natty:
Report link

yes you can change it or use redirect file

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

79829654

Date: 2025-11-25 11:55:26
Score: 1.5
Natty:
Report link

I have found a fix for this:
You must create an additional parameter that has the default value and available value section set to use the dataset of your choosing, placed before the parameter you wish to be updated. And then set the parameter you wish to have updating use the value of this additional parameter as its default value.

Its ugly but it certainly works. Note that this works only when the additional parameter is set to 'visible' for some reason.

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

79829645

Date: 2025-11-25 11:49:23
Score: 2.5
Natty:
Report link

enter image description here

From my trial and error I have found that the closest I got to it was Fira Code font (github one) and setting the font weight to medium.

Example Wezterminal config
local wezterm = require 'wezterm'

local config = {}

config.font = wezterm.font("Fira Code", { weight = "Medium" })

config.font_size = 13.0

-- (optional) enable ligatures, if not automatic:

config.harfbuzz_features = { "calt=1", "liga=1" }

return config

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: Joao Vitoriano

79829633

Date: 2025-11-25 11:41:21
Score: 1
Natty:
Report link
Get.offAll(() => SecondScreen()).then((_) {
  WidgetsBinding.instance.addPostFrameCallback((_) {
    Get.delete<FirstController>();
  });
});

Or
Give ScreenUtil a bit of time to recalculate UI, example Get.delete is executed inside SecondScreen()

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

79829632

Date: 2025-11-25 11:39:20
Score: 1.5
Natty:
Report link
echo 'export PATH="/opt/homebrew/opt/ruby/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dipjyoti Metia

79829626

Date: 2025-11-25 11:32:19
Score: 2.5
Natty:
Report link

Parameters compiled before the run pipeline

You should to use variables

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

79829613

Date: 2025-11-25 11:17:14
Score: 5
Natty:
Report link

i have face similar issue and after checking various answer, i finaly found a rigth one that every body can check here: https://github.com/spatie/laravel-pdf/discussions/55

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): face similar issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Louis Bingana

79829611

Date: 2025-11-25 11:15:14
Score: 2.5
Natty:
Report link

Something like ActiveDocument.InlineShapes(i).Height = 0 will work

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Святослав Сьомак

79829602

Date: 2025-11-25 11:09:11
Score: 3
Natty:
Report link

It is good but I need to deal with firewalls and also to manage lost data when the destination PC is off. I need something that can be more trustable and also the operator in destination may not approve or reject the transfer request at the same day

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

79829594

Date: 2025-11-25 10:59:08
Score: 4
Natty:
Report link

Столкнулся с такой же проблемой, нашёл это обсуждение... Вроде всё делал как нужно - но никак не работало.

РЕШЕНИЕ: сработало только тогда, когда я нажал кнопку создания сводной таблицы непосредственно из Pivot.

Причем после этого стали нормально работать и таблицы прежде созданные из стандартного интерфейса (на других листах).

Reasons:
  • No code block (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Дмитрий Корниевич

79829581

Date: 2025-11-25 10:45:04
Score: 0.5
Natty:
Report link

I'd like to find the commit that removes the line

This is trivial to do in gitk. Right click on the deleted line and select "Show origin of this line":

Gitk screenshot

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

79829580

Date: 2025-11-25 10:45:04
Score: 1
Natty:
Report link
// Compatible with older versions of iOS 10 browsers
// "react-markdown": "^8.0.7",
//  "rehype-raw": "^6.1.1",
//  "remark-gfm": "^3.0.1",


 <ReactMarkdown
                rehypePlugins={[rehypeRaw]}
                remarkPlugins={[remarkGfm]}
            
            >{markdown}</ReactMarkdown>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: richard1015

79829577

Date: 2025-11-25 10:43:04
Score: 2.5
Natty:
Report link

That was my first project, i jumped in to code, but created new project workspace, and initiated git and pushed first before coding, It automatically invoked an extension that Gave a code for "github Authentication" to connect my device to github and I succesfully pushed new one and then tried my first project it again generated a codeto connect my device, Successfully pushed

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

79829571

Date: 2025-11-25 10:37:02
Score: 1.5
Natty:
Report link

You only need to stub it in the component where you're using router-link. Just ran into this warning and seems not well documented it can be solved like so:


import { mount, RouterLinkStub } from "@vue/test-utils";
import { describe, expect, it } from "vitest";
import SomeComponent from "@/components/SomeComponent.vue";

describe("SomeComponent tests", () => {
  it("Renders my component with links in it", () => {
    const some_comp = mount(SomeComponent, {
      props: {
        label: "some text",
        link: "/some/url/here",
      },

      global: {
        stubs: {
          "router-link": RouterLinkStub,
        },
      },
    });

    // it renders and we check the link is set:
    expect(some_comp.text()).toContain("some text");
    const link_component = some_comp.findComponent(RouterLinkStub);
    expect(link_component.props().to).toBe("/some/url/here");

  });
});
Reasons:
  • RegEx Blacklisted phrase (1): check the link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Walter Schreppers

79829568

Date: 2025-11-25 10:35:01
Score: 6.5
Natty:
Report link

Thanks @Friede, but the that doesn't even begin to address the problem.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Friede
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: PsyR

79829558

Date: 2025-11-25 10:26:58
Score: 1
Natty:
Report link

Collect all contents in a package.

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

79829557

Date: 2025-11-25 10:26:58
Score: 2.5
Natty:
Report link

Invalidate IDE caches.

Once it's done, the import is no longer shown in red in the IDE.

IntelliJ IDEA - File - Invalidate Caches...

DBF class successfully referenced, not in red

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

79829555

Date: 2025-11-25 10:20:56
Score: 1
Natty:
Report link

To successfully set the background color when using image as a launch screen:

  1. create a Color Set in Assets.xcassets, name it, eg. splash-background-color

  2. add in Info.plist "Launch Screen" > "Background color" > enter named color eg. splash-background-color

  3. restart iOS Simulator - this is crucial (and stupid) ! Xcode 26.0 will show you just a blank screen until you restart simulator after any Launch Screen related changes! Clean does not help

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

79829551

Date: 2025-11-25 10:14:55
Score: 1.5
Natty:
Report link

npm config get prefix -g

The change since 2013 is that it needs a -g

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Szalai Laci

79829545

Date: 2025-11-25 10:10:54
Score: 0.5
Natty:
Report link

A) No. B) no one is going to give you access to their account.

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

79829540

Date: 2025-11-25 10:04:52
Score: 0.5
Natty:
Report link

Thanks. "Better" basically means "running/working" as my approach does not work in the context of the Shiny app. "Secure" means that the function loaded from an external file runs inside a sandbox environment. The sandbox is needed - or at least I would say so - to reduce the risk of importing malicious code. The whole idea of the app is that it is later used by a less tech-savvy person to provide access to data that was previously not available for researchers. Now I could surely implement a bunch of "shapes of data" to transform the logdata into, but it would be more extensible if additional functions for the transformation of logdata can be simply loaded from file. This allows experts in the field of data analysis to provided additional data wrangling functions by simply sending a file to the person operating the Shiny app. So, no, I would not call it an XY problem.

How I am calling the functions: I take the source code of the function stored in the variable fun and then evaluate the function in the sandbox: eval(parse(text = fun), envir = sandbox_env) . I then get the function object env_fun <- get(fun_name, envir = sandbox_env, inherits = FALSE) and execute the function result <- env_fun(df).

So I don't simply pass the function itself as it is loaded from a file and run in a different environment. As this approach works when run in a simply R script but not in a Shiny app, I assume it has something to do with the environment.

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

79829534

Date: 2025-11-25 09:55:50
Score: 3.5
Natty:
Report link

use this version : pip install "langchain==0.3.27"

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

79829531

Date: 2025-11-25 09:52:49
Score: 1
Natty:
Report link

there is a CityInfo.db database present in the location

/System/Library/PrivateFrameworks/AppSupport.framework/Resources

it contains cities table which contain the time zone data as same as world clock in alarm app

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

79829526

Date: 2025-11-25 09:47:48
Score: 1
Natty:
Report link
String keyStorePassword = "NEWPASSWORD";
KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
File file = new File(dir, "xyz.jks");
keyStore.load(new FileInputStream(file), keyStorePassword.toCharArray());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sprintzeal-cisa-certification

79829520

Date: 2025-11-25 09:44:47
Score: 1.5
Natty:
Report link

"better" needs a metric against which to judge candidates. How do you define better?

Similarly, how do you define "secure"?

Some questions:

I wonder whether this is may be an XY problem: why not provide the functionality you want to give users in a package and load the package as part of the app's start up? [That's the way I would (and have) addressed similar issues, but I accept the suitability of that approach may depend on what you mean by "better" and "secure".]

Reasons:
  • Blacklisted phrase (1): How do you
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): Please show how you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Limey

79829517

Date: 2025-11-25 09:43:46
Score: 1
Natty:
Report link

The following syntax works. In addition, the access level of the token needs to be Reporter or higher.

uvx --from git+https://gitlab_username:[email protected] tool

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

79829514

Date: 2025-11-25 09:42:46
Score: 3.5
Natty:
Report link

Regarding your questions:

Q1: What does the ENVELOPE_ALLOWANCE_EXCEEDED error mean in Docusign sandbox?

It means you have reached the maximum number of envelopes allowed in your developer sandbox account and cannot send more.

Q2: Can I reset or increase the envelope allowance on my developer sandbox account?

No. Docusign does not reset or increase the envelope limit for sandbox accounts.

Q3: What should I do if I reach the envelope limit in my sandbox?

Request or create a new developer sandbox account to continue testing.

Q4: Can I use a trial (production) account to create new Integration Keys and continue testing?

No. Trial (production) accounts do not allow creating new Integration Keys. Integration Keys can only be created in sandbox accounts.

Q5: What is the proper workflow for testing Docusign integrations?

Create Integration Keys and test all features in your sandbox. When testing is complete, submit a Go-Live request to move your application to production.

Reasons:
  • Blacklisted phrase (2): What should I do
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mahmoud Essam

79829512

Date: 2025-11-25 09:41:46
Score: 1.5
Natty:
Report link

Because Outlook frequently has trouble with large or sophisticated MSG data, managing Outlook MSG files with thousands of recipients can be challenging. Using a specialist conversion tool that can safely handle large amounts of data without losing formatting, headers or recipients is the most dependable approach. A decent choice is the Softaken MSG to PST Converter. It converts MSG files into a clear, error-free PST file, supports batch import and preserves all email attributes, including lengthy recipient lists. This program is compatible with all versions of Outlook and maintains folder structure.

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

79829511

Date: 2025-11-25 09:41:45
Score: 4.5
Natty:
Report link

Did you mean to post this on codereview?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you mean to post this on
  • High reputation (-1):
Posted by: Sören

79829509

Date: 2025-11-25 09:40:45
Score: 0.5
Natty:
Report link

This is how I solved it.

I added more designers to the BOM file.

And I divided the number of LEDs for each one.

To add more designers, just copy the first row and divide the number of LEDs in the designers section.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John

79829506

Date: 2025-11-25 09:33:42
Score: 11 🚩
Natty: 4.5
Report link

Im having the same error once i add new rows above my table with pivot tables take data from is there a way to fix ? I want few empty rows about that table

Reasons:
  • Blacklisted phrase (1): is there a way
  • RegEx Blacklisted phrase (1.5): fix ?
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): Im having the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same error
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31942105

79829504

Date: 2025-11-25 09:32:42
Score: 2
Natty:
Report link

@RequestMapping is <> @HttpExchange.

You have to use:

MultiValueMap<String, String> params = new LinkedMultiValueMap<>();

@GetExchange("/api/v1.0/question")
Mono<String> question(@RequestParam MultiValueMap<String, String> params);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @RequestMapping
  • User mentioned (0): @HttpExchange
  • Low reputation (1):
Posted by: viespring

79829500

Date: 2025-11-25 09:29:41
Score: 2.5
Natty:
Report link

whoever reading this if you are having the same issue take a look at this github issue https://github.com/dotnet/runtime/issues/119648. In the github issue you will find the solution but for reference here is the code that works:

using System;
using System.Reflection;
using System.Runtime.Loader;

namespace Host {
   public class PluginAssemblyLoadContext : AssemblyLoadContext {
      public PluginAssemblyLoadContext() : base(true) { }
   }

   public class HostState {
      public Assembly                     pluginAssembly;
      public PluginAssemblyLoadContext    loadContext;
      public Action                       pluginExecute;
   }

   public static class Host {
      public const string PLUGIN_PATH = "../plugin/bin/Debug/net10.0/plugin.dll";

      public static void Main() {
         HostState host = new HostState();
         host.loadContext = new PluginAssemblyLoadContext();
         ReloadDll(host);

         Console.WriteLine("Press E to execute the plugin, R to reload, or Q to quit.");

         for (;;) {
            var key = Console.ReadKey(true);
            if (false) {
            } else if (key.Key == ConsoleKey.E) {
               host.pluginExecute.Invoke();
            } else if (key.Key == ConsoleKey.R) {
               ReloadDll(host);
            } else if (key.Key == ConsoleKey.Q) {
               return;
            }
         }
      }

      public static void ReloadDll(HostState host) {
         host.loadContext = new PluginAssemblyLoadContext();
         byte[] assemblyBytes = File.ReadAllBytes(Path.GetFullPath(PLUGIN_PATH));
         using MemoryStream ms = new MemoryStream(assemblyBytes);
         host.pluginAssembly = host.loadContext.LoadFromStream(ms);

         Type type = host.pluginAssembly.GetType("Plugin");
         MethodInfo methodInfo = type.GetMethod("Execute", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static, []);

         if (methodInfo != null) {
            host.pluginExecute = methodInfo.CreateDelegate<Action>();
         }
      }
   }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: apilatosba

79829464

Date: 2025-11-25 08:57:32
Score: 1
Natty:
Report link

In the past anyone could use BASE_URL + ControllerName within the http request in Angular + .NET Core to call the server Controller, but in the latest version things work a little bit different.

I've investigated the problem why I couldn't reach server controllers just by passing "/ControllerName" in http requests.

So basicly Angular 18 + .NET core has 2 files which required to be edited as angular communicates trough proxy proxy.conf.js from Angular side and #ProjectName#.server.http file from the server side.

In both files you have to provide the name of the controller to establish communication.

Therefore BASE_URL is not required and you can just call "/ControllerName" in http requests.

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

79829463

Date: 2025-11-25 08:57:32
Score: 3.5
Natty:
Report link
Hello Vinicius,

thank you so much for your efforts and support, it really helped! To make things unfortunately a bit more complicated: this plot is part of a patchwork plot with a total of 4 plots, 2 on top and 2 on the bottom. I’ve now set it so that the top and bottom plots each share the same Y-axis alignment, so that the positive and negative values start from the same position.

However, this has caused geom_text to be displayed incorrectly again. Is there a solution for this within the existing code?



# Patchwork Arrangement:
plot_oben <- p1 | p3
plot_unten <- p2 | p4
plot <- plot_oben / plot_unten

# shared Y-Axis:
   
   # p_oben (p1 and p3)
   max_oben <- max(
     data_schule_schulform$Anzahl,
     data_2_schule_schulform$Anzahl,
     data_schule_jahrgang$Anzahl,
     data_2_schule_jahrgang$Anzahl
   )
   
   # p_unten (p2 and p4)
   max_unten <- max(
     data_schulform_1$Anzahl,
     data_schulform_2$Anzahl,
     data_schulform_3$Anzahl,
     data_schulform_4$Anzahl
   )


Below each plot i added for example...
 p1 <- p1 +
     scale_y_continuous(limits = c(-max_oben, max_oben))

 p2 <- p2 +
     scale_y_continuous(limits = c(-max_unten, max_unten))
...
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (3): Is there a solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Felix

79829462

Date: 2025-11-25 08:57:32
Score: 1.5
Natty:
Report link

You need to add "_" before and after the minus sign
something like this

h-[calc(100vh_-_230px)]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Israr Khan

79829455

Date: 2025-11-25 08:51:31
Score: 2
Natty:
Report link
input:focus {
  border: 1px solid black;
}

This is working Try it!

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

79829450

Date: 2025-11-25 08:40:28
Score: 1.5
Natty:
Report link

When I use the action: keep or action: drop operations, the subsequent action: replace operations will not take effect, and the filtering operations for keep or drop matching also fail to work properly, using the same simple matching as described above. When I comment out the keep or drop operations, the final action: replace operations successfully add labels based on the metadata.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When I use the
  • Low reputation (1):
Posted by: user31941689

79829448

Date: 2025-11-25 08:38:28
Score: 0.5
Natty:
Report link

First you have to make sure you configured you application to load the config correctly:
Example from Serilog:

static void Main(string[] args)
{
    var configuration = new ConfigurationBuilder()
        .SetBasePath(Directory.GetCurrentDirectory())
        .AddJsonFile("appsettings.json")
        .AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? "Production"}.json", true)
        .Build();

    var logger = new LoggerConfiguration()
        .ReadFrom.Configuration(configuration)
        .CreateLogger();

    logger.Information("Hello, world!");
}

If you did this you have to correctly structure your json like this: https://github.com/serilog/serilog-sinks-rollingfile?tab=readme-ov-file#controlling-event-formatting

{
  "Serilog": {
    "WriteTo": [
      { "Name": "RollingFile", "Args": { "pathFormat": "log-{Date}.txt" } }
    ]
  }
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Changer

79829445

Date: 2025-11-25 08:37:27
Score: 4.5
Natty:
Report link

@ch4mp thanks for the answer and the article. While the gateway approach is a bit of an overkill for my scenario (I have a single frontend application), it pushed me to the right direction. I now have a proxy controller that intercepts each browser call, get the JWT token from the session, and forwards the call with JWT token to stateless REST endpoints

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • User mentioned (1): @ch4mp
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: MinisX

79829443

Date: 2025-11-25 08:36:27
Score: 3
Natty:
Report link

Can you try using Navigator.push instead of Navigator.pop to see if the issue persists? Also, if you are using any packages related to navigation or state management, please let me know. I can connect with you and help resolve the issue.

Reasons:
  • Whitelisted phrase (-2): Can you try
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (0.5):
  • Has 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: Vikash Harjeewan

79829442

Date: 2025-11-25 08:36:27
Score: 1
Natty:
Report link

I repeated the steps with Intelij (same as any other JetBrains' products, such as Rider). It works perfectly. For the context, the built-in SQLite driver in JetBrains IDEs does not support SQLCipher encryption. The reason you see that error is simply because that default sqlite driver just see your encrypted database as a bunch of random bytes with no meaning.

First, download the sqlite-jdbc-crypt (I downloaded sqlite-jdbc-3.50.1.0.jar)

Second, define a custom driver:

enter image description here

Third, add your driver file that you downloaded from the first step

enter image description here

It must look like this:

enter image description here

Then, use that recently added driver as your "Data Source".

Finally, add a url like this containing the address to your encrypted sqlite db file, your key, kdf_iter, etc: jdbc:sqlite:file:/home/USER/test_database_v4.db?cipher=sqlcipher&legacy=4&kdf_iter=256000&cipher_page_size=4096&key=mySecretPassword123

That's it!

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

79829433

Date: 2025-11-25 08:22:23
Score: 1
Natty:
Report link

In the comments section, Nate Eldredge left the following answer regarding .wrapping_shl():

They're identical to the point that the compiler just emits the code once and defines the other versions as aliases: godbolt.org/z/jGW3b6K1c

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

79829416

Date: 2025-11-25 08:02:19
Score: 1
Natty:
Report link

Unreal Engine(이하 UE)으로 Android 기반 XR(VR/AR) 프로젝트를 시작하려는 시점에서 겪는 혼란은 지극히 정상입니다. Unity는 AR Foundation이나 XR Interaction Toolkit으로 상대적으로 경로가 명확한 반면, Unreal은 최근 1~2년 사이 OpenXR로 대전환을 하면서 문서가 파편화되어 있습니다.

결론부터 말씀드리면, **"Unreal은 Android XR을 공식 지원하지만, '순수 OpenXR'만으로는 부족하며 하드웨어 제조사(Meta, Pico 등)의 플러그인과 함께 사용해야 가장 안정적"**입니다.

질문하신 내용을 바탕으로 실무 관점의 현황과 설정을 정리해 드립니다.


1. Unreal Engine Android XR 빌드 필수 설정 (UE 5.3~5.5 기준)

현재 가장 안정적인 Unreal Engine 5.3~5.4 버전을 기준으로 한 표준 설정입니다. 버전이 맞지 않으면 패키징 오류가 발생할 확률이 매우 높습니다.

구분권장 설정 및 버전비고Engine VersionUE 5.4 (권장) 또는 5.35.4에서 XR 렌더링 성능(Vulkan)이 대폭 개선되었습니다.Android StudioFlamingo 또는 GiraffeUE 버전에 따라 다릅니다. (UE 5.4는 Flamingo/Giraffe 권장)NDKr26b (UE 5.4) / r25b (UE 5.3)프로젝트 설정에서 정확한 경로를 지정해야 합니다.JDKOpenJDK 17JAVA_HOME 환경변수 설정 필수입니다.Build SystemGradleAGP(Android Gradle Plugin) 8.x 대 버전을 사용하게 됩니다.Min SDK29 (Android 10) 이상XR 장비(Quest 3 등)는 보통 최신 OS를 사용하므로 29~32로 설정합니다.Target SDK32 또는 34구글 플레이 스토어 등록 시 최신 버전 요구 사항을 확인해야 합니다.

[필수 플러그인 활성화]

  1. OpenXR: Enabled (필수, 엔진 코어 기능)

  2. OpenXRHandTracking: Enabled (손 추적 필요 시)

  3. Mobile Foveated Rendering: Enabled (성능 최적화 필수)


2. OpenXR 지원 여부: "완벽하지만, 혼자가 아닙니다"

질문하신 **"공급업체 통합 없이 OpenXR만으로 작동하는가?"**에 대한 답은 **"작동은 하지만, 상용화 수준을 위해서는 공급업체 플러그인이 필수"**입니다.


3. ARCore vs. HMD (Head Mounted Display)

이 부분이 문서에서 가장 헷갈리는 지점입니다. 'Android XR'이라는 용어가 두 가지를 혼용합니다.

  1. 핸드헬드 AR (스마트폰/태블릿):

    • 기술: Google ARCore를 사용합니다.

    • 설정: Google ARCore 플러그인을 켜고, 프로젝트 설정에서 Configure Google ARCore를 실행해야 합니다.

    • 현황: Unity의 AR Foundation에 비해 Unreal의 AR 지원은 기능 업데이트가 느린 편입니다. 단순한 AR은 가능하지만, 복잡한 상호작용은 C++ 작업이 필요할 수 있습니다.

  2. HMD VR/MR (Quest, Pico 등 Android 기반):

    • 기술: OpenXR을 사용합니다.

    • 설정: OpenXR + Vendor Plugin 조합을 사용합니다. ARCore는 사용하지 않습니다(Passthrough는 벤더 SDK로 처리).

    • 현황: Unreal 5의 NaniteLumen이 모바일(Android) XR에서 제한적으로 지원되기 시작하면서, 그래픽 퀄리티 면에서는 Unity보다 잠재력이 큽니다.


4. 알려진 제한 사항 및 주의점

Unity 대비 Unreal로 Android XR을 개발할 때 겪게 될 현실적인 장벽입니다.

  1. 초기 설정의 난이도 (Android Setup):

    • Unreal은 SetupAndroid.bat 스크립트를 제공하지만, Java 버전이나 NDK 버전이 조금만 꼬여도 빌드가 실패합니다. Unity 허브처럼 자동으로 관리해주지 않습니다.

    • 해결: 프로젝트 시작 전 "Android Turnkey" 설정을 통해 모든 SDK 경로가 초록색(Valid)인지 확인해야 합니다.

  2. 성능 및 빌드 크기:

    • 빈 프로젝트도 APK 용량이 Unity보다 큽니다 (기본 100MB~).

    • 모바일 GPU에서 Unreal의 렌더링 파이프라인은 무겁습니다. Forward Shading을 켜고, Instanced Stereo Rendering 또는 Mobile Multi-View를 반드시 설정해야 프레임 방어가 가능합니다.

  3. 공식 문서의 부족:

    • Unreal 공식 문서는 최신 내용을 즉각 반영하지 못하는 경우가 많습니다.

    • 팁: Epic Games 문서보다는 Meta의 Unreal 개발자 문서Pico 개발자 문서를 메인으로 참고하는 것이 훨씬 정확합니다.

  4. Google의 새로운 "Android XR":

    • 최근 구글이 삼성과 협력하여 발표 예정인 새로운 'Android XR' 플랫폼은 아직 Unreal에 전용 SDK가 공개되지 않았습니다. 이 경우 표준 OpenXR로 대응하게 될 것입니다.

출처:goole

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: 박예찬

79829414

Date: 2025-11-25 07:59:18
Score: 0.5
Natty:
Report link

Using Ruby on Rails

You have #{n} #{'kid'.pluralize(n)}

See pluralize doc for options & alternatives:
https://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-pluralize

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Constantin De La Roche

79829406

Date: 2025-11-25 07:52:16
Score: 2.5
Natty:
Report link

Fortnite restricts mouse movements from 3rd party programs, your choice is to make a kernel driver that attaches to fortnite and hopefully dont get banned,
or be safe using andriuno

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

79829405

Date: 2025-11-25 07:50:15
Score: 1
Natty:
Report link
// Source - https://stackoverflow.com/a/63920302
// Posted by matdev, modified by community. See post 'Timeline' for change history
// Retrieved 2025-11-25, License - CC BY-SA 4.0

buildTypes {
        debug{...}
        release{...}
    }
    // Specifies one flavor dimension.
    flavorDimensions "main"

productFlavors {
        demo {
            // Assigns this product flavor to the "main" flavor dimension.
            // If you are using only one dimension, this property is optional,
            // and the plugin automatically assigns all the module's flavors to
            // that dimension.
            dimension "main"
            applicationId "com.appdemo"
            versionNameSuffix "-demo"
        }
        full {
            dimension "main"
            applicationId "com.appfull"
            versionNameSuffix "-full"
        }
    }
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gudiya Yadav

79829403

Date: 2025-11-25 07:50:15
Score: 2
Natty:
Report link

Date: 13/11/2025

To:
Finance Department
HungerStation Delivery Company

Subject: Notification of Change in Bank Account IBAN Details

Dear HungerStation Delivery Team,

We would like to inform you that the bank account details of Malbriz Arabia Company have been updated. Kindly take note of the new IBAN information provided below and ensure that all future payments, transfers, or transactions are made to the updated account.

Previous Bank Details:

·         Bank Name: Saudi National Bank

·         Account Name: مطعم الأرز المفضل لتقديم الوجبات

·         Old IBAN: SA8110000001400023615710

New Bank Details:

·         Bank Name: Saudi National Bank

·         Account Name: Malbriz Arabia Co

·         New IBAN: SA8110000001400023615710

·         SWIFT/BIC (if applicable): NCBKSAJE

Please update your records accordingly to avoid any interruption in payments. The old IBAN will no longer be in use after 01/08/2025.

We request you to kindly confirm the update of our banking details in your records.

Thank you for your continued support and cooperation.

Yours sincerely,

Muhammed Shahin
General Manager
Malbriz Arabia Company

التاريخ: 13/11/2025

إلى:
إدارة المالية
شركة هنقرستيشن للتوصيل

الموضوع: إشعار بتغيير بيانات رقم الآيبان البنكي

السادة فريق هنقرستيشن المحترمين،

نود إبلاغكم بأنه قد تم تحديث بيانات الحساب البنكي لشركة مالبريز العربية. وعليه، يرجى أخذ العلم بمعلومات الآيبان الجديدة الموضحة أدناه، والتأكد من تحويل جميع المدفوعات أو الحوالات أو العمليات المالية المستقبلية إلى الحساب المحدّث.

البيانات البنكية السابقة:
اسم البنك: البنك الأهلي السعودي
اسم الحساب: مطعم الأرز المفضل لتقديم الوجبات
رقم الآيبان القديم: SA8110000001400023615710

البيانات البنكية الجديدة:
اسم البنك: البنك الأهلي السعودي
اسم الحساب: شركة مالبريز العربية
رقم الآيبان الجديد: SA8110000001400023615710
SWIFT/BIC (إن وجد): NCBKSAJE

يرجى تحديث سجلاتكم لتجنب أي انقطاع في المدفوعات. علمًا بأن رقم الآيبان القديم لن يكون قيد الاستخدام بعد تاريخ 01/08/2025.

ونرجو منكم التكرم بتأكيد تحديث بياناتنا البنكية لديكم في السجلات.

شاكرين لكم تعاونكم ودعمكم المستمر.

وتفضلوا بقبول فائق الاحترام،

محمد شاهين
المدير العام
شركة مالبريز العربية

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: user31941513

79829391

Date: 2025-11-25 07:35:11
Score: 1
Natty:
Report link
xdebug.discover_client_host = true
or
xdebug.client_host = "127.0.0.1"

is the key point for newer xdebug version

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): is the
Posted by: xsilen T

79829390

Date: 2025-11-25 07:32:10
Score: 1.5
Natty:
Report link

After some research, I came across these two forum posts, describing exactly the same behaviour: https://developer.apple.com/forums/thread/778184 and https://developer.apple.com/forums/thread/772999. The answer in both was to enable all interface orientations for iPad.

I tried that via the project settings in Xcode:

Orientation options in Xcode project settings

Alas, selecting all orientations for iPad did not work.

But then I remembered in our app we also (for reasons) define this set of options programmatically, via the AppDelegate. I applied the same changes there:

func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
    switch UIDevice.current.deviceIdiom {   // `deviceIdiom` is our own property for handling device idioms
    case .phone:
        return .allButUpsideDown
        
    case .pad:
        return .landscape
       
    case .mac:
        return .all   // <-- Return `.all` here!
    }
}

And, voila, we have content in popovers on Mac Catalyst!

Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: adamjansch

79829387

Date: 2025-11-25 07:29:10
Score: 1
Natty:
Report link

I decided to use the simplest way and just restart the application if certificate is changed using spring actuator.

To do it we should enable restart endpoint int application.properties:

management.endpoint.restart.access=read_only

and in my ContainerConfiguration.java:

private void reloadSSLConfig() { 
    restartEndpoint.restart(); 
}

PS: also I've found the article about hot reloading SSL in spring: SSL hot reload in Spring Boot 3.2.0

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

79829385

Date: 2025-11-25 07:20:07
Score: 1
Natty:
Report link

It looks like the litespeed_docref tag is added automatically by the LiteSpeed server or plugin, and you can usually disable it from the LiteSpeed Cache settings under the debug or toolbox section. If there’s no option available, you can remove it using a small code snippet in your theme’s functions file to strip that meta tag from the header. After making the change, give your site a quick check—similar to running a train speed test online to confirm the header is clean and the tag is gone.

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

79829384

Date: 2025-11-25 07:19:07
Score: 2
Natty:
Report link

The Shortcut control returns a flat list of all keys pressed. In the Windows API Register Hotkey world, keys are distinct from modifiers, but in the input handling world (the control), they are all just "keys". You need to iterate through that list and sort the keys: if it is a modifier (ctrl, shift, alt, win), add it to a flags enum; otherwise, treat it as the specific trigger key.

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

79829382

Date: 2025-11-25 07:18:07
Score: 0.5
Natty:
Report link

I use following config it works in my local

cat /opt/homebrew/etc/php/8.3/conf.d/xdebug.ini

xdebug.mode = debug
xdebug.discover_client_host = true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: xsilen T

79829375

Date: 2025-11-25 07:08:03
Score: 7 🚩
Natty: 5
Report link

hello,我目前也在开发类似的功能,请问能在百忙之中交流一下吗

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: xiangdong li

79829364

Date: 2025-11-25 06:51:59
Score: 3
Natty:
Report link

go to obj folder this was in your project folder and remove all files from debug releas and x86 folder and then clean your solution and rebuild it will solve your problem

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

79829362

Date: 2025-11-25 06:49:58
Score: 0.5
Natty:
Report link

AI in Digital Marketing

**

Introduction,**
Artificial Intelligence (AI) is transforming the way businesses approach marketing. In digital marketing, AI in digital marketing helps companies understand customer behavior, optimize campaigns, and make data-driven decisions. By integrating AI into marketing strategies, businesses can enhance customer experiences and improve results.

Role of AI in Digital Marketing
AI in digital marketing
* is used in various areas, such as:*

Personalization: AI analyzes user behavior to provide personalized marketing content and recommendations.

Automation: Digital marketing AI tools like chatbots and automated email campaigns save time and improve efficiency.

Data Analysis: AI quickly processes large amounts of data to provide insights for AI marketing strategies.

Content Creation: AI tools assist in generating social media posts, ad copy, and blogs for AI in online marketing campaigns.

Popular AI Tools for Digital Marketing

Some effective digital marketing AI tools include:

Chatbots: Automated customer support (e.g., Drift, ManyChat) for better engagement.

Predictive Analytics: Helps forecast future customer behavior, a key part of AI marketing strategies

Content Generation Tools: AI writing platforms (e.g., Jasper, Copy.ai) enhance content creation for AI in online marketing.

Ad Optimization Tools: AI improves ad targeting and ROI on platforms like Google Ads and Facebook Ads.

*

Benefits of AI in Digital Marketing*

Using AI in digital marketing brings many advantages:

Enhanced Customer Experience: Personalized content strengthens customer loyalty.

Cost Efficiency: Reduces manual tasks and increases productivity.

Better Decision Making: Data-driven insights improve AI marketing strategies.

Scalability: Businesses can manage larger campaigns with less effort.

Competitive Advantage: Companies adopting AI benefits in marketing gain an edge over competitors.

Challenges of AI in Digital Marketing

*

While AI in digital marketing is powerful, it comes with challenges:*

Tool Costs: High-end AI tools can be expensive for small businesses.

Privacy Concerns: AI relies heavily on customer data, which must be carefully handled.

Over-reliance on Technology: Too much dependence on AI may reduce human creativity.

Complex Implementation: Learning and using AI tools requires training and technical knowledge.

Conclusion

AI in digital marketing is revolutionizing how businesses connect with customers. From AI marketing strategies to AI benefits in marketing, the technology enables smarter, more personalized campaigns. Embracing AI is essential for businesses to enhance performance, improve ROI, and stay competitive in today’s digital landscape.

SEO Practice Notes

Primary Keyword: AI in Digital Marketing → used in title, intro, subheadings, and conclusion.

Secondary Keywords: sprinkled naturally through the article for search engine optimization.

Internal Linking Tip: Link to other posts like “Top AI Marketing Tools” or “Digital Marketing Trends 2025” for SEO boost.

Meta Description Suggestion: "Learn how AI in digital marketing is transforming online strategies, enhancing customer experiences, and improving ROI with modern AI marketing tools.

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

79829350

Date: 2025-11-25 06:19:51
Score: 1.5
Natty:
Report link

Yes, you can build a food delivery website using WordPress and WooCommerce, but you’ll need a few extra plugins to make it work like a real delivery platform. WooCommerce covers the basic online store part, but the delivery features have to be added separately.

A simple setup usually includes:

  1. WooCommerce – for your products and checkout

  2. A restaurant/food menu plugin – to display food items in an easy-to-browse layout

  3. A location or PIN-code checker – to control where deliveries are available

  4. Delivery date and time plugin – so customers can choose when they want their order

  5. Live order status or tracking add-ons – optional but helpful

  6. Delivery partner/driver management tools – if you want to assign orders to riders

A lot of small restaurants start with this kind of WordPress setup before they move to a dedicated mobile app. For example, apps like Cravess (a growing Food Delivery App in Delhi) usually begin with a similar structure and later shift to custom-built systems when they need advanced features like real-time tracking, multi-restaurant support, or automated payouts.

So yes, WooCommerce works fine for a basic food delivery site, but if you plan to scale or add more complex features, you might eventually need a custom solution.

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

79829345

Date: 2025-11-25 06:12:50
Score: 2
Natty:
Report link

django-silk

it is usefull in ur case -lightweight -Native -no heavy setu

let me know u want a setup for that or u can figureout

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

79829342

Date: 2025-11-25 06:07:48
Score: 2
Natty:
Report link

https://github.com/mlocati/docker-php-extension-installer can also be an approach. Your Dockerfile then might look like:

FROM php:8.2-fpm

COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/bin/
RUN install-php-extensions @composer http (and other extensions supported by the installer)

...
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can also
  • Low reputation (0.5):
Posted by: Shushiro

79829336

Date: 2025-11-25 06:05:48
Score: 4.5
Natty:
Report link

Not yet. There is only a drill to details table existing. See: https://github.com/apache/superset/tree/master/superset-frontend/src/components/Chart/DrillDetail

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

79829318

Date: 2025-11-25 05:43:42
Score: 2.5
Natty:
Report link

To send bulk SMS on WhatsApp, use Digivate IT WhatsApp Sender.
Just install the software, connect your WhatsApp by scanning the QR code, import your contact list (Excel/CSV), type your message, set the sending speed, and click Start Sending. The tool will deliver your WhatsApp messages in bulk with reporting, filtering, and anti-block features.

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

79829311

Date: 2025-11-25 05:29:39
Score: 0.5
Natty:
Report link

After a fresh install of VS 2026 I started encountering this issue, but only when I switched to Release mode. I had to go back into the VS Installer and:

Individual Components tab->Scroll down to Compilers, build tools, and runtimes

Then select the MSVC ### Build Tools you are building against

During my initial install I selected v141-v143 from the Desktop development with c++ tab, all of which should have had <filesystem> but for some reason they didn't install and it was defaulting to v140 despite me selecting ISO C++ 17 or ISO C++ 20 as the language standard.

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

79829301

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

Can't reproduce the result of your first command here. Expected duration is 10.08 which is what I get. Run with -report and share report.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can't
  • High reputation (-2):
Posted by: Gyan

79829296

Date: 2025-11-25 04:50:30
Score: 3.5
Natty:
Report link

protected $guarded = [];
do this and then try again

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

79829280

Date: 2025-11-25 03:48:18
Score: 1
Natty:
Report link

The four VAX floating-point formats (32-bit F format, 64-bit D format, alternate 64-bit G format, 128-bit H format) all have three classes of floating-point data, encoded by a sign bit, an exponent field, and a significand field:

  1. Normal floating-point numbers, encoded with a nonzero exponent field.
  2. Reserved operands, encoded with zero exponent and sign bit set. Triggers reserved operand fault on input to floating-point operations, rather than propagating without a trap like a quiet NaN would. (IEEE 754 uses this encoding for negative zero or negative subnormals instead.)
  3. Zero, encoded with zero exponent, sign bit clear, and zero significand field.
  4. Dirty zero, encoded with zero exponent, sign bit clear, and nonzero significand field. Treated as zero on input to floating-point operations. (IEEE 754 uses this encoding for positive subnormals instead.)

On NetBSD/vax, the fpclassify() function has four possible return values for these cases:

FP_ROP is an example of a non-finite floating-point class other than infinity and NaN.


References:

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

79829279

Date: 2025-11-25 03:41:16
Score: 4
Natty:
Report link

enter image description here

Admin area -> Repository -> Allow developers to push to the initial commit

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 胡启凡

79829266

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

You should be able to make a copy of the CMake templates and replace the call to the usual Antlr Tool with a call to the antlr-ng tool.

https://github.com/antlr/antlr4/blob/fbb20fee4510b4e1dbd23b835802742f40b6357e/runtime/Cpp/cmake/FindANTLR.cmake#L106-L111

I think I did that for my version of the CMake files in template form over here: https://github.com/antlr/grammars-v4/tree/61284ea7750274b996021b2b05fa003e9c173222/_scripts/templates/Cpp/cmake. For the default generator (i.e., the usual Java-based Antlr Tool 4.13.2), I replaced that with the "antlr4" Python wrapper, since it downloads Java as well as the .jar.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
Posted by: kaby76

79829263

Date: 2025-11-25 02:40:03
Score: 0.5
Natty:
Report link

What OS? The Azure DevOps Server shares a lot of documentation with the cloud version (aka "Azure DevOps Services"), so you should follow articles like this to see how to prepare an agent for your build tasks.

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): What
  • High reputation (-2):
Posted by: Lex Li

79829261

Date: 2025-11-25 02:34:02
Score: 1.5
Natty:
Report link

When you work with a buffer, always use flush(), as it forces the data from the buffer to be written to the final destination. Not using flush on a buffer can cause the data not to be written to your file.

public void writeToFile(String fullpath, String contents) {

    // Paths AṔI
    Path filePath = Paths.get(fullpath, "contents.txt");

    try {
        // Files AṔI    
        Files.createDirectories(filePath.getParent());
    } catch (IOException e) {
        e.printStackTrace();
        return;
    }

    // Files AṔI    
     try (BufferedWriter bw = Files.newBufferedWriter(filePath)) {
        bw.write(contents);
        bw.flush(); // <<--- Flush force write in file
    } catch (IOException e) {
        e.printStackTrace();
    }
}

When working with files in Java, use the Paths and Files APIs.

This way, you don't need to worry about operating system issues.

Reference:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Gil

79829259

Date: 2025-11-25 02:32:02
Score: 2.5
Natty:
Report link

@Ron Rosenfeld That is another good option. However, can tweak it more so that it do not display "Zero Dollar" or "Zero Cent" when there is no value? I am not proficient in python script.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Ron
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Harun24hr

79829255

Date: 2025-11-25 02:24:00
Score: 5.5
Natty:
Report link

@Cy-4AH SwiftPM does not support adding ".a" files as binaryTargets. But it supports "xcframeworks". And I have tried to build "xcframework" and attach it but with no success (but this was before success with absolute path's). But will try once more. Thanks for advice.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks for advice
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Cy-4AH
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Andrew

79829254

Date: 2025-11-25 02:19:58
Score: 5
Natty: 5
Report link

https://www.youtube.com/watch?v=6h1WGKJKxXI

explains very nicely how to deal with this problem.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yoder

79829253

Date: 2025-11-25 02:12:56
Score: 2
Natty:
Report link

Panda3D will fail to get access to any Graphics API (OpenGL, Vulkan and Direct3D) because repl.it online machines doesn't have any form of GPU. If you really wish to render graphics on it, I would recommend switching to an SDL based library (like pygame) which does not require a GPU since it only use the CPU. You may struggle to do 3D graphics thought.

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

79829251

Date: 2025-11-25 02:05:55
Score: 1
Natty:
Report link

multer using 'latin1' decode filename

if (!/[^\u0000-\u00ff]/.test(req.file.originalname)) {
    req.file.originalname = Buffer.from(req.file.originalname, 'latin1').toString('utf8')
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Luoxinzheng

79829240

Date: 2025-11-25 01:21:46
Score: 2
Natty:
Report link

i run into similar problem, i think `planInputPartitions(start, end)` is supposed to be idempotent, it can be called multiple times. then how should i do things like receiving messages from sqs upon triggered? the latestOffset() is the place, we need to introduce a cache to hold the result.

Reasons:
  • Blacklisted phrase (1): how should i
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dyno Fu

79829227

Date: 2025-11-25 00:53:39
Score: 4
Natty:
Report link

may be git-filter-repo ? (and 17 more characters =))

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sadok