79507172

Date: 2025-03-13 17:21:51
Score: 2
Natty:
Report link

Crane is a very helpful too for this: https://github.com/google/go-containerregistry/blob/main/cmd/crane/README.md

Docs: https://github.com/google/go-containerregistry/blob/main/cmd/crane/doc/crane.md

crane catalog localhost:5000 #lists repo
crane ls localhost:5000/repo/image #lists tags for an image
crane digest localhost:5000/repo/image:tag --full-ref #gets the reference for the tag
crane delete localhost:5000/repo/image@sha256:someref
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: LaurentGoderre

79507165

Date: 2025-03-13 17:14:50
Score: 0.5
Natty:
Report link

could you tell me why it doesn't work when passed as JSON?

When you register a route with

@app.post('/ints')
def post_int(x: int, y: int):
    return x, y

in FastApi, the endpoint is added in

decorator (routing.py)
add_api_route (routing.py)
__init__ (routing.py)
get_dependant (dependencies/utils.py)
analyze_param (dependencies/utils.py)

Near the end of analyze_param, you can find

if is_path_param:
    # We might check here that `default_value is RequiredParam`, but the fact is that the same
    # parameter might sometimes be a path parameter and sometimes not. See
    # `tests/test_infer_param_optionality.py` for an example.
    field_info = params.Path(annotation=use_annotation)
elif is_uploadfile_or_nonable_uploadfile_annotation(
    type_annotation
) or is_uploadfile_sequence_annotation(type_annotation):
    field_info = params.File(annotation=use_annotation, default=default_value)
elif not field_annotation_is_scalar(annotation=type_annotation):
    field_info = params.Body(annotation=use_annotation, default=default_value)
else:
    field_info = params.Query(annotation=use_annotation, default=default_value)

https://github.com/fastapi/fastapi/blob/master/fastapi/dependencies/utils.py#L460

There you can see that scalar parameters have field info type query. Lists aren't scalar values and have field info type body.

Reasons:
  • RegEx Blacklisted phrase (2.5): could you tell me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: jabaa

79507161

Date: 2025-03-13 17:12:49
Score: 1
Natty:
Report link

On ARM enum size is always the smallest possible, according to declared values

https://developer.arm.com/documentation/dui0472/m/chr1360775115791

if you want to have all enums stay at int size, you have to use a compiler option like --enum_is_int , not sure which option is equivalent in GCC.

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

79507157

Date: 2025-03-13 17:09:49
Score: 1.5
Natty:
Report link

Alternatively, you can try this one - https://github.com/aws-samples/sagemaker-run-notebook. It uses papermill to run a jupyter notebook in an AWS SageMaker Processing Job. The job is triggered by a lambda function. This creates an alternative in case your job runs past the 15 minutes timeout mark of a lambda function.

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: nvasilev

79507156

Date: 2025-03-13 17:09:49
Score: 1
Natty:
Report link

You can fix it by removing the pip cache. The following command should do the job

pip cache purge
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Christoph H.

79507136

Date: 2025-03-13 17:02:47
Score: 3
Natty:
Report link

Try to check if you are at the correct path of your project, NODEJS can only recognize if you are inside the root of your project.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: João Ravaneda

79507133

Date: 2025-03-13 17:01:46
Score: 4
Natty:
Report link

The workaround described below is to disable hardware acceleration for the GUI.

https://github.com/microsoft/vscode/issues/205491

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

79507127

Date: 2025-03-13 16:58:46
Score: 2
Natty:
Report link

Replace the static reference to the class Category in CategoryDetailView to the respective instance (same name, but not capitalized).

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

79507125

Date: 2025-03-13 16:57:45
Score: 3
Natty:
Report link

In case it helps, I've located this referrer on the Taboola provider. It's a widget that serves news to sites with which it has commercial agreements. It's possible that other providers use it because it often appears in iframe links.

enter image description here

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

79507119

Date: 2025-03-13 16:53:44
Score: 3.5
Natty:
Report link

I have the same issue and I fixed it today.

1. Run regedit as administrator and navigate to the following location Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stornvme\Parameters\Device.

2. In the right pane, right click and select New > Multi-String value and give the name as ForcedPhysicalSectorSizeInBytes and data as * 4095 and click ok and close registry.

3. Restart the PC and then run the SQL server setup as administrator and installation should be done without any errors.

source: https://www.youtube.com/watch?v=zChu5Xp4Ysc

https://learn.microsoft.com/en-us/troubleshoot/sql/database-engine/database-file-operations/troubleshoot-os-4kb-disk-sector-size?tabs=registry-editor&source=docs

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-2): I fixed
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: john

79507113

Date: 2025-03-13 16:50:44
Score: 2.5
Natty:
Report link

After downgrading to JDK 17, I also had to set the Gradle JDK to JAVA_HOME in Android Studio Meerkat under:

SettingsBuild, Execution, DeploymentBuild ToolsGradle

Gradle JDK Setting

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

79507112

Date: 2025-03-13 16:50:44
Score: 1
Natty:
Report link

Your code looks fine, I literally just did this, and replaced password with the API key, ensured the user name is my Jenkins User ID and it worked.

One thing that did stop me before replacing my password with the API key was that the URL needed to be https, perhaps that's why the connection was refused per your traceback?

server = jenkins.Jenkins('https://localhost:8080', username='jenkinsuserid', password='jenkinsapiktoken')
user = server.get_whoami()
version = server.get_version()
print('Hello %s from Jenkins %s' % (user['fullName'], version))
Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Wil

79507104

Date: 2025-03-13 16:46:43
Score: 1
Natty:
Report link

Quick & dirty & cheap & works if everyone is on a Mac ;)

    if os.environ.get('HOME')[:7] == '/Users/':
        # we're on a local dev machine;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yanay Lehavi

79507103

Date: 2025-03-13 16:46:42
Score: 6 🚩
Natty: 5.5
Report link

instale y actualice la librería de json.text y se soluciono

Reasons:
  • Blacklisted phrase (2.5): solucion
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nelson GH

79507097

Date: 2025-03-13 16:42:41
Score: 0.5
Natty:
Report link

after gradle version 8.0 (I think) the buildConfig fields is disabled by default so you need to enable it explicitly .... in your gradle ... in your android block add this (kotlin .kts version)

 buildFeatures {
        buildConfig = true
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abdelrahman Esam

79507095

Date: 2025-03-13 16:42:41
Score: 3.5
Natty:
Report link

It takes time to change favicon image, you could clear cache and hard refresh.

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

79507089

Date: 2025-03-13 16:40:41
Score: 1.5
Natty:
Report link

Since some_date is stored as VARCHAR(10), you should convert it into a DATE and filter out invalid values.

SELECT some_date FROM my_table WHERE TRY_CAST(some_date AS DATE) IS NULL;

Please store dates in DATE or DATETIME format instead of VARCHAR.

This will ensure the database enforces valid dates automatically.

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

79507083

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

Rolling operations on a groupby object automatically ignore NaNs in recent Pandas versions.

df.groupby('var1')['value'].rolling(3, min_periods=1).mean().reset_index(level=0, drop=True).sort_index()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hrithik Jyani

79507076

Date: 2025-03-13 16:35:39
Score: 2
Natty:
Report link
model = YOLO('yolov8n.pt')
results = model(frame, classes=[0])   
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: miri taha

79507066

Date: 2025-03-13 16:32:39
Score: 1
Natty:
Report link

Ok, I figured this out after @MarkSetchell gave me a clue to follow.

What was happening was that, at some point in the past, I moved from a different installation method to npm for the Bitwarden CLI tool.

However, I didn't clean things up properly, and I had two version of the tool coexisting in my system: an old one at /usr/local/bin, and the latest one at /Users/myuser/.npm-global/bin/bw.

In my .zshrc file, my Bitwarden script was running BEFORE the npm path was added to my path variable. Meaning, the script was trying to use the (now very outdated) BW CLI client. And it was probably failing because of an incompatibility with the latest BW features. But because I was not getting a "not found" error, it wasn't easy to notice that I was actually running an older version.

All I had to do was make sure that the npm path was added to the shell before the script is executed, and of course I also cleaned up the old installation to prevent any future confusion.

Thanks everyone for your answers!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @MarkSetchell
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: VMX

79507061

Date: 2025-03-13 16:31:38
Score: 2.5
Natty:
Report link

After iinstall project lombok, go to eclipse options:

right click on Project, Maven,update Project.. , and Ok button

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

79507056

Date: 2025-03-13 16:29:38
Score: 2
Natty:
Report link

This error was resolved after I reworked my sampling method (see PyTorch Checkpointing Error: Recomputed Tensor Metadata Mismatch in Global Representation with Extra Sampling); it had to do with the fact that I wasn't computing a separate global representation through the forward pass.

Something I could have never figured out based on the traceback I got, as this mentioned nothing related to the sampling part of the code.

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

79507055

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

Remove the '%' before Z, Z does not need the %:

time_utc = datetime.strptime(utc_string, '%Y-%m-%dT%H:%M:%S.%fZ').replace(tzinfo=timezone.utc)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tanukaum

79507053

Date: 2025-03-13 16:28:38
Score: 2.5
Natty:
Report link

I have a private app published on the Google Play Store and I did it by following the instructions located at the link below.

https://support.google.com/a/answer/2494992?hl=en#zippy=

What private means in this context is only users signed into the Google Play Store with an account linked to an organization that you have added can see your app when searching.

Reasons:
  • Blacklisted phrase (1): the link below
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: thenry

79507050

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

Sessions start after connections are pulled from the pool and end before they go back into the pool.

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

79507048

Date: 2025-03-13 16:25:37
Score: 1.5
Natty:
Report link

Issue is Htaccess FIle

RewriteCond %{HTTP:Authorization} ^(.+)$
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 

please paste it 100% issue resolve

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

79507046

Date: 2025-03-13 16:23:36
Score: 1.5
Natty:
Report link

Updated

If on Xcode 16.x, bump Kotlin to 1.9.22.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: K.pen

79507036

Date: 2025-03-13 16:20:36
Score: 1.5
Natty:
Report link
decimal decNumber = 15.456789M;
Console.WriteLine(decNumber.ToString($"f{precision count}"));
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahammad Moine

79507029

Date: 2025-03-13 16:17:35
Score: 1.5
Natty:
Report link

Press Insert on your keyboard.

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

79507018

Date: 2025-03-13 16:13:34
Score: 5
Natty: 5
Report link

I was looking for the same! Found this: https://apps.odoo.com/apps/modules/14.0/custom_email_reminder/

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

79507017

Date: 2025-03-13 16:13:33
Score: 0.5
Natty:
Report link

If your application is still predicting when it receives the SIGTERM, it means the container is being terminated before it can complete the prediction.

To handle this, you can implement a SIGTERM handler in your application. When the handler receives the SIGTERM, it should start failing the readiness probe. This will prevent new requests from being routed to the container, and allow it to finish processing the current request before shutting down.

For writing a component to cancel the underlying resources you may visit this public documentation which includes sample code that shows how to attach a SIGTERM handler.

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

79506977

Date: 2025-03-13 15:58:30
Score: 1.5
Natty:
Report link

You only need to wrap your action button as below, following the documentation from https://ui.shadcn.com/docs/components/dialog#custom-close-button

<DialogFooter>
  <DialogClose asChild>
    <Button onClick={() => { console.log("something") }} type="button">
      Do something and close
    </Button>
  </DialogClose>
</DialogFooter>
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: henriquebf

79506973

Date: 2025-03-13 15:57:29
Score: 3
Natty:
Report link

It possible right now, you can check my blog with step by step tutorial: https://azureway.cloud/azure-managed-devops-pool-terraform/

or just go to the source code: https://github.com/azure-way/terraform-azure-managed-devops-pool

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

79506971

Date: 2025-03-13 15:56:29
Score: 2
Natty:
Report link

It is not recommended to use invoice items to break out coverages as it may create performance issues. Charge breakdowns were introduced in version 10 to handle this. Please review the documentation for implementation details.

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

79506970

Date: 2025-03-13 15:56:29
Score: 1.5
Natty:
Report link

Using npm config set msvs_version {version} errored for me as well.

However, using npm config edit then adding msvs_version={version} in the file directly worked fine.

Creds @djak250

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @djak250
  • Low reputation (0.5):
Posted by: Vitalii Ruzhentsov

79506966

Date: 2025-03-13 15:56:29
Score: 3
Natty:
Report link

JSF 2 does not have 'update' attribute, instead should use the 'render' attribute.

Please see the references below:

JSF 2.2 Javadoc of f:ajax

JSF 2.1 Javadoc of f:ajax

JSF 2.0 Javadoc of f:ajax

https://www.beyondjava.net/a-comprehensive-guide-to-jsf-ajax

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

79506963

Date: 2025-03-13 15:55:29
Score: 0.5
Natty:
Report link

To achieve this, you need to ensure that the config directory is added to the classpath and that the lib directory is included for additional JARs. Here is how you can do it:

java -cp "MyApp.jar:lib/*" -Dspring.config.location=./config/application.properties org.springframework.boot.loader.JarLauncher
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ali BOUHLEL

79506950

Date: 2025-03-13 15:50:28
Score: 1
Natty:
Report link

just add this to your application.yml

  devtools.restart.enabled: false
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Filip

79506949

Date: 2025-03-13 15:50:27
Score: 5
Natty:
Report link

vscode-controls-linux stop work on vscode Vscode 1.98.1

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

79506941

Date: 2025-03-13 15:48:27
Score: 3
Natty:
Report link

JSF 2 does not have 'update' attribute, instead should use the 'render' attribute.

Please see the references below:

JSF 2.2 Javadoc of f:ajax

JSF 2.1 Javadoc of f:ajax

JSF 2.0 Javadoc of f:ajax

https://www.beyondjava.net/a-comprehensive-guide-to-jsf-ajax

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

79506936

Date: 2025-03-13 15:46:27
Score: 3.5
Natty:
Report link

The problem was due to Android Studio. After updating Android Studio from Lady Bug to Meer Kat, the problem is solved.

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

79506927

Date: 2025-03-13 15:39:25
Score: 0.5
Natty:
Report link

The node version must be added to the build parameter of the eas.json file.

"build": {
  "development": {
    // rest of the code
    "node": "20.18.1"
  },
  "preview": {
    // rest of the code
    "node": "20.18.1"
  },
  "production": {
    // rest of the code
    "node": "20.18.1"
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: cris.sol

79506911

Date: 2025-03-13 15:33:23
Score: 4.5
Natty: 5
Report link

Also resolved my issue thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: iydrin

79506906

Date: 2025-03-13 15:32:23
Score: 2.5
Natty:
Report link

For private testing on the Play Store, you must either put your app in Internal Testing or Closed Testing.

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

79506900

Date: 2025-03-13 15:29:22
Score: 0.5
Natty:
Report link

For MacOS app

    var body: some View {
        SettingsView(viewModel: viewModel)
            .toolbar(removing: .sidebarToggle)
            .toolbar(.hidden, for: .automatic)
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Serg Smyk

79506887

Date: 2025-03-13 15:23:21
Score: 2
Natty:
Report link

If anyone is still looking for an answer, the solution is to set 'text_convert = FALSE', see: https://github.com/Merck/r2rtf/issues/255

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amy Macdougall

79506873

Date: 2025-03-13 15:19:20
Score: 2
Natty:
Report link

On june 2024, Maui Community Toolkit published the first version of CameraView ported from Xamarin.Forms Community Toolkit.

You can access it from its NuGet package.

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

79506871

Date: 2025-03-13 15:18:20
Score: 0.5
Natty:
Report link

I had troubles updating the dependency from a github branch. For me the solution was to remove the package using the yarn command, then reinstall it:

yarn remove package-name

yarn add package-name@https://github.com/org/repo.git#branch-name

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

79506868

Date: 2025-03-13 15:18:20
Score: 1
Natty:
Report link

You're on the right track with deno_core, but it does require additional setup to expose Web APIs and Deno/Node.js functionality. Here are some approaches to achieve your goals:

Extending deno_core for Web APIs & Deno APIs deno_core provides an isolated V8 runtime, but you need to expose Web APIs manually. You can:

Use deno_web for Web APIs like setTimeout, performance, etc. Manually expose a subset of Deno APIs (e.g., Deno.inspect) via op bindings. Using deno_runtime Instead deno_runtime is a more complete runtime that builds on deno_core and includes Web APIs, permissions, and a subset of Deno APIs. If you need these features out of the box, this might be a better fit.

Rust ↔ JS Communication

deno_core allows defining custom ops (Rust functions callable from JS). You can create ops for Rust ↔ JS communication using op_sync (blocking) or op_async (async) bindings.

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

79506864

Date: 2025-03-13 15:16:19
Score: 1
Natty:
Report link

In my specific case, AmazonS3 was handling photos without CORS issues. But they popped up on videos because browsers handle them different. I had to manually set CORS permissions in the Amazon S3 console and this issue was solved.

Since this is a security related issue, and it's recommended solution changes over time due to security concerns, I am not posting what settings I personally used. And you will need to make your own security assessment. But the settings are very easy to pull from a Google search, and then your security change is on you.

Also, not posting my security settings since I have only had them in the wild for hours. So I cannot speak to their worthiness in the wild.

But point is, CORS needs to be set server side for S3 for videos, but not photos.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Daniel Brown

79506863

Date: 2025-03-13 15:16:18
Score: 6.5 🚩
Natty: 5.5
Report link

Sorry if I'm bringing this discussion up again but it's the only one on the web I've found that deals with this issue.

In the Docker documentation, it appears that ENV parameters defined in the Dockerfile are ignored if there is an environment section in the docker-compose file.

5 . Set in a container image in the ENV directive. Having any ARG or ENV setting in a Dockerfile evaluates only if there is no Docker Compose entry for environment, env_file or run --env.

My question is this: if there is an environment section in the docker-compose file, are the ENV parameters defined in the Dockerfile completely ignored or are they "combined/replaced" with those defined in the docker-compose file?

I would like to keep certain configuration parameters of a Timescale container (postgres) in the Dockerfile and add other configuration parameters in Docker-Compose to be modified "at runtime".

Thank you in advance

Best regards

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mmjc23

79506857

Date: 2025-03-13 15:15:18
Score: 4
Natty:
Report link

How do I tell langchain4j to use the tool from openAI itself?

You need to set langchain4j.open-ai.chat-model.model-name = gpt-4o-search-preview

And How do I tell langchain4j to set the web_search_options like on the python code snippet below

Unfortunately there is currently no way to set it

Reasons:
  • Blacklisted phrase (1): How do I
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: LangChain4j

79506856

Date: 2025-03-13 15:14:17
Score: 4
Natty:
Report link

Okay this seems to be a bug that is fixed in 18.4. https://developer.apple.com/documentation/safari-release-notes/safari-18_4-release-notes

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

79506844

Date: 2025-03-13 15:10:16
Score: 1.5
Natty:
Report link

This should be the way to go here - https://github.com/aws-samples/sagemaker-run-notebook. In essence, one uses a lambda function to trigger an AWS SageMaker Processing Job. This is kind of like running a notebook on an AWS SageMaker Notebook instance without having to think about provisioning the instance and killing it after finishing the job.

It uses papermill to run the notebook on a sagemaker instance. Users can pass a custom docker image with their own custom kernels.

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

79506843

Date: 2025-03-13 15:10:16
Score: 0.5
Natty:
Report link

Managed to get it working. Had to first right click info.plist and edit in:

<key>NSMotionUsageDescription</key>
    <string>This app wants to track your pedometer readings</string>

To access motion. But for some reason if it either could not build or there was an integrity error. The error "failed to parse plist data type key" just came and went, after I restarted and cleaned solution a couple of times. And if you are having trouble with the app not deploying on device, go to "Build -> Configure Manager -> check deploy".

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

79506834

Date: 2025-03-13 15:07:15
Score: 3
Natty:
Report link

How about

class {
//...more code here
public: inline static float X = 1.2f;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: tooLazyToLogin

79506832

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

You can do it something like this:

modelsummary(list("Model 1" = models1, "Model 2" = models2,"Model 1" = models1),
             output = "table.html") # or "table.docx" if you need
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29972111

79506826

Date: 2025-03-13 15:04:14
Score: 0.5
Natty:
Report link

Try opening the directory in vscode through terminal. This worked for me.

use command: code path/to/directory

Things I tried but did not work: 1. resetting settings 2. reinstalling vscode 3. restarting it XD

Things I should have tried: Restarting the computer =)

this might happen due to permission issues which might be resolved if opened through terminal.

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Swastik

79506815

Date: 2025-03-13 14:58:13
Score: 1.5
Natty:
Report link

Check your server's timezone. Also, it could be from the formatting you're doing at the backend. Check the date formatting style you're using in your java code to make sure it's not formatting based on a specific time and timezone.

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

79506812

Date: 2025-03-13 14:58:13
Score: 2
Natty:
Report link

try adding below variable to use Docker bridge IP

DOCKER_HOST: "tcp://172.17.0.1:2375"

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

79506810

Date: 2025-03-13 14:57:13
Score: 2
Natty:
Report link
<Tabs.Screen
    name="news"
    options={{
        href: null
    }} 
/>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Дима

79506801

Date: 2025-03-13 14:55:12
Score: 3
Natty:
Report link

I attempted to fork the repository and reference my fork directly in the pubspec.yaml file as a workaround for the issue. I'm currently waiting for Apple's review to see if this solution works. It was the only method I found suggested by the community, though upgrading Flutter to version 3.24 might also be an option.

Any feedback or additional suggestions would be greatly appreciated.

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • No code block (0.5):
  • Low reputation (1):
Posted by: Felipe Domingues da Silva

79506784

Date: 2025-03-13 14:46:10
Score: 3
Natty:
Report link

In your Visual Studio Installer open "Modify" and in the second tab ("Singular components" or sth like that) select which SDKs you want in your VS.

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

79506780

Date: 2025-03-13 14:44:09
Score: 1
Natty:
Report link

The problem is that the class uses static variables to store dependencies injected via @Autowired, but Spring does not support autowiring static fields. The solution is to remove static from the variables and pass dependencies through constructor injection. This allows Spring to properly manage dependencies and eliminates the null issue. Additionally, the determineEncryptionKey method should use non-static fields to access injected dependencies. As a result, the code will become cleaner, safer, and will no longer trigger Sonar warnings. Furthermore, constructor injection makes dependencies explicit, simplifying testing and code maintenance.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Autowired
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Maksim Banit

79506766

Date: 2025-03-13 14:37:08
Score: 0.5
Natty:
Report link

I just had the same problem. For me the fix was in the main.ts file. I needed to put the dotenv configuration before all the imports of the files that use process.env.

import * as dotenv from 'dotenv';
dotenv.config();

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { ValidationPipe } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';

async function bootstrap() {
...
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daniel Lemos de Morais

79506762

Date: 2025-03-13 14:35:08
Score: 0.5
Natty:
Report link

If your middleware method is actually async:

public async Task InvokeAsync(HttpContext context)

You can simply return:

if (User == null)
{
    await _signInManager.SignOutAsync();
    context.Response.Redirect("/");
    return;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JKH

79506761

Date: 2025-03-13 14:35:07
Score: 5
Natty: 4.5
Report link

This post answers your question.

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

79506760

Date: 2025-03-13 14:35:07
Score: 1
Natty:
Report link

I will add that you can parse out the signal code from the sql state like this:

if mysqlErr, ok := err.(*mysql.MySQLError); ok {
    code := string(mysqlErr.SQLState[:])
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Galen Howlett

79506757

Date: 2025-03-13 14:33:06
Score: 5
Natty: 5
Report link

sorry I don't have th answer, just wondering if you ever found any more information on how to do this ?

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

79506751

Date: 2025-03-13 14:32:06
Score: 2
Natty:
Report link

In my case it was solved by disabling the authentication token:

SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2", token=False)

See https://github.com/UKPLab/sentence-transformers/issues/3212 Maybe your issue is different though

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

79506746

Date: 2025-03-13 14:31:06
Score: 2.5
Natty:
Report link

This was resolved by temporarily adding the subscription to the app and resubmitting. The in-app subscription got out of an "in review" state and we were able to move forward with our review. It now shows as "removed from sale".

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

79506738

Date: 2025-03-13 14:27:05
Score: 0.5
Natty:
Report link

I appreciate that this is a little late to the party, but I have had this same issue with a brand new project in Xcode 16.2 today and thought i'd share my fix as well as none of the other suggestions worked.

For context, I have added several new projects/modules over the last few months and not had this issue with them, so I compared them with the new one and the only difference was:

Install Generated Header was set to No in the project that wasn't working

enter image description here

As soon as i changed it to Yes the -Swift.h file was created and i could referencing for Objectice-C code in another module.

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

79506735

Date: 2025-03-13 14:26:05
Score: 3
Natty:
Report link

Access to www.effectiveratecpm.com was denied You don't have authorisation to view this page. HTTP ERROR 403

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hammad Hussain

79506729

Date: 2025-03-13 14:23:04
Score: 1
Natty:
Report link

The solution from Dieter is working perfectly and easy to implement. Adriaan shouldn't be such a stickler for rules. Dieter is just helping out, give him some credit.

For latest TYPO3 versions an updated condition is necessary

[traverse(request.getCookieParams(), 'CookieName') == 'CookieValue']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Emile

79506724

Date: 2025-03-13 14:22:04
Score: 1.5
Natty:
Report link

It looks like the piece of code you provided is working as expected, Maybe the part that I don't see actually working is "hovering the filled portion", because right now the color changes on hover over any part of the slider.

In the case you want to do exactly the "hovering over the filled portion" you would need to build your own slider and make the filled and non-filled portions different elements.

If you can clarify maybe, I could help you more with this.

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

79506714

Date: 2025-03-13 14:18:01
Score: 9 🚩
Natty: 6
Report link

were you able to solve this? It looks like it doesn't like the config parameter. the buefy-next README doesn't include passing a config object into app.use

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cd456

79506712

Date: 2025-03-13 14:18:01
Score: 3
Natty:
Report link

I faced a similar error and later realized that in my users table there is a field named is_active which was set to False by default. I turned that into True and things worked.

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

79506709

Date: 2025-03-13 14:17:01
Score: 2.5
Natty:
Report link

Google is slowly taking Total Control of The SDK , by forcing users to migrate to Android Studio ... Delphi RAD 12 is stuck with SKA 25 ,, ANd migration to SDK 30.** Is manual , and hell to upgrade ...

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

79506708

Date: 2025-03-13 14:17:01
Score: 1.5
Natty:
Report link

It's not that you have bad clicking precision, it's because the gutter is poorly designed. And, as to your question, I too have searched for an answer but have not found none.

It is frustrating because I will fold a block far more often then set a breakpoint.

There is an open issue.

Upvote/star it and maybe fixing the issue can gain some traction.

Reasons:
  • Blacklisted phrase (0.5): Upvote
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mox

79506706

Date: 2025-03-13 14:16:01
Score: 3
Natty:
Report link

I`ve tested your case, and it works:
enter image description here

Can you check this setting on the repository?

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Shamrai Aleksander

79506703

Date: 2025-03-13 14:15:01
Score: 0.5
Natty:
Report link

I have been looking for an answer to this question myself and was quiet confused.

Big confusion!

One answer is: Kamal 2 isn't intended to run without the kamal-proxy (according to this discussion on Github). The same account explained in an other comment, that you can't use proxy: false with the web role (according to this other discussion on GitHub)

A different answer is: Kamal may be intended to run without a proxy but something doesn't work. According to Kamal's documentation about roles, only the primary role uses a proxy by default. The web role as set under server is your primary role. It also states, that you can disable the proxy for the primary role.

No conclusion :(

With the public information I could gather, I can't see how there is an intended way run the web role without a proxy.

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

79506697

Date: 2025-03-13 14:12:00
Score: 0.5
Natty:
Report link

2025 Version?

I've always wanted to, not only add custom drop-down arrow with svg images, but also color it with my CSS variables.

So here's how I did -

HTML:

// Wrap select element with div or something
<div class="container"> 
    <select>
        <option></option>
    </select>
</div>

CSS:

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container {
    position: relative;
}

.container::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg> ~ </svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg> ~ </svg>');
    top: 2px;
    right: 8px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--my-color);
    pointer-events: none;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jinwoo Lee

79506696

Date: 2025-03-13 14:11:00
Score: 2
Natty:
Report link

Solution is here, I have developed Application Loopback Auido Capture lib. You can specifed app's auido capture by PID.

https://github.com/qH0sT/ApplicationLoopBack

@Mark Heath

Reasons:
  • Whitelisted phrase (-1): Solution is
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Mark
  • Low reputation (0.5):
Posted by: 0x000000F4

79506688

Date: 2025-03-13 14:06:58
Score: 5.5
Natty: 6
Report link

And volia - it doesnt work....

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29971919

79506684

Date: 2025-03-13 14:03:58
Score: 1
Natty:
Report link

In the Scheme for the Widget's Target I had to set the Environment Variable `RadWidget` to the Widget's name.

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

79506682

Date: 2025-03-13 14:03:58
Score: 1
Natty:
Report link

Use user-select: all on the style of the inner element to make it selectable by clicking it.

Or, use user-select: text to make it selectable by clicking it two or three times.

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

79506681

Date: 2025-03-13 14:03:57
Score: 6.5 🚩
Natty: 5.5
Report link

am trying something similar with langchain and stuck at langchain understanding tablenames and column names while trying to use Natural language, did you had any luck with your above code?

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

79506676

Date: 2025-03-13 14:01:56
Score: 3
Natty:
Report link

If u are in corporative company or type shi, you may need also application level access to oracle db

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

79506675

Date: 2025-03-13 14:01:55
Score: 6 🚩
Natty: 5
Report link

se você ja tentou de tudo, tenta instalar o microsoft visual studio c++ redistribuível, que dá certo.

Reasons:
  • Blacklisted phrase (3): você
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samuel Alves

79506671

Date: 2025-03-13 13:59:55
Score: 2.5
Natty:
Report link

The issue is actually with using the public EC2 IP, isn't it?

When you use the public IP, the Lambda function exits your VPC. So, within a VPC, it's generally more effective and secure to use the private IP for communication.

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

79506661

Date: 2025-03-13 13:56:53
Score: 7 🚩
Natty: 5.5
Report link

I used your script (Google Apps Script side & HTML side) and everything works fine when the CSV file stored on my local PC contains commas (,) as separators.

But when I try to download the content on a CSV file which have semi colons as separators, the script didn't works. Have you a solution?

Thank you in advance for your help, Best regards, Christophe

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): Thank you in advance
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Christophe Laschweng

79506660

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

You can typecast in JSDoc:

const x = /** @type {CastedToType} */(value);

NOTE the braces (), they are important.

enter image description here

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

79506656

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

Ticking the Unicode Box worked perfectly for me

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

79506649

Date: 2025-03-13 13:52:52
Score: 0.5
Natty:
Report link

Try a different method than putFile() to save your file.

I use putData() like this:

await imageFile.readAsBytes().then((value) async {
    await storageRef.putData(value, SettableMetadata(contentType: fichierEnCours.mimeType));
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JTO Informatique

79506646

Date: 2025-03-13 13:51:52
Score: 1.5
Natty:
Report link

I had a case of SUM() failing on formula cells that outputted a number, but using IMSUM() (for adding complex numbers) worked instead.

Not sure how consistently it would work, but might be easier than using NUMBERVALUE() on every cell like other suggestions. Bizarre.

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

79506644

Date: 2025-03-13 13:50:52
Score: 5
Natty: 5.5
Report link

ROUT xxx MUST FIRST DIAL 1 OR 0

I would like to take out everything after "ROUT xxx"

The "xxx" are wildcard characters. So, the main search is on ROUT with 3 to 4 characters after.

what would be a find/replace example for this?

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29971868

79506620

Date: 2025-03-13 13:43:50
Score: 1.5
Natty:
Report link

you dont have to that via POSIX cmds. Tons of ways available. Nevertheless:

cat /sys/class/thermal/thermal_zone0/temp
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: postala

79506615

Date: 2025-03-13 13:40:48
Score: 6 🚩
Natty:
Report link

I am doing that and I am trying to send that webhook by push subscription method
so here is the problem i am facing
when i am send data from pubsub cloud cli it is sending post request with data to webhook

But when i try to test it when new review comes nothing is coming up

Kindly help me solve this issue

Thank you
Here is the response when I made the updatenotification setting with 200 ok response.

{
    "name": "accounts/*/notificationSetting",
    "pubsubTopic": "projects/sonic-arcadia-*/topics/business-review-notifications",
    "notificationTypes": [
        "NEW_REVIEW",
        "UPDATED_REVIEW"
    ]
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (3): Kindly help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: satwik

79506613

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

use bpy.context.view_layer.update() and ensure that the object is visible otherwise the object might not be updated. Credits to the original answer and comment of mgibsonbr and Ray.

A similar problem arises for Justas' and Don Hatch's answer since the matrix_inverse_parent might not have been computed yet

(I wanted to add this as a comment since i don't think it's relevant as a separate answer, but I don't have enough reputation)

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nstern

79506602

Date: 2025-03-13 13:35:46
Score: 1.5
Natty:
Report link

My question is similar :)

I would like to use my function in selects, I would like to specify this function is deterministic, so that it does not need to compute the SQL for each row.

For example, the select below returns the same time in the first column for each row, but not in the 2nd column.

Is it possible to specify somewhere that the test() function should work like the plain getdate()? (I know I can save it into a variable, but that requires rewriting hundreds of queries, it's not enough to replace GETDATE() with dbo.GetCETDate() everywhere :) )

the test:

create function dbo.test() returns datetime
with schemabinding
as
begin
    return getdate()
end
GO
SELECT OBJECTPROPERTY(OBJECT_ID('dbo.test'), 'IsDeterministic');
-- result is 0
GO
select GETDATE(), dbo.test() from BigTable
Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sleepy