79490725

Date: 2025-03-06 21:23:27
Score: 6
Natty: 7
Report link

HABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABAHABABABA

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: HABABABa

79490715

Date: 2025-03-06 21:17:25
Score: 1.5
Natty:
Report link

In order to remove the initial "F" logo when the app is loading, you need to replace it with something else, because something needs to be there while the app is loading.

The flutter_native_splash package is most commonly used for that.

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

79490714

Date: 2025-03-06 21:17:25
Score: 0.5
Natty:
Report link

After contacting Twilio support, they informed me that this is a configurable setting, which can be found under: Develop > Messaging > Settings > General, under the “Phone number redaction” option.

However:

Twilio Support Message:
"Please note, however, that message redaction is not retroactive. Disabling this feature will only affect new messages; previously sent messages will remain redacted."

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

79490712

Date: 2025-03-06 21:16:25
Score: 3
Natty:
Report link

I believe I've figured it out. When you open a position (whether net debit or credit), it's a buy, and when you close a position, it's a sell.

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

79490706

Date: 2025-03-06 21:15:24
Score: 5.5
Natty: 5
Report link

I don't have enough of a reputation to comment, but a couple of things:

  1. Minor, but the variable name in the batter section should be 'batter_name" and not 'pitcher_name'. Won't affect the code, but tidiness is good.

  2. Is there a way to add the MLB Id to this? I've been looking for (or trying to develop) a scraper for lineups which include the MLB ID. I know it's in this sources string for batter/pitcher names, but just can't figure out how to extract it.

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (1.5): reputation to comment
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Richard C

79490704

Date: 2025-03-06 21:14:24
Score: 0.5
Natty:
Report link

gstapp-1.0 is missing. Add to the CMakeLists.txt:

pkg_check_modules(GSTREAMER REQUIRED gstreamer-1.0 gstreamer-app-1.0)

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

79490697

Date: 2025-03-06 21:12:23
Score: 1
Natty:
Report link

With some hints from a colleague I at least got want I wanted. In the end I did two changes on the code above:

I simplified the Up.forward() so it would be properly translated to ONNX, I believe:

    def forward(self, x1, x2):
        x1 = self.up(x1)
        # input is Channel Height Width
        diffY = x2.size()[2] - x1.size()[2]
        diffX = x2.size()[3] - x1.size()[3]

        padding_left = diffX // 2
        padding_right = diffX - padding_left
        padding_top = diffY // 2
        padding_bottom = diffY - padding_top

        x1 = F.pad(x1, [padding_left, padding_right, padding_top, padding_bottom])

        x = torch.cat([x2, x1], dim=1)
        return self.conv(x)

And I did:

    dummy_input = torch.randn(1, 1, 768, 768)  # H[400 to 900] x W (512, 768, 1024, 1536)

As I realised the model was trained with that input shape.
torch.dynamo did not work for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: alanwilter

79490689

Date: 2025-03-06 21:10:23
Score: 2.5
Natty:
Report link

According to https://doc.rust-lang.org/reference/linkage.html#r-link.crt.crt-static, static linking can be selected with

target-feature=+crt-static
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fbauzac

79490686

Date: 2025-03-06 21:08:22
Score: 1.5
Natty:
Report link

Sigh. Of course after I spend hours researching and writing up a stackoverflow question, I find the right answer hidden among other answers.

RStudio > Tools > Global Options > Python > Select (your python interpreter) > Virtual Environments > ~/.virtualenvs/r-reticulate/Scripts/python.exe > Select > Apply

Now source_python(r"(C:\Users\myname\.spyder-py3\temp.py)") works like a charm.

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

79490676

Date: 2025-03-06 21:00:20
Score: 4
Natty:
Report link

This was due to a setting in the extension rpgmaker-text.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Niels Tobias Nørgaard Svendsen

79490665

Date: 2025-03-06 20:56:20
Score: 2
Natty:
Report link

If the array contains the numbers 1 to N, then you can just print the numbers 1 to N in the sort Order you want without looking at the array.

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

79490664

Date: 2025-03-06 20:56:20
Score: 3.5
Natty:
Report link

See How to align text inside a spinner to center in javafx?.

hoursSpinner.editorProperty().get().setAlignment(Pos.CENTER);
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: rieman

79490658

Date: 2025-03-06 20:55:18
Score: 9 🚩
Natty: 5
Report link

Did you figure it out? I'm getting the same issue. Its weird because I have a appium script running and working smoothly on my mac, but I'm trying to set it up on my buddy's macbook and I get this error, doing everything exactly as on mine. I installed all of the same versions of all packages etc and set his enviroment up identical to mine.

Not sure what this is

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure it out
  • RegEx Blacklisted phrase (1): I get this error
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Mark Fele

79490656

Date: 2025-03-06 20:54:18
Score: 1
Natty:
Report link

Answer by John Willemse didn't work for me - it turns out fileTimeUnchanged had to be set to 0xFFFFFFFFFFFFFFFF rather than 0xFFFFFFFF. This is because (according to the docs) you need to pass the FILETIME structure with both DWORDs set to 0xFFFFFFFF. Passing 0xFFFFFFFF as the entire structure would give dwLowDateTime the correct value, but dwHighDateTime would be 0.

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

79490622

Date: 2025-03-06 20:35:14
Score: 5.5
Natty:
Report link

Did you end up working out the issue. I'm getting something similar and can't seem to workout what's happening?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Chris Waho

79490620

Date: 2025-03-06 20:35:14
Score: 2
Natty:
Report link

This is a great question. Searching for an answer but could not find so I ran some observational testing between Video.JS and HLS with start and end time.

So far my experience is that HLS files will not playback at a precise timestamp.

Say you request:

m3u8?asset_start_time=5.0&asset_end_time=38.0

Video.JS will round the start time and end time down* to the nearest [encoded] segment.

*observational, there may be a precise answer.

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

79490616

Date: 2025-03-06 20:34:14
Score: 2.5
Natty:
Report link

Never expose the PHP and the WordPress Version of your domain to the public like this. Someone might originate an attack targeting vulnerabilities related to those versions. Also, if you haven't done it already, hide Server and PHP Versions from response headers :)

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

79490611

Date: 2025-03-06 20:30:13
Score: 2
Natty:
Report link

I believe defaultValues are only set once. I think you want to check use setValue("end", NEW_VALUE); See (https://react-hook-form.com/docs/useform/setvalue). You could also use the reset() function which accepts a new set of default values for the form. Make sure you pass the current start value so it doesn't get reset and that default end value.

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

79490608

Date: 2025-03-06 20:29:13
Score: 2
Natty:
Report link

This is expected. Statistics that are 'usage' related are specific to the instance/server. Only stats like pg_stats which has things like ndistinct, most common values/frequencies, histogram, etc --- basically what is the "shape/size" of the data stored in tables (and functional indexes, and multi-variate statistics objects that get created) would be the same between primary & reader.

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

79490606

Date: 2025-03-06 20:29:13
Score: 1
Natty:
Report link

You should also use
binding.lifecycleOwner = viewLifecycleOwner
instead of
binding.lifecycleOwner = this
in Fragment.

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

79490602

Date: 2025-03-06 20:28:12
Score: 1
Natty:
Report link

You have to use foreground services to allow running the websocket as service even with the screen turned-off

So you will instantiate inside this service a websocket client class from some library, that will allow you to treat the websocket connection (onOpen, OnClosed) In the onFailure event in the websocket client, you can schedule a reconnection that will be triggered from the websocket service to restart a new websocket client object.

I am using Kotlin.

https://developer.android.com/develop/background-work/services/fgs

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

79490596

Date: 2025-03-06 20:26:12
Score: 3.5
Natty:
Report link

I updated the visual studio and the debug started working.

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

79490589

Date: 2025-03-06 20:22:11
Score: 4.5
Natty:
Report link

I have the same problem:

I do not want cache server negotiation or whatever, because the Javascript included in the application is capable of doing much much more than any common-used cache validation system based on ETags or Date validations. It uses GPS, AI over photos, and more...

I have no solution, perhaps the answer is just, at the moment,

there is no solution with HTTP header or cache negotiation, the only working solution is: a Service Worker hosted by a cloud provider.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: user2047060

79490586

Date: 2025-03-06 20:21:10
Score: 1
Natty:
Report link

Unfortunately discord slash commands don't have a built-in way to accept multiple image attachments only using one parameter. Your best options (outside of manually defining multiple parameters, one per image) are pretty much:

  1. Use a message based command
  2. Use a 2 two-step process where you begin the upload using a slash command then send all the images the user wants to upload in a second follow-up message
  3. Use a button after the slash command that allows users to upload files
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: iris87

79490581

Date: 2025-03-06 20:17:09
Score: 3.5
Natty:
Report link

It is the best decision, but i don't know how it fix. Try use chatGPT

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

79490574

Date: 2025-03-06 20:13:08
Score: 1
Natty:
Report link

SUM(TIME) aggregates the TIME column for each SSN group.

MAX(SUM(TIME)) is incorrect because SUM(TIME) is already grouped, and MAX() is trying to apply an additional aggregation incorrectly.

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

79490570

Date: 2025-03-06 20:11:08
Score: 1
Natty:
Report link

I can't say for sure, but the image is encoded in ID3v2.4. 0 bytes are added to the image text. And if the image is encoded, then an additional three bytes are added to the frame header. This is the size identifier of the uncoded image. It is calculated as : H1 + the size of the image before encoding. If the image is not encoded, then these three bytes are not inserted. Now about the encoding rules... When reading the source image, which is added to the TAG if the 255 character is found in the ASCII table and written after it 0 bytes, then another 0 byte is added after the 0 byte. And also, if 255 characters are found, and after it there are characters >=224 (ASCII), then after the second character it is written 0 bytes. It turns out that an image with an additional 0 bytes is written to the metadata. Its size is larger than the original. Therefore, the first size identifier is inserted as usual, and the second one is placed before the MIME, as already described above. I hope it is translated correctly and understandable.

link to the diagram : https://disk.yandex.ru/i/IKlpgNeWrAthtQ

I am from Russia and used an online translator

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Виталий

79490569

Date: 2025-03-06 20:11:08
Score: 3
Natty:
Report link

ILARE1369680241784199145874873

9101014M2605214BGD<<<<<<<<<<<3

MD ABDUL MALEK<<MD<MANOAR HOSS

Straight CV

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): <<<<<<<<<<<
  • Low reputation (1):
Posted by: Md. Arfat

79490567

Date: 2025-03-06 20:09:08
Score: 2.5
Natty:
Report link

May have been that it wasn't running as an admin as well. I noticed that the error disappeared when I logged out and relogged in as an administrator.

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

79490565

Date: 2025-03-06 20:09:08
Score: 1
Natty:
Report link

all the values are integers

In the example you provided, 'god' is assigned the value '2.99' which is of string type given the fact it is in quotation marks. The same thing is happening with your second key-value pair, with 'sam' having the value of '7.87' rather than 7.87. Any value in quotation marks is a string-literal, not an integer.

Keep in mind the definition of an integer: a number that is not a fraction; a whole number. Your current key values are decimals, not whole numbers. You'll need to fix this as well if you want to make your pairs function correctly.

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

79490563

Date: 2025-03-06 20:08:07
Score: 1
Natty:
Report link

This error typically occurs when there's an issue with the request body parsing or the data sent to the server, especially when creating POST, PUT, and PATCH requests.

To fix this, add the body parsing middleware configuration below to your code to enable nodeJS to parse incoming JSON data correctly.

app.use(express.json());

Adding the code above solved this error when I experienced it.

PS: Next time, add your code or specify which route caused the error so people can fully understand your question.

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

79490551

Date: 2025-03-06 20:04:06
Score: 3.5
Natty:
Report link

A couple days later, and it's working fine! Some cached version of a required plugin maybe? Just glad it's working now :)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kathryn Cogert

79490550

Date: 2025-03-06 20:03:06
Score: 4
Natty:
Report link

Figured it out lol.... wasn't passing in a constructor argument to allow users to mint

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

79490544

Date: 2025-03-06 20:02:05
Score: 5
Natty:
Report link

hey where you able to solve the issue

Reasons:
  • Blacklisted phrase (1): you able to solve
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kng xenongt1

79490532

Date: 2025-03-06 19:57:04
Score: 3.5
Natty:
Report link

You can remove the package using adb in your terminal.

credits to this guy on XDAFourms for the answer:

https://xdaforums.com/t/how-to-uninstall-a-hidden-app.4317257/

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

79490525

Date: 2025-03-06 19:55:02
Score: 6 🚩
Natty:
Report link

Does anyone have the original zip referenced from Microsoft. The one I find is incomplete, has no releases subfolder and the source code has tons of references to stuff not included in the .zip

http://www.java2s.com/Open-Source/CSharp_Free_Code/PowerShell/Download_UI_Automation_PowerShell_Extensions.htm

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michael Shiels

79490522

Date: 2025-03-06 19:54:01
Score: 1.5
Natty:
Report link

as it looks like nobody solved it so far, I want to suggest this solution, even after 13 years:

  // e.g. or any other convenient stream
  strStr := TStringStream.create('');
  //..
  arcItem.Stream   := strStr;    // set your stream 
  arcItem.Selected := True;  
  archive.ExtractSelected(''); // extracts to your stream, DestinationDir seems to be ignored, even if provided
  strStr.Position  := 0;       // read stream from the beginning
  OutputDebugString( PChar( strStr.DataString ) );
  //..
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Horst Neubauer

79490518

Date: 2025-03-06 19:52:01
Score: 2.5
Natty:
Report link

Everyone be aware that when the MFT increases its size the new piece of disk space it takes in not 'zeroed' - This means that content from deleted or previous incarnation of files can end up in the MFT - If those files were plain text you see your data right there in the MFT and you'll have the devil's own job removing it!

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

79490501

Date: 2025-03-06 19:42:59
Score: 1
Natty:
Report link

You're correct! It's because of the key "assignable" being false for the category ID 42 which is for YouTube shorts.

Using this documentation I used the following code and got the same information as you.

request = youtube_client.videoCategories().list(
    part="snippet",
    regionCode="US",
)
response = execute_request(request)
print(response)

So if I were you I'd choose another category unless you absolutely wanted to create a video with a category ID of 42.

Maybe refer to these answers for creating a YouTube short via the API.

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

79490495

Date: 2025-03-06 19:41:59
Score: 3.5
Natty:
Report link

This bug is tracked here: https://bugs.launchpad.net/ubuntu/+source/mpich/+bug/2072338

Unfortunately the fix is not propagated through package sources

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

79490489

Date: 2025-03-06 19:40:59
Score: 2
Natty:
Report link

Ok so apparently the scripts in angular.json were in conflict with the scripts in the index.html, so, overall these are the modifications

  1. angular.json

    "scripts": [],

  2. index.html: kept the scripts with the CDNs

  3. tsconfig.json: updated the right path for the type "d.ts"

  4. leaflet.d.ts: introduced the class Geodesic instead of namespace.

  5. Cleared package.json of any leaflet packages

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

79490470

Date: 2025-03-06 19:29:56
Score: 1
Natty:
Report link
let isChrome = navigator.userAgentData?.brands.filter((elem)=> elem.brand === 'Google Chrome')?.length > 0
console.log(isChrome)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vsnahar

79490469

Date: 2025-03-06 19:29:56
Score: 3
Natty:
Report link

ILARE1369680241784199145874873

9101014M2605214BGD<<<<<<<<<<<3

MD ABDUL MALEK<<MD<MANOAR HOSS

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): <<<<<<<<<<<
  • Low reputation (1):
Posted by: Md. Arfat

79490441

Date: 2025-03-06 19:16:54
Score: 3.5
Natty:
Report link

Try using extern "C" for get_derived_instance.

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

79490433

Date: 2025-03-06 19:13:53
Score: 0.5
Natty:
Report link

This is the solution I found, thanks to help on loop mechanics from juanpa.arrivillaga. I imagine it's not too efficient, for that, look to other answers; however, this works without excess libraries.

def cut_overlapping_ranges(ranges):

  keep_ranges = []
  temp_ranges = ranges.copy()

  while True:
    range_position = 0
    if len(temp_ranges) == 0:
      break
    range_1 = temp_ranges[0]
    lb = range_1[0]
    ub = range_1[1]
    keep_ranges.append(range_1)
    temp_ranges.remove(range_1)
    while True:
      if len(temp_ranges) == 0:
        break
      try:
        range_2 = temp_ranges[range_position]
        if ((lb < range_2[0] < ub) or (lb < range_2[1] < ub)):
            temp_ranges.remove(range_2)
        else:
          range_position += 1
      except:
        break

  print(range)

  return

input is

[[0.0023, 0.0033],[0.0025, 0.0035],[0.0029, 0.0039],[0.0022, 0.0032],[0.0017, 0.0027],[0.0031, 0.0041],[0.0032, 0.0042],[-0.0005, 0.0005],[0.0014, 0.0024],[-0.0002, 0.0008],[-0.0006,0.0004],[0.0012, 0.0022],[0.0013, 0.0023],[0.0008, 0.0018],[0.0011, 0.0021]]

output is

[[0.0023, 0.0033],[-0.0005, 0.0005],[0.0012, 0.0022]]
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Feynman Cox

79490431

Date: 2025-03-06 19:13:53
Score: 3.5
Natty:
Report link

Not a solution to the problem, but I ended up switching to use Webpack instead of Gulp.

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

79490430

Date: 2025-03-06 19:12:53
Score: 2.5
Natty:
Report link

Cache key parameters exist on API Gateway's integration object and not method object shown here and here

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

79490427

Date: 2025-03-06 19:12:53
Score: 1.5
Natty:
Report link

Old thread, but FWIW, I had the same problem. To fix it, I made a change and pushed it to the main branch to force a rebuild. The 404 went away and the site reappeared.

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

79490422

Date: 2025-03-06 19:10:52
Score: 0.5
Natty:
Report link

1. Is there a functional difference between chain and flatMap?

Yes, there is, although it’s small:

Example:

// flatMap — the new Uni depends on the item
Uni<User> user = Uni.createFrom().item("123")
    .flatMap(id -> fetchUserFromDatabase(id)); 

// chain — just executing the next action
Uni<Void> action = Uni.createFrom().item("123")
    .chain(() -> sendAnalyticsEvent());

2. Are there edge cases where they behave differently?

Yes, two important differences:

  1. chain handles null gracefully, while flatMap throws a NullPointerException.

    Uni<String> uni = Uni.createFrom().item("Hello");
    uni.flatMap(item -\> null); // java.lang.NullPointerException: Mapper returned null
    uni.chain(item -\> null); // Works, interpreted as an empty Uni
    
  2. Error handling – both propagate exceptions, but chain is more predictable since it works sequentially.

3. If the difference is small, why have both methods?

To improve code readability. Other reactive libraries (Reactor, RxJava) only have flatMap, but Mutiny introduced chain to make it clear when you don’t need the result and just want to execute the next step.

4. Are there best practices for using them?

Yes:

Simple rule of thumb:
Need to work with the result?flatMap
Just executing the next action?chain
Expecting null?chain

5. Are there historical or architectural reasons for both methods?

Yes. flatMap comes from functional programming and reactive libraries. Mutiny introduced chain to make code more readable when you don’t need the data and just want to execute the next step.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Maksim Banit

79490413

Date: 2025-03-06 19:04:51
Score: 1
Natty:
Report link

You'll need to use the ~ symbol which refers to previous commit.

git config --global alias.fdiff '!git diff $(git merge-base --fork-point HEAD)~'
git fdiff
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kiryl Famin

79490399

Date: 2025-03-06 18:55:49
Score: 1.5
Natty:
Report link

Solution: ClickOne fails to include dependencies that it's not aware of. Solution was to manually include the dll in the project, as indicated here: How to add native DLLs to ClickOnce deployment of .NET app

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: gooopil

79490392

Date: 2025-03-06 18:51:48
Score: 0.5
Natty:
Report link

In my case I was made a mistake.

import HomePage from "./(main)/page"; // main reason for that import and that page

export default function Home() {
  return (
    <HomePage/>
  )
}

Just find out that type of import page.

Then I Delete that unnecessary file.
Then run npm run build vercel --prod

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Al Mamun Khan

79490382

Date: 2025-03-06 18:47:47
Score: 2
Natty:
Report link

Can clearly see that you used AI for your question. Nonetheless, after using type into for UserName and Password, and pressing the login button. You can add a "Element Exists" to check if you are on the homepage before proceeding with the other steps.

You can check if either the page logo exist or a specific text. Note, the next click activity you use after clicking login would automatically check if the page finished loading.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (1):
Posted by: Kevin Foendoe

79490378

Date: 2025-03-06 18:45:47
Score: 5
Natty: 5
Report link

same issue over here. Wanted to check in with you and see if you managed to fix it?

I've tried a bunch of things and couldnt get anything to work, this happens even if the app is minimized.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (1): same issue
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Uroš

79490371

Date: 2025-03-06 18:43:46
Score: 3
Natty:
Report link

I encounter the same issue on vs 17.13, the cmake version is 4.0.0, the preset files always be overwriten by qt visual studio tools when I save them. ash!

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

79490366

Date: 2025-03-06 18:42:45
Score: 4.5
Natty:
Report link

in my case, I was just migrate my code from kapt to ksp using this link

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kishan Verma

79490359

Date: 2025-03-06 18:38:44
Score: 1.5
Natty:
Report link

Open the terminal and cd into the directory with the files.

A one-liner to type into the terminal.

for f in *.MOV; do ffmpeg -i "$f" "${f%.mov}.mp4"; done
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: anjchang

79490351

Date: 2025-03-06 18:36:44
Score: 2
Natty:
Report link

Check ./database folder permissions. Setting permissions 777 helps.

Can't find other ways to fix this problem.

Also you may have problems with images inside admin interface. 777 permissions for ./upload folder helps

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

79490348

Date: 2025-03-06 18:33:43
Score: 1
Natty:
Report link

Given your request works fine in Postman the easiest way of getting the same with JMeter is just recording it using JMeter's HTTP(S) Test Script Recorder

  1. Start JMeter’s HTTP(S) Test Script Recorder

  2. Import JMeter’s certificate into Postman

    enter image description here

  3. Configure Postman to use JMeter as the proxy

    enter image description here

  4. Run your request in Postman

  5. That’s it, JMeter will generate the appropriate HTTP Request sampler and HTTP Header Manager

More information: How to Convert Your Postman API Tests to JMeter for Scaling

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

79490346

Date: 2025-03-06 18:31:43
Score: 0.5
Natty:
Report link

Since proxychains did not work with Java apps and VPN was not an option for me, I had to use a workaround.
You can do it by starting a proxy like mitmproxy with proxychains and eventually also add an upstream proxy to mitmproxy (https://docs.mitmproxy.org/stable/concepts-modes/#upstream-proxy).
Then you can configure the proxy settings of your Java application (in my case SoapUI) to use mitmproxy.

Reasons:
  • Blacklisted phrase (1): did not work
  • No code block (0.5):
  • High reputation (-1):
Posted by: baptx

79490331

Date: 2025-03-06 18:25:42
Score: 3
Natty:
Report link

Thanks. But it is taking too much time when trying to fetch the same for single studentid (say 25) from a 500 Million table. Seems all the hierarchies are being built out of 500 Million rows, then it's fetching record for studentId (say 25). Where this studentid = 25 can be introduced as a filter inside the query so that query plan is optimum and it only fetches the hierachy corresponding to 25.

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

79490322

Date: 2025-03-06 18:17:40
Score: 3.5
Natty:
Report link

The javascript necessary to handle reading files must go in the 'Tests' tab, not the 'Pre-request' or 'Post-response' tabs

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

79490320

Date: 2025-03-06 18:16:40
Score: 0.5
Natty:
Report link

Your question is missing some details but assuming my assumptions are correct:

I get an error Couldn't open shared file mapping:.. when running this code, most likely because the tensor is implicitly being copied to shared memory and second copy does not fit. There is exactly the same error if I call share_memory_() on this tensor explicitly, for the same reason.

This is correct. You will end up with two tensors:

  1. Original CPU tensor (private memory)
  2. Shared-memory tensor (a copy)

And as you say, it won't fit.

One approach besides the file thing could be to use multiprocessing's shared_memory e.g.

import torch
import numpy as np
from multiprocessing import shared_memory

tensor_shape = (1024, 1024, 512)
dtype = np.float32
num_elements = np.prod(tensor_shape)

sh_mem = shared_memory.SharedMemory(create=True, size=num_elements * np.dtype(dtype).itemsize)
np_array = np.ndarray(tensor_shape, dtype=dtype, buffer=sh_mem.buf)

# create tensor without actually copying data
tensor = torch.from_numpy(np_array)

As further proof of no copying, you can check the base pointer of each:

>>> print(np_array.ctypes.data)
133277195173888
>>> print(tensor.data_ptr())
133277195173888

and they should match up.

Reasons:
  • Blacklisted phrase (0.5): exactly the same error
  • RegEx Blacklisted phrase (1): I get an error
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gfdb

79490319

Date: 2025-03-06 18:16:40
Score: 2.5
Natty:
Report link
import {Appearance} from 'react-native';

For Dark Theme

Appearance.setColorScheme('dark');

For Light Theme

Appearance.setColorScheme('light');

You can read React Native Appearance

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Osman İşci

79490313

Date: 2025-03-06 18:13:39
Score: 2
Natty:
Report link

It was a bug in the QPY serialization. qiskit 1.4.1 and qiskit 2.0.0 have fixes for it.

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

79490311

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

Another really great tool for upscaling images is the super-image PyPI package https://pypi.org/project/super-image/. The downside, is this uses stable diffusion, which does not handle text as well. You may have amazing results, but you also might have mixed results.

This package also works best with GPU processing with PyTorch.

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

79490309

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

first check python as python --version

then run this in cmd python -m ensurepip --default-pip if not there then use this command python get-pip.py. Still not resolved then update the python path to Path enviroment variables

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

79490298

Date: 2025-03-06 18:09:37
Score: 9 🚩
Natty:
Report link

Thanks a lot. I have the data that needs to be added at the end is in an excel file.

what do you mean by "Once you have the new HTML" - This is where i got so confusing meaning

do i need to convert that 5 rows of data into an HTML format? - Could you please provide a dummy sample example of the script please

what if i just want to append those 5 rows of data from excel? is it still required that i get those 5 rows into HTML format?

could you please help with a sample script

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): Could you please provide
  • RegEx Blacklisted phrase (3): could you please help
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Raj

79490295

Date: 2025-03-06 18:07:37
Score: 0.5
Natty:
Report link
  1. Create a VM.
  2. Install an older OS, Windows or Linux from the same time period the app was published.
  3. Install the version of Chrome from that same time period.
  4. Run the app within that VM.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Sparr

79490287

Date: 2025-03-06 18:05:36
Score: 4.5
Natty: 5
Report link

My answer comes very late, but if it is useful to anyone, the original documentation https://learn.microsoft.com/en-us/azure/confidential-computing/quick-create-confidential-vm-arm

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

79490282

Date: 2025-03-06 18:05:36
Score: 2
Natty:
Report link

Usually every job runs on a different agent, so the issue might be that you execute 'init' on one agent, but run 'plan' on another one. You can try to either add 'init' task in the 'TerraformPlan' job or add 'plan' task after 'init' in the 'TerraformInit' job to see if this works

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

79490275

Date: 2025-03-06 18:01:35
Score: 1
Natty:
Report link

I understand that OP is asking about counting bloom filters. However, a question that is equivalent in essence has already been asked and answered regarding normal bloom filters.

Why bloom filters use the same array for all k hashing algorithms

The answer above proves that using a single array (as is the case with a bloom filter or counting bloom filter) will actually result in less false positives.

That begs the question (the reverse of OP's original question), "What is the advantage of count-min sketches?"

Count-min Sketches were introduced in 2003, after counting bloom filters were already introduced, and the purpose and benefits are explained in the original paper.

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

79490262

Date: 2025-03-06 17:54:33
Score: 1.5
Natty:
Report link

Run aws configure list .

If profile is not set, then you need to set it along with others (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_DEFAULT_REGION):

export AWS_PROFILE=default

export AWS_ACCESS_KEY_ID=A*******

export AWS_SECRET_ACCESS_KEY=***

export AWS_DEFAULT_REGION=us-east-1 (Note: Change for appropriate region)

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

79490253

Date: 2025-03-06 17:52:33
Score: 3.5
Natty:
Report link

Ranadip Was correct!!! His suggestion fixed the problem... But I got an error because $key needed to be [string]$key. The problem went away after that!!! You all have done me a great service!!!!!

$button.InputMapping = $key
Reasons:
  • RegEx Blacklisted phrase (2): But I got an error
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Blake

79490240

Date: 2025-03-06 17:46:31
Score: 3
Natty:
Report link

In my case, I just had to set a web browser as default in the system settings and then i successfully logged in.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: i212550 Haroon Aslam Mahmood

79490237

Date: 2025-03-06 17:45:29
Score: 8.5 🚩
Natty:
Report link

Did you ever solve this. I am having the same issue. Not sure when it started

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever solve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Single line (0.5):
  • Starts with a question (0.5): Did you
Posted by: justdan0227

79490234

Date: 2025-03-06 17:43:29
Score: 1
Natty:
Report link

I had the same problem: 4.8 targeting pack and SDK were both installed and recognized by VS as installed components but it would not show up in the list for target frameworks.

Then I remembered that a .csproj is xml, so I text edited the target platform to net4.8 and I went on my merry way.

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

79490212

Date: 2025-03-06 17:34:27
Score: 1.5
Natty:
Report link
•••••••••••••••
header 1 header 2
cell 1 cell 2
cell 3 cell 4
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vijayan Av

79490207

Date: 2025-03-06 17:32:27
Score: 2
Natty:
Report link

In Firefox accent-color works:

input[type="date"] {
    accent-color: white;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex

79490202

Date: 2025-03-06 17:31:27
Score: 1.5
Natty:
Report link

The issue you're encountering might be related to the system locale. You can try adding the following line in your pom.xml to set the system language to English, which can resolve template-related errors in pom.xml..

<argLine>-Duser.language=en</argLine>

This will ensure that the FreeMarker templates are processed correctly and might resolve the issue you're facing.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Özcan

79490190

Date: 2025-03-06 17:27:26
Score: 3.5
Natty:
Report link

This looks like an issue where this superfluous message is logged, this has been fixed in an update, please see https://github.com/MicrosoftDocs/SupportArticles-docs/blob/main/support/sql/releases/sqlserver-2022/cumulativeupdate6.md most importantly 2425643.

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

79490187

Date: 2025-03-06 17:25:25
Score: 3
Natty:
Report link

You might have added the remote as an ssh remote. Change it to the https remote address

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

79490178

Date: 2025-03-06 17:23:25
Score: 0.5
Natty:
Report link

I found that if you just initialize dompdf with DejaVu Sans as the default font it works perfectly with cyrillic:

$dompdf = new Dompdf(['defaultFont' => 'dejavu sans']);

This seems to be the easiest and most straightforward solution

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

79490162

Date: 2025-03-06 17:16:23
Score: 3
Natty:
Report link

The answer is to add the new DPM server to the Azure Recovery Service Vault backup infrastructure by registering it - https://learn.microsoft.com/en-us/azure/backup/backup-azure-dpm-introduction#register-the-dpm-server-in-the-vault I hope this helps anyone that is still looking at this error.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jon

79490161

Date: 2025-03-06 17:15:23
Score: 3
Natty:
Report link

For anyone using 'cmd' instead of 'pwsh' (such as me)

I discovered that for Windows 'cmd' shell that

ECHO SOME_ENV_VAR=Some Value >> %GITHUB_ENV%

is what you need

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

79490152

Date: 2025-03-06 17:13:22
Score: 2
Natty:
Report link

It could be something like:

x /s *($rbp-32)

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

79490133

Date: 2025-03-06 17:05:20
Score: 2
Natty:
Report link

Try adding IDs to the sections you want to navigate to, like . Since that section is on /home, you can link to it using href="/home#pricing". I believe that's what you're trying to achieve

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

79490120

Date: 2025-03-06 17:01:19
Score: 1.5
Natty:
Report link

Convert the Template field to json.RawMessage in a MarshalJSON method on BrandTemplate.

type BrandTemplate struct {
    Type     string `json:"type"`   // Template type (e.g., email_forgot_password)
    Locale   string `json:"locale"` // Locale (e.g., "es" for Spanish, "en" for English)
    Template string `json:"-"`      // Template content (Email/SMS content)
}

func (t *BrandTemplate) MarshalJSON() ([]byte, error) {
    // Define type to break recursive calls to MarshalJSON.
    // The type X has all of fields for BrandTemplate, but
    // non of the methods.
    type X BrandTemplate

    // Marshal a type that shadows BrandTemplate.Template
    // with a raw JSON field of the same name.
    return json.Marshal(
        struct {
            *X
            Template json.RawMessage `json:"template"`
        }{
            (*X)(t),
            json.RawMessage(t.Template),
        })
}

https://play.golang.com/p/2ZQlziRRDOY

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Al Green

79490117

Date: 2025-03-06 17:00:19
Score: 3.5
Natty:
Report link

Restart the PC and the problem is solved.

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

79490111

Date: 2025-03-06 16:57:18
Score: 4
Natty:
Report link

I am aware the question is 'finely aged' but, repair does (did) not resolve the issue. SSDT exists on my PC; features missing in VS 2015r3

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: S M

79490099

Date: 2025-03-06 16:53:17
Score: 0.5
Natty:
Report link

Had the same issue with the consent page when accessing google maps. Managed to get around the consent page by sending the appropriate cookies when submitting the request.

In Chrome, if you open the console and go to the section application, then Storage, then Cookies, in there you will be able to find the google related cookies under https://www.google.com/

After passing the cookies called NID and SOCS in the request headers, I managed to get the actual page.

cookies = {'NID':'my_cookie_value'
        ,'SOCS':'my_cookie_value'}
response = requests.get('my_url', cookies=cookies)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Viktor

79490094

Date: 2025-03-06 16:51:16
Score: 0.5
Natty:
Report link

I am implementing edge-to-edge UI in my Android app, but my content is overlapping the status bar on Android 15. I want my layout to adjust properly based on system bars and display cutouts.

As per Android's official documentation (https://developer.android.com/develop/ui/views/layout/edge-to-edge), I am using the following code to handle window insets:

ViewCompat.setOnApplyWindowInsetsListener(binding.recyclerView) { v, insets ->
val bars = insets.getInsets(
    WindowInsetsCompat.Type.systemBars() or WindowInsetsCompat.Type.displayCutout()
)
v.updatePadding(
    left = bars.left,
    top = bars.top,
    right = bars.right,
    bottom = bars.bottom
)
WindowInsetsCompat.CONSUMED

}

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

79490085

Date: 2025-03-06 16:48:16
Score: 2.5
Natty:
Report link

You need to copy and paste it from the box diagram in the exercise. It works if you use their exact syntax. Don't type it yourself. Only go in and change the part that maps it to your specific project name (the one BigQuery gave you).

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

79490081

Date: 2025-03-06 16:47:15
Score: 2
Natty:
Report link

I tried this way in case that email is about to enter.

const onChangeEmail = (e) => setEmail(e.target.value);

and then input tag,

input type="email" value={email} onChange={onChangeEmail}

So, onChangeEmail is controlled.

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

79490063

Date: 2025-03-06 16:43:14
Score: 2.5
Natty:
Report link

It works for me with xcode 16.2. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: José Garmendia

79490054

Date: 2025-03-06 16:38:13
Score: 3.5
Natty:
Report link
Sequelize.fn('COUNT', Sequelize.col('comments.id')
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Смирнов

79490053

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

at the end via execute_process() i opened shell script file which inside also opens another terminal windows with their own script files which run on their own, so execute_process() does not wait for it to finish as the main termianl window finished…

in each own shell script file there is a sleeper waiting for *.pbxproj appear and then do some modification which Cmake can not do on its own

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

79490050

Date: 2025-03-06 16:37:13
Score: 3
Natty:
Report link

put the namespace name before the macro name in both the definition and the use, and treat the definition as being outside of it.

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

79490049

Date: 2025-03-06 16:37:13
Score: 3
Natty:
Report link

Man... I wish we could somehow write a code that takes back to a time where this was the biggest issue in our life. #FOREVER2012

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

79490023

Date: 2025-03-06 16:28:11
Score: 4.5
Natty:
Report link

I've just found this: https://github.com/hashicorp/terraform/issues/33660

So I think the answer is no, for now.

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