79178557

Date: 2024-11-11 17:19:02
Score: 0.5
Natty:
Report link

At the end I found the solution admin should be initialized with admin.initializeApp, better if as global

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: arpho

79178553

Date: 2024-11-11 17:17:01
Score: 2.5
Natty:
Report link

Solved! Visual Studio 2022 > Tools > Comman Line > Developer Command Prompt

enter image description here

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

79178547

Date: 2024-11-11 17:16:01
Score: 0.5
Natty:
Report link

Yes, it is possible to use inline conditional statements in concatenation in JavaScript, but you need to ensure the correct use of parentheses to avoid syntax errors. The issue in your example is due to the precedence of the + operator and the ternary operator ? :.

Here is the corrected version of your code:

console.log("<b>Test :</b> " + ("null" == "null" ? "0" : "1") + "<br>");

By wrapping the conditional statement in parentheses, you ensure that it is evaluated correctly before concatenation.

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

79178533

Date: 2024-11-11 17:11:00
Score: 2
Natty:
Report link

My issue is with date-fns 2.9.0 not installing. I went to Heroku and tried to npm install manually and it sits there until sometimes timing out after a long period of time.

Then sometimes it says

The authenticity of host 'http://github.com (140.82.113.3)' can't be established.acted to /app/server/node_modules/.staging/date-fns-74841dec (4779ms)
ED25519 key fingerprint is SHA256:+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU.
This key is not known by any other names

I searched on Github here and the SHA256 data does match ok. So I wonder if this is a Heroku issue where known_hosts needs an additional entry?

I can't find the known_hosts on my dyno and not confident it would stick around even if I found it.

This could be a situation where npm install is going to github instead of a regular npm repository. I'm new and not sure. But I am loading a specific tag of a github repository right after date-fns which may be the real issue.

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Triemstra

79178530

Date: 2024-11-11 17:11:00
Score: 0.5
Natty:
Report link

These are good answers, but I would also suggest checking the NUnit documentation, since the setup might change over time: https://docs.nunit.org/articles/nunit/technical-notes/usage/Trace-and-Debug-Output.html

Today, when I was looking at the same problem in VS 2022, I got it working by

a) Adding the code in the 2nd example from the page page referenced:

    [OneTimeSetUp]
    public void StartTest()
    {
        if (!Trace.Listeners.OfType<ProgressTraceListener>().Any())
            Trace.Listeners.Add(new ProgressTraceListener());
    }

b) Change the output in from "Debug" to "Tests" in Visual Studio:

Screen clipping of Visual Studio output drop-down.

c) Then I was able to see the Console.WriteLine("Whatever!") output that's inside my test.

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

79178517

Date: 2024-11-11 17:05:59
Score: 2.5
Natty:
Report link

Problem was in syscall function as @JhonBollinger noticed mp_parent is index of parent in mproc. So it should be

if ((child->mp_flags & IN_USE) && mproc[child->mp_parent].mp_pid == proc->mp_pid) {
                child_count++;
            }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JhonBollinger
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ivashchenko Matvii

79178515

Date: 2024-11-11 17:05:58
Score: 2
Natty:
Report link
mask = np.full(arr.shape, True)
mask[1:-1, 1:-1] = False
print(arr[mask])
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paul Rademacher

79178514

Date: 2024-11-11 17:05:58
Score: 0.5
Natty:
Report link

The problem you're running into is a common pitfall, stemming from the fact that your AppSheet app is using a cache service to try and make things efficient and run faster.

When you open a file in your AppSheet app for the first time, the file is downloaded from wherever and then stored on your device for 6 hours.

When you make changes to the file, unfortunately the file is not updated in the cache. There is no mechanism that triggers to all devices that have ever opened the app that they then need to discard their current version of the file and download the new one. (You can see how that might be a bit of a heavy thing, with a whole bunch of pitfalls and problems to make that a smooth running thing 100% of the time. That's why they haven't made it, and they just stick with the fact that it's stored in cache for 6 hours.)


After the 6 hours elapses, you will see the changes inside the file if you try and open it again.

You can rest assured though, whenever you use that file for an email or something, whenever you send it out, the system will use the file from the data source not what you have cached on your device. It can be a little disconcerting when you open the file after you just made changes and you don't see any changes, I totally feel you on that. 🤓

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

79178511

Date: 2024-11-11 17:04:58
Score: 1
Natty:
Report link

The expression looks good except kubernetes="*". Are you sure it should be like this, and not like kubernetes=~".*"?

The expression will trigger if any new job with tmp word in its value will be written to VictoriaMetrics. It will continue returning > 0 value up to 15min.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: hagen1778

79178499

Date: 2024-11-11 17:00:57
Score: 0.5
Natty:
Report link

Don't flush the serial port buffers. I just spent about a week trying to determine where data was getting lost. I think behavior is different between various serial ports, take the ESP32-S2, which has native CDC, and also a serial converter chip. I think the OS driver may implement port methods differently. On the ESP32-S3 CDC port, if flushIOBuffers() is called immediately after a write(), the data may never be transmitted.

I haven't researched all of the issues, and there are some things that could be monitored like buffer sizes, setting to blocking, etc.

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

79178498

Date: 2024-11-11 17:00:57
Score: 3
Natty:
Report link

I managed to find it out by getting a link from 3 dots -> "Copy link to task"

screenshot showing card of a task

which got me

https://planner.cloud.microsoft/**company**/Home/Task/**abcdefghijklmnopqrstufwxyzab**?Type=TaskLink&Channel=Link&CreatedTime=638669404935190000

... the bold part being the taskId, e.g. as seen in export to excel format. The url query parameters can apparently be discarded as well and still work.

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

79178482

Date: 2024-11-11 16:56:56
Score: 0.5
Natty:
Report link

But VM doesn't appear to support fan-out federated query or using object storage, so I can't just drop it in to replace Thanos too.

In VM ecosystem fan-out queries aren't needed. Usually, Prometheus (or stateless scrape agents) is used for scraping and delivering metrics to central VM cluster. Data usually has about 30-60s freshness and can be queried right away from central cluster, providing global query view.

Yes, VictoriaMetrics doesn't support object storage for historical data. But it is very efficient in terms of data compressing, so probably storing everything on disks would cost the same money and will provide better query performance.

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

79178475

Date: 2024-11-11 16:53:55
Score: 3
Natty:
Report link

I have a big problem with the 30 seconds also. It's very difficult to read the numbers and type them into the app asking for them within that limited time. It's completely unreasonable especially for people with physical disabilities. Would love to change it to (at least) one minute. Is there any way to do that?

In fact, due to this issue I would not use Google Authenticator at all if it weren't mandated by the government agency that now requires it for logins.

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Catherine Schevon

79178470

Date: 2024-11-11 16:52:55
Score: 1.5
Natty:
Report link

very confusing code... and it's not entirely clear what exactly is needed. If you want to constantly add new values, then try removing

this.other_dynamic_filters = [];

I hope this helps, or please describe the problem in more detail

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (2.5): please describe
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Dmitriy Ivanko

79178467

Date: 2024-11-11 16:51:55
Score: 2.5
Natty:
Report link

Nov 2024. Monitor and Improve > Policy & Programmes > App Content.

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

79178460

Date: 2024-11-11 16:50:55
Score: 1
Natty:
Report link

a suggestion for Apache HTTPD and mod_jk:

If you prefer "anonymous" as REMOTE_USER for Tomcat

    <Location unprotectedURL>
    RewriteEngine On
    RewriteRule .* - [E=JK_REMOTE_USER:anonymous]
    </Location>

https://tomcat.apache.org/connectors-doc/common_howto/proxy.html

To disable Shibboleth session requirement

    <Location unprotectedURL>
    ShibRequestSetting requireSession 0
    </Location>

https://shibboleth.atlassian.net/wiki/spaces/SP3/pages/2065335062/Apache#Enabling-the-Module-for-Authentication

The combination should give you a publicly accessible URL with a user set behind the scenes.

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

79178454

Date: 2024-11-11 16:48:54
Score: 4
Natty:
Report link

Running the same command in the cmd (run as admin), did the job.

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

79178450

Date: 2024-11-11 16:47:54
Score: 3.5
Natty:
Report link

This can be achieved using Render Hooks: https://filamentphp.com/docs/3.x/support/render-hooks For this you would use: TablesRenderHook::TOOLBAR_SEARCH_AFTER - After the search container

Here's a guide on how to implement this. See #6 https://laraveldaily.com/lesson/filament-visual-customize/render-hooks-custom-code-in-forms-header-footer-sidebar

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

79178431

Date: 2024-11-11 16:41:52
Score: 1.5
Natty:
Report link

SCIM is a REST API-based protocol. Requests for SCIM are performed via HTTP requests (GET, POST, PATCH..) and need an HTTP URL. Even if the application is hosted "on-prem", it needs to have an HTTP server running to handle the HTTP request/response processing. The URL doesn't need to be externally resolvable, but does need to be accessible to the provisioning agent and resolvable via the internal DNS available to the server the agent is running on.

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

79178428

Date: 2024-11-11 16:40:52
Score: 1
Natty:
Report link

Just a little bit math:

img = ImageGrab.grab()
# crop with correct scale
screen_width = self.master.winfo_screenwidth()
screen_height = self.master.winfo_screenheight()
x1 = x1 / screen_width * img.width
x2 = x2 / screen_width * img.width
y1 = y1 / screen_height * img.height
y2 = y2 / screen_height * img.height
img = img.crop(box=(x1, y1, x2, y2))

In addition, don't use bbox because it will reduce the quality. Use img.crop() instead.

Btw your code is not usable on mac. But I have a cross platform version of a snipping tool, DragScreenshot.py:

"""
Ver 1.0

StackOverflow answer: https://stackoverflow.com/a/79166810/18598080

Bruh. Finally made it.
it mainly supports Mac(tested) and Windows(not tested but supposed to work). In Linux (not tested), the dragging view will not be totally transparent.

Example:

import tkinter as tk
import TkDragScreenshot as dshot

root = tk.Tk()
root.withdraw()

def callback(img):
    img.save("a.png")
    quit()
def cancel_callback():
    print("User clicked / dragged 0 pixels.")
    quit()

dshot.drag_screen_shot(root, callback, cancel_callback)

root.mainloop()
"""

import platform
import tkinter as tk
from PIL import ImageGrab

using_debug_mode = None

class DragScreenshotPanel:  
    def __init__(self, root: tk.Tk, master: tk.Toplevel | tk.Tk, callback = None, cancel_callback = None):
        self.root = root
        self.master = master
        self.callback = callback
        self.cancel_callback = cancel_callback
        self.start_x = None
        self.start_y = None
        self.rect = None
        self.canvas = tk.Canvas(master, cursor="cross", background="black")
        self.canvas.pack(fill=tk.BOTH, expand=True)  
        self.canvas.config(bg=master["bg"])
        self.canvas.bind("<Button-1>", self.on_button_press)
        self.canvas.bind("<B1-Motion>", self.on_mouse_drag)
        self.canvas.bind("<ButtonRelease-1>", self.on_button_release)

    def on_button_press(self, event):
        self.start_x = event.x
        self.start_y = event.y
        self.rect = self.canvas.create_rectangle(self.start_x, self.start_y, self.start_x, self.start_y, outline='white', width=2)  

    def on_mouse_drag(self, event):  
        self.canvas.coords(self.rect, self.start_x, self.start_y, event.x, event.y)

    def on_button_release(self, event):
        x1 = min(self.start_x, event.x)
        y1 = min(self.start_y, event.y)
        x2 = max(self.start_x, event.x)
        y2 = max(self.start_y, event.y)
        self.canvas.delete(self.rect)
        dy = abs(y2-y1)
        dx = abs(x2-x1)
        if dy*dx != 0:
            self.master.withdraw()
            img = ImageGrab.grab()
            screen_width = self.master.winfo_screenwidth()
            screen_height = self.master.winfo_screenheight()
            x1 = x1 / screen_width * img.width
            x2 = x2 / screen_width * img.width
            y1 = y1 / screen_height * img.height
            y2 = y2 / screen_height * img.height
            img = img.crop(box=(x1, y1, x2, y2))
            if using_debug_mode: print("Screenshot taken!")
            self.root.after(1, self.callback(img))
            self.master.deiconify()
            self.master.focus_force()
        else:
            if using_debug_mode: print("Screenshot canceled!")
            self.root.after(1, self.cancel_callback())
        
        self.master.destroy()
        


def set_bg_transparent(toplevel:tk.Toplevel, invisible_color_Windows_OS_Only= '#100101'):
    if platform.system() == "Windows":
        toplevel.attributes("-transparentcolor", invisible_color_Windows_OS_Only)
        toplevel.config(bg=invisible_color_Windows_OS_Only)
    elif platform.system() == "Darwin":
        toplevel.attributes("-transparent", True)
        toplevel.config(bg="systemTransparent")
    else:
        if using_debug_mode: print(f"Total transparency is not supported on this OS. platform.system() -> '{platform.system()}'")
        window_alpha_channel = 0.3
        toplevel.attributes('-alpha', window_alpha_channel)
        toplevel.lift()
        toplevel.attributes("-topmost", True)
        toplevel.attributes("-transparent", True)


def drag_screen_shot(root:tk.Tk, callback = None, cancel_callback = None, debug_logging = False):
    global using_debug_mode

    using_debug_mode = debug_logging

    top = tk.Toplevel(root)
    top.geometry(f"{root.winfo_screenwidth()}x{root.winfo_screenheight()}+0+0")
    top.overrideredirect(True)
    top.lift()
    top.attributes("-topmost", True)

    set_bg_transparent(top)
    DragScreenshotPanel(root, top, callback, cancel_callback)

just make a root with tk and then call drag_screen_shot(root, on_capture, on_cancel)

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jacky

79178421

Date: 2024-11-11 16:38:52
Score: 0.5
Natty:
Report link

For me it was the <table role="presentation"> Changing it to <table role="doc-pagebreak"> fixed the problem.

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

79178416

Date: 2024-11-11 16:35:51
Score: 2.5
Natty:
Report link

using this command you can select the template in react native setup

npx create-expo-app --template

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

79178401

Date: 2024-11-11 16:32:50
Score: 2.5
Natty:
Report link

Differentiate between Just in Time (JIT)and Just in Case (JIC). JUST IN TIME (JIT) vs JUST IN CASE (JIC)

Just-in-Time:- It is a reactive strategy in inventory management whose main focus is efficiency and is done by reducing waste and costs by only bringing in inventory when it is needed for production. JIT is more commonly used where demand is stable and supply chains are in perfect shape with no disruptions.

Just-in-Case It is a proactive strategy in inventory management whose main focus is responsiveness and customer satisfaction with aims to meet potential demand quickly and avoiding the risks of shortages by stocking up on inventory in advance. Basically, JIC prioritizes risk management over cost reduction by keeping extra stock in hand. It is more commonly used in industries with unpredictable demand and supply chain disruptions.

Key differences between JIT and JIC include:

• Inventory Management: In JIT, order is placed and inventory is received, only as it's needed for production, while JIC stocks up inventories ahead of time. • Types of Suppliers : JIT requires reliable and much developed suppliers, while in JIC, have to rely on less reliable or local suppliers.
• Strategy to mitigate supply chain disruptions: JIC can rely on excess inventory to mitigate supply chain disruptions, while JIT needs supplier reliability and full collaboration to servev their customers. • Pull and Push Strategy:- JIT in inventory management is used for a Pull strategy of Supply Chain Management where goods are produced when an order is received, whereas JIC is used for Push strategy of Supply Chain Management and goods are stocked or produced before order received based on Demand Forecasting. • Types of Products:- JIT model is used where the products are specific, valuable or not commonly used or consumed. On the other hand JIC is used for necessary and commonly used goods (consumer goods), those are urgently on time needed.

Hybrid Models:-

Both strategies have advantages and disadvantages, particularly after pandemics like COVID-19, there is strategic pivot towards hybrid models that blend elements of both JIT and JIC strategies to build resilience against future crises like pandemics or natural disasters. This way, companies can strike a balance between cost reduction goals and risk mitigation objectives while keeping their operations running smoothly amidst unexpected challenges.

So, to face these adversities, businesses have reevaluated the inventory management strategies and adapt them for a more uncertain world.

Reasons:
  • RegEx Blacklisted phrase (2): urgently
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Israr Raja

79178394

Date: 2024-11-11 16:30:50
Score: 3
Natty:
Report link

I couldn't connect to my instance. VCN is ok, instance is ok but i don't know why ssh port 22 doesn't work :/

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

79178387

Date: 2024-11-11 16:25:49
Score: 2
Natty:
Report link

Dry cat food following on from the q about CPL and iams cat food, there is no way i'm giving my little terror iams anymore but what to replace with, I can't use purina products or felix as these are companies...

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

79178382

Date: 2024-11-11 16:24:48
Score: 2
Natty:
Report link

I had this issue that started after updating XCode to v16. I updated everything under the sun to the latest versions - XCode, the iPhone itself, Appium, Appium Inspector, and XCUITest Driver. Still got this error. Finally, I went into the Developer Settings on the iPhone and tapped "Clear Trusted Computers", and then re-trusted the computer when it prompted. Ta-da, Appium Inspector suddenly worked again!

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

79178379

Date: 2024-11-11 16:23:48
Score: 1
Natty:
Report link

You need an extra \n at the end to tell the system the header is done. Otherwise it can't know if there will be more header fields.

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

79178378

Date: 2024-11-11 16:23:48
Score: 1
Natty:
Report link

For anyone running into similar problems, I want to document what I found out about a similar challenge, and the error messages I saw. In my app, I have several short MIDI tracks that I need to play back based on the user interaction. Like the OP, I used a separate AVAudioSequencer for each track, all using a single AVAudioEngine. In one version of the code, each sequencer was started when it was time to play the track, but then it was never actively stopped, continuing to "run" in parallel with the more recently started tracks, but not actually playing any notes (since there weren't any left on the track). This worked correctly the first time the entire setup was executed, but the second time I get a series of errors of the type

from AU (0x102907d00): auou/rioc/appl, render err: -1
          CAMutex.cpp:224    CAMutex::Try: call to pthread_mutex_trylock failed, Error: 22

and in this case I often hear no sound.

Further issues arise when some of the sequencers are restarted from the beginning of their track after already having played, just like what the OP describes. When other sequencers are running in parallel (again, not actually playing any notes in parallel), I observe two problems:

  1. The track with the active notes is played back much faster than its configured rate
  2. On the next call to sequencer.stop(), the UI thread freezes, waiting for a mutex that is never released (call to CADeprecated::CAMutex::Lock).

Tested on iPadOS 17.6.1

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

79178373

Date: 2024-11-11 16:21:48
Score: 2
Natty:
Report link

Relative specifiers for import statements have to use a file extension: https://nodejs.org/api/esm.html#esm_import_specifiers

Just import { AppService } from './app.service.js'; TypeScript is clever enough to figure out what you want is app.service.ts during compilation.

A workarround could be https://www.npmjs.com/package/tsc-alias as mentioned in https://stackoverflow.com/a/76678279/517319

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Raphael Bossek

79178366

Date: 2024-11-11 16:20:47
Score: 2.5
Natty:
Report link

Scenario for those using AWS codePipeline;

Basically my problem was solved by editing/setting the input artifact from the deploy stage to the artifact output from the build stage.

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

79178344

Date: 2024-11-11 16:13:43
Score: 10 🚩
Natty: 6
Report link

Did anybody ever figure this out?

Reasons:
  • RegEx Blacklisted phrase (3): Did anybody ever figure this out
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did anybody
  • Low reputation (1):
Posted by: LLMIssues

79178340

Date: 2024-11-11 16:11:43
Score: 0.5
Natty:
Report link

You can use:

zypper in gcc11-c++

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex D

79178338

Date: 2024-11-11 16:10:43
Score: 3
Natty:
Report link

SecureString type for parameter: name and value and type encryp

"URI": "/?token=${name}&type=fargate",

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

79178326

Date: 2024-11-11 16:05:41
Score: 5
Natty:
Report link

@trincot, assuming that q5 is the final (accepting) state of your Turing machine above (given in JavaScript transitions), does it mistakenly accept aabcbc ?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @trincot
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: user3134725

79178321

Date: 2024-11-11 16:03:40
Score: 1.5
Natty:
Report link

info.model is not null in Nov, 2024:

Future<bool> isIpad() async {
DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
IosDeviceInfo info = await deviceInfo.iosInfo;
if (info.model.toLowerCase().contains("ipad")) {
  return true;
}
return false;

}

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

79178313

Date: 2024-11-11 16:01:40
Score: 3.5
Natty:
Report link

python starts from left so here 3 is not greater than 2 which is why it is showing as false. I hope you understand.

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

79178307

Date: 2024-11-11 16:00:40
Score: 2
Natty:
Report link

INCHES_TO_CM = 2.54

CM_TO_METERS = 0.01

FEET_TO_INCHES = 12

function start(){

def convert_height_to_meters(feet, inches):

feet_in_meter = feet FEET_TO_INCHES INCHES_TO_CM * CM_TO_METERS

inches_in_meter = inches INCHES_TO_CM CM_TO_METERS

meter = feet_in_meter + inches_in_meter

print(str(feet) + " feet, " + str(inches) +" inches = " + str(meter) + " meters" )

convert_height_to_meters(6, 4)

convert_height_to_meters(5, 8)

convert_height_to_meters(5, 2) }

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

79178305

Date: 2024-11-11 15:58:39
Score: 2.5
Natty:
Report link

I encountered the same error. In my case, I was pointing to the incorrect path for the private key. It was resolved after correcting it.

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

79178301

Date: 2024-11-11 15:56:38
Score: 4
Natty:
Report link

it helped me: How to Create Spaced Lists in Flutter Using LayoutBuilder and SingleChildScrollView

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Діма Шимко

79178289

Date: 2024-11-11 15:52:37
Score: 2.5
Natty:
Report link

When I run 'rake assets:precompile' I get output like this 'Warning: You are precompiling assets in development. Rails will not serve any changed assets until you delete public/assets/.manifest.json'

So I ran 'rm public/assets/.manifest.json' from the root of my project and it fixed it

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: isaiah paget

79178288

Date: 2024-11-11 15:51:37
Score: 2.5
Natty:
Report link

I found the problem.

As @EstusFlask mentioned, I should not use the index as key.

After further investigation, I replaced :key="index" with :key="route".

Now it works fine.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @EstusFlask
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kornikopic

79178279

Date: 2024-11-11 15:48:36
Score: 0.5
Natty:
Report link

It's not completely clear from the documentation, but the gap utility is just for use with the CSS grid layout module, not columns and rows as you've tried to use it here. For that, you'll need to use the margin and padding utilities for each row.

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

79178268

Date: 2024-11-11 15:44:35
Score: 4.5
Natty: 5.5
Report link

https://bugreports.qt.io/browse/QTBUG-131008 (but was rejected as it's a non public class)

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

79178263

Date: 2024-11-11 15:43:34
Score: 1.5
Natty:
Report link

Similar issue I fixed by adding below property in Kafka configuration:

ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class

Reasons:
  • Whitelisted phrase (-2): I fixed
  • RegEx Blacklisted phrase (1): Similar issue
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: avendra sahu

79178257

Date: 2024-11-11 15:41:34
Score: 3
Natty:
Report link

1. Verify If the NVM_HOME and NVM_SYMLINK environment variables are set

  1. Make sure that C:\Program Files\nodejs is set in the Path Env.
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aissam

79178249

Date: 2024-11-11 15:37:33
Score: 2
Natty:
Report link
def join(sep, iterable):
    iterator = iter(iterable)
    yield from next(iterator)
    for i in iterator:
        yield from sep
        yield from i
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Isidro Arias

79178238

Date: 2024-11-11 15:35:32
Score: 3
Natty:
Report link

If anyone stumbles upon this question and this exact situation, the only answer that I was able to find is from this thread and this is the link https://stackoverflow.com/a/70951310/28242453. TLDR

Demo App

copy this exact text and modify only the words not the space character. copt this in order to get the space and change the words "demo" and "App"

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ovidiu Ciucu

79178228

Date: 2024-11-11 15:31:32
Score: 3
Natty:
Report link

For my perspectation, I just terminated my current terminal and then reopen my project and then just commanded "npm run build" in my terminal again, Problem solved!

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

79178224

Date: 2024-11-11 15:30:32
Score: 1
Natty:
Report link

The toleration fields are both set by kubernetes on any pod by default. This controls when a pod is restarted on a new node if the current node crashes or becomes unreachable. See https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/#taint-based-evictions for more information.

I can't say for sure why nodeAffinity is set, but it might be the result of a node mounting a volume that can only be attached from a specific node. Kubernetes would then automatically add nodeAffinity that matches the volumes constraint. See https://kubernetes.io/docs/concepts/storage/persistent-volumes/#node-affinity.

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

79178216

Date: 2024-11-11 15:28:29
Score: 7 🚩
Natty:
Report link

Can you give more details ? Maybe we can help more by knowing more context

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you give
  • Low reputation (1):
Posted by: Gor Ik

79178197

Date: 2024-11-11 15:22:27
Score: 4.5
Natty:
Report link

Old issue but I am facing exactly the same problem. The links embedded in the SVG work just fine when I open the SVG in a browser directly. When I include the SVG image in a doxygen document, the links no longer work. I looked at the generated code and identified the cause of the problem. Doxygen creates this HTML code for the image:

<object type="image/svg+xml" data="../doxygen/LinkTest.svg" style="pointer-events: none;">drawio link test</object>

When I manually remove the style attribute, everything (including the hyperlinks) works as desired:

<object type="image/svg+xml" data="../doxygen/LinkTest.svg">drawio link test</object>

Anyone any idea how to tell doxygen to NOT generate that stupid style attribute?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing exactly the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Peter Gliwa

79178190

Date: 2024-11-11 15:20:27
Score: 4.5
Natty: 5
Report link

User Defined Function (UDF) is now supported by CockroachDB since 22.2: https://www.cockroachlabs.com/docs/stable/user-defined-functions

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

79178187

Date: 2024-11-11 15:20:26
Score: 0.5
Natty:
Report link

In routes.rb you have

#get 'new', to:'articles#new'

but should have

get 'new', to:'articles#new'

Then you will have /new url

Or if you want to use resources :articles

then your url in browser should be /articles/new (not /new)

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

79178183

Date: 2024-11-11 15:18:26
Score: 4
Natty:
Report link

When you use the set command you use the linux filesystem D:/javascript. When you run the docker compose you run it with the windows filesystem D:\javascript. What happens if you try to run in with docker-compose run -e INPUT_DIRECTORY=D:/javascript -e OUTPUT_DIRECTORY=D:/graphql graphql-extractor?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When you use the
  • Low reputation (1):
Posted by: Antheriox

79178177

Date: 2024-11-11 15:18:26
Score: 0.5
Natty:
Report link

To answer part of my own question, wrapping Array(N).keys() with Array.from(...) solves the issue by returning an array, rather than an iterator, which you can then call .map on.

From VLAZ's response, it seems that some browsers only recently added support for map on an Array Iterator.

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

79178173

Date: 2024-11-11 15:17:26
Score: 2
Natty:
Report link

It turned out that I wasn't closing the connection in the seedTestUserActionData function. That was the missing piece.

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

79178170

Date: 2024-11-11 15:16:25
Score: 1
Natty:
Report link

Why tempWrapper is required for correctness? Can't I just remove it and replace with helperWrapper.

Let's compare the following 2 versions:

Original version:

   public Helper getHelper() {
      var localVar = helperWrapper; // read #1 of helperWrapper

      if (localVar == null) {
          synchronized (this) {
              ...
          }
      }
      return localVar.value;
   }

Version where tempWrapper is replaced with helperWrapper:

   public Helper getHelper() {
      if (helperWrapper == null) {  // read #1 of helperWrapper
          synchronized (this) {
              ...
          }
      }
      return helperWrapper.value;  // read #2 of helperWrapper
   }

Notice the number of reads of the shared variable helperWrapper:

If the write to helperWrapper happened in another thread, then the JMM treats such reads as kind of independent, i.e. it permits executions where the 1st read returns a non-null value and the 2nd read returns null (in this example this will throw NPE).
Therefore the local variable is used to avoid the 2nd read of the shared variable helperWrapper.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Whyis
  • Low reputation (1):
Posted by: user28242597

79178162

Date: 2024-11-11 15:12:22
Score: 6 🚩
Natty:
Report link

I receive the same error since today. Did someone already found a solution on that or asked AWS?

Reasons:
  • RegEx Blacklisted phrase (1): I receive the same error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28242391

79178161

Date: 2024-11-11 15:12:22
Score: 2
Natty:
Report link

Another case.

If you have pgbouncer and routing is configured via the DB name db_master/db_slave, then in Laravel 9 and 10 you will catch the same error.

This is because the condition \vendor\laravel\framework\src\Illuminate\Database\Schema\Grammars\PostgresGrammar.php lines 76 and 86

table_catalog = ?

When building or deploying the application, you need to patch this file and remove this condition.

This was fixed in Laravel 11.

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

79178159

Date: 2024-11-11 15:11:22
Score: 2.5
Natty:
Report link

The problem was caused by the usage of libraries quarkus-resteasy-reactive and quarkus-rest-client-reactive. After replacing these libraries with non-reactive versions, the endpoint correctly responded, as I wish.

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

79178153

Date: 2024-11-11 15:10:22
Score: 1
Natty:
Report link

can you update the event routeKey to event.routeKey.trim() == "PUT /userService/items" to make sure that there's no extra spacing or something. also can you just console.log(event) to fully see the content while debugging.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can you
  • Low reputation (0.5):
Posted by: Fedi Bounouh

79178148

Date: 2024-11-11 15:07:21
Score: 5
Natty:
Report link

This video explains it all just don't fastfoward like I did lol

https://www.youtube.com/watch?v=Mct8Xw_BK8s

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

79178144

Date: 2024-11-11 15:06:20
Score: 1.5
Natty:
Report link

I think problem is with comma after "description": "iff". Config is on JSON format, and the last item in JSON should not have a trailling comma. So, just try to remove the last comma :)

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

79178143

Date: 2024-11-11 15:06:20
Score: 2.5
Natty:
Report link

If you're here for Drupal 9+ solution: https://www.drupal.org/project/twig_htmlspecialchars_decode

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: pcambra

79178142

Date: 2024-11-11 15:06:20
Score: 0.5
Natty:
Report link

That's because you don't go through isAuthenticated() middleware ;

You might want something like this ;

app.use('/homepage', isAuthenticated);

app.get('/homepage', (req, res) => {
    res.sendFile(__dirname + '/public/homepage.html');
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike

79178141

Date: 2024-11-11 15:06:20
Score: 4
Natty:
Report link

This is apparently a known bug that has been ongoing the past few years:

Access denied for 'none'. Trying to access a MySQL Workbench database via SSH using RStudio

In order to connect, you should either use an RSA key with a passphrase or an ed25519 without one

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: questions

79178129

Date: 2024-11-11 15:04:19
Score: 1
Natty:
Report link

I managed to retrieve the access token by changing redirect URI to

 .redirectUri("http://localhost:8082/login/oauth2/code/discord")

Because in AbstractAuthenticationProcessingFilter's doFilter:

 if (!this.requiresAuthentication(request, response)) {
            chain.doFilter(request, response);
        } else {
            try {
                Authentication authenticationResult = this.attemptAuthentication(request, response);

So the OAuth2LoginAuthenticationFilter's attemptAuthentication would only be executed if the

 protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response) {
        if (this.requiresAuthenticationRequestMatcher.matches(request)) {
            return true;
        }

matcher returns true, which happens if:

   public boolean matches(HttpServletRequest request) {
        if (this.httpMethod != null && StringUtils.hasText(request.getMethod()) && this.httpMethod != HttpMethod.valueOf(request.getMethod())) {
            return false;
        } else if (this.pattern.equals("/**")) {
            return true;
        } else {
            String url = this.getRequestPath(request);
            return this.matcher.matches(url);
        }
    }

I'm not sure what /** means, but for any URL other than /login/oauth2/code/* false was returned for me.

Now I wonder how do I change the configuration, so that the grant code would get accepted by any redirect URL?

Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: parsecer

79178120

Date: 2024-11-11 15:00:18
Score: 1
Natty:
Report link

I have resolved the issue:

You need to create the password by specifying the realm as follows:

htdigest -c .htpasswd realmyouwanttoset username_setted 
Enter password: pwfantasy 
Retype password: pwfantasy 

Then, you can set the arguments as shown below:

SWUPDATE_WEBSERVER_ARGS=" -r /srv/swupdate/mongoose-webapp -p 8081 --auth-domain realmyouwanttoset --global-auth-file /whereyourfileis/.htpasswd " 

Basic authentication configured successfully. 📈📈

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

79178110

Date: 2024-11-11 14:58:18
Score: 0.5
Natty:
Report link

To enhance SEO for an iframe on the same domain, consider the following strategies:

Optimize Content in the iFrame Source: Since search engines read content directly from the source page, make sure the iframe source has optimized keywords, meta tags, headers, and structured content for SEO.

Use Schema Markup: Implement schema markup on the iframe source page to help search engines understand the content type. This can improve visibility in search results.

Link Internally to the iFrame Source Page: To pass more link authority to the iframe content, link to it directly within your main site’s pages. This can increase its visibility and crawlability.

Avoid Important Content in iFrames: Important content that you want indexed should ideally be placed directly in the HTML rather than in an iframe. Search engines may prioritize directly accessible content over content within iframes.

Add Descriptive Attributes: Use the title attribute on the iframe tag with a description of the iframe content. While not highly impactful for SEO, it improves accessibility and provides context for search engines.

Optimize Loading: To prevent iframes from affecting page speed (a ranking factor), use lazy loading or asynchronous loading techniques. This can help improve the overall performance of the page.

By following these steps, you can improve the SEO potential of iframe content while ensuring it doesn’t negatively impact the main page’s SEO.

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

79178106

Date: 2024-11-11 14:57:18
Score: 3
Natty:
Report link

I managed to fix my build issue by updating my packages to latest version. Maybe one of them wasn't supporting the new Xcode 16.1

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

79178104

Date: 2024-11-11 14:56:16
Score: 12.5 🚩
Natty: 5
Report link

I´ve been trying to apply this solution, but after applying the transformation, when selecting Multi-frame time series doesn´t appear any data. Not sure what I´m doing wrong. Can you help me? Thanks in advance, enter image description here

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): Can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dayana López

79178101

Date: 2024-11-11 14:55:15
Score: 1.5
Natty:
Report link

A year late for you, but should others run into the same issue: try clearing cached files. I ran into the same issue and this resolved it. I'm assuming the issue was due to working with several different projects locally (all under localhost:5000), but using different versions of swagger. Simply refreshing the page didn't help; I has to go thought the trouble of clearing out cached files.

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

79178098

Date: 2024-11-11 14:55:15
Score: 1
Natty:
Report link

You wrote Void with a capital V. That does not exist as a keyword -- use void. And the error message

expected initializer before 'add_f'

hints at that,

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

79178096

Date: 2024-11-11 14:54:15
Score: 1
Natty:
Report link

Andrew's answer above worked; I adapted it to cater for single digit days:

SELECT TITLE, System_Only, Budget_Date
,IF(LEN(Budget_Date) <=10,
    to_date(CONCAT(0,Budget_Date),'dd MMM yyyy'),
    to_date(Budget_Date,'dd MMM yyyy')
) as FOrmatted
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DaarioNaharis

79178095

Date: 2024-11-11 14:54:15
Score: 3
Natty:
Report link

./gradlew --stop should fix the issue

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

79178094

Date: 2024-11-11 14:54:15
Score: 0.5
Natty:
Report link

u can extend ContentCachingRequestWrapper to return a new reader each time

`
import jakarta.servlet.http.HttpServletRequest;
import org.springframework.web.util.ContentCachingRequestWrapper;

import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class ReReadableContentCachingRequestWrapper extends ContentCachingRequestWrapper {

  public ReReadableContentCachingRequestWrapper(HttpServletRequest request) {
    super(request);
  }

  public ReReadableContentCachingRequestWrapper(HttpServletRequest request, int contentCacheLimit) {
    super(request, contentCacheLimit);
  }

  @Override
  public BufferedReader getReader() throws IOException {
    return new BufferedReader(new InputStreamReader(new ByteArrayInputStream(getContentAsByteArray())));
  }

}
`
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: dkulieshov

79178092

Date: 2024-11-11 14:51:14
Score: 4
Natty:
Report link

Argh! RTFM

"The emulator supports connection via HTTP only."

From

https://learn.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string

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

79178085

Date: 2024-11-11 14:49:13
Score: 1
Natty:
Report link

I am using a composite template with the customfields specified in the inline template but they are not picked up and I get error that says they are missing.

envelope:

{ "emailSubject": "Electronic signature", "emailBlurb": "Please sign the documents", "compositeTemplates": [{ "document": { "documentBase64": "xxx", "name": "form", "fileExtension": "pdf", "documentId": 1 }, "serverTemplates": [{ "sequence": 1, "templateId": "f94ccf52-de90-4904-b330-310fac1169a8" } ], "inlineTemplates": [{ "sequence": 2, "customFields": { "textCustomFields": [{ "name": "contractNumber", "required": true, "show": true, "value": "2966" } ] }, "recipients": { "signers": [{ "email": "[email protected]", "name": "Marie-Claire xxx_38541", "recipientId": 1, "tabs": { "signHereTabs": [{ "documentId": 2, "pageNumber": 1, "xPosition": 72, "yPosition": 160 }, { "anchorString": "\s1", "anchorIgnoreIfNotPresent": true } ], "dateSignedTabs": [{ "documentId": 2, "pageNumber": 1, "xPosition": 132, "yPosition": 160 } ], "fullNameTabs": [{ "documentId": 2, "pageNumber": 1, "xPosition": 132, "yPosition": 170 } ] }, "recipientSignatureProviders": [{ "signatureProviderName": "UniversalSignaturePen_OpenTrust_Hash_TSP", "signatureProviderOptions": { "sms": "+334444444" } } ], "roleName": "Signataire 1" } ], "carbonCopies": [] } } ] }, { "document": { "documentBase64": "xxx", "name": "testDoc-4.pdf", "fileExtension": "pdf", "documentId": 2 }, "serverTemplates": [{ "sequence": 1, "templateId": "f94ccf52-de90-4904-b330-310fac1169a8" } ] } ], "status": "sent" }

Response:

{ "errorCode": "ENVELOPE_CUSTOM_FIELD_MISSING", "message": "A required envelope custom field is missing. The custom field 'contractNumber' requires a value." }

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

79178084

Date: 2024-11-11 14:49:13
Score: 2.5
Natty:
Report link

At first, the taxonomy_sidebar is not wrapped by any DIV, so it appears below the footer, wrap it with a use display-flex in the content-wrapper class or float-left in the taxonomy class, adjusting the size of each div so that they appear side by side.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wilson Alves do Rego

79178074

Date: 2024-11-11 14:45:13
Score: 1
Natty:
Report link

So late, I know, but ...

In this snippet:

if (MY_ANNOTATION == node.toString()) ...

Use equals() method to compare two strings:

if (MY_ANNOTATION.equals(node.toString())) ...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Diogo Dio Pinto

79178066

Date: 2024-11-11 14:43:12
Score: 1.5
Natty:
Report link

You can also re-clone the repository: git clone <repository-url>, after you push your working changes.

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

79178065

Date: 2024-11-11 14:42:12
Score: 1
Natty:
Report link

I'm sorry, the correct path is "/data/data/com.alberto.autocontrol2/files" (taken from Android Studio's device explorer). And this is the code to take the photo from the camera and save it to the device storage. The code is taken from a separate "PantallaRegistrarVehiculo.kt" screen (VehicleRegistrationScreen.kt in English):

 val lanzador = rememberLauncherForActivityResult(
  contract = ActivityResultContracts.TakePicturePreview()
) { bitmap: Bitmap? ->
  if (bitmap != null) {
     val file = File(contexto.filesDir, 
"${viewModel.listaVehiculos.value.size}.jpg") // Or .png
     try {
        FileOutputStream(file).use { out ->
           bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out) // 
Or PNG
        }
        imageBitmap = bitmap.asImageBitmap()
     } catch (e: IOException) {
        e.printStackTrace()
     }
  }
}
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alberto

79178064

Date: 2024-11-11 14:42:12
Score: 1.5
Natty:
Report link

Check why this doesn't work

  def should_update_dominant_color?
    image.attached? && 
    (saved_change_to_attribute?('image_attachment_id') || image.attachment&.saved_change_to_blob_id?)
  end

maybe there is some other way to check if the image was changed.

You can try to use some other callback like "before_save" and check if an image was changed and set some flag. And later use "after_commit" and that flag to run your logic.

In general I think your code should be working but difficult to say why not. What gem are you using for attachments?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Igor Kasyanchuk

79178063

Date: 2024-11-11 14:42:12
Score: 1.5
Natty:
Report link

I think the problem is with the dark theme. You are using dark theme and text might be using black color. try changing fg color to white.

from tkinter import *
root = Tk()
# Create label widget
myLabel = Label(root, text="Hello World!", fg="white")
# Pack it onto the screen
myLabel.pack()

root.mainloop()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28242007

79178055

Date: 2024-11-11 14:39:11
Score: 0.5
Natty:
Report link

Finally by adding the WSS-Password Type as the Security Section in the SoapHeader, Postman call worked.

<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken>
        <wsse:Username>XXXXX</wsse:Username>
        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">XXXXX</wsse:Password>
    </wsse:UsernameToken>
</wsse:Security>

</soapenv:Header>

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

79178046

Date: 2024-11-11 14:37:11
Score: 0.5
Natty:
Report link

If you happen to be using ubuntu (I am on ubuntu 24.04) and encounter a similar problem try updating your .bash_profile to use export PATH="$HOME/development/flutter/bin:$PATH" instead of export PATH="~/development/flutter/bin:$PATH" as recommended by the flutter website. Please not that this assumes that you will have followed the instructions listed on the website https://docs.flutter.dev/get-started/install/linux/android

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

79178043

Date: 2024-11-11 14:36:10
Score: 4
Natty: 5
Report link

Use Control 'TableLayoutPanel' and change property collection 'column' from procent to 'autosize'

https://learn.microsoft.com/pl-pl/dotnet/api/system.windows.forms.tablelayoutpanel.columnstyles?view=windowsdesktop-8.0

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

79178038

Date: 2024-11-11 14:35:10
Score: 4
Natty: 6
Report link

For anyone who comes across this post using Strapi V5

There is this amazing guide on how to setup your gmail account without using credentials: https://medium.com/@nickroach_50526/sending-emails-with-node-js-using-smtp-gmail-and-oauth2-316fe9c790a1

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alexandros Apostolou

79178036

Date: 2024-11-11 14:34:09
Score: 3.5
Natty:
Report link

Please provide also the output of

lsnrctl services

and the output of the query

SELECT 
    i.INSTANCE_NAME AS SID, 
    s.NAME AS SERVICE_NAME
FROM 
    V$INSTANCE i
JOIN 
    V$SERVICES s ON s.INST_ID = i.INSTANCE_NUMBER;
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jan Suchanek

79178027

Date: 2024-11-11 14:31:09
Score: 3.5
Natty:
Report link

If you want to add in the code for your website I can write you a solution.

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

79178026

Date: 2024-11-11 14:31:09
Score: 0.5
Natty:
Report link

Well, I found the error to my own script. The difference between one script and the other are the following parameters in the connection to the PGVectore store:

    hnsw_kwargs={
    "hnsw_m": 16,
    "hnsw_ef_construction": 64,
    "hnsw_ef_search": 40,
    "hnsw_dist_method": "vector_cosine_ops",
},

This needs to be there so that the query to database is in the same format as it was being inserted (pretty obvious, isn't it?). When I was trying to add this, I was getting an error of the kind "PGVectorStore.from_params doesn't have any hnsw_kwargs parameters", so apparently I had two different set of functions with the same name. The problem was that I was using different PGVector packages in both scripts. When I was inserting I was using the legacy PGVector import and while querying I was using the core one which doesn't accept these parameters. That's the reason why I was getting the pydantic error.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: asemprini87

79178023

Date: 2024-11-11 14:30:08
Score: 1
Natty:
Report link

It is considered as simple job.

A complex job is a conversion of Revit (.rvt), IFC, and Navisworks (.nwd and .nwc) files to any other supported format.

A simple job is a conversion of file types other than Revit (.rvt), IFC, or Navisworks (.nwd and .nwc) to any other supported format.

Hope it helps..

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): Hope it helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nachikethan

79178019

Date: 2024-11-11 14:28:08
Score: 4
Natty:
Report link

I was using the default codec for streaming the video, for a 1080p video, I needed to use VP9 or h256

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

79178015

Date: 2024-11-11 14:26:07
Score: 0.5
Natty:
Report link

There is now a setBigInt64() and a getBigInt64() method on DataView! It does, as suggested in the other answers, return a bigint.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigInt64 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigInt64

(There are also BigUint64 versions)

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

79178009

Date: 2024-11-11 14:22:07
Score: 2.5
Natty:
Report link

Thanks a bunch for your explanation. I was copy/pasting a Word string with surrounding quotes (smart quotes without my being aware of it) into my mainframe file, whereupon the quotes kept getting changed to - (hex 60) and ISPF didn't like that one bit. Your suggestion solved it. Thanks again.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michael Simpson

79177998

Date: 2024-11-11 14:18:06
Score: 1
Natty:
Report link

I had a similar problem with a project with D12.1.

Error:

Unable to load project MyProj.dproj The required attribute "Include" is missing for element . c:\Users\MyUser\AppData\Roaming\Embardadero\BDS\23.0\iPhoneOS17.0.sdk

Solved by deleting the iOS 17.0 SDK and importing again from the Mac ( >Tools>Options>Deployment>SDK Manager with the PAServer running )

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

79177994

Date: 2024-11-11 14:17:06
Score: 3.5
Natty:
Report link

Check out the following article to understand the difference and how using one can affect the results: Understanding Filter Placement in LEFT JOINs: ON vs. WHERE in PostgreSQL

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

79177991

Date: 2024-11-11 14:16:05
Score: 2
Natty:
Report link

Well. what about giving false to the fitView in the ReactFlow to disable automatic centering and padding: 0 to the fitViewOptions just to remove the margin or offset? fitView has the default behavior of automatic centering so making it false diables it. if you make the padding: 0, it removes any padding that makes an offset or margin from top-left corner. And so it will make react-flow_renderer start at the exact top-left(0,0) without any offset.

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

79177988

Date: 2024-11-11 14:15:05
Score: 3
Natty:
Report link

I’m experiencing a similar issue with deploying an Azure Function in a monorepo setup. Did you happen to find a solution, or any workarounds? I’d really appreciate any insights you could share!

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jorge LG

79177978

Date: 2024-11-11 14:12:04
Score: 2
Natty:
Report link

fileshub.io provides this functionality. One can create password protected link on it's own s3.

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