79576620

Date: 2025-04-16 07:41:20
Score: 2.5
Natty:
Report link

Sir I want to use vb excel query when I enter any emp_id code search & put the data in given cells from data sheet

EMP_ID  
    
Name    
    
F Name  
    
Designation 
    
Department  
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Arshad Ibrahim

79576616

Date: 2025-04-16 07:40:19
Score: 0.5
Natty:
Report link

I've found what I was looking for : instead of

Url = string.Format("https://developer.api.autodesk.com/oss/v2/buckets/{0}/objects/{1}", bucketKey, outputName)

I needed following syntax :

Url = $"urn:adsk.objects:os.object:{bucketKey}/{outputName}",

Now it uploads my resulting zip file to my specified bucket.

Hope this helps anyone else

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): Hope this helps
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mark Brouwers

79576615

Date: 2025-04-16 07:39:18
Score: 10.5
Natty: 7
Report link

i have same problem but when upgrading from 12 to 17.

How can i fix it?

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (1): i have same problem
  • RegEx Blacklisted phrase (1.5): How can i fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Marcin Sommer

79576611

Date: 2025-04-16 07:37:16
Score: 6.5 🚩
Natty: 4
Report link

Luis's answer is useful, but what should I do if I want to exclude a lot line? Add 'LOCV_EXCL_LINE' behind each line seems inefficiency.

Reasons:
  • Blacklisted phrase (2): what should I do
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kai Zhang

79576608

Date: 2025-04-16 07:34:15
Score: 0.5
Natty:
Report link

It is recommended to use the pyobject library, especially pyobject.objproxy, which can be installed via pip install pyobject.
pyobject.objproxy provides the ObjChain class, which can track every call and operation on any object added to an ObjChain and automatically generate "decompiled" code based on them.
Example usage:

from pyobject import ObjChain
chain = ObjChain(export_attrs=["__array_struct__"])
try:
    np = chain.new_object("import numpy as np","np")
    plt = chain.new_object("import matplotlib.pyplot as plt","plt",
                           export_funcs = ["show"])

    # wrapped fake numpy and matplotlib
    arr = np.array(range(1,11))
    arr_squared = arr ** 2
    mean = np.mean(arr)
    std_dev = np.std(arr)
    print(mean, std_dev)

    plt.plot(arr, arr_squared)
    plt.show()
finally:
    # output generated code
    print(f"Code:\n{chain.get_code()}\n")
    print(f"Optimized:\n{chain.get_optimized_code()}")

Additionally, if you intend to wrap an object for other usage rather than decompiling, you can refer to the implementation of objproxy/__init__.py and modify it.
Note that I'm the developer of pyobject.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: qfcy

79576607

Date: 2025-04-16 07:33:15
Score: 2.5
Natty:
Report link

Navigate to your project's solr directory:
-cd /path/to/your_project/solr
run this command
-sudo chown -R $(whoami) .

-chmod -R 755 .
Run solr start command
bundle exec rake sunspot:solr:start

Now it is working properly same as for sidekiq

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

79576603

Date: 2025-04-16 07:29:13
Score: 1
Natty:
Report link

Using the 'ch' makes it more flexible to me

<Typography variant="body2" sx={{overflow:'hidden',width: '9ch', whiteSpace: 'noWrap', textOverflow: 'ellipsis',}}>

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

79576596

Date: 2025-04-16 07:23:12
Score: 2.5
Natty:
Report link

It could be due to a few things - An expired client certificate or misconfigured settings. Sometimes, outdated browsers or operating systems cause this issues. Also, make sure your device’s date and time are correct. Conflicts with browser extensions or other software might be part of the problem as well.

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

79576594

Date: 2025-04-16 07:21:11
Score: 2
Natty:
Report link

the best solution will be to change LONG column to CLOB , or Truncate at 32K example:JSON_PARTE := DBMS_LOB.SUBSTR(V_JSON_CLOB, 32767, 1); but it means data loss, only use if truncation is okay.

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

79576593

Date: 2025-04-16 07:20:11
Score: 3
Natty:
Report link

I got an answer on Reddit:
https://www.reddit.com/r/Blazor/comments/1jvr1j6/comment/mmltwop/?context=3

NavigationManager cannot handle try {} catch {}

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

79576588

Date: 2025-04-16 07:16:10
Score: 2
Natty:
Report link

As the first error message says, the operation is not supported. If you look at the table in Dataverse you will see a message saying that the table is read-only.

I have also looked into this, but the only way I could find to programmatically change the owner of a dataflow is by using robotics. Very ugly, but I could not find another solution. I hope Microsoft will improve the support for Dataflows operations in the future.

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

79576584

Date: 2025-04-16 07:13:08
Score: 2.5
Natty:
Report link

My 1st step towards the resolution was to check if olcDisallows is configured or not, if olcDisallows is configured then remove it.

My 2nd step towards the resolution was to check if olcRequires is configured or not, if olcRequires is configured then remove it.

Last step was to check if olcAllows exists or not, we need to allow it for the anonymous to work.

I have fixed it by following the above order. Also I have set my access to unlimited and works like a charm. Thanks.

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

79576582

Date: 2025-04-16 07:11:08
Score: 1.5
Natty:
Report link

I would just place shortcuts to open each project in the appropriate version in shell:startup?

  1. Press Windows + R

  2. Type shell:startup

  3. Right-click and choose New --> Shortcut

  4. Enter in the path to the appropriate version of VS.

  5. Click [Next]

  6. Type a name for the task

  7. Click [Finish]

  8. Right-click on your new task and choose properties. Modify the target to look something like this: "C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\IDE\devenv.exe" "O:\Documents\Education\WGU\Courses\C# 2\GlobalCalendar\Global_Calendar.csproj"

Commented yesterday

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

79576574

Date: 2025-04-16 07:06:06
Score: 1
Natty:
Report link
const formSchema = z.object({
 numberField:  z.coerce.number().positive('numberField is required'),
})

`coerce` will change the string to a number. Empty will be handled as zero so use positive for number > 0

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

79576573

Date: 2025-04-16 07:05:06
Score: 3
Natty:
Report link

If this is happening in one session try restarting Visual Studio, if this is happening consistently you may need to repair your visual studio

Visual Studio's features are unavailable due to internal error

https://learn.microsoft.com/en-us/answers/questions/675293/feature-xxx-is-currently-unavailable-due-to-an-int

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

79576565

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

from: https://epplussoftware.com/en/Home/GettingStartedCommunityLicense**

Installation**: Install EPPlus 8 from the EPPlus nuget feed.

The license can be set in three different ways:

1. Use the License property on the ExcelPackage class
// If you are a Noncommercial organization.
ExcelPackage.License.SetNonCommercialOrganization("My Noncommercial organization"); //This will also set the Company property to the organization name provided in the argument.
using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{

}
        
            // If you use EPPlus for Noncommercial personal use.
ExcelPackage.License.SetNonCommercialPersonal("My Name"); //This will also set the Author property to the name provided in the argument.
using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{

}
        
2. appSettings.json
            {
    {
    "EPPlus": {
        "ExcelPackage": {
            "License": "NonCommercialOrganization:The noncommercial organization" //Please provide the name of the noncommercial organization you represent.
            }
        }
    }
}
{
    {
    "EPPlus": {
        "ExcelPackage": {
            "License": "NonCommercialPersonal:Your Name"     //Please provide your name                               
            }
        }
    }
}
        

...or in the app.config...

            
                <appSettings>
                   <add key="EPPlus:ExcelPackage:License" value="NonCommercialPersonal:Your name" />
                </appSettings>

                <appSettings>
                   <add key="EPPlus:ExcelPackage:License" value="NonCommercialOrganization:Your organization" />
                </appSettings>
            
            
3. Set the environment variable 'EPPlusLicense'

This might be the easiest way of configuring this. The example below is using the SETX command in the Windows console.

Noncommercial organization...

            > SETX EPPlusLicense "NonCommercialOrganization:The Noncommercial organization"
            

Personal use...

            > SETX EPPlusLicense "NonCommercialPersonal:Your Name"
            

The variable can be set on the process, user or machine level.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • RegEx Blacklisted phrase (2.5): Please provide your
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pvria Ansari

79576563

Date: 2025-04-16 06:56:02
Score: 6.5
Natty:
Report link

"last_modified_time is when last time DDL have updated/altered . But,lastUpdatedTime from hive shows when table have recent inserts or DML has been done . Interestingly , it is coming in Hive/Beeline but in Spark SQL"

Did you found any answers for this? @Bandi LokeshReddy

Reasons:
  • RegEx Blacklisted phrase (3): Did you found any answer
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Bandi
  • Low reputation (1):
Posted by: Ambarish Srinivasan

79576560

Date: 2025-04-16 06:56:02
Score: 3
Natty:
Report link

我是 xcode 版本升级到16.3版本出现的此问题 我把 xcode降到16.2版本 再运行就正常了

react native:0.65.1 xcode:16.2 macos:15.4

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: mu liu

79576558

Date: 2025-04-16 06:54:01
Score: 2
Natty:
Report link

https://developer.samsung.com/smarttv/develop/faq/application-testing.html Q22 & Answer. Can I retrieves system logs from TV using the "sdb" tool? No, The sdb logging feature is not supported on Samsung TVs. It is not possible to retrieve system logs.

Unfortunately, app log is also blocked by security reason.

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

79576550

Date: 2025-04-16 06:39:58
Score: 2.5
Natty:
Report link

A lot of the 'legacy' code is written following this principle, and rewriting the code for FDA is extremely challenging. The tasks run in parallel, as I can observe differences in the number of requests processed per second. For example, the values will differ between 10 tasks and 100 tasks. On Oracle, this code delivers the expected performance.

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

79576549

Date: 2025-04-16 06:39:58
Score: 1
Natty:
Report link

This is what you are missing. Open your `web.config`

<configuration>
  <system.web>
    <httpRuntime maxRequestLength="10240" />
  </system.web>
</configuration>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zanda

79576544

Date: 2025-04-16 06:37:58
Score: 2.5
Natty:
Report link
  1. open settings page
  2. search Outline: Collapse Items
  3. choose alwaysCollapse

Although it may cause some trouble when your code has a "deep structure", it is bearable for me.

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

79576536

Date: 2025-04-16 06:31:56
Score: 1.5
Natty:
Report link

Something wrong occurred when I import cv2

main screen_img = capture_screenshot_to_memory(device_serial) File Bot.py", line 38, in capture_screenshot_to_memory img = cv2.imdecode(image_data, cv2.IMREAD_COLOR) cv2.error: OpenCV(4.10.0) D:\a\opencv-python\opencv-python\opencv\modules\imgcodecs\src\loadsave.cpp:813: error: (-215:Assertion failed) !buf.empty() in function 'cv::imdecode_'

how do you fixx

import cv2
import numpy as np
import subprocess
import os
import time
import datetime
import requests
Reasons:
  • Blacklisted phrase (1): how do you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: วีระชัย ไกรทอง

79576530

Date: 2025-04-16 06:29:55
Score: 1
Natty:
Report link

#pages/api/auth/login.js

import { handleLogin } from '@auth0/nextjs-auth0';

    export default async function login(req, res) {
      const refer = req.query.refer || '';
    
      await handleLogin(req, res, {
        returnTo: refer ? `/?refer=${refer}` : '/',
      });
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paresh Katakiya

79576517

Date: 2025-04-16 06:22:53
Score: 1.5
Natty:
Report link

Unfortunately I do not have a clear answer for this as my ISP resolved the issue. The ISP provider said there where issues with the switches withing the data centres. Even though the BGP links were up on their side and showing correct confirmations and speed, they acknowledged that several properties in the area (hundreds apparently) were experiencing symptoms similar to mine. The issue took 3 weeks to be resolved.

If I run the iperf3 tests now, I get text book output with similar bitrates across both single and multiple stream tests.

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

79576516

Date: 2025-04-16 06:22:53
Score: 1
Natty:
Report link

When you save and reopen the file connection might be losing important parameters. There may be an invisible dependency on the data model that's not being properly re-established. Maybe create a simple macro that forces the connection to refresh properly.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: abaci

79576515

Date: 2025-04-16 06:21:53
Score: 2.5
Natty:
Report link

There is a UI way of doing this, but sync with the fork will have to be manual

  1. Fork public repository

  2. Go to forked repository settings -> scroll down to the danger zone

  3. Click unlink/detach from the fork

  4. Change visibility to privateenter image description here

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

79576512

Date: 2025-04-16 06:19:52
Score: 1.5
Natty:
Report link

React Native: 0.65.1

Xcode: 16.2

MacOC: 15.4

Adding libswiftCoreGraphics.tbd in Select Target > Build Phases > Link Binary With Libraries worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: mu liu

79576511

Date: 2025-04-16 06:19:52
Score: 1
Natty:
Report link

What worked for me is the following:
Access the database that you are using and look for the table django_migrations

Open it and remove the lines which include your migration file-names from your djangoproject/appname/migrations. Then rerun the migrate command, this should then work.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: vernisity

79576495

Date: 2025-04-16 06:06:49
Score: 1
Natty:
Report link

Go to ~/.android/avd/your_avd_name.avd/config.ini and open it with note or text editor of your choice, And fine hw.gpu.mode=host and change it to hw.gpu.mode=off

This will force the software rendering,which will resolve gpu related snaphot issues.

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

79576493

Date: 2025-04-16 06:04:48
Score: 1
Natty:
Report link

Consider Fast Doubling. It is an optimized matrix multiplication approach. It is of logarithmic complexity, ignoring the cost of large integer multiplication.

The actual numerical multiplication (for large values) is not linear but can be sped up using the Fast Fourier Transform (with integers represented as polynomials), although this is a low-level optimization that only makes sense in lower-level languages (than Python).

In practice, it is often easier (and more efficient) to use polished and well-optimized libraries like GMP (in C/C++) for arbitrary precision arithmetic.

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

79576482

Date: 2025-04-16 05:58:47
Score: 2
Natty:
Report link

You can have a look at Zone Share. This mirrors a part of your screen to a window which can then be shared. It also offers pre-defined ratios, hotkeys, blurring the content etc. https://apps.apple.com/us/app/zoneshare-mirror-your-screen/id6743621581

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

79576480

Date: 2025-04-16 05:55:46
Score: 1
Natty:
Report link

I have noticed, several flags to enable "Archive" option in xcode.

  1. Select Product → Destination → Any iOS Device

  2. Product -> Edit scheme -> Open Build option (from left panel) -> click on build sub option. You will see targets, check Archive option from your target.

  3. Close, back to xcode, to check availability of "Archive" option.

enter image description here

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

79576465

Date: 2025-04-16 05:44:41
Score: 4
Natty:
Report link

I have added the jitpack in <repository> and GitHub in <dependency> in my pom file. But class files exist in the GitHub(which is mentioned in dependency tag) are not shown in maven dependencies of project.

I have used the repository and GitHub from the jitpack generated. Please suggest me to get the class files here.

Please find the below image showing repo name and pom files, but class files are not shown.

enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Please suggest me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bachu ChennakesavaRao

79576460

Date: 2025-04-16 05:41:40
Score: 2
Natty:
Report link

The input json should look like this

{
    "Tooltip": "test"
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RyanYu

79576459

Date: 2025-04-16 05:40:39
Score: 5
Natty: 5.5
Report link

I represent an SEO company that specialises in getting you AI citations and higher rankings on Google. I’d like to offer you a 100% free SEO audit for your website. Would you be interested?

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

79576454

Date: 2025-04-16 05:37:38
Score: 1.5
Natty:
Report link

Go to Help -> Install New Software and select Web, XML, Java EE and OSGi Enterprise Development:

Install

Then you might get a notification like the below:

Request modified

Click Next and accept the terms and Finish.

Once installation is completed (you can review status in the bottom right corner of STS), restart the software (there should be a prompt for it) and it should work:

Create JSP File

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

79576453

Date: 2025-04-16 05:37:38
Score: 1
Natty:
Report link

What we do is make our data model pure but make a new view class based on that with things like Ishighlighted. Eg

Class Entity

Class EntityView : Entity

{

Public bool isHighlighted;

}

Or alternatively

Class EntityView

{
 Public Entity entity

  Public bool isHighlighted;

}

That way you can connect EntityView to the UI and keep the data object Entity "pure". Crud and other operations can simply use the underlying Entity by reference EntityView.Entity.
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What we
  • Low reputation (1):
Posted by: Geoff Davison

79576452

Date: 2025-04-16 05:37:38
Score: 2
Natty:
Report link

One solution can be to use a workmanager in Flutter to get/sync data
if app goes to background or killed workmanager can complete last operation
and when the user opens the app again sync with the the previous data stored

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

79576446

Date: 2025-04-16 05:33:37
Score: 0.5
Natty:
Report link

If you don't have Premium or Dedicated Tier you can run this to gather metrics (including consumer lag):

https://github.com/deviceinsight/eventhub-metrics

Disclaimer: I'm a contributor to this project

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: D-rk

79576445

Date: 2025-04-16 05:33:37
Score: 3.5
Natty:
Report link

Help me 100k subscribe pkz pls dddddddhdudududududucvuvuvuvucucucuxucucucucucucu vide the last 2of and first 8voice records of 8song the last of us series ko real me like d and note that the last of us series 3series ko real me like d 3and 3and 3and the same time war striker gameplay and

no

Reasons:
  • Blacklisted phrase (1): Help me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ganesh basnet

79576442

Date: 2025-04-16 05:27:34
Score: 8 🚩
Natty: 5
Report link

Getting the same. Did you find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Giuseppe Caponetto

79576435

Date: 2025-04-16 05:24:33
Score: 0.5
Natty:
Report link

Had the same issue with Fork + BitBucket. I don't know what was the cause. But here are some insights:

What actually solved my case:

What's more interesting I also went back to my original branch and tried pushing once more. It went successfully with no issues.. I suppose there was some caching issue somewhere.

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

79576424

Date: 2025-04-16 05:13:30
Score: 3.5
Natty:
Report link

I have figured out the issue. I was using Environment Variables (.env) to to store variables. For some reason, my script could not use env variables data. so I started using TOML.

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

79576422

Date: 2025-04-16 05:12:30
Score: 3.5
Natty:
Report link

Thanks @kamlesh

This solution worked for me.. I changed my minSdkVersion from 23 to 24..

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @kamlesh
  • Low reputation (1):
Posted by: Devyani Deore

79576411

Date: 2025-04-16 04:52:25
Score: 2.5
Natty:
Report link

enter image description here

https://github.com/cloudflare/cloudflare-python/blob/main/api.md#keys

I figured it out.

CF official has not implemented this api.

(|||゚д゚)

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: neo742

79576382

Date: 2025-04-16 04:19:16
Score: 6.5 🚩
Natty:
Report link

I have exactly the same problem here using offscreen in a web application with net 8

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sloan

79576375

Date: 2025-04-16 04:06:12
Score: 2
Natty:
Report link

# Undo the last commit but keep changes staged

git reset --soft HEAD~1

# Undo the last commit and unstage files (but keep changes)

git reset --mixed HEAD~1

# Completely remove last commit and discard changes

git reset --hard HEAD~1

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

79576373

Date: 2025-04-16 04:04:10
Score: 5
Natty:
Report link

I'm facing same issue with stm32mp135d-odyssey.the above changes should be made in both uboot and kernel device tree ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aravindhan A t

79576363

Date: 2025-04-16 03:54:08
Score: 3
Natty:
Report link

It seem like the problem exist in older version Xcode 15.4, target iOS-17.5 and macOS Sonoma 14.5. Currently i updated to the latest version macOS Sequoia 15.4, using Xcode 16.3, target iOS-18.4 and it got fixed.

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

79576362

Date: 2025-04-16 03:54:08
Score: 0.5
Natty:
Report link

add --host to your package.json

vite doesn't server requests that are not originated from your localhost

image of package.json added --host to vite

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

79576361

Date: 2025-04-16 03:54:08
Score: 2.5
Natty:
Report link

Usually, data is read in batches to fine-tune the model.

For example, there is 1M of data, but I only use 64 non-overlapping data to fine-tune the model each time. After 15,625 iterations, the training of the entire data set can be completed.

Please refer to it, thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: CNLiu

79576360

Date: 2025-04-16 03:52:07
Score: 3
Natty:
Report link

Even if all parameters have default value in the report design, once deployed to the SSRS server, just simply uncheck 'Use default' of at least one parameter from the SSRS report web portal. The report will not run upon initial load/browsing to it.

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

79576350

Date: 2025-04-16 03:45:05
Score: 1
Natty:
Report link

Actually, due to the formulation of problem, the solver is always placing the item only on the edges, adding one more constraint helped to solve the issue:


m.constraints.append(node_p_var_dict[p][(0, shelf)] + node_p_var_dict[p][((section_width*bay_count)-1, shelf)] <= 1)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anand

79576346

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

As at 2025 the following line

tm_shape(mxr)+tm_raster(col="value")+tm_facets(by="class1","class2")

should be

tm_shape(mxr)+tm_raster(col="value")+tm_facets_grid(rows="class1",columns = "class2")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mark Randall

79576336

Date: 2025-04-16 03:23:00
Score: 2
Natty:
Report link

configure this:

@Bean
public TaskExecutor taskExecutor() {
    return new SimpleAsyncTaskExecutor("spring_batch");
}

@Bean
public Step sampleStep(TaskExecutor taskExecutor, JobRepository jobRepository, PlatformTransactionManager transactionManager) {
    return new StepBuilder("sampleStep", jobRepository)
                .<String, String>chunk(10, transactionManager)
                .reader(itemReader())
                .writer(itemWriter())
                .taskExecutor(taskExecutor)
                .build();
}

check out for this documentation : https://docs.spring.io/spring-batch/reference/scalability.html

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinay Rajaikar

79576328

Date: 2025-04-16 03:10:57
Score: 0.5
Natty:
Report link

Based on my experience, yes, it's definitely possible to get information about currently playing media on Android, though it requires some specific APIs.

The most reliable approach is to use the Media Session API, which lets you discover active media sessions and retrieve their metadata (title, artist, album art, etc.). You'll need to:

Here's what you'll need in your AndroidManifest.xml:
<uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL"/>
<uses-permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"/>

The trickiest part is that you need to implement a NotificationListenerService and request the user to grant notification access to your app - this is unavoidable since reading this data is considered sensitive.

One gotcha: media apps implement these APIs differently, so test with multiple players (Spotify, YouTube Music, etc.) to ensure your app works reliably.

If you run into issues with certain apps, you can fall back to reading media notifications, though that's more fragile.

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

79576323

Date: 2025-04-16 03:05:56
Score: 1.5
Natty:
Report link

The issue is likely caused by incorrect middleware order in Startup.cs. Try the following modification:

app.UseHttpsRedirection();
app.UseRouting();
app.UseCors("AllowAll");
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
    endpoints.MapControllers();
});

You can also refer to this document:

https://learn.microsoft.com/en-us/aspnet/core/fundamentals/middleware/?view=aspnetcore-3.1#middleware-order-2

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1): Try the following
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ballway

79576318

Date: 2025-04-16 02:56:54
Score: 1.5
Natty:
Report link

Some of the ways I couldn't understand achieved the desired effect : (

ggplot() +
  geom_raster(
    data = terra::as.data.frame(x[[1]], xy = TRUE) |>
      mutate(x1 = x - 180),
    aes(x = x1, y = y, fill = lyr.1)
  ) +  
  geom_sf(data = st_break_antimeridian(st_as_sf(a), lon_0 = 180)) +
  coord_sf(
    crs = "+proj=longlat +datum=WGS84 +lon_0 = 180",
    default_crs = sf::st_crs(4326),
    expand = FALSE
  )

enter image description here

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

79576315

Date: 2025-04-16 02:53:53
Score: 0.5
Natty:
Report link
sourceanalyzer -b PROJECT_NAME touchless cmake --build .
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: MiloDC

79576314

Date: 2025-04-16 02:53:53
Score: 0.5
Natty:
Report link

Sometime back I wrote an extension specifically designed to do just what your are asking:

Toggle Line Comments.

Once you install the extension the default keybinding is Ctrl/Cmd+Alt+/

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Mark

79576313

Date: 2025-04-16 02:52:52
Score: 4
Natty:
Report link

Thanks for suggestions from @ssbssa. I tried the GDB version 16.2 with the aforementioned settings, and the problem was solved.

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

79576306

Date: 2025-04-16 02:44:50
Score: 0.5
Natty:
Report link

Matplotlib does not offer a built-in function in its core library to enable hover effects. For this functionality, you may consider using the mplcursors library. Kindly try running the code below after installing mplcursors.

import matplotlib.pyplot as plt
import numpy as np
import mplcursors

x = np.random.rand(20)
y = np.random.rand(20)
colors = np.random.rand(20)
area = (30 * np.random.rand(20))**2

metadata = [f"Point {i}, Value: ({x[i]:.2f}, {y[i]:.2f})" for i in range(len(x))]

fig, ax = plt.subplots()
scatter = ax.scatter(x, y, s=area, c=colors, alpha=0.5)

plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.title('Interactive Scatter Plot')

cursor = mplcursors.cursor(scatter, hover=True)

@cursor.connect("add")
def on_add(sel):
    sel.annotation.set_text(metadata[sel.index])

plt.show()

Output:

enter image description here

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

79576304

Date: 2025-04-16 02:40:49
Score: 3
Natty:
Report link

The error stems maybe from version mismatches or missing native libraries in your JavaCPP/OpenCV setup.

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

79576303

Date: 2025-04-16 02:39:48
Score: 1.5
Natty:
Report link

I think you need to load the data to model

enter image description here

then you open the data model

enter image description here

you can add the calculated column in Power Pivot

enter image description here

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

79576298

Date: 2025-04-16 02:34:47
Score: 3.5
Natty:
Report link

Alright.. just when I was thinking I was crazy I bumped into this post. I think it could be a fabulous implementation and a very profitable business . If you are still interested, please let me know. NOW is probably a better time.

My Reasons:

1. **Enterprise WordPress users** would be most interested:

2. **Hosting providers** could be major customers:

3. **Specific use cases** would drive adoption:

The key is that you'd be targeting the upper end of the WordPress market - perhaps 1-5% of WordPress sites, but these represent the highest-value installations.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dr T

79576297

Date: 2025-04-16 02:33:46
Score: 3
Natty:
Report link

I had been WITH MY BABIES, SINCE BIRTH... BEFORE FAKE ASS CORRECTIONS AND PROBATION ON MY FINANCIALS,TOOK MY LIFE OVER A DWI ON MRIS AS A DIFFUSER,ON A FELONY PUNISHMENT SUBSTNCE ABUSE BEHAVIOR CORRECTION THERAPEUTIC ROB LINDSEY ANNE MAXFIELD, AS A COMMUNITY.ON AS SAFP SAPFASTRAC, AS OF FENDER. FIRST OFFENSE AND REPEAT OFFENDER... 87 WEEKS THATS 17MONTHS... IN 2010 AFTER A 2008 FIRST AMD ONLY, .W.I. DRIVER WITH INSURANCE OR DELIVERY WITH INTENT... AS A COURIER ASA CONCIERG.. YOU JUST GOT KE AS INGREDIENTS. AS IF IN MY COMPANY AS ACCOMPANIED BY EACORTED BY. . . CITY AS FED. PSEUDAFED. BABY KILLING ORGAN SELLING FUKN ASSHOLE MASTERMIND IDIOTS. ON MY CREDENTIALS.AND EVERY SUBJECT AS SCIENCES AS THT BURN BABIES ON MY SWAPPED BURNETT TEXAS FOR HUNTSVILLE. THEYRE KILLING THE CHILDREN. YOU STUPID ASS FUKN CANADIAN RETARD DOWNESYNDROME FOR REAL FOR REAL DUMBASS THINKING FUKN GOONS. STOP ANDI MEAN STOP NOW! I HATE YOU ALL OF YOU. IHAVE BEEN PUNKED AROUND ALL MY LOFE VY YOUR FUKN FIP THE REAL FOR THE "LAME"... FUCKERS.MUNICIPAL

Reasons:
  • Blacklisted phrase (2): FUCK
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Keitharentthee Lindseyannemaxf

79576294

Date: 2025-04-16 02:25:44
Score: 4.5
Natty: 4.5
Report link

Video link contains link to malicious website Please correct it Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Video link
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Qulu Quliyev

79576287

Date: 2025-04-16 02:18:42
Score: 1.5
Natty:
Report link
// path = @"C:\Program Files\Audials\Audials 2025\Audials.exe"
string LastTokenFromPath(string path) => path.Split('\\').Last();

Result: "Audials 2025"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Latency McLaughlin

79576280

Date: 2025-04-16 02:04:39
Score: 1
Natty:
Report link

java-sqs-listener a lightweight, dependency-free library was developed for exactly, with a design that supports seamless future upgrades. Refer to java-sqs-listener-springboot-example for a demonstration of how to integrate the java-sqs-listener library within a Spring Boot application.

Disclaimer: I’m the author.

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

79576275

Date: 2025-04-16 01:54:36
Score: 1.5
Natty:
Report link

The issue is with the Iceberg catalog configuration in the PySpark setup. Try below steps

Change SparkSessionCatalog to SparkCatalog

Add region configuration for Glue catalog

Remove redundant spark.sql.datalake-formats setting. Make sure you have the correct dependencies in your Glue job.

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

79576250

Date: 2025-04-16 01:25:29
Score: 2.5
Natty:
Report link

please see this: https://github.com/playframework/playframework/issues/3334
I also have this issue when using Form class with bindFromRequest() . Just use JSON should be ok

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

79576249

Date: 2025-04-16 01:24:28
Score: 4.5
Natty: 5
Report link

I encountered the same question , and the website http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec can't be open

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

79576248

Date: 2025-04-16 01:24:28
Score: 1
Natty:
Report link

The easiest solution would be to use SimpleQueue as suggested by user2357112's response - but I need to maintain support for python <3.7 which doesn't include it.

Upon further reading on python reentrancy, I learned signals can only trigger between atomic operations.

Therefore I switched from queue to deque, which is O(1) and atomic on both append() and popleft(), and therefore also thread-safe + signal-safe.

import signal
from collections import deque

event_queue = deque()

def signal_handler(signum, frame):
    event_queue.append(signum)
        
signal.signal(signal.SIGWINCH, signal_handler)

while True:
    if event_queue:
        evt = event_queue.popleft()
        print(f"Got an event: {evt}")
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ShawnM

79576241

Date: 2025-04-16 01:09:25
Score: 3.5
Natty:
Report link

You should be able to add -ErrorAction SilentlyContinue to the command that is throwing an error for you. See: https://serverfault.com/questions/336121/how-to-ignore-an-error-in-powershell-and-let-it-continue

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

79576238

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

You should use the metrics filter with the correct syntax to delete AWS Lambda functions that haven’t been invoked in the last 90 days using Cloud Custodian. Your Version 3 is closest, but the statistic field should be Statistics (capital S) and the value should be a list.

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

79576237

Date: 2025-04-16 01:01:23
Score: 1.5
Natty:
Report link

I am using GKE, and because I have a VPC enabled cluster, the BackendConfigs were using NEG to route traffic directly to pods, completely bypassing the usual kubernetes service behavior I was used to.

I had to declare my own backend config instead of allowing the default version, and I also had to instruct my service to use it of course.

This change was absolutely brutal to unpack. I'm confused that I haven't been able to find documentation very easily, and not much help from AI.

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

79576236

Date: 2025-04-16 01:01:23
Score: 3
Natty:
Report link

Although I have learnt a lot with the solutions presented here, none of them worked on my android 11.0.0.

At the end, I succeed make it work installing the apk "shellms" on my mobile as suggested in this link

Do not mix up shellms with f-droid.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Miltoneo

79576229

Date: 2025-04-16 00:51:21
Score: 1
Natty:
Report link

java-sqs-listener a lightweight, dependency-free library built for this exact use case, with a design that supports seamless future upgrades. Refer to java-sqs-listener-springboot-examplefor a demonstration of how to integrate the java-sqs-listener library within a Spring Boot application.

Disclaimer: I’m the author.

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

79576217

Date: 2025-04-16 00:37:18
Score: 1
Natty:
Report link

Since react-native-keyevent not updated anymore, please take a look at this one: react-native-external-keyboard-listener. It provide the same feature but you not need to setup your MainApplication and AppDelegate anymore. It also supports detect if external keyboard is connected or not.

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

79576216

Date: 2025-04-16 00:34:17
Score: 1.5
Natty:
Report link

Try to new brew command:
brew install --cask font-sauce-code-pro-nerd-font

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chung-Yen Hung

79576211

Date: 2025-04-16 00:29:16
Score: 2
Natty:
Report link

Have you tried this?

document.addEventListener('visibilitychange', () => {
  if (document.visibilityState === 'hidden') {
    // Optional: notify or log
  } else {
    // Resume any UI updates if needed
  }
});
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Joanne Leung

79576206

Date: 2025-04-16 00:26:15
Score: 1.5
Natty:
Report link

Great breakdown – this reminds me of a pattern I’ve been building recently in .NET called StackWeaver.
It's a service metadata registry that tracks layers, dependencies, and fallback capabilities across large-scale systems.
It’s not low-level like AQS, but it models fallback paths, callbacks and failure detection at the application architecture level.

Your analysis of tail == null and relaxed writes made me wonder if the same state-tracking principles could be represented or orchestrated in a metadata-driven way.

If you're curious, I'd love to hear what you think:
Modular .NET service registry with metadata, tagging and .bat execution (StackWeaver project)
(also on GitHub soon)

Thanks again for the deep dive – this was fun to read!

First try here :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maggio333

79576202

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

Thanks Azim! That worked for me, also using double quotes like mykonos commented.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fleur_du_mal

79576196

Date: 2025-04-16 00:04:10
Score: 0.5
Natty:
Report link

In case anyone else still encounters this issue even when applying the correct RBAC permissions, we had a difficult to diagnose edge case that led to the same symptoms.

We have a use for both System and User Managed Identities assigned to the Logic App (Standard). Our Bicep templates were assigning the above RBAC permissions correctly to the System Managed Identity principal. We also had AZURE_CLIENT_ID set in the Logic App environment variables with the identity of the User Managed Identity so that this could be used as the principal for auth with certain other services.

It seems that the Azure Blob Storage SDK being used by the Logic App internal connector picks up AZURE_CLIENT_ID if present and uses that identity for its authentication with the Storage Account (which in our case, didn't have the "Storage Blob Data Contributor" RBAC permission set because that identity was not intended to be used for that purpose).

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

79576194

Date: 2025-04-16 00:00:09
Score: 2
Natty:
Report link

I found a fairly simple solution (which worked for our purposes):

I simply opened the https://login.microsoftonline.com/..etc.. URL in a new browser tab. No more CORS error, because now there is no 'origin' :)

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

79576189

Date: 2025-04-15 23:51:06
Score: 3.5
Natty:
Report link

You can have separate lambda only to generate random numbers. It will be uniform for all of your environments.

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

79576188

Date: 2025-04-15 23:51:06
Score: 3
Natty:
Report link
Check that the import is java.util.Date and not java.sql.Date


Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30283518

79576187

Date: 2025-04-15 23:50:06
Score: 1.5
Natty:
Report link

You can assume they are the same as most of toolchains would interpret "RV32" target as "RV32I", treating I as a default extension. However you may expected some tools may not work. Using "RV32I" is a clearer message. Although "I" can be considered as a default extension, it has an alternative: the "E" extension ("RV32E") is an I-equivalent for embedded, limited-resources systems. It provides the same instruction set as "I", but only 16, rather than 32 registers.

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

79576180

Date: 2025-04-15 23:39:04
Score: 1
Natty:
Report link

It's a little late, but I found that in my case, I was losing mouse capture to the containing scrollviewer almost immediately, so I canceled the event bubbling up using e.Handled = true; and that solved my problem.

 private void VolumeSlider_PreviewTouchDown(object sender, TouchEventArgs e)
 {            
     (sender as Slider).CaptureTouch(e.TouchDevice);
     e.Handled = true;
     return;            
 }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: nixkuroi

79576178

Date: 2025-04-15 23:38:03
Score: 5.5
Natty: 5.5
Report link

There's a big folder, are we uninstalling the whole folder - deleting it?

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

79576176

Date: 2025-04-15 23:31:01
Score: 1
Natty:
Report link

unnest the field before you do the export so that is resembles a flat table (csv, etc). Looks like you have an array_agg(struct(.., ..)) fields (called _headers and data) in your source table, see error, e.g.:
_headers.sourceId AS sourceId, _headers.uid AS uid, _headers.messageId AS messageId

unnest these columns and you should be good to go.

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

79576175

Date: 2025-04-15 23:27:59
Score: 6 🚩
Natty: 4.5
Report link

Im facing the same issue at the moment, will you be able to explain how you resolved it please. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: UII

79576173

Date: 2025-04-15 23:25:59
Score: 3
Natty:
Report link

Which C++ language server are you using? The language server is different from the compiler. None of gcc/g++/clang provides a language server. Likely the toolchain installed together with Visual Studio happened to include a language server, e.g., clangd.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (0.5):
Posted by: Cheng Lian

79576170

Date: 2025-04-15 23:21:58
Score: 1.5
Natty:
Report link

I found that is a bug at [email protected] .

polyfilling setImmediate didn't help.

For now, the only way to removes the problem is downgrading react-native to 0.76.7

github://react-native/issues/49739

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

79576167

Date: 2025-04-15 23:20:57
Score: 2.5
Natty:
Report link

I wanted to follow up and see if you guys ever figured this out. I'm currently struggling with understanding AkGeometry and AkRoom nodes. I was hoping that what I could do was simply make a parent of a group of StaticBody3D nodes have a AkGeometry node as a child, making that whole grouping share the same settings for AkGeometry such as defining the texture as Wood, but I can't figure out how this works. It's really frustrating that there isn't enough documentation for how these things work with this plugin

Reasons:
  • Blacklisted phrase (1): this plugin
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30283399

79576156

Date: 2025-04-15 23:06:54
Score: 3.5
Natty:
Report link

AzureWebJobsStorage in local.settings.json needs to be added to the Logic App as an environment variable on the Azure portal.

enter image description here

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

79576154

Date: 2025-04-15 23:04:53
Score: 4
Natty: 5
Report link

Super intuitive and helpful-- many thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew Marinaccio

79576152

Date: 2025-04-15 23:03:52
Score: 4
Natty:
Report link

After more slicing and dicing, I've found the problem. It's the existence of a selectizeInput.

I'll add a dummy selectizeInput to the minimal code below, which now demonstrates the filtering clearing issue.

Does anyone know how to get the filter clearing working properly while still using a selectizeInput?

#these are all the packages used in my real app, which I wanted to load for the minimal example
library(ggplot2)
library(tidyverse)
library(pool)
library(DT)
library(glue)
library(pool)
library(shinyjs)
library(stringr)
library(data.table)
library(lubridate)
library(shinydashboard)
library(rmarkdown)
library(shinyBS)
library(plyr); library(dplyr)
library(stringi)

# UI
ui <- navbarPage(useShinyjs(),
                 tabPanel(
                   titlePanel("DT Filters with Characters"),
                   DTOutput("filtered_table"),
                   actionButton("mybutton","testing"),
                   selectizeInput("test1", label = "nothing", choices = c("1")) #the problem
                 )
)  
# Server
server <- function(input, output, session) {
  
  names <- sample(c("Mike", "Dave", "Anna", "Sara", "John"), 11, replace = TRUE)
  
  results <- c("<1.3", ">20", "&50", "\"quoted\"", "'single'","semi;colon", "slash/", "\\backslash", "equal=sign","#hash", "comma,separated")
  
  data <- data.frame(Name = names, Result = results, stringsAsFactors = TRUE)
  
  output$filtered_table <- renderDT({
  
    datatable(
      data,
      plugins = "input",
      rownames = TRUE,
      filter = "top",
      options = list(pageLength = 10)
    )
  })
}


shinyApp(ui, server)
Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dave916

79576148

Date: 2025-04-15 22:56:50
Score: 2.5
Natty:
Report link

Thanks to @OscarBenjamin, I learned that the SymPy function expand_trig() (but not method, which I tried) does the job: indeed,

from sympy import S,expand_trig
tanh,artanh = S("tanh, artanh")
def f(n):
    n=S(n)
    return expand_trig(tanh(sum(artanh(k/n) for k in range(1,n))))

f(3)  # does return 9/11 !
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @OscarBenjamin
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Max