79530407

Date: 2025-03-24 07:34:10
Score: 4
Natty:
Report link

If you’re seeing the same error duplicated across all targets in Xcode 14 or newer, even though only one target is active, here’s the actual fix:

Go to Xcode > Settings > General, and under the “Issues” section and disable “Show live issues”.

This setting is responsible for scanning and reporting issues from all targets in your project or workspace, regardless of which one is currently selected. That includes static analysis, preprocessor errors, and undeclared identifiers – all duplicated for each target that includes the source file.

Tested and confirmed to resolve the issue.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): seeing the same error
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Piotr

79530403

Date: 2025-03-24 07:32:09
Score: 4.5
Natty: 4.5
Report link

How to route audio to bluetooth? app is crashing in android

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Pranav Jha

79530398

Date: 2025-03-24 07:30:08
Score: 0.5
Natty:
Report link

Try specifying the stream in your basic config:

logging.basicConfig(stream=sys.stdout, level=logging.INFO)

Otherwise the logs just end up in stderr or in the jupyter server logs which is not very convenient.

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

79530389

Date: 2025-03-24 07:25:08
Score: 0.5
Natty:
Report link
kubectl get pods -A | grep Terminating

ns=<your namespace that has terminating pods>
kubectl get pods -n $ns | grep Terminating | awk '{print $1}' | xargs kubectl delete pods -n $ns --force --grace-period=0
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rraj gautam

79530382

Date: 2025-03-24 07:17:06
Score: 2
Natty:
Report link

It looks like the error education is undefined is happening because the variable isn’t defined at the time it’s being used. Double check that you’ve declared and properly initialized the variable sometimes a simple typo or scope issue can trigger this. For those who are also balancing their studies with coding challenges, apdm offers some excellent educational resources that might help clarify similar issues and boost your overall learning experience.

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

79530381

Date: 2025-03-24 07:17:06
Score: 8 🚩
Natty: 4
Report link

Are you able to release the app with the same issues as mentioned above?

Issue found: Voice commands

• Media Apps

Your app does not respond (no music played or error message shown) after issuing a voice command.

Have you found a way to resolve the issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve the issue?
  • RegEx Blacklisted phrase (2.5): Have you found a way to resolve the issue
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Nirali Bhatt

79530366

Date: 2025-03-24 07:10:04
Score: 1
Natty:
Report link

By the way, let's not forget, that we have an additional network access for updating.

Let's assume we have a check that some object has not changed. We can go either to DB or cache. Going to database probably would be less efficient due to longer reading. But every time we update the object we have to go additionally to the cache and update a record.

So in some cases I suppose distributed cache is not worth it. Especially because it adds extra complexity. It shouldn't be used recklessly for every case.

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

79530350

Date: 2025-03-24 07:02:02
Score: 2
Natty:
Report link

You might be using the latest Kendo UI for Vue, but the stylesheets are definitely not the latest. Kendo themes are already at v10, but the example references v6. Also releases from 2023 and onward do not distribute the font icons any more, so if you rely on them you should reference them as well - [docs](https://www.telerik.com/kendo-vue-ui/components/styling/migrating-font-to-svg) and [docs](https://www.telerik.com/design-system/docs/foundation/iconography/font-icons/#usage).

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Aleksandar

79530343

Date: 2025-03-24 06:53:01
Score: 1.5
Natty:
Report link

Thank you my Boss for your answer, I found the solution the problem is advertising Applovin with agp "8.8.2". When I deleted the configuration of Applovin the problem was solved. But when I transform the Gradle Plugin version to "8.7.3" there is no problem.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): I found the solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: taieb chtourou

79530339

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

I asked this question because I was learning regex in JavaScript, and one of the most popular websites I was using did not specify whether octal escape sequences were deprecated or not. At the time, I didn't know that octal escape sequences were deprecated.

However, I received the answer that octal escape sequences are now deprecated in JavaScript, and regular expressions no longer allow them. Instead, I can use hexadecimal (\xXX) or Unicode (\uXXXX) escape sequences without issues.

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

79530338

Date: 2025-03-24 06:51:00
Score: 1.5
Natty:
Report link

So, This warning is caused due to not using the variable priceFeed anywhere other the declaration part. I'm pretty sure the smart contracts can be compiled and run even if it has a couple of warnings. So, I would not worry about it.

If you want to have the variable and also not have the warning, I would suggest using it in a dummy method or a print statement.

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

79530331

Date: 2025-03-24 06:48:00
Score: 2
Natty:
Report link

For those looking to retrieve EU legal documents via API, the EUR-Lex API requires SOAP requests, which can be cumbersome to implement. However, there is an alternative REST API available for EUDR (European Union Deforestation Regulation) compliance.

The EUDR REST API provides structured access to relevant regulatory data and is free for up to 250 API calls. This might be a simpler solution for some use cases compared to SOAP.

You can find more details and API documentation here: www.eudr-api.eu

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

79530330

Date: 2025-03-24 06:46:59
Score: 1.5
Natty:
Report link

Have you tried using clipatextents, it is hard to debug without code.

https://www.scichart.com/documentation/win/current/SciChart.Charting~SciChart.Charting.ClipMode.html

ClipAtExtents forces the panning operation to stop suddenly at the extents of the data

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tom

79530317

Date: 2025-03-24 06:40:58
Score: 0.5
Natty:
Report link

Now the URL scheme is changed.
googlehome://

Try this now.

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sarath Kumar

79530316

Date: 2025-03-24 06:39:58
Score: 3
Natty:
Report link

You can try https://www.nuget.org/packages/DeepCode.Return/ for returning results from service/commad/query. This package impletements results pattern at core and got some nice simple features to it.

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

79530315

Date: 2025-03-24 06:39:58
Score: 2
Natty:
Report link

To estimate the row height, I write a function(see my question), however it is not perfect (welcome all to reply that question with more accurate estimate of row height) but it might serve your requirement. Using that function, I am creating this PDF with page breaks as I required.

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

79530310

Date: 2025-03-24 06:35:57
Score: 0.5
Natty:
Report link

i tried a couple of approaches, and found that old (depricated) mpl-finance working good. But old API is available in new version of library as original_flavor.

from mplfinance.original_flavor import candlestick_ohlc

df = get_current_data(limit=150)
df_asks, df_bids = get_order_book_data(bookStep="step0",limit=150)
xs = mdates.date2num(df["timestamp"])
fig, ((ax1, ax2),(ax3,ax4)) = plt.subplots(2,2, sharex='col', sharey='row', width_ratios=[5,1], height_ratios=[5,1])
hfmt = mdates.DateFormatter('%m-%d %H:%M:%S')
ax1.xaxis.set_major_formatter(hfmt)
candlestick_ohlc(ax1, zip(xs, df['open'], df['high'], df['low'], df['close']), colorup='g', colordown='r', width=0.0004)
ax2.plot(df_asks["amount"],df_asks["price"],"r")
ax2.plot(df_bids["amount"],df_bids["price"],"g")
ax3.bar(xs,df["volume"], width=0.0005)
plt.subplots_adjust(wspace=0.0,hspace=0.0)
ax1.set_title("BTC USD")
ax2.set_title("Orders Book")
ax1.set_ylabel("Price")
ax3.set_ylabel("Volume")
ax1.grid()
ax2.grid()

plt.show()

Result: enter image description here

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

79530309

Date: 2025-03-24 06:35:57
Score: 1
Natty:
Report link

On the Windows SDK installer, there is only C++ x86 option while I'm working on a x64 program, is that the reason?

I think yes. Please make sure that "Windows SDK for Desktop C++ amd64 Apps" and "Windows SDK for Desktop C++ x86 Apps" has been checked.

  1. Open Control Panel, right-click Windows 10.0.17763, select Change.

  2. Select "Windows SDK for Desktop C++ amd64 Apps" and "Windows SDK for Desktop C++ x86 Apps", then click Change. enter image description here

3.Restart VS and reopen your project to see if 10.0.17763 shows up.

If this doesn't help, please consider Reinstall/Repair Windows SDK(10.0.17763.0) and reinstall the C++ workloads in VS, from VS Installer->Modify. Try to reinstall VS 2022 if possible.

Reasons:
  • RegEx Blacklisted phrase (1.5): help, please
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Dou Xu-MSFT

79530299

Date: 2025-03-24 06:28:56
Score: 0.5
Natty:
Report link

enter image description here

import React from 'react';

const TableComponent = () => {
  return (
    <div className="table-container p-4">
      <table className="table-auto w-full border-collapse">
        <thead>
          <tr>
            <th className="border px-4 py-2">Header 1</th>
            <th className="border px-4 py-2">Header 2</th>
            <th className="border px-4 py-2" colSpan="2">Header 3 (Colspan 2)</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td className="border px-4 py-2">Row 1, Col 1</td>
            <td className="border px-4 py-2">Row 1, Col 2</td>
            <td className="border px-4 py-2" rowSpan="2">Row 1-2, Col 3 (Rowspan 2)</td>
            <td className="border px-4 py-2" colSpan="2">Row 1, Col 4 and 5 (Colspan 2)</td>
          </tr>
          <tr>
            <td className="border px-4 py-2">Row 2, Col 1</td>
            <td className="border px-4 py-2">Row 2, Col 2</td>
            <td className="border px-4 py-2">Row 2, Col 4</td>
          </tr>
          <tr>
            <td className="border px-4 py-2">Row 3, Col 1</td>
            <td className="border px-4 py-2">Row 3, Col 2</td>
            <td className="border px-4 py-2">Row 3, Col 3</td>
            <td className="border px-4 py-2" colSpan="2">Row 3, Col 4 and 5 (Colspan 2)</td>
          </tr>
        </tbody>
      </table>
    </div>
  );
};

export default TableComponent;
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar Vaghela

79530291

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

I failed to set background-image to image element, this bothered me for a whole day.

And then I realize the image element will display broken image if src is empty, that wat what I saw.

To those who had the same problem, try to use

img {
  content: url('xxx');
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yangxiao Ou

79530287

Date: 2025-03-24 06:22:55
Score: 0.5
Natty:
Report link

It indicates whether a network connection is not metered. Meaning that the data usage on this network is not restricted by cost/pricing concerns.

Usage Scenario:

It means the network is considered unlimited or free, e.g. an unmetered Wi-Fi connection. If it is false, it means the network is metered e.g. a mobile data connection with a data cap.

Most home and office Wi-Fi networks are unmetered by default.

A user can manually mark a Wi-Fi network as metered in the Android settings. This would make this return false.

Some carriers offer -unlimited data plans where certain networks may be marked as unmetered.

Some SIM-based internet providers may mark their connection as unmetered.

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

79530281

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

The accepted answer wil only list the files you have checked out. To get a list of all checked out items and who has it checked out, run this:

tf status $/ /user:* /recursive
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cillié Malan

79530280

Date: 2025-03-24 06:20:53
Score: 6.5 🚩
Natty:
Report link

version 0.9.3 works fine use it i have the same issue in margin left but 0.9.3 is works fine

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: getasew adane

79530278

Date: 2025-03-24 06:19:53
Score: 2
Natty:
Report link

in my case in my Windows app i had a StaticResource of type x:String used as GridLength for a Grid (i wanted to save value star (*) in the Resource Dictionary). Worked in Debug but crashed in Release at startup.

To find out where the exception is thrown it is necessary to add DEBUG constant to Release build in Project properties.

DEBUG symbol in Release build

Then launch the app with debugger attached, the exception info will be shown.

Harry Smith's answer works too but just removes the error and not the cause.

As Rashid Khan wrote I also can't believe MAUI is in production.

I just logged in to Stackoverflow to share this solution, wasted 3 days on this.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: qtec-tm

79530276

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

Seems

from pydantic import AliasChoices, BaseModel
..
Field(validation_alias=AliasChoices("old_name", "new_name"))

solve it

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

79530261

Date: 2025-03-24 06:09:51
Score: 3
Natty:
Report link

You can install Nodemon to auto-update the node.js application, you do not need to stop and start project again to see the changes.

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

79530256

Date: 2025-03-24 06:04:49
Score: 10
Natty: 9
Report link

I follow the steps from (https://learn.microsoft.com/en-us/onedrive/developer/file-handlers/?view=odsp-graph-online), it can not show any custom icons and my new action, can you help me ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sean

79530233

Date: 2025-03-24 05:58:48
Score: 0.5
Natty:
Report link

you need to refer this action in the market place for checking out code base.

https://github.com/actions/checkout

by default , submodules are not checked out. you need to explicitly pass submodules as true.

- uses: actions/checkout@v4
  with:
     submodules: true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dayananda D R

79530207

Date: 2025-03-24 05:50:46
Score: 1.5
Natty:
Report link

This is not a question about oh-my-posh but about Get-ChildItem . You can find a guide on how to change that behaviour here.

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

79530196

Date: 2025-03-24 05:39:44
Score: 1
Natty:
Report link

navigationsBarsPaddingModificador al padre Row:Row(

Modifier.fillMaxWidth()

    .wrapContentHeight()

    .navigationBarsPadding(),

horizontalArrangement = Arrangement.SpaceEvenly,

verticalAlignment = Alignment.CenterVertically

) {

//...

}

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

79530193

Date: 2025-03-24 05:38:44
Score: 1
Natty:
Report link

You can use Reflection api to get an instance of Singleton class, by bypassing the private constructor with getConstructor().newInstance(). So yes you can create multiple instance of a singleton class but it will violate the concept of Singleton class.

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

79530189

Date: 2025-03-24 05:32:42
Score: 3.5
Natty:
Report link

It helped to me:

  1. set "RunMsCodeCoverage" to No
    enter image description here;
  2. go to csproj file with tests and remove items start with "<RunSettingsFilePath>"
    enter image description here
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BIGNIK

79530188

Date: 2025-03-24 05:30:42
Score: 2
Natty:
Report link

You just need oneline command:

sudo apt --fix-broken install
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: timerring

79530182

Date: 2025-03-24 05:26:41
Score: 1
Natty:
Report link

No, there isn't. If you do manage to find some work around, don't expect it to continue to work in future versions (or past versions). The supported way to do this is the SECURE flag. Which blocks both, because the idea is that you have data that shouldn't be saved to disk. You mention AccessibilityService- you will not be allowed on the play store if you use that- only actual accessibility apps are allowed to use it, and blocking recording is not an accessibility usecase (if anything it could be argued to be the opposite, as you would possibly break screen readers or other methods).

I honestly question your need for this functionality, other than that some PM or designer thought it would be cool. If you want to block recording, you want to block screenshots as well. Otherwise they can just take a screenshot every 1/30th of a second and have a movie (or use a second device filming the screen). What functionality does it add to block one but not the other?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Gabe Sechan

79530181

Date: 2025-03-24 05:26:41
Score: 1.5
Natty:
Report link

Thanks to the previous answer which links the github issue I have found the solution.

I had to add the OpenApi version like this,

 app.UseSwagger(c =>
 {
     c.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi2_0;
 });
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Khandakar Rashed Hassan

79530171

Date: 2025-03-24 05:17:40
Score: 1
Natty:
Report link

1. create all 'DB2's tables in DB1.

2. Make one function (on the opening activity) to copy data from the DB2's tables into DB1 (which data you required to continue)

3. make sure this function should run one time only.

4. By the ext versions, ignore the DB2. And later on (after a while) you can remove the DB2.

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

79530168

Date: 2025-03-24 05:17:39
Score: 5.5
Natty: 5.5
Report link

Here is official Documentation

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ha Shing Thang

79530164

Date: 2025-03-24 05:15:39
Score: 0.5
Natty:
Report link

The issue resolved when i made changes in metadata.josn file:

{
    "Endpoint": "",
    "CodeSigningAccountName": "myapp",
    "CertificateProfileName": "myapp"
}

Here i replace SigningProfileName with CertificateProfileName and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MANSI

79530129

Date: 2025-03-24 04:35:32
Score: 3.5
Natty:
Report link

Just add a very large z-index to the toastContainer, I'm sure that should work.

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

79530111

Date: 2025-03-24 04:09:27
Score: 3.5
Natty:
Report link

pls gave me a demo(example) to i learn .i comcern about that 2nd method

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

79530099

Date: 2025-03-24 03:54:24
Score: 1
Natty:
Report link

FIXED.

Make sure if you're upgrading from SDK 51 to 52 to update your "@expo/config-plugins" to "~9.0.0" and "@expo/prebuild-config" to "~8.0.0".

No other changes needed to be made for Managed Workflow.

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

79530098

Date: 2025-03-24 03:51:23
Score: 1
Natty:
Report link

Change order of declared routes to this:

{ "src": "/test.php", "dest": "/api/test.php" },
{ "src": "/(.*)", "dest": "/api/index.php" },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Franck Mercado

79530097

Date: 2025-03-24 03:51:23
Score: 5.5
Natty: 5.5
Report link

Would it work if you split the column using (type)/ as the separator and then just keep the last column?

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

79530086

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

For anyone reading this in 2025, I found an interesting and very easy solution after some time: Hard refresh your browser with CMD+Shift+R (or Ctrl+Shift+R).

If you look in your networks tab in the developer console, you might find what I did, which is that the browser is not even attempting to fetch the favicon.

The reason that adding it to public/images works for so many people is because this triggers the browser to load the favicon because it is a new resource in a new place. Interestingly, if you delete this favicon from public/images, and then re-add it with the same name, you will find that your favicon once again breaks.

It seems that the browser somehow caches the non-existence of your icon, and then decides not to fetch again when it is re-added. Performing a hard refresh with CMD+Shift+R forces the browser to re-fetch the icon, and everything works again.

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

79530085

Date: 2025-03-24 03:41:21
Score: 2
Natty:
Report link

Well, I usually use shortening of URLs from my WordPress blog running in docker on my laptop and converted to static HTML and publishing on S3. These shortened URLs are used to share the content on social media. The full source and helper applications along with the deployment sam template are shared on GitHub https://bz2.in/2zo4tf

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

79530084

Date: 2025-03-24 03:41:21
Score: 1.5
Natty:
Report link

android.util.Log is mainly used to print to console/logcat. maybe you should consider the system shared buffer size limit. For any program in general, the contents of the log should not be too large, I don't think the maximum should be more than 1024 bytes, and the recommended value is no more than 256 bytes. If you need to enter it into the log, you should consider persisting it to your disk.

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

79530081

Date: 2025-03-24 03:35:20
Score: 0.5
Natty:
Report link

It is recommended not to put just the face alone, but to have some external features, which can make the AI ​​model recognize it better. The following is a reference picture that you can use and test.

Reference pictures

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nick

79530074

Date: 2025-03-24 03:28:19
Score: 2.5
Natty:
Report link

This isn't supported in Flink 1.18. Looks like it'll be available in the next release (as of 3/23/2025) https://issues.apache.org/jira/browse/FLINK-35702.

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

79530066

Date: 2025-03-24 03:14:17
Score: 4
Natty: 5
Report link

Hey so I received some 4wmm on base the code is messed up I need to run an account bpass/upgrade. Is anyone willing to help I’ll make it worth it for any help if I’m able to do this there’s a lot of 0’s at the end of the number

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): any help
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jesse82

79530065

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

Uncaught (in promise) TypeError: Cannot set property connectAsync of # which has only a getter

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

79530060

Date: 2025-03-24 03:11:15
Score: 2
Natty:
Report link

I just tested this out (as part of investigating preventing unintended DynamoDB table deletions in the arc.codes framework), and can confirm that adding these properties onto an existing table does not cause interruptions, like the table being recreated.

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

79530048

Date: 2025-03-24 03:01:14
Score: 2
Natty:
Report link

If using Apple M1 ARM64, do the following instead:

sudo CXXFLAGS="-I/opt/homebrew/opt/unixodbc/include/" LDFLAGS="-L/opt/homebrew/lib/" pecl install sqlsrv

sudo CXXFLAGS="-I/opt/homebrew/opt/unixodbc/include/" LDFLAGS="-L/opt/homebrew/lib/" pecl install pdo_sqlsrv

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

79530044

Date: 2025-03-24 02:57:13
Score: 1
Natty:
Report link

You may read this document

The browser has to be launched to provide inspector URI

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Ruikai Feng

79530031

Date: 2025-03-24 02:38:10
Score: 0.5
Natty:
Report link

I don't understand. How is it not a node if the finalGContainer was succesfully created using the "createElement" function?

as pointed out in the comments previously, createElement does not create a DOM node. When you console log finalGContainer you'll see it's a Symbol instead of a <g> SVG element

In order append finalGContainer as a child of the SVG, you have two options

const htmlStr = ReactDOMServer.renderToString(finalGContainer)
const domNode = new DOMParser().parseFromString(htmlStr, 'text/html').body.firstChild
svg.appendChild(domNode)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: fitsum

79530029

Date: 2025-03-24 02:37:10
Score: 1.5
Natty:
Report link

I've had this same issue for a couple days now trying to figure it out. the above solutions both worked for me. I was able to finally see the error by digging through the Trace table in appinsights and seeing that there was some dependency not met, "azure.monitor" in my case, even though it was in the requirements.txt file. To make matters worse, I was using the yml file that the azure Function App itself built in my repo when i connected it via the Deployment Center in the portal. In that yml file, it doesn't specify the -t parameter for the pip install command. It does gather all the reqs, but it nests it under a venv folder structure that apparently az functions doesn't like. With the -t . parameter, they all get dumped into the root folder and it is able to see them there. I tried the remote-build=true as well to compare, and it does create a directory structure under root as well, but az functions seems to handle that just fine (.python_packages/lib/site-packages/...).

Reasons:
  • Blacklisted phrase (1): days now
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dijitalD

79530011

Date: 2025-03-24 02:18:06
Score: 4
Natty:
Report link

Looks like there is no way to do this. Please upvote this feature request if you are interested in Microsoft adding it: https://feedback.azure.com/d365community/idea/a5403f9c-7226-ec11-b6e6-000d3a4f032c

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Orlando Colamatteo

79530003

Date: 2025-03-24 02:06:04
Score: 9 🚩
Natty: 4.5
Report link

Have you found the answer? I am facing the same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found the answer
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ekta-NZTR

79529984

Date: 2025-03-24 01:33:59
Score: 1.5
Natty:
Report link

Yes, I understand that HylaFAX can be costly and lacks customization. Instead, consider ICTfax, an open-source solution with T.38/G.711 support and REST APIs. You can deploy it on EC2 with a SIP trunk to reduce costs while integrating seamlessly with your app. Building a custom T.38 service on EC2 using FreeSWITCH is feasible but it will require more VoIP expertise. AWS SaaS, like Chime SDK or APIs, may not meet your flexibility or budget needs. You can explore ICTfax further at ICT Innovations and test it for your use case.

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

79529979

Date: 2025-03-24 01:28:58
Score: 2.5
Natty:
Report link

follow steps will slove this problem.

  1. react -> ^18.3.1, react-native -> 0.76.5
  2. modify AndroidManifest.xml file, remove xml package attr
  3. add gradle.properties, see: https://github.com/Emt-lin/react-native-svga-player/blob/master/android/gradle.properties
  4. update gradle version: gradle-5.4.1 -> gradle-8.13
  5. most importantly step, modify build.gradle file: remove maven plugin setting、add namespace arg, more see: https://github.com/Emt-lin/react-native-svga-player/blob/master/android/build.gradle

more detail see: https://github.com/Emt-lin/react-native-svga-player

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

79529977

Date: 2025-03-24 01:26:57
Score: 1
Natty:
Report link

check this out. It works for me. https://www.youtube.com/watch?v=-r8m2qNJ3Sg

If you see carefully, the method to add kotlin-parcelize in android studio meerkat is the same process than previous versions. Add the plug in in the file build.gradle.kts (Module).

id("kotlin-parcelize")

plus a new step. Add the plug in in build.gradle.kts(project) as follows

id("org.jetbrains.kotlin.plugin.parcelize") version libs.versions.kotlin apply false
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1): works for me
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SosaCD

79529935

Date: 2025-03-24 00:48:51
Score: 2.5
Natty:
Report link

I am experiencing the same issue. I live in a country where my country is not included in the payment methods available. It’s frustrating because we do have Visa and MasterCard debit cards for online transactions.

In my country, we cannot use any online payment methods other than the Visa payment gateway. However, we do have a local payment gateway as well.

I am looking to adapt my app for use in my country, but I will only be using the payment method available here. My question is, how can I work around the fact that Google Pay is not available in my country? Considering that payments through the app will be made directly to my local banks, what kind of limitations should I expect? Also note that this will not be the first app in my country.

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ken

79529925

Date: 2025-03-24 00:33:48
Score: 3.5
Natty:
Report link

To me works very well your hint (upgrade to "@react-navigation/drawer": "^6.6.3"). Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergio Vicente

79529922

Date: 2025-03-24 00:30:48
Score: 0.5
Natty:
Report link

In a ServiceNow CMDB relationship diagram (which is actually a Node-Link diagram), a Node is used to represent a CI (cmdb_ci) and a Link is used to represent a CI Relationship (cmdb_rel_ci).

So from ServiceNow's perspective, a Node is a visual representation of a CI in the CMDB.

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

79529921

Date: 2025-03-24 00:30:47
Score: 6 🚩
Natty:
Report link

Which version of android studio do you use?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: user30036029

79529918

Date: 2025-03-24 00:26:46
Score: 4.5
Natty:
Report link
**Logins**

Forgot password

buypbc code

thanks for contacting enter image description here

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Blue pay Customer service

79529917

Date: 2025-03-24 00:26:46
Score: 1
Natty:
Report link

I understand the problem you are facing and have faced it before. Chrome and other similar browsers won't allow the Camera option on purpose due to security reasons. I have also heard that google sites doesn't support some methods part of JS. What I had to do for my personal project was to make sure permissions was allowed on each browser and the security was decreased. I allowed Camera and other permissions on my browser and it finally worked. If that doesn't work you could also try running it on your computer first to test it. I used VSCODE and opened the HTML file on my computer to test. This seemed to work temporarily for me. Good Luck, I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Teja Mathukumalli

79529910

Date: 2025-03-24 00:19:44
Score: 8 🚩
Natty: 6
Report link

I am running into the same issue. Could you maybe help me understand your answer?

How should the data be shaped? I thought it should be x=(batch_size, number_of_nodes, number_of_features, number_of_timesteps), edge_index=(batch_size, 2, number_of_edges). However, that does not seem to work and I am getting the same error as you. How exactly is your answer transofrming the input so that it works?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (1): I am getting the same error
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tobi

79529909

Date: 2025-03-24 00:18:44
Score: 2
Natty:
Report link

To create a model in Laravel is:
[tag:php artisan make:model Example]
-> Model name must be singular and first letter capital
if we use
[tag:php artisan make:model Example -m]
Command:
-> It will create Model and Table Schema at once.

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

79529908

Date: 2025-03-24 00:18:44
Score: 1.5
Natty:
Report link

import math

2 from turtle import *

3

4 def hearta(k):

5 return 15* math.sin(k)**3

6 def heartb(k):

7 return 12 *math.cos(k)-5*1

8

math.cos(2*k)-2*\

9

math.cos(3*k)-\

10

math.cos(4*k)

11 speed (9000)

12 bgcolor("black")

13 for i in range(6000):

goto (hearta(i) *20, heartb(i)*20)

for j in range(5):

14

15

16

17

18 done()

color("red")

goto (0,0)

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

79529903

Date: 2025-03-24 00:15:43
Score: 2.5
Natty:
Report link

I've figured out the problem; I had called pygame.init() in both files, which I didn't realize was unnecessary and broke the code.

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

79529900

Date: 2025-03-24 00:13:42
Score: 1
Natty:
Report link

It's probably completely unnecessary for you to have "infinite" arrays of characters. There's a limit to the number of characters you can put in a text area without the program you're using slowing to a crawl, and you can easily store Strings larger than limit. I don't know what it is, but it's tens of thousands, not millions.

But if you must have infinite arrays, there's a way to do it. Just make more than 1 array of some huge size (maybe 1 billion or something). The first array is the start of the text. The second array is the second part of the text. And so on.

You basically just need to store the number of arrays and have multiple arrays. I haven't use C in a while, so I'm not sure if you could just do a 2d array. You might have to use pointers.

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

79529899

Date: 2025-03-24 00:10:41
Score: 4
Natty:
Report link

No, debugging single file is not supported. See https://github.com/dotnet/vscode-csharp/wiki/Troubleshoot-loading-the-.NET-Debug-Services.

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

79529894

Date: 2025-03-24 00:06:41
Score: 1.5
Natty:
Report link

maybe

webClient
    .get()
    .uri("/repos/{owner}/{repo}/commits", owner, repo)
    .header(HttpHeaders.AUTHORIZATION, "token YOUR_GITHUB_TOKEN")
    .retrieve()
    .bodyToFlux(CommitDto.class);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Алёна Петрова

79529888

Date: 2025-03-24 00:01:40
Score: 2
Natty:
Report link

Try adding @supabase/supabase-js to ssr.optimizeDeps.include in your vite.config.ts.

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

79529884

Date: 2025-03-23 23:59:39
Score: 1
Natty:
Report link

You can wrap it in a namespace yourself.

namespace ssl {
#include<asio/ssl.hpp>
}

Further reading: C++ namespace parlor tricks

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

79529881

Date: 2025-03-23 23:55:39
Score: 2
Natty:
Report link

Users can issue commands like this : “Play [Video Name]“: Search and play a YouTube video.

This project leverages the Web Speech API for voice recognition and YouTube Data API for fetching video content dynamically.

Source Code and Video Tutorial : https://youthsforum.com/2025/01/voice-controlled-youtube-video-player/

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

79529880

Date: 2025-03-23 23:54:38
Score: 0.5
Natty:
Report link

The spotdiff.vim plugin will let you diff specific lines by visually selecting them (with V) and then using the diffthis command. If both ranges of lines are in the same buffer, then the plugin will create a new buffer to copy and paste the second range of line in that new buffer and make a difference between those two buffers just as Renaud Pacalet suggested doing, but the plugin does it for you. It seems similar to the Linediff plugin suggested by mfussenegger. The nice advantage of spotdiff.vim, for me at least, is that it overrides the builtin diffthis command, so it seems like just a nice upgrade without having to learn additional commands names.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Désaulniers

79529877

Date: 2025-03-23 23:50:37
Score: 1
Natty:
Report link

This function still works.

Check your request before sending.

MqlTradeCheckResult checkResult {};
if(OrderCheck(requestt, checkResult))
    bool isSend = OrderSend(requestt, resultss);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Salar Hamidi

79529876

Date: 2025-03-23 23:49:37
Score: 4
Natty:
Report link

My issue has been solved. I am sorry to anyone whose time I had wasted but I had another function that called that createSession one. I didn't realize it because it was so long ago that I put it in there and I honestly don't know why I did in the first place. Simply a case of bad programming practices.

Please let me know if I should just delete this question. Otherwise thanks to everyone who contributed.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ethan Deardorff

79529873

Date: 2025-03-23 23:47:35
Score: 7 🚩
Natty: 4.5
Report link

I am having the same problem as the original user. I want to track user-ids, but nothing seems to be registering in the user explorer view. I have followed the advice given here (which is also what Google suggests, about using

gtag('config', 'GA_MEASUREMENT_ID', { 'user_id': 'USER_ID' });

but nothing registers. Here is my code:

<!-- Google tag (gtag.js) -->

<script async src='https://www.googletagmanager.com/gtag/js?id=G-L3ZPB6S5H6'></script>

<script>window.dataLayer = window.dataLayer || [];

function gtag(){dataLayer.push(arguments);}gtag('js', new Date());

gtag('config', 'G-L3ZPB6S5H6', {'user_id': 'DRCUSASK'})

</script>

What am I doing wrong? Is there some kind of mismatch between GA code and gtag code?

Reasons:
  • Blacklisted phrase (1): What am I doing wrong?
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: peter

79529872

Date: 2025-03-23 23:44:35
Score: 2.5
Natty:
Report link

The non accepted answer by @Az-fta was the right one. If this is AWS scaling then it will work as the accepted answer.

Proof:

1. There was a discussion in reddit and someone with Proof scenario

2. Another example was from Udemy, Alan Rodrigues course for Azure 104. A Cooldown period of 5 minutes is added and scale-out is set for every 5 minutes.

`Good job!

The first scaling operation will occur at 8:10, wherein for the last 10 minutes, the CPU utilization is 80%. Then there will be a cool down period of 5 minutes. At 8:15, the CPU percentage is 80% so at this point another scaling operation will take place. Hence there will be a total of 3 instances running as part of the App Service Plan.`

Had to add additional answer as I could not comment more than 104 characters.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Az-fta
  • Low reputation (0.5):
Posted by: Han

79529871

Date: 2025-03-23 23:40:34
Score: 3.5
Natty:
Report link

[today Best Photo][1] 2025 টাকা পাঠানোর পর আপনার যে নাম্বারে টাকা পাঠিয়েছেন সেই নাম্বারে লাস্ট ডিজিট লিখে দিয়েন [1]: https://i.sstatic.net/KKU27rGy.jpg

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Md Shamsuddin Rahman

79529870

Date: 2025-03-23 23:39:34
Score: 3
Natty:
Report link

The WEB ORIGINES ; to specify the domains (Origins) authorized to make CROS requests to Keycloak

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

79529867

Date: 2025-03-23 23:37:33
Score: 3
Natty:
Report link

Can we see the implementation of MonoChain? Depending on the way you implemented the process function there could be multiple issues with this code.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: 24Carrrot

79529862

Date: 2025-03-23 23:32:32
Score: 1
Natty:
Report link

thank you for the help, I really appreciate it. I actually ended up fixing the bug, but I thank you all for your help, I will post my fixed version below. However I did have a follow up question, it only detects yellow, and blue/purple, nothing else. These are the two colors I'm using, [0,255,255] and [255,0,0], am I missing something to have it not detect more colors? Also do yall have any recommendations on having me input a color into the console, for example typing something like yellow, and then having the computer search for that color on screen. I'm sorry if this seems like a bulky question, I bit off more than I could chew a little with this one.

import numpy as np
import cv2

def get_limits(color):
    c = np.uint8([[color]])
    hsvC = cv2.cvtColor(c, cv2.COLOR_BGR2HSV)

    hue = hsvC[0][0][0]

    lowerb = np.array([hue - 10, 100, 100], dtype=np.uint8)
    upperb = np.array([hue + 10, 255, 255], dtype=np.uint8)

    return lowerb, upperb

# The detect_black function
def detect_black(frame):
    hsv_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    lower_black = np.array([0, 0, 0])
    upper_black = np.array([180, 255, 50])

    black_mask = cv2.inRange(hsv_frame, lower_black, upper_black)
    return black_mask
import cv2
import numpy as np
from PIL import Image

from util import get_limits

#Yellow [0,255,255]
#Blue/Purple [255,0,0]

yellow = [255, 0, 0]  # Yellow in RGB colorspace
cap = cv2.VideoCapture(0)

while True:
    ret, frame = cap.read()

    hsvImage = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    lowerb, upperb = get_limits(color=yellow)

    mask = cv2.inRange(hsvImage, lowerb, upperb)

    mask_ = Image.fromarray(mask)

    bbox = mask_.getbbox()

    if bbox is not None:
        x1, y1, x2, y2 = bbox

        frame = cv2.rectangle(frame,(x1,y1),(x2,y2), (0,255,0), 5)

    cv2.imshow('frame', frame)

    if cv2.waitKey(1) & 0xFF == ord('q'):
        break



cap.release()
cv2.destroyAllWindows()
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Daniel Giordano

79529861

Date: 2025-03-23 23:31:32
Score: 0.5
Natty:
Report link

You need to remove the $ symbol from File > preferences > Settings -> Search [wordSeparators]

"`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",

to

"`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Gigoland

79529858

Date: 2025-03-23 23:29:31
Score: 2
Natty:
Report link

You are probably looking for these two resources:

However, Google recently announced deprecation of the API that these resources use (https://cloud.google.com/iap/docs/deprecations/migrate-oauth-client).

I got in touch with Google Cloud support, and they confirmed that these two resources will no longer work after July 2025.

Here is full response that I got from the support: https://github.com/hashicorp/terraform-provider-google/issues/21378#issuecomment-2653497606

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

79529856

Date: 2025-03-23 23:28:31
Score: 2
Natty:
Report link

I think its about dependecy in the build phases ( select the target app in xCode, then select the option Build Phases )

More details can be viewed here

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

79529855

Date: 2025-03-23 23:26:30
Score: 3.5
Natty:
Report link

You need to use your username as the API key.

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

79529854

Date: 2025-03-23 23:25:30
Score: 1.5
Natty:
Report link

The bottleneck is that the entire GeoJSON data is being sent to the browser and rendered by Folium's JS library, for large datasets this is very slow.

You can help this by simplifying the geometry (reduce the complexity of the polygons) and tiling the data (break the GeoJSON into smaller tiles and load them on demand. Try using Vector tiles as they are a more efficient file format and have a library that supports it.

#1: The first thing to do is reduce the complexity of the polygon geometries. This will reduce the size of the GeoJSON data which inturn will help with performance.

import streamlit as st
import geopandas as gpd
import folium
from streamlit_folium import st_folium

st.set_page_config(layout="wide")

@st.cache_data
def load_and_simplify_shp(tolerance=0.01):
    shp_df = gpd.read_file('testlayer.shp')
    simplified_df = shp_df.simplify(tolerance=tolerance)
    return simplified_df.to_json()

layer_to_add = load_and_simplify_shp()

with st.form(key='mymap'):
    m = folium.Map(location=[31.5943, -102.8927], zoom_start=12)
    folium.GeoJson(layer_to_add, name="my layer", style_function=lambda feature: {
        "fillColor": "yellow",
        "color": "black",
        "weight": 0.5,
        "fillOpacity": 0.4
    }).add_to(m)

    st_folium(m, height=1000, use_container_width=True, key='map')

    submit_button = st.form_submit_button("Submit")

2: Tile the Data

For larger sets, you can tile the GeoJSON data. This involves breaking the data into smaller tiles and loading them on demand as the user zooms and pans the map. This is trickier but I can provide an example if you want to explore that option.

3: Vector Tiles

Vector tiles are a better way to represent geographic data(IMO). They are smaller than GeoJSON and can render much faster. Libraries like ipyleaflet support vector tiles. This is the trickiest of the three, but also has the most performance improvement.

Implementation Instructions

Replace your load_shp function with load_and_simplify_shp. Adjust the tolerance parameter to find a balance between performance and detail. Test the performance and see if it meets your needs.

Notes: Simplification can result in loss of detail, so it's good to find a tolerance that has a good balance between performance and accuracy. Tiling and Vector tiles require additional libraries and a deeper understanding of web mapping.(I am just really learning this myself) If you would like to explore tiling or vector tiles, let me know, and I can dig deeper into some detailed code and explanations. I hope this helps, have fun with it!

also this is a good link to check out: https://granulate.io/blog/java-profiling-3-key-areas-profile-2/ it gives a pretty good rundown on some concepts you may find suitable for your project.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (3): You can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arthur Belanger

79529851

Date: 2025-03-23 23:21:29
Score: 3.5
Natty:
Report link

Thanks to ruslangm I checked and realise the compiler version was different on the right side of remix panel and I changed it in bscscan and it verified my fortis crypto contract

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: S Sha

79529847

Date: 2025-03-23 23:18:28
Score: 4.5
Natty: 5
Report link

I have experience this. Any proper solution for this? I already use NEXT_PUBLIC_

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Test Ribbon

79529831

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

If you want to stick to using stores (stores have some advantages), then you are looking for subscribe()

onMount(() => {
    notify.subscribe((notify) => {
        if (notify) {
            // do something
        }
    })
);

Remember to unsubscribe when the component gets destroyed.

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

79529830

Date: 2025-03-23 22:59:17
Score: 1
Natty:
Report link
{
"data": {
    "id": "33245529750",
    "username": "iiserb_econ_club",
    "full_name": "Economics Club, IISER Bhopal",
    "profile_picture": "http://distillery.s3.amazonaws.com/profiles/profile_1574083_75sq_1295469061.jpg",
    "bio": "This is my bio",
    "website": "http://snoopdogg.com",
    "counts": {
        "media": 191,
        "follows": 90,
        "followed_by": 760
    }
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30035664

79529829

Date: 2025-03-23 22:58:16
Score: 1
Natty:
Report link

The title is true; You cannot do this unless you install the language packs. That is because pyttsx3 only supports UTF-8 encoding, which only allows ASCII characters to be read in a string. The reason why these language packs help is because that they translate the foreign language into binary, and pyttsx3 can do the English part of the string. Take this for example: "Hello: नमस्ते" With a Hindi language pack, it would translate the Hindi into binary, then pyttsx3 can translate the rest into binary. Then, the text-to-speech mods that Delrius mentioned can say the Hindi and the authentic pyttsx3 will say English.

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

79529826

Date: 2025-03-23 22:55:16
Score: 2
Natty:
Report link

My variant

awk -F";" '!c[$2]++{a[$2]=$0}; c[$2]==2{print a[$2]}; c[$2]>1' "$f"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ivan

79529825

Date: 2025-03-23 22:54:15
Score: 1
Natty:
Report link

I went into the source code of PortalableText: , components param accept an object that is of PortableTextComponents type. PortableTextComponents is declared here and it is Partial<PortableTextSvelteComponents>. PortableTextSvelteComponents doesn't seem to accept a field called image.

It seems like you are trying to use a custom type, this may help: https://github.com/portabletext/svelte-portabletext?tab=readme-ov-file#customizing-rendering

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

79529820

Date: 2025-03-23 22:50:14
Score: 11.5
Natty: 8.5
Report link

Can you please share your dataset of the names as I need it for my project?

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can you please share your
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please share you
  • Low reputation (1):
Posted by: Seif Hossam

79529819

Date: 2025-03-23 22:50:14
Score: 1
Natty:
Report link

Image Steganography with PHP using LSB Algorithm

The Least Significant Bit (LSB) algorithm is one of the most popular and simplest image steganography techniques used for embedding secret messages in digital images. The algorithm works by modifying the least significant bit of each pixel of the cover image to represent a bit of the secret message. Since the least significant bit has the least impact on the image quality, the change is not noticeable to the human eye.

Source Code and Video Tutorial : https://youthsforum.com/2023/04/image-steganography-hiding-text-in-images-using-php/

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

79529817

Date: 2025-03-23 22:47:13
Score: 2.5
Natty:
Report link

file1.py:

a = 1

file2.py:

import filel1

from file1 import a

print(a, file1.a) # output: 1 1

file1.a += 2

a -= 3

print(a,file1.a) # output -2 3

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