79569959

Date: 2025-04-12 02:26:23
Score: 1.5
Natty:
Report link

Microsoft Active Directory Federation Services (ADFS), including:

do not support the SCIM (System for Cross-domain Identity Management) protocol for provisioning users.

What to use instead?

If you want SCIM-based provisioning, Microsoft recommends using Azure Active Directory (Entra ID now), which fully supports SCIM 2.0 for automatic user and group provisioning to SaaS applications like Snowflake, Salesforce, ServiceNow, etc.

If you're stuck on-prem with ADFS and need provisioning, you’d have to:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: anshul.anand

79569947

Date: 2025-04-12 02:01:18
Score: 1
Natty:
Report link

from PIL import Image

import matplotlib.pyplot as plt

# Load the uploaded image

image_path = "/mnt/data/file-Q8DjRukHZtsftmmGBgjUSG"

img = Image.open(image_path)

# Crop the 20th variant from the image (5th row, 5th column)

# Each cell is roughly equal-sized, so we calculate the approximate box

img_width, img_height = img.size

cols, rows = 5, 5

cell_width = img_width // cols

cell_height = img_height // rows

# Coordinates for the 20th variant (row 4, col 5)

col_index = 4

row_index = 3

left = col_index * cell_width

upper = row_index * cell_height

right = left + cell_width

lower = upper + cell_height

cropped_img = img.crop((left, upper, right, lower))

# Show the cropped image

plt.imshow(cropped_img)

plt.axis('off')

plt.title("Variant 20")

plt.show()

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

79569944

Date: 2025-04-12 01:59:17
Score: 1
Natty:
Report link

i run this from terminal, and speed goes normal

sudo ip link set dev eth0 mtu 1350

i found this from github

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

79569936

Date: 2025-04-12 01:50:15
Score: 3
Natty:
Report link

I found this helpful blogpost from this person, who understands what exactly is the issue

https://blog.ni18.in/fix-compose-compiler-kotlin-version-expo-bare-workflow/

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

79569935

Date: 2025-04-12 01:50:15
Score: 1.5
Natty:
Report link

It kinda works but whenever I type the email, it always said:

Please enter a valid email! 

Idk why but it kept doing this even I tried to put "@gmail.com"!

And whenever I put anything, it gave me an error.

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

79569934

Date: 2025-04-12 01:50:15
Score: 2.5
Natty:
Report link

I have created an online downloader https://vsix.2i.gs and a chrome extension VSIX Downloader to help users download VSIX files easily.

I wish you can like it.

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

79569931

Date: 2025-04-12 01:48:14
Score: 1
Natty:
Report link

Alternatively, you can now compile mira from source on MacOS:

git clone https://codeberg.org/DATurner/miranda
cd miranda
make
sudo make install
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: martinwguy

79569924

Date: 2025-04-12 01:37:12
Score: 3
Natty:
Report link

Just make sure when you're entering the second color, it exactly matches one that you added in the first part.

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

79569917

Date: 2025-04-12 01:25:09
Score: 2.5
Natty:
Report link

The "if" check uses a value comparison, which protects against SQL injection. Your dynamic queries correctly implement placeholders. From a security perspective, the code looks good as long as the leaderboard columns don't contain sensitive data.

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

79569900

Date: 2025-04-12 01:02:04
Score: 1.5
Natty:
Report link

Yes, Excel simply keeps overwriting the previous number if the value in a cell changes every 0.25 seconds, making it impossible to truly keep track of the minimum and maximum. Therefore, since there is no history to draw from, anything like =MAX(A1) will not function.

Using a VBA macro to check the value every second or so and update a separate cell to store the new max or min if it's higher or lower than previously is one approach to deal with this. An alternative is to log every value into a column or list, then apply =MAX() or =MIN() to the entire range. A little more setup, but certainly possible.

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

79569896

Date: 2025-04-12 00:53:02
Score: 3
Natty:
Report link

Coming a bit late, but it seems there is a PHONETIC() function in excel that converts to furigana. Needs to activate it by setting you regional setting to japanese (I could not find a way to make your macro work on a mac)

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

79569893

Date: 2025-04-12 00:51:01
Score: 1
Natty:
Report link

You can use SageMath library for these purposes. Here is the doc about working with Laurent series in Sage

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

79569892

Date: 2025-04-12 00:51:01
Score: 2.5
Natty:
Report link

Maybe this?

# FILE: abc.clang-format21
MaxEmptyLinesToKeep: 0
AllowShortFunctionsOnASingleLine: false

Output:

clang-format-21 --style=file:abc.clang-format21 source.c

void test() {
  return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: atl

79569891

Date: 2025-04-12 00:49:00
Score: 4
Natty:
Report link

how to make this code work to Disable turn off this device to save power for all USB!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Mohsen

79569890

Date: 2025-04-12 00:47:59
Score: 1
Natty:
Report link

ptt answer works

auto connOpts = mqtt::connect_options_builder()     
    .clean_session()
    .user_name("User name here")                  // put username here
    .password(binary_ref_passwd)
    .will(mqtt::message(TOPIC, LWT_PAYLOAD, QOS))
    .finalize();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BeeBee

79569879

Date: 2025-04-12 00:28:55
Score: 2
Natty:
Report link

You can also use a bot token but that doesn't work for all endpoints and you need to use Authorization:Bot BotToken

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

79569878

Date: 2025-04-12 00:27:54
Score: 5.5
Natty:
Report link

I know I am kinda late in the party here ... but from what I can tell, I don't think they are allowing PIX transactions via API, am I right?

Whenever I try to run my code, I get this error message:

{"code": "58407", "data": [], "msg": "API withdrawal isn't allowed for this payment method. Withdraw using OKX app or web"}

Is your code still working? If not, how did you overcome this gap?

Reasons:
  • RegEx Blacklisted phrase (1): I get this error
  • RegEx Blacklisted phrase (2): working?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Luis Filipe

79569873

Date: 2025-04-12 00:14:52
Score: 1.5
Natty:
Report link
RUN apt-get update && apt-get install -y locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: logicmoo

79569865

Date: 2025-04-12 00:06:49
Score: 0.5
Natty:
Report link

Because, as.numeric() can't be used when your character having commas, dollar signs, or even empty strings.

As an example in my dataset in the price column the class is getting as character. But I want to convert it into numeric. When I directly used as.numeric() I got an warning as 'NAs introduced by coercion'. Then I removed the spaces in the price column -->

gold_ds$Price <- gsub(",", "", gold_ds$Price)

and then did -->

gold_ds$Price <- as.numeric(gold_ds$Price).

It succefully worked for me in R.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Chamudi Abeysinghe

79569864

Date: 2025-04-12 00:05:48
Score: 7 🚩
Natty: 5
Report link

enter image description here Hey I tried the answer from what you provided and I'm still getting my error message I am also new to c++?

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I'm still getting my error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NovaDesktop

79569863

Date: 2025-04-12 00:04:47
Score: 0.5
Natty:
Report link

Because, as.numeric() can't be used when your character having commas, dollar signs, or even empty strings.

As an example in my dataset in the price column the class is getting as character. But I want to convert it into numeric. When I directly used as.numeric() I got an warning as 'NAs introduced by coercion'. Then I removed the spaces in the price column -->

gold_ds$Price <- gsub(",", "", gold_ds$Price)

and then did -->

gold_ds$Price <- as.numeric(gold_ds$Price).

It succefully worked for me in R.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Chamudi Abeysinghe

79569855

Date: 2025-04-11 23:55:45
Score: 1
Natty:
Report link

Specify the Array type and start copying from 1. Although theoretically it could be any number depending on how you got the Byte[*].

len = (Array)byteWithStar.Length;
byte[] arr = new byte[len];
Array.Copy((Array)byteWithStar, 1, arr, 0, len);

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

79569854

Date: 2025-04-11 23:52:44
Score: 1.5
Natty:
Report link

This is because the new Outlook is based on Chromium, which has a feature for marking draggable elements on the page with a "DownloadURL" that will be downloaded on demand when a drop occurs. However, it requires that the drop target application extract the file asynchronously as described here (it appears that Explorer is the only major application that does this).

I created an app that solves this problem so that you can drag/drop these files to any application, not just Explorer. Check it out at https://magicdragin.app and let me know if you have any feedback, thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jeremy Spiegel

79569849

Date: 2025-04-11 23:46:42
Score: 3
Natty:
Report link

The issue is with the indentation of your game loop, the if statements checking the player's movement are outside the while True loop, so they only run once.

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

79569848

Date: 2025-04-11 23:45:41
Score: 10 🚩
Natty: 4.5
Report link

Did you finally find the solution? I am facing a similar problem.

Reasons:
  • RegEx Blacklisted phrase (3): Did you finally find the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Tomasz Dobosz

79569845

Date: 2025-04-11 23:43:41
Score: 1
Natty:
Report link

GPT-AICHAT β€” a universal AI service in Russian: texts, creative, SEO, YouTube and voice

The world of AI is developing rapidly, but most platforms are still complex, paid or not translated into Russian. GPT-AICHAT is a multifunctional online service that combines GPT-4, GPT-4o, GPT-4o-mini, image generators (including DALL E 3, Midjourney and Flux Pro), hundreds of ready-made tools, and all this is in Russian and without complications.

πŸ’‘ What is GPT-AICHAT?

GPT-AICHAT is a platform where you get access to three powerful models at once:

GPT-4o (the latest, multi-format, super-fast);

GPT-4 (accurate and logical);

GPT-4o-mini (light and fast version).

64+ AI tools work together with them, covering tasks from the following areas:

copywriting and blogging;

marketing and SEO;

YouTube and social networks;

programming and web development;

voiceovers and video;

branding and eCommerce;

and even generating images by description.

πŸ”§ Platform capabilities: what is GPT-AICHAT useful for?

πŸ“ Text and article generation

Article, blog, paragraph, heading, introduction, conclusion, description and email generator.

Article wizard: set a topic β€” get a full-fledged material.

TL;DR summary: short excerpts from any text.

Tools for making texts unique, paraphrasing and correcting grammar.

History of queries and your actions β€” easy to get back to what you need.

πŸ’Ό Content for business and SEO

SEO tools: meta descriptions, keys, structure, optimization.

Plagiarism check and AI detection of artificial content.

AI Content Detector β€” determines whether the text has been generated.

Generators of reviews, benefits, solutions, questions (FAQ), email newsletters.

πŸ“Ή YouTube, social networks and media

Generators for YouTube: titles, descriptions, tags, ideas.

Video and voice: AI voiceover, voice-to-video, voiceover, voice chat.

Working with Instagram: posts, hashtags, signatures.

Posts for Facebook, Twitter, VK and other social networks.

Script and video generator based on text.

AI YouTube, AI Video, AI RSS.

πŸ”Š Voice and speech

Duplication of any text in Russian.

Support for speech generation, voice cloning and real-time voice dialogues.

Voice Isolator β€” sound cleaning.

Video voiceover support.

πŸ’» Programming

Generate JavaScript, PHP, Python code.

File Analyzer β€” analyze documents and data.

Generators: solutions, pros/cons, custom answers and scenarios.

🎨 Image generation

DALL E 3, Midjourney, Flux Pro β€” three image generators.

Support for multiple styles, filters, visual templates.

AI Vision β€” understanding and analyzing images.

🌐 Integrations and automation

External bots for websites and Telegram.

Connecting AI chat to a website or online service.

RSS automation (for example, publishing news).

Article schedule, templates for social networks and email.

πŸ”’ Everything under control

Access to 2,300 requests per month in the free plan.

Support for all functions without installation, directly from the browser.

Work with history, editor, notepad, saving documents.

Technical support in Russian.

πŸ‘₯ Who is GPT-AICHAT suitable for?

Copywriters β€” automation and acceleration of texts.

Marketers and SEO specialists β€” fast analysis and content.

Authors, bloggers and SMM β€” ideas, schedule, design.

Students and teachers β€” help with training and analysis.

Developers β€” code generation and solution structure.

Business β€” creation of descriptions, mailings, generation of sales texts.

πŸ“Ž Go to the service: https://gpt-aichat.ru/

🧠 Why is it worth trying?

GPT-AICHAT combines dozens of disparate services into one platform. Here you can write, check, voice, program, visualize and even publish - without unnecessary windows, switching and wasting time. Everything works in Russian, stably and quickly.

And most importantly - all this is available now. Without installation. Without complications. Just follow the link.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ntube Eros

79569841

Date: 2025-04-11 23:35:38
Score: 4
Natty:
Report link

Did you by chance figure out this code I have a similar one I'm working on

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Dee

79569836

Date: 2025-04-11 23:32:38
Score: 1.5
Natty:
Report link

After spending hours searching online without success, I finally noticed the DNS setting in the emulator Wi-Fi. Once I updated it, everything started working perfectly β€” surprisingly simple in the end. I’ve attached a screen recording of the solution in case it helps others.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Alaa Kanaan

79569834

Date: 2025-04-11 23:30:37
Score: 3.5
Natty:
Report link

Found the answer? I'm also currently creating a vpn app on react native and can't establish a vpn connection vless

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Latip Magomedov

79569832

Date: 2025-04-11 23:27:35
Score: 6 🚩
Natty: 4.5
Report link

I'm inclined to believe that I'm also still experiencing this with MSVC 19.43.34808.0, has this been resolved or reported upstream?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved or reported upstream?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Noah

79569811

Date: 2025-04-11 22:58:29
Score: 1.5
Natty:
Report link

This issue stuck with me for hours until I reviewed the Django documentation: https://docs.djangoproject.com/en/4.1/howto/static-files/

Additionally, ensure that the 'static' directory, where all of your static files will be stored and organised in subdirectories, is placed at the root of your project or app, not two levels below it. It should be placed at level as your "manage.py" and "db.sqlite3" file. This resolved the issue for me and made it easy to arrange files.

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

79569805

Date: 2025-04-11 22:44:26
Score: 5.5
Natty:
Report link

Is this still working? I'm trying

~/workspace/my-app/.platform/nginx/conf.d/elasticbeanstalk/myconf.conf

but this doesn't seem to work on Amazon Linux 2023.6.20250317

Reasons:
  • RegEx Blacklisted phrase (2): working?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Stephen Hughes

79569803

Date: 2025-04-11 22:42:25
Score: 1.5
Natty:
Report link

I had the same error. The issue was, due to the fact that there was no http(port:80) URL configured in Webservice URL tab for my reporting server. We use SSL (port 443) so port 80 (http) URL was missing. I had to configure it temporarily to make my RS script work without the connection problem.

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

79569790

Date: 2025-04-11 22:34:23
Score: 0.5
Natty:
Report link

Is there any way to change the git push date or devops push date timestamp in the repository?

No, it is not possible to change the push logs in Azure DevOps.

Note that in general, you can't fully trust Git commit dates and authors. In AzureDevOps, you can trust the Push Logs, as well as the history of Pull Requests. If you could modify the Push Logs you wouldn't be able to trust those either.

Reasons:
  • Blacklisted phrase (1): Is there any
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • High reputation (-2):
Posted by: TTT

79569789

Date: 2025-04-11 22:32:23
Score: 2
Natty:
Report link
  1. First you'll need to provision an app registration in Microsoft entra ID, then assign permissions.

    • Choose a single tenant app,

    • Permissions:

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

79569782

Date: 2025-04-11 22:22:21
Score: 1.5
Natty:
Report link

Check out this repo, it might be useful: sftp-uploader-eng, just install it by

npm i sftp-uploader-eng

For more details see the repo page.

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

79569778

Date: 2025-04-11 22:18:20
Score: 1
Natty:
Report link

If you enter in the lib code, you will see that it don't have an 'export default' statement, so you will need to access the exact name for the function you want

try to import like this:

import { jwtDecode } from "jwt-decode";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pedro Vinicius

79569774

Date: 2025-04-11 22:13:18
Score: 1
Natty:
Report link

You may consider using Google Cloud's Error Reporting service to help you quickly identify and understand errors produced by your service. It achieves this by automatically analyzing and aggregating individual log messages, as well as sending notifications when new errors are detected.

Regarding the graph, it is reasonable to assume that it may be connected to or influenced by the error rates you've observed. For details about the errors, please refer to this Firebase documentation.

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

79569770

Date: 2025-04-11 22:09:17
Score: 4
Natty: 4.5
Report link

The original user has solved the problem and has posted information about it in https://github.com/mtpiercey/ble-led-matrix-controller and https://overscore.media/posts/reverse-engineering-a-ble-led-matrix.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Antonio VΓ‘zquez Blanco

79569766

Date: 2025-04-11 22:04:15
Score: 0.5
Natty:
Report link

If you can target a platform that supports residency sets, e.g. iOS18+or equivalent, you can further optimize resource usage by making resources "resident" ahead of time, as opposed to after you commit the command buffer(which is the case when calling a command encoder's methods). It also allows you to keep resources resident indefinitely, as well as making allocations, or multiple resources, resident all at the same time. This will reduce the CPU overhead, especially if you have a lot of resources. Combined with argument buffers and heaps the overhead can be cut substantially.
Apple documentations on residency sets

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

79569759

Date: 2025-04-11 21:52:13
Score: 2.5
Natty:
Report link

See: https://github.com/awsles/AwsServices
This is regularly updated and includes not only the services, but also the service permissions and links to the related documentation.

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

79569757

Date: 2025-04-11 21:49:12
Score: 1
Natty:
Report link

.colorMultiply(.green)

My easiest way for ProgressView() is to use: .colorMultiply(.green)

I still don't understand why .tint(.green) doesn't work πŸ€·β€β™‚οΈ

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

79569746

Date: 2025-04-11 21:42:10
Score: 1.5
Natty:
Report link

In current version of git, you can simply to a recursive pull

git pull --recurse
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: majorgear

79569741

Date: 2025-04-11 21:40:09
Score: 3
Natty:
Report link

Http client library should be updated to 5:
https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5/5.4
Package names and paths are slightly different.

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

79569737

Date: 2025-04-11 21:35:07
Score: 1
Natty:
Report link

Your error happens because your project uses the JOGL library, but Eclipse cannot find the required JOGL .jaror native .sofiles when running the program. So, to solve the issue, you can add the JOGL .jarfiles to your project's Build Path and configure the native .sofiles location in the Native library location setting. Then clean and run the project again.

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

79569735

Date: 2025-04-11 21:35:07
Score: 1.5
Natty:
Report link

You can build a custom memory controller in gem5 but it requires multiple steps. I recommend following the code in Ramulator2 repository to see how you can build a custom memory model: https://github.com/CMU-SAFARI/ramulator2/tree/main/resources/gem5_wrappers.

Ideally, I recommend building your memory controller by adding a custom one to Ramulator2 or a similar memory simulation framework that works with gem5.

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

79569732

Date: 2025-04-11 21:30:06
Score: 1
Natty:
Report link

Whoever stumbles over this might want to have a look at :user-invalid.

It behaves like :invalid, but is applied right after the user has interacted with the input.

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

79569724

Date: 2025-04-11 21:25:05
Score: 1
Natty:
Report link

Route paths are case sensitive: Try updating the following line in your code from

<Route path = "/Home" Component={Home} />

to

<Route path = "/home" Component={Home} />

Remaining everything is same.

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

79569718

Date: 2025-04-11 21:18:03
Score: 2.5
Natty:
Report link

For me, the issue was that my JedisConfig was set to not use TLS and the Redis was set up to only accept TLS connection.

Workaround was to setup Redis to accept both TLS and Unencrypted Connections

Permanent solution will be updating my Jedis to use TLS

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

79569702

Date: 2025-04-11 21:01:59
Score: 0.5
Natty:
Report link

I would suggest you see the associated label, or the placeholder (within the input tag). And I believe both the username and password input fields should be present for a login form

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

79569698

Date: 2025-04-11 20:58:59
Score: 3
Natty:
Report link

i tried Dpk. that's doesn't work for me, but i add point-events and that's works

img {
  user-select: none !important;
  -webkit-user-drag: none;
  pointer-events: none;
}

That's work for me

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moa

79569696

Date: 2025-04-11 20:56:58
Score: 1.5
Natty:
Report link

It’s a bug with latest Azure CLI (2.71) It’s also broken with Github pipelines

_binary_from_path by itself didn’t work for me. This did:

az bicep uninstall
az config set bicep.use_binary_from_path=false
az bicep install

Source:

https://github.com/Azure/azure-cli/issues/31189#issuecomment-2790370116

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

79569681

Date: 2025-04-11 20:40:54
Score: 0.5
Natty:
Report link

Direct support for Kannada OCR is not available in the standard Google ML Kit Text Recognition as of the current version. The link you provided focuses on ML Kit Digital Ink Recognition, not OCR. The difference between the two is that Digital ink focuses on recognizing handwritten text by analyzing the strokes and movements of a pen or finger on a digital surface, while OCR focuses on extracting text from images of printed or handwritten documents by analyzing the visual shapes of the characters.

I think the workaround for now is to leverage Vertex AI's custom model training capabilities to build a Kannada OCR model. This would involve preparing a dataset of Kannada text images and training a custom model using Vertex AI's AutoML or custom training options. However, this approach would require significant effort in data preparation and model training.

Also, you might wanna check the release notes from time to time to keep you posted for the recent changes, bug fixes and updates.

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

79569677

Date: 2025-04-11 20:35:53
Score: 4
Natty:
Report link

Network simulation will be added to modelica/fmi environment through the future bus layered standard

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

79569675

Date: 2025-04-11 20:33:52
Score: 1
Natty:
Report link

It looks like the value field has been replaced by y-axis, there are instructions on reversing this change here but on the version of Power BI I was testing on this option wasn't available. so your mileage may vary.

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

79569673

Date: 2025-04-11 20:31:51
Score: 1.5
Natty:
Report link

I know this is an old thread but there doesn't seem to be a lot of info around on this behavior. Our EDR recently began flagging files created, written to and deleted within the same second. The file contained null and the hash is very old. The file names and extensions are random and statistically, it occasionally creates a file with a legitimate extension like, sys, php, msi, vbs, etc. We believe this is a component of the Applications Insight telemetry process. The only machines we are seeing it on are running application insights or sharepoint. Today it created a php and an a1g file, both with the same hash. I believe the process may create a complete filename with 11 characters and then pop a "." before the last 3 to arrive at a name.

4ethdxc2.php

6e340b9cffb37a989ca544e6bb780a2c78901d3fb33738768511a30617afa01d

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

79569667

Date: 2025-04-11 20:29:51
Score: 2
Natty:
Report link

My problem was from MacOs that VS code was not enabled to open xcode automatically!

privacy & security -> Automation -> enable VS Code or whatever code editor you're using.

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

79569658

Date: 2025-04-11 20:22:48
Score: 11 🚩
Natty: 5.5
Report link

I've exactly the same issue. Did you find a way to fix that ? I'll be glad to know ! Thanks a lot !

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you find a way to fix that
  • RegEx Blacklisted phrase (1.5): fix that ?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): 've exactly the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Florent-V

79569655

Date: 2025-04-11 20:19:47
Score: 2.5
Natty:
Report link

This is a test answer to check if my SO client scrapes updates correctly sorry for spam))

I'm really sorry fellas

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

79569652

Date: 2025-04-11 20:18:47
Score: 1.5
Natty:
Report link

The problem was traced down to running our application within our Kubernetes environment. The db2 entries failover configurations declared shortName's of the host names (ex: db2prd) instead of a FQDN (ex: db2prd.example.com). This was causing our environment to not be able to resolve to the failover hosts.

Since the clientRerouteAlternateServerName set on the driver was only used upon startup of the application and once connected the DB2 configurations took over it did not end up mattering what we set here at all, and the configurations were correct. It just took updating to FQDN's on the DB2 configs to resolve this.

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

79569644

Date: 2025-04-11 20:12:45
Score: 2.5
Natty:
Report link

this line might return null

echo "SOURCE: ${BASH_SOURCE%/*}"

so you could do

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

echo "$DIR"

instead

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

79569623

Date: 2025-04-11 20:04:43
Score: 0.5
Natty:
Report link

This question is pretty old, but probably still relevant. I, too, like the Conversation scope. However, I never chain them. I tend to have pages backed by a SessionScoped bean that will present a general list of some type of thing, say Quotes, and then if the user chooses to edit or create a new Quote, then I go to a ConversationScoped bean to handle that detail. This allows the user to choose to open multiple Quotes in separate tabs, where each will get their own Conversation, without going crazy trying to remember which tab went with which other tab. It also works well if a quote is opened from an external link, such as one embedded in an e-mail notification or originated by a desktop application, where the new page will get its own ConversationScoped bean and not interfere with any other tabs already open in the same session.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Kevin Rahe

79569601

Date: 2025-04-11 19:46:39
Score: 3
Natty:
Report link

What is going on at HP? All of my legacy calculators, HP 12/15/16C and 41CV worked consistently where the X register is the most current value entered and the operation 2 enter 3 y^^x was always 8. Prime treats the most recent value as Y, a break from tradition. At least the swapped button matches but the Y register threw me. And yes, 2 enter 3 x^^y on the Prime still calculates 8 as well.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: user1766497

79569595

Date: 2025-04-11 19:38:37
Score: 1.5
Natty:
Report link

To solve this, add `anchor-spl/idl-build` to the `idl-build` feature list:

[features]
idl-build = ["anchor-spl/idl-build", ...]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cire musyoka

79569594

Date: 2025-04-11 19:38:37
Score: 0.5
Natty:
Report link

In Python, there's a difference between:

= is for assignment: This is used to assign a value to a variable. For example: x = 1 assigns the value 1 to x.

== is for comparison: This is used to check if two values are equal. For example: if x == 1: print("x is 1")

Why can’t we use = inside an if statement? Because = is not a comparison it's an assignment. Using it inside an if will result in a SyntaxError.

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

79569582

Date: 2025-04-11 19:26:34
Score: 4
Natty:
Report link

Had a dist folder that wouldn't rebuild. Deleted it, ran ng build and it works. Thanks for the comments @David

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @David
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: TrevorGoodchild

79569579

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

They are (standard or custom) names of unsigned int types. Unsigned ints cannot be assigned negative values. For a given length in bits, they have twice as many possible nonnegative values as signed ints.

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

79569575

Date: 2025-04-11 19:21:33
Score: 1.5
Natty:
Report link

In my case: updating the both ```` SUPERSET_WEBSERVER_TIMEOUTandGUNICORN_TIMEOUT ```` helped me, even though in superset frontend this is showing query timeout actually it is gunicorn timeout, after restarting your superset and check gunicorn process whether is it really running with increased timout amount

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

79569569

Date: 2025-04-11 19:18:32
Score: 0.5
Natty:
Report link

Themes can be changed under Settings/Preferences->General->Appearance->Theme drop-down.

It's possible newer versions may respond to your choice of light or dark mode in your OS settings, but in that case you should be able to override the default using these settings.

I believe the settings are found under "Help->Preferences" on Windows; they're under "Eclipse->Settings" on Mac.

Reasons:
  • No code block (0.5):
Posted by: Theodore Murdock

79569567

Date: 2025-04-11 19:18:32
Score: 3
Natty:
Report link

Turns out my div class "grid-container" was already being used on the site. Ugh. Changing that resolved the issue.

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

79569566

Date: 2025-04-11 19:17:32
Score: 1.5
Natty:
Report link

is your issue that you need to create a separate client for each region, and thus the environment variable cannot be used to configure a different region for each of them?

If that is indeed the issue, I would recommend following this example from the AWS docs for connecting via gremlin-console, which shows the region being configured in the code instead of via the environment.

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

79569563

Date: 2025-04-11 19:09:30
Score: 1.5
Natty:
Report link

It's an old question, but I encountered the exact same issue today and none of the fixes mentioned here or in similar questions helped. At least in my case it seems like the issue is with the Flutter plugin itself, so I just downgraded to an older Android Studio version (from 2024.3.1 to 2024.2.2). You can manage Android Studio versions easily through JetBrains Toolbox app.

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

79569559

Date: 2025-04-11 19:08:30
Score: 1.5
Natty:
Report link

On the PR page, in the right sidebar there is a section called Notifications. You can unsubscribe from that particular PR by tapping the Unsubscribe button. Click "Customize" to see other options. See the image I attached:

An image showing the Unsubscribe button for a GitHub PR

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

79569556

Date: 2025-04-11 19:06:29
Score: 4
Natty:
Report link

Solution provided in comment by @rene works

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @rene
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Anand

79569555

Date: 2025-04-11 19:05:28
Score: 4
Natty:
Report link

sorry may i ask you whether you fixed it or not and how. I have the same bug and dont know what to do

Reasons:
  • Blacklisted phrase (1): may i ask
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SΖ‘n BΓΉi

79569545

Date: 2025-04-11 18:55:26
Score: 3
Natty:
Report link

When I click on the pencil, I'm told that I must be on a branch to make changes. When I click on "Update Readme.md", it shows my file with markup codes, etc., but I'm unable to place my cursor in it and edit. At this point, the pencil has disappeared.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Nick Kennedy

79569544

Date: 2025-04-11 18:54:25
Score: 2
Natty:
Report link

Here's your solution: https://sqlai.app/share.php?id=e7d6da40617bd8dda5a16fbe7b785a58
Let me know if you have any more queries.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manish Sharma

79569536

Date: 2025-04-11 18:49:24
Score: 1.5
Natty:
Report link

Switching from zipping with ArchiveFiles@2 to dotnet publish made the deployment of the web app successful.

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

79569519

Date: 2025-04-11 18:39:21
Score: 1
Natty:
Report link

You can't do that anymore. It was possible a while through options, but now they removed that to force everyone to the new "experience".

I think the main thing that we can do is keep reporting and upvoting issues with this.

Please feel free to upvote:

Deprioritize "smart" abbreviations in Code Search

https://developercommunity.visualstudio.com/t/Deprioritize-smart-abbreviations-in-Co/10694279?sort=newest

(might be most related to yours)

Lots of irrelevant files in Code Search cluttering search results

https://developercommunity.visualstudio.com/t/Lots-of-irrelevant-files-in-Code-Search/10887579?sort=newest

Visual Pass on the new Code Search

https://developercommunity.visualstudio.com/t/Visual-pass-on-the-new-Code-Search/10525569?sort=newest

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Dirk Boer

79569516

Date: 2025-04-11 18:38:21
Score: 2.5
Natty:
Report link

The initial insert sets ver = 0, and the UPDATE doesn't apply because ver wasn't yet updated in the same statement context. By using a CTE that returns id and time, and then updating based on that, we ensure the inserted values are immediately available to compute ver = id + time.

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

79569512

Date: 2025-04-11 18:35:20
Score: 2
Natty:
Report link

Besides running VS as administrator and making sure you're running a 64bit command prompt and configuring VS for C/C++ tools, if the user who configured VS for C/C++ projects isn't the same user who logs in as admin, and if THAT user doesn't have VS configured, nmake will still be unable to find appropriate header paths.

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

79569510

Date: 2025-04-11 18:34:18
Score: 9.5 🚩
Natty:
Report link

Did you ever figure this out, I am having the exact same issue.

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

79569498

Date: 2025-04-11 18:27:15
Score: 6 🚩
Natty:
Report link

Downvote this answer to get me Peer Pressure badge.

Reasons:
  • RegEx Blacklisted phrase (2): Downvote
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Haris Mahmood

79569491

Date: 2025-04-11 18:23:15
Score: 0.5
Natty:
Report link

Simple and Easy way.

string stringToCheck = "hi this is text1";
string[] givenStringArray = { "text1", "testtest", "test1test2", "test2text1" };

bool included = givenStringArray.Any(x =>
stringToCheck.ToUpper().Contains(x.ToUpper()));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pankaj Goel

79569489

Date: 2025-04-11 18:21:14
Score: 2.5
Natty:
Report link

The problem is that you're double-encoding the product title. You're encoding it when creating the URL with encodeURIComponent and the router is likely encoding it again. You need to stop encoding the title when building the route.

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

79569488

Date: 2025-04-11 18:20:13
Score: 13.5
Natty: 7.5
Report link

I have the same problem in Peru. Did you manage to solve this?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you manage to solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samir Rifai

79569486

Date: 2025-04-11 18:20:13
Score: 2
Natty:
Report link

If I understand the problem right, might be able to create an AUP file and open audacity with that file which will open a project with both audio files in it. https://manual.audacityteam.org/man/audacity_2.html

I am less familiar with subprocess but this might solve your issue: How to terminate a python subprocess launched with shell=True

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

79569474

Date: 2025-04-11 18:09:11
Score: 0.5
Natty:
Report link

The override option is not present in the "Enable automatic completion" function, but only in the "Complete" function from the drop down menu:

enter image description here

There they should see the "Override branch policies and enable merge" selection. Also the merge type can be overridden.

But perhaps you already knew this, but anyhow your screen capture was from "Enable automatic completion".

If the reason is still about permission settings, you can download the full security definitions from branch policy settings:

enter image description here

and search if there is any group where the user could belong where "Bypass policies when completing pull requests" is "Deny".

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

79569471

Date: 2025-04-11 18:06:10
Score: 1
Natty:
Report link

Are you sending the "KeepAlive" messages whenever you have silence?

I know Deepgram's documentation says they will close the connection if there's silence for more than 10 seconds (https://developers.deepgram.com/docs/audio-keep-alive), but we make sure to send the message before that threshold, around 5 seconds for us.

Another thing you might want to look into, are you using raw or compressed audio? Because if you're using compressed audio and there is some sort of blip in the connection, you need to make sure you store the first audio chunk (header) and re-send it when re-connecting before sending any additional audio chunks.

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

79569470

Date: 2025-04-11 18:06:10
Score: 3.5
Natty:
Report link

As a frustrating workaround, you can implement the read by hand, passing impersonated credentials to the worker.

See https://stackoverflow.com/a/79569386/23744045

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

79569452

Date: 2025-04-11 17:57:08
Score: 3.5
Natty:
Report link

tworstu hnftwhn elttaet lohrsfr aceebly sapaeos ttoshyt kipuido notrncr onaedoe

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

79569447

Date: 2025-04-11 17:53:07
Score: 0.5
Natty:
Report link

was running into the same issue. The issue is that updating state in 1 beforeload (like __root) for another beforeload (like _auth) doesnt work. the state is correctly updated but the second beforeload still reads the stale data. that's just how react works unfortunately. using flush sync fixes it but it is flush sync. online people suggested using an external store outisde of react

my mock up code (hard coded just for testing routing)

export const Route = createRootRouteWithContext<MyRouterContext>()({
  beforeLoad: async ({ context }) => {
    if (!context.auth.isAuthenticated) {
      //  api auth/me call
      await new Promise((resolve) => setTimeout(resolve, 500));
      const apiToken = "1ausidhiausd2";
      const userData: User = {
        email: "[email protected]",
        provider: "EMAIL",
        username: "markmark",
      };
      const res = { accessToken: apiToken, user: userData };
      if (res) {
        flushSync(() => {
          context.auth.setUser(res.user);
        });
        context.auth.setAccessToken(res.accessToken);
        //context.auth.isAuthenticated = true;
      } else {
        context.auth.setUser(null);
        context.auth.setAccessToken(null);
        //context.auth.isAuthenticated = false;
      }
    }
  },
  component: RootComponent,
});
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29684365

79569446

Date: 2025-04-11 17:53:07
Score: 2.5
Natty:
Report link

"You don't need it" is a HORRIBLE (and arrogant) answer.

Try using $stmt->rowCount() to see how many rows were (successfully) inserted.

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

79569441

Date: 2025-04-11 17:50:06
Score: 4.5
Natty:
Report link

Upvote this answer to get me Disciplined badge.

Reasons:
  • Blacklisted phrase (0.5): Upvote
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Haris Mahmood

79569433

Date: 2025-04-11 17:41:03
Score: 3
Natty:
Report link

localhost is not accessible for Android/IOS use your network ip address and run you backend on network ip

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

79569430

Date: 2025-04-11 17:38:01
Score: 6 🚩
Natty: 6
Report link

Magari spiegare quale era questo errore?

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

79569417

Date: 2025-04-11 17:26:59
Score: 2
Natty:
Report link

you can simply use the command
git clone https://usename:[email protected]/myproject/_git/myrepo/

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

79569412

Date: 2025-04-11 17:22:57
Score: 1
Natty:
Report link

the only solution I've found even for TableLayoutPanel scenario, is to just use SelectedIndexChanged, u just refocus to another component e.g. a dummy one, or any other on your form.
e.g.

private void fpsComboBoxPreview_SelectedIndexChanged(object sender, EventArgs e)
{
    button7.Focus();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vlad Pocris

79569411

Date: 2025-04-11 17:22:57
Score: 0.5
Natty:
Report link

You'd want to reverse the 'start of line' carrot and the comma though if using this for anything where the first field may be null, otherwise it will return what should be the second field instead of the null first field

select
',UK,244,,Mathews' AS string_key_NULL_1
  ,REGEXP_SUBSTR(string_key_NULL_1, '(,|^)\K([^,]*)(?=,|$)',1,1) --Result: 'UK'--Incorrect
  ,REGEXP_SUBSTR(string_key_NULL_1, '(^|,)\K([^,]*)(?=,|$)',1,1) --Result: Null--Correct Result
,'RES,UK,244,,Mathews' AS string_key_NON_NULL_1
  ,REGEXP_SUBSTR(string_key_NON_NULL_1, '(,|^)\K([^,]*)(?=,|$)',1,1) --Result: 'RES'--Correct Result (Because first field is not null)
  ,REGEXP_SUBSTR(string_key_NON_NULL_1, '(^|,)\K([^,]*)(?=,|$)',1,1) --Result: 'RES'--Correct Result
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jobastion

79569408

Date: 2025-04-11 17:21:57
Score: 0.5
Natty:
Report link

If your original data was made with the following formula, this will give you a value between 1 and 7 and stored in cell A1:

=rand()*6+1

You could then do the following:

=MIN(MAX(A1+RAND()*4-2,1),7)

I like the more granular approach of rand()*6+1 vs randbetween - it gives you the same answer, but is more easily generalized with basically the same number of characters being typed.

edit: randbetween gives you integer values only, so in truth you'd need =round(rand()*6+1,0) to get the EXACT same values. That being said, when I'm trying to get random numbers I usually want artificial extra precision.

If you don't, the second formula can also be modified to be:

=round(MIN(MAX(A1+RAND()*4-2,1),7),0)

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