79675795

Date: 2025-06-23 07:48:07
Score: 4
Natty:
Report link

add selector app!=""

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
Posted by: voipp

79675791

Date: 2025-06-23 07:41:05
Score: 1
Natty:
Report link

# Retry reading the "may b2b.xls" file using openpyxl engine instead

# Also, set engine="openpyxl" for the other file just in case

gst_df = pd.read_excel(gst_portal_file, engine="openpyxl")

# Try alternative engine for old .xls format using 'pyxlsb' or similar might not work; fallback to openpyxl might not support .xls either

# Instead, convert using Excel writer to xlsx or try older compatibility with xlrd (but not available)

# Skip reading miracle_df for now and just preview gst_df

gst_df.head()

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

79675774

Date: 2025-06-23 07:23:00
Score: 5.5
Natty:
Report link

Thanks for sharing this! I was also wondering how to add my own music in the Banuba Video Editor. Your solution really helps! For Android, adding the code to the VideoEditorModule using AudioBrowserConfig.LOCAL makes sense. And for iOS, setting AudioBrowserConfig.shared.musicSource = .localStorageWithMyFiles is super useful, especially knowing it only works with audio stored via the Apple Music app. It’s a bit tricky that it's not clearly explained on their website or GitHub, so your answer is a big time-saver. Appreciate the clear directions! This will help a lot of users facing the same issue. 🎵🙌

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: johnson Black

79675772

Date: 2025-06-23 07:19:59
Score: 2
Natty:
Report link

try to encode images as Base64 directly in HTML:

<img src="data:image/jpeg;base64,..." />

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

79675764

Date: 2025-06-23 07:13:57
Score: 3
Natty:
Report link

You can get sqlplus to return an error code by using the WHENEVER SQLERROR

https://docs.oracle.com/en/database/oracle/oracle-database/21/sqpug/WHENEVER-SQLERROR.html

https://stackoverflow.com/a/59913172/3715973

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Nelson

79675761

Date: 2025-06-23 07:11:57
Score: 2
Natty:
Report link

Teams client will block any popup login pages except for the authenticate method in Teams SDK according to this [issue](https://github.com/OfficeDev/microsoft-teams-library-js/issues/171), and thus I don't think we could leverage AuthorizeRouteView in Teams.

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

79675756

Date: 2025-06-23 07:06:55
Score: 2
Natty:
Report link

After researching on Reddit, Stack Overflow, Telegram groups, and consulting with other developers, I was unable to connect my Laravel project to a ZKTeco device. However, after switching to Python, I was finally able to make it work.

Now, I can access the ZKTeco iClock-880-H/ID device in my Laravel project by using a Python FastAPI service. I hosted the FastAPI project on a local server and call its API endpoints from Laravel.

You can find the full documentation on GitHub:
🔗 https://github.com/najibullahjafari/zkteco_device_python_connect

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

79675751

Date: 2025-06-23 07:04:54
Score: 2
Natty:
Report link

git remote prune origin

This removes references to remote branches that no longer exist.

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

79675749

Date: 2025-06-23 06:59:53
Score: 2.5
Natty:
Report link

maybe it is a bit late but try using an MarkerAnimated instead of the basic one. It seems like the basic component cannot properly handle the re rendering and it causes the weird flickering effect, MarkerAnimated solve this.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jean Paul Sierra Boom

79675748

Date: 2025-06-23 06:57:52
Score: 2.5
Natty:
Report link

To achieve markers that resemble those in Google Maps, it's recommended to switch from Legacy Markers to AdvancedMarkers, which are currently in use in your sample code. AdvancedMarkers offer greater customization options, including the ability to apply graphics, allowing you to more closely mimic the desired designs. Further details on their usage can be found in this documentation.

Reasons:
  • Blacklisted phrase (1): this document
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: bobskieee

79675743

Date: 2025-06-23 06:53:51
Score: 0.5
Natty:
Report link

So far it seems the following can fix the issue:

    <ItemGroup Condition="'$(Configuration)' == 'Release'">
        <TrimmerRootAssembly Include="Sukiru.Domain" RootMode="All" />
        <TrimmerRootAssembly Include="AWSSDK.S3" RootMode="All" />
        <TrimmerRootAssembly Include="zxing" RootMode="All" />
    </ItemGroup>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kasper Sommer

79675739

Date: 2025-06-23 06:51:50
Score: 0.5
Natty:
Report link

As @Li-yaoXia pointed out, you need a recursion point at each constructor you want to analyze. My initial definition of Stmt was incorrect because the `SAssign` constructor that models variable binding was a "leaf".

This is a better definition that actually models nested variable scopes:

data Stmt a = SAssign Id (Stmt a) -- id = ..; smt
          | SSeq [Stmt a] -- smt0; smt1; ..
          | SIf (Stmt a) (Stmt a) -- branching
          deriving (Show)

-- | base functor of Stmt
data StmtF a x = SAssignF Id x -- id = ...; smt
          | SSeqF [x] -- smt0; smt1; ..
          | SIfF x x
          deriving (Eq, Show, Functor, Foldable, Traversable)

instance Semigroup (Stmt a) where
  (<>) = undefined              -- we only need mempty
instance Monoid (Stmt a) where
  mempty = SSeq []
s0 :: Stmt a
s0 = SAssign 0 (SIf (SAssign 1 mempty) (SAssign 2 mempty))

gives us at last

λ>  scanCofree (<>) mempty $ binds s0
[0] :< SAssignF 0 ([0] :< SIfF ([0,1] :< SAssignF 1 ([0,1] :< SSeqF [])) ([0,2] :< SAssignF 2 ([0,2] :< SSeqF [])))
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Li-yaoXia
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ocramz

79675738

Date: 2025-06-23 06:50:50
Score: 3
Natty:
Report link

Good to know gs provides option to set PDF document properties.

what are all the other values we can set for /PageMode /UseOutlines /Page /View /PageLayout /SinglePage.

I need to set FitToheight, single page continous, open first page, without bookmark panel.

thanks.

sudhi

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

79675736

Date: 2025-06-23 06:48:49
Score: 1.5
Natty:
Report link

To get video tracks from an HLS .m3u8 using AVURLAsset, use loadValuesAsynchronously on the tracks key Note: HLS streams often don not expose video tracks directly — use AVPlayer for playback instead.

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

79675731

Date: 2025-06-23 06:45:48
Score: 1
Natty:
Report link

you can integrate with a translation management platform like simplelocalise to manage the i18next file and translations, or you can use non-i18next solution like autolocalise to avoid translation file management and do auto translate

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: JustWei

79675729

Date: 2025-06-23 06:40:47
Score: 3
Natty:
Report link

You could sort the numbers first, using an efficient algorithm such as quick sort or merge sort, and then just compare each number with the next one.

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

79675724

Date: 2025-06-23 06:38:46
Score: 1
Natty:
Report link

FYI this is my RN version :

 "react-native": "0.79.2",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alis

79675711

Date: 2025-06-23 06:24:42
Score: 1
Natty:
Report link
CustomerID int IDENTITY(1,1) PRIMARY KEY,
    CustomerName nvarchar(50) NOT NULL,
    ContactName nvarchar(50) NOT NULL,
    [Address] nvarchar(MAX) NOT NULL,
    City nvarchar(50) NOT NULL,
    PostalCode nvarchar(50) NOT NULL,
    Country nvarchar(50) NOT NULL
can you create aspx.net
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ms Angel

79675710

Date: 2025-06-23 06:23:42
Score: 1
Natty:
Report link

Fix a problem you got 2 option
1.Changing regional format to USA the error not occur.
2.Using a global.json on your solution root folder pointing to a previous .NET SDK makes the error disappear.

{
  "sdk": {
    "version": "9.0.204"
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1437099

79675708

Date: 2025-06-23 06:20:41
Score: 0.5
Natty:
Report link

Remove Align as it is not needed here and modify the mainAxisAlignment of the Row from end to spaceBetween:

from:

 Spacer(),
 Row(
     mainAxisAlignment: MainAxisAlignment.end,
     children: [

to:

 Spacer(),
 Row(
     mainAxisAlignment: MainAxisAlignment.spaceBetween,
     children: [
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nishant

79675705

Date: 2025-06-23 06:19:41
Score: 0.5
Natty:
Report link

Have you check my boilerplate project for createing a Servlet 5 (Jakarta EE 9 compatible) based Java web application.

https://github.com/hantsy/jakartaee9-servlet-starter-boilerplate.

It includes the configuration to run on Tomcat 10, and several options to run on Jetty 11, also contains the testing codes written with Arquillian and JUnit 5.

Simply update the dependency version to Jakarta EE 10 to satisfy your requirements.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Hantsy

79675691

Date: 2025-06-23 06:05:37
Score: 1.5
Natty:
Report link

I dont understand why this happened but I got the answer, instead of using a relative file directory I tried a full file directory which was this: (that solved the problem but I still dont understand why I needed the full directory and not the relative directory because thats what I had learnt.

file = open(rf"C:\Users\verma\PycharmProjects\PythonProject\files\{filename}", "w")
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ved Verma

79675687

Date: 2025-06-23 06:01:35
Score: 6 🚩
Natty: 4
Report link

test guest, hello this is test guest to post as a guest mode on stackoverflow.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: guest

79675677

Date: 2025-06-23 05:48:32
Score: 1
Natty:
Report link

You are passing a `string` to the children prop, which is why you are getting this error.

Change the way you are using it, like this:

<SafeScreen>
    <Text>....</Text>
</SafeScreen>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Janay Alam

79675676

Date: 2025-06-23 05:46:31
Score: 2.5
Natty:
Report link

For a lazy approach just go Laravel Forge:

Just need to register your git repo! and thats it.

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

79675675

Date: 2025-06-23 05:40:30
Score: 2
Natty:
Report link

I think the issue is with the name of your stream. In data sources that stream is defined with name Microsoft-Event but in data flows it is defined with Microsoft-WindowsEvent. The streams defined in data sources should match those defined in data flows. Data flows basically says which data to where is forwarded. If you do not have defined Microsoft-WindowsEvent stream you cannot use it.

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

79675663

Date: 2025-06-23 05:30:27
Score: 2
Natty:
Report link
$product_id = 123;
$product = wc_get_product( $product_id );
echo $product->get_title();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vandan Desai

79675662

Date: 2025-06-23 05:30:27
Score: 2.5
Natty:
Report link

The problem was enabling GL_DEPTH_TEST in GameScreen's constructor, which invisiblises 2D texture of StartScreen.

Still, you can visit my repository for an example displaying and undisplaying screens:

https://github.com/sarahyoo011725/opengl-screen-switching

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

79675660

Date: 2025-06-23 05:28:27
Score: 3.5
Natty:
Report link

file = open(rf"files\{filename}", "w") # Raw string with f-string

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

79675658

Date: 2025-06-23 05:27:26
Score: 2
Natty:
Report link

After a bit more research and thanks to this repo I discovered that challengeHash is actually the SHA-256 hash of the Base64 URL-safe encoding of the JSON string {"challenge":"<YOUR_CHALLENGE_HERE>"}. This still doesn't seem to work with Apple's example, but I was able to verify it with my own attestation object.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Math Rules

79675657

Date: 2025-06-23 05:26:26
Score: 0.5
Natty:
Report link

The query that you tried seems to show that you have the intuition that group by will help you, but misuse it in the details.

Grouping will effectively help you to generate one output rows from multiple rows fetched from the joins.

Before grouping you should ask yourself what reality each row represents, and what columns are duplicates regarding your problem: they are the ones you will group on.

For example, with the following data (intermediate results of an hypothetical join on the database of an hypothetical clothes seller):

customer_id first_name last_name order_id quantity what
1 John Smith 1000 1 trousers
1 John Smith 1001 1 sock
1 John Smith 1002 1 sock
2 Jane Smith 1003 2 sock
3 John Smith 1004 1 trousers

You can choose to group by against two different axes, depending on what you're interested in:

The problem I see in your query is that you group by (nearly) every field you encounter so probably you first have to question yourself about what reality do I want a unique row for in my end result?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Guillaume Outters

79675652

Date: 2025-06-23 05:25:26
Score: 1
Natty:
Report link

int[] numbers = { 1, 2, 3, 4, 2, 5 };

for (int i = 0; i < numbers.Length; i++)
{
    for (int j = i + 1; j < numbers.Length; j++)
    {
        if (numbers[i] == numbers[j])
        {
            Console.WriteLine(numbers[i]);
            break;
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shanmugam k

79675648

Date: 2025-06-23 05:21:24
Score: 6.5 🚩
Natty:
Report link

Talvez te ayude en algo

● Ve a la consola de Google Cloud, abre tu navegador web y navega a [ console.cloud.google.com ]

● Selecciona el proyecto correcto, asegurate de haber seleccionado el proyecto asociado con tu acceso a la API de Google Ads

● Navega a credenciales, en el menu de navegación el icono en la parte superior izquierda, ve a API y servicios > credenciales

● Encuentra tu ID de cliente de OAuth, verás una lista de tus claves de API o ID de cliente de OAuth 2.0, haz clip en el nombre del código que estás usando para tu script de python

○ Comprueba la configuración: En la página de configuración de tu ID de cliente, comprueba 2 cosas: 1. Tipo de aplicación: para un script que se ejecuta en Google Colab o en tu equipo local, debe estar configurado como aplicación de escritorio. Si esta configurado como aplicación web, esperará un flujo de autenticación diferente y requerirá un redirect_uri que no sea localhost 2. URI de redireccionamiento Autorizados, si tu tipo de aplicación es web verás esta sección, para un script de Colab, es probable que esto sea incorrecto, al cambiar el tipo a Aplicación de Escritorio. Google gestionará correctamente la dirección al localhost automáticamente. Si es absolutamente necesario usar el tipo Aplicación Web, deberás agregar: Http//localhost:8080 " o cualquier puerto que tu servidor local esté configurado para usar.

Si haz comprobado esta configuración y sigues teniendo problemas, obtendrás la mejor ayuda haciendo una pregunta detallada en lugar como los foros oficiales de soporte de la API de Google Ads

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2): pregunta
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Axe Bolaños

79675645

Date: 2025-06-23 05:16:23
Score: 1
Natty:
Report link

You're getting the error because \ in strings can create escape sequences. Fix it by using a raw string or double backslashes:

file = open(f"files\\{filename}", "w")

or

file = open(rf"files\{filename}", "w")

Also, ensure the files folder actually exists before running the code.

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

79675642

Date: 2025-06-23 05:13:22
Score: 3
Natty:
Report link

This issue has been resolved. I had to override below mentioned of the Open API templates:

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

79675639

Date: 2025-06-23 05:12:22
Score: 1
Natty:
Report link
(t:=lambda v:v and((yield v%100),(yield from t(v//100))))
print(*t(12345))
print(list(t(12345678))[::-1])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: qulinxao

79675637

Date: 2025-06-23 05:10:21
Score: 0.5
Natty:
Report link
## Sum of cells with YES as the corresponding value

You can also achieve the intended output using the formula below

Formula

=SUM(FILTER(D1:D, E1:E="YES"))

Sample Input

D E
2 Yes
8 No
10 Yes

Output

Output
15

References:

FILTER

SUM

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

79675636

Date: 2025-06-23 05:10:21
Score: 1
Natty:
Report link

You just need to add sync=true to you annotation. After all, your method is synchronized.

@Cacheable(value = "provider", key = "#providerId", sync = true)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Muhammadqodir Muhsinov

79675635

Date: 2025-06-23 05:09:21
Score: 3.5
Natty:
Report link

No, currently Redash doesn't support this feature.
Reference: https://github.com/getredash/redash/issues/7052

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: DFX Nguyễn

79675632

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

The connection strings(url and api key) are still required to get access to your database tables,turning off the RLS for a given table means that anyone who is connected to your db can get access to those tables and modify their content,supabase will not apply any restriction as long as the user his connected to the database.

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

79675627

Date: 2025-06-23 04:51:18
Score: 0.5
Natty:
Report link
test('on paste should autofill', async ({ page, context }) => {
  // grant access to clipboard (you can also set this in the playwright.config.ts file)
  await context.grantPermissions(['clipboard-read', 'clipboard-write']);

  // focus on the input
  await page.locator('input').focus();

  // copy text to clipboard
  await page.evaluate(() => navigator.clipboard.writeText('123'));

  // Get clipboard content
  const handle = await page.evaluateHandle(() => navigator.clipboard.readText());
  const clipboardContent = await handle.jsonValue();

  // paste text from clipboard
  await page.locator(first).press('Meta+v');

  // check if the input has the value
  await expect(page.locator(input)).toHaveValue('123');
});

Taken from: https://www.adebayosegun.com/snippets/copy-paste-playwright

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

79675617

Date: 2025-06-23 04:41:15
Score: 1.5
Natty:
Report link
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vite.dev/config/
export default defineConfig({
  plugins: [react()],
  server:{
    port:3001,
    cors:true
  }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: anell

79675615

Date: 2025-06-23 04:40:14
Score: 1
Natty:
Report link

We ran into this issue too. In our case, it was caused by a duplicate folder name in the .git/refs/remotes/origin directory. When a new branch was created, the folder path was given with an uppercase starting letter, which resulted in a duplicate folder on a case-insensitive file system (like Windows). Once we removed the conflicting folder, the issue was resolved.
Delete the folder through website and did "git remote prune origin" as suggested in this thread. Then fetch and pull from VS works fine.

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

79675612

Date: 2025-06-23 04:37:14
Score: 0.5
Natty:
Report link

Considering follow codes

template<typename T>
struct Rx {
    T* ipc;

    operator T*() const {
        return ipc;  // implicit conversion to T*
    }
};

struct IPC {
    void doSomething();
};

struct Bundle {
    Rx<IPC> rx1;
};

There are cases that is not easy to distinguish when you are using object of Rx or when you are using dereferencing of it

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Tin Luu

79675609

Date: 2025-06-23 04:35:13
Score: 2
Natty:
Report link

It seems that I need to add the following import to the head tag:

<script src="CAN-3-3-0/index.js"></script>

Then access to my website via localhost/hello_word

or localhost:3001 simply using the native http server of Canonicaljs (CAN)

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: imed bouchoucha

79675604

Date: 2025-06-23 04:22:11
Score: 1
Natty:
Report link

Turns out that when I run form_full_data on the cloud the rows are returned in a different order than when I run it on my local machine. This is easily fixed by an additional sort command.

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

79675590

Date: 2025-06-23 03:37:00
Score: 1.5
Natty:
Report link

I ran into the same issue, and after some digging, I realized it was caused by a mismatch between the DFM and CPP files. Somebady had updated the CPP file and removed some controls, but forgot to update the DFM. So the DFM was referencing objects that no longer existed in the code.

Lesson learned — and hopefully this helps someone else avoid the same headache.

By the way, this thread is older than my daughter!

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

79675572

Date: 2025-06-23 02:44:50
Score: 2.5
Natty:
Report link

Figured it out - had to add a Search Index Data Reader assignment to my search service for my user account (even though this is never mentioned in the tutorial, and my user account is the subscription admin).

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

79675570

Date: 2025-06-23 02:40:49
Score: 3.5
Natty:
Report link

Having the same issue on a legacy HPC cluster which running CentOS 7. This problem can be fixed by compiling a newer version of binutils and add bin to the PATH.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): Having the same issue
  • Single line (0.5):
Posted by: link89

79675568

Date: 2025-06-23 02:36:48
Score: 2
Natty:
Report link

I got it.

Use this api:

tizen.systeminfo.getCapability("http://tizen.org/feature/platform.version")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: hcf

79675564

Date: 2025-06-23 02:27:45
Score: 5.5
Natty: 5.5
Report link

Since I can't leave a comment, I'm posting my question here.

I tried using:

await Future.delayed(Duration(milliseconds: 1000));

However, some users still can't see the JS file being loaded.

Should I try increasing the delay time?

Have you found any other solution that works more reliably?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found any other solution that works more reliably
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lee

79675559

Date: 2025-06-23 02:18:43
Score: 5.5
Natty:
Report link

According to this link, 50 lines of code modification is all that is needed.

I have not tried it. Maybe it will work?

https://github.com/php/php-src/issues/12762

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mike

79675558

Date: 2025-06-23 02:13:41
Score: 4
Natty: 4.5
Report link

If someone still wants to solve this (like me), please check out https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-azure-functions-csharp?tabs=entra-id#manage-trigger-parameters-with-app-configuration-references

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

79675556

Date: 2025-06-23 02:08:39
Score: 0.5
Natty:
Report link

I had to be really explicit with this. source.orgainizeImports was not enough.
Cursor was not prioritising my eslint-plugin-import rules and using Typescripts imports.

"editor.codeActionsOnSave": {
    "source.organizeImports.sortImports": "never",
    "source.fixAll.eslint": "explicit",
},
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jamie Connor

79675555

Date: 2025-06-23 02:08:39
Score: 3
Natty:
Report link

In my case services.msc was opened in another user's session.

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

79675545

Date: 2025-06-23 01:28:30
Score: 1
Natty:
Report link
Install-PackageProvider -Name NuGet -Force | Out-Null
Install-Module -Name Microsoft.WinGet.Client -Force -Repository PSGallery | Out-Null
Repair-WinGetPackageManager
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KAnggara75

79675540

Date: 2025-06-23 01:07:25
Score: 3.5
Natty:
Report link

Using the Mapbox Map's A.I. assistant I managed to workout I was omitting something in my code.

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

79675536

Date: 2025-06-23 00:50:21
Score: 1
Natty:
Report link

So turns out, to externalize the unnecessary modules in Sequelize, I have to explicitly mention in inside the electron() block, rather than the top level scope in defineConfig. I was under the impression writing it in the top level scope would apply to both the main as well as the renderer process but guess not. It only applied to the renderer process I believe. Better to explicitly mention inside the main process of electron().

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

79675530

Date: 2025-06-23 00:30:17
Score: 1.5
Natty:
Report link

Small programs that are non recursive (functions call themselves), shouldn't really cause problems, but check your resources in any case esp while compiling (number of cpus used, memory). Using recent compiler especially of recent revisions and stable compilers. Recent versions .. Sometimes better, sometimes worse. Be sure you are using correct architecture if you sometimes cross compile, or use distributed compiling if you use different computers. Using basic setups is best for testing.. like 1 cpu on local machine, but might decrease speed. Some of things are advanced users, so might not even be relevant, but use simple test cases.

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

79675514

Date: 2025-06-22 23:48:08
Score: 0.5
Natty:
Report link

This was fixed earlier today so you should be able to install the development version of terra.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Robert Hijmans

79675511

Date: 2025-06-22 23:31:04
Score: 3
Natty:
Report link

Por qué me aparecen en mi correo _000_MN2PR18MB3590665D26F28FDAC53105ED8B70AMN2PR18MB3590namp_

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: j juan davila camarill

79675506

Date: 2025-06-22 23:12:55
Score: 8.5 🚩
Natty:
Report link

@Shrotter I am also facing similar issue- Issue

I want reference to the part from instance - shown in red block.

From above answer, I get oSel.Count2 = 0.

if TypeName(oProductdocument) = "ProductDocument" then
'Search for products in active node
oSel.Search "CATAsmSearch.Product,in"

    if oSel.Count2 <> 0 then
        'first selected product is the active node
        Set oActiveProduct = oSel.Item2(1).LeafProduct

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing similar issue
  • User mentioned (1): @Shrotter
  • Low reputation (1):
Posted by: Anand Abyankar

79675494

Date: 2025-06-22 22:48:50
Score: 1
Natty:
Report link

I found a solution, I think. It doesn't exactly give me what I want, but it's a great start and I no longer feel stuck.

I made an empty game object, and attached a script to it that contains LineRenderer and Mesh.

Here is the code below I have now

using UnityEngine;

/* Ensures that the attached GameObject has a MeshFilter and MeshRenderer component.
 * Unity automatically generates one if not.*/
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class ProceduralPlanet : MonoBehaviour
{
    /* Number of points around the circle.
     * Increasing the number makes it smoother and increases resolution */
    public int segments = 1000;

    /* The radius of the object */
    public float baseRadius = 50f;

    /* Controls the scale of the Perlin noise applied to the radius */
    public float noiseScale = 4f;

    /* Controls the amplitude of the Perlin noise applied to the radius */
    public float noiseAmplitude = 0.05f;

    private void Start()
    {
        /* Takes the attached MeshFilter, creates a mesh object, and names it */
        MeshFilter meshFilter = GetComponent<MeshFilter>();
        Mesh mesh = new Mesh();
        mesh.name = "Procedural Planet";

        /* Create arrays for vertices and triangles.
         * Vertices will hold the positions of the points in 3D space,
         * Triangles will define how these points are connected to form the mesh */
        Vector3[] vertices = new Vector3[segments + 2]; // center + edge points
        int[] triangles = new int[segments * 3]; // 3 per triangle (center + 2 edge points)

        /* Center of the planet */
        vertices[0] = Vector3.zero; // center point of planet

        
        for (int i = 0; i <= segments; i++)
        {
            /* Goes around to create a circle*/
            float angle = (float)i / segments * Mathf.PI * 2f;

            // Calculate unit vector for the current angle
            float xUnit = Mathf.Cos(angle);
            float yUnit = Mathf.Sin(angle);

            // Apply Perlin noise
            float noise = Mathf.PerlinNoise(xUnit * noiseScale + 100f, yUnit * noiseScale + 100f);

            // Calculate the radius with noise applied
            float radius = baseRadius + (noise - 0.5f) * 2f * noiseAmplitude;

            // Set the vertex position
            vertices[i + 1] = new Vector3(xUnit, yUnit, 0) * radius;

            // Create triangles (except on last iteration)
            if (i < segments)
            {
                // Each triangle consists of the center and two consecutive edge points
                int start = i * 3;
                triangles[start] = 0; // center
                triangles[start + 1] = i + 1;
                triangles[start + 2] = i + 2;
            }
        }

        // Handle the last triangle to close the circle
        mesh.vertices = vertices;

        // The last triangle connects the last edge point back to the first edge point
        mesh.triangles = triangles;

        // Calculate normals and bounds for lighting and rendering
        mesh.RecalculateNormals();
        mesh.RecalculateBounds();

        // Assign the mesh to the MeshFilter
        meshFilter.mesh = mesh;
    }
}

I'll make this a community wiki, so anyone is free to edit and help other people. Have no idea why the syntax isn't highlighting though.

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

79675479

Date: 2025-06-22 22:12:41
Score: 1.5
Natty:
Report link

I have just stumbled upon a better work round for this problem - https://lore.kernel.org/linux-arm-kernel/[email protected]/ - the arch/arm/Makefile can be modified to remove all the cc-option commands that modify the architecture specific and tuning specific compiler options!

I presume that the out of tree module build does not for some reason use the arch/arm/Makefile whilst my in-tree module build uses the Makefile an so has the build problem with gcc v11 and above.

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

79675472

Date: 2025-06-22 21:48:36
Score: 2
Natty:
Report link

You'll need to completely master LOD in game engines.

Unity's tutorials are staggeringly bad, but you can easily find them https://learn.unity.com/tutorial/working-with-lods-2019-3#

https://docs.unity3d.com/2023.1/Documentation/Manual/LevelOfDetail.html

You can also easily find literally thousands of tutorials on LOD concepts all over the place. Here's a random one I googled up for you

https://www.youtube.com/watch?v=IIUQE90-gFY

best of luck!

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Fattie

79675464

Date: 2025-06-22 21:31:30
Score: 0.5
Natty:
Report link

What do you want to test?

If the answer is that you want to test that your code interacts with gatttool in the way you expect, then just try it.

If the answer is that you want to test whether you're using pexpect correctly, then I suggest that you write an external program that just records what you send to it and replies with some text that you expect (probably the responses expected from gatttool). Then run that instead of gatttool in your tests. For example, you can make your connect function accept parameters for the strings to pass to pexpect functions - different things for your external test program or for gatttool.

Even if you are using pexpect correctly and you can successfully interact with gatttool, you should consider what happens if gatttool responds in an unexpected way. Your connection to it might drop, or it might respond in a different way to normal. A test external program would also let you test that something sensible happens in those cases.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What do you
  • Low reputation (0.5):
Posted by: J Banana

79675456

Date: 2025-06-22 21:13:25
Score: 1.5
Natty:
Report link

Solved.

Solution was to set transformMixedEsModules: true in the build section of the vite.config.js

  build: {
    commonjsOptions: {
      transformMixedEsModules: true,
    }, 

Credits: https://stackoverflow.com/a/75538477/2506522

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: betontalpfa

79675455

Date: 2025-06-22 21:12:25
Score: 2
Natty:
Report link

Turns out this was a compiler bug in the version of Clang I was using.

You can see in this godbolt example how the minimally reproducible example compiles in Clang 20.1.0 but not Clang 19.1.10.

The issue was caused by having the code contained in a template inside a module.

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

79675450

Date: 2025-06-22 21:06:23
Score: 4
Natty:
Report link

I am facing the same error. I found that the Player script, which we are using, is attached to both Player and Player Visual. Turn off that script in Player Visual, and you will be good to go!! This worked for me!!

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I am facing the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abhinav Sharma

79675449

Date: 2025-06-22 21:06:23
Score: 0.5
Natty:
Report link

If someone asked me how to match drivers and passengers at Uber scale using only a relational database, I would acknowledge that it's quite challenging, but here's a straightforward way I would tackle it:

  1. Think Spatially: First off, relational databases aren't designed for this kind of real-time, geospatial matching. But if we have to, we'd likely divide the cities into manageable zones or grids (using geohashing or a similar approach) to make querying and updating locations more feasible.

  2. Index Smartly: In terms of indexing, we'd want to create indices on these spatial zones and possibly on timestamps to find who's where and when quickly. However, too many indices could slow things down because of the constant updates, so we'd have to be selective and smart about it.

  3. Periodic Polling for Matching: Since we're constrained by periodic polling, we could set up a background job to run at intervals. It would pull the latest driver locations and match them with waiting passengers, kind of like "batch matchmaking." This won't be as fast as real-time matching, but it's workable.

  4. Handle High Traffic Areas: For busy areas like urban cities, we might need to run this matching process more frequently and possibly use smaller grid sizes to get more precise matches without overloading the system.

  5. Race Condition Management: To prevent issues like race conditions, especially when several matches are happening at once, we might need to use some form of transaction isolation. However, that could slow down the system, so we'd need to balance our safeguards with performance.

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

79675446

Date: 2025-06-22 21:05:22
Score: 2.5
Natty:
Report link

EF Core 9.0 Stills with this anoying issue!

My connection string is right, and it stills failing trying to check the pending migrations, a 'easy'task in theory. The database already exists but stills trying to create a new one and throws an exception. But in local environment works, the problem is when the app (in a docker image) is deployed to a remote VPS.

 public static IApplicationBuilder RunDbMigrations(this IApplicationBuilder app)
 {
     using (var scope = app.ApplicationServices.CreateScope())
     {
         var dbMaster = scope.ServiceProvider.GetRequiredService<MasterDbContext>();
         var pendingMigrations = dbMaster.Database.GetPendingMigrations();  // IT DOESN'T WORK

         string cs = dbMaster.Database.GetConnectionString();
         Console.WriteLine(!string.IsNullOrWhiteSpace(cs) ? $"Usando DB: {cs}" : "SIN CONEXION");

         if (!pendingMigrations.Any())
         {
             Console.WriteLine("No hay migraciones pendientes...");
             return app;
         }

         try
         {
             Console.WriteLine($"Aplicando migrations...");
             dbMaster.Database.Migrate();
         }
         catch (Exception ex)
         {
             Console.WriteLine($"Error al aplicar migraciones!: {ex.Message}");
             throw;
         }

         return app;
     }
 }

RunDbMigrations is called from program.cs after build line:

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
    app.MapOpenApi();
    app.UseCors("Development"); // Enable CORS in development
}

// DB Migrations:
app.RunDbMigrations();

// http requests custom logging:
app.UseHttpRequestsLogging();

Please help!

Reasons:
  • RegEx Blacklisted phrase (3): Please help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: thezuliano

79675443

Date: 2025-06-22 20:49:18
Score: 3.5
Natty:
Report link

I have a billion dollars worth of cryptocurrency and I want all of it now find it now with my social security number my name my face my ID I want my money now if I'm at my wallet now

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Javier Sanchez

79675441

Date: 2025-06-22 20:47:18
Score: 1.5
Natty:
Report link

It started to happen for me recently after a few Windows 11 updates. For me the fix was to call this in shell:

wsl.exe --install --no-distribution

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Błażej Smorawski

79675440

Date: 2025-06-22 20:44:17
Score: 0.5
Natty:
Report link

Core Technologies in Uber’s Location Service

1. Apache H3 – Hexagonal Hierarchical Spatial Indexing

2. Schemaless (based on MySQL)

3. Apache Kafka

4. Apache Flink or Spark Streaming

5. Redis / Memcached

6. Cassandra or DynamoDB

7. Ringpop

8. uReplicator (Kafka Mirroring)

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

79675437

Date: 2025-06-22 20:41:16
Score: 0.5
Natty:
Report link

You cannot use a slicer directly as a chart axis in Excel. This is because Slicers are designed to filter data in pivot tables or pivot charts, but not as axis labels.

So, an alternative can be to:

a) create a pivot table, b) insert a pivot chart based on this pivot table, c) add a slicer connected to the pivot table.

The slicer won't become an axis, but it will filter the data.

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: fromexceltopython

79675431

Date: 2025-06-22 20:26:12
Score: 1.5
Natty:
Report link

new XMLSerializer().serializeToString(document.doctype)+'\n'+document.documentElement.outerHTML

this works as it pulls the doctype string then adds the outer HTML

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

79675422

Date: 2025-06-22 20:08:07
Score: 1.5
Natty:
Report link

No, there is no difference. Both extensions will work.

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

79675412

Date: 2025-06-22 19:55:02
Score: 2
Natty:
Report link

I was having the same issue, but was never prompted to create a password when I installed pgadmin. Despite this eo_coder_jk's answer worked for me.

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

79675406

Date: 2025-06-22 19:40:59
Score: 4.5
Natty:
Report link

It seems that JetBrains members posted an article how to fix this error code here:
https://youtrack.jetbrains.com/articles/SUPPORT-A-1853/Junie-provides-error-code-400-input-length-and-maxtokens-exceed-context-limit

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

79675380

Date: 2025-06-22 19:09:51
Score: 1.5
Natty:
Report link

The iterator object of the built-in iterable data types is itself iterable. (That is, it has a method with the symbolic name Symbol.iterator, which simply returns the object itself.) Sometimes this is useful in the following code when you want to run through a “partially used” iterator:

let list = [l,2,3,4,5];

let iter = list[Symbol.iterator]();

let head = iter.next().value; // head == 1

let tail = [...iter]; // tail == [2,3,4,5]

JavaScript: The Definitive Guide, David Flanagan, page 363

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений Попов

79675370

Date: 2025-06-22 19:01:47
Score: 1
Natty:
Report link

Looks like my prior searches didn't give the answer I was looking for.

It looks like main.cpp symbols weren't being exposed to shared libraries, so it was getting tripped up.

Compiling with g++ -rdynamic -I./lib main.cpp -o game worked as expected.

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

79675365

Date: 2025-06-22 18:50:45
Score: 1.5
Natty:
Report link

I was able to fix the issue by changing the host property from

host:"localhost",

to

host:"127.0.0.1",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cv 123760

79675354

Date: 2025-06-22 18:32:40
Score: 0.5
Natty:
Report link

At that point the Environment would be ready to use, even if beans are not created yet.

So you can inject the Environment into your class, then execute the old environment.getProperty("my.property") method.

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

79675347

Date: 2025-06-22 18:21:36
Score: 4
Natty:
Report link

How about encoding the length-info explicitly, in a static constexpr variable?

struct mybits {
  static constexpr size_t num_bits = 15;
  unsigned int one:num_bits;
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: user2929974

79675331

Date: 2025-06-22 18:05:32
Score: 1
Natty:
Report link

webview_flutter version 4.13.0 has support for SSL error handling via NavigationDelegate(onSSlAuthError)

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

79675330

Date: 2025-06-22 18:05:32
Score: 1
Natty:
Report link

webview_flutter version 4.13.0 has support for SSL error handling via NavigationDelegate(onSSlAuthError)

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

79675322

Date: 2025-06-22 17:48:27
Score: 1
Natty:
Report link

If your Power BI reports using DirectQuery to a MySQL database are not refreshing automatically on the Power BI Service, it's likely due to missing or misconfigured gateway settings. Unlike Import mode, DirectQuery requires an on-premises data gateway to maintain a live connection between the Power BI Service and your local or private database. Without a properly installed and configured gateway, the service cannot query your MySQL source in real time or on schedule, which explains why refreshes fail and only work manually in Power BI Desktop. To resolve this, install the on-premises data gateway, configure it in the Power BI Service under "Manage Gateways," ensure the data source credentials are valid, and map your dataset to use this gateway. Once set up correctly, your reports should refresh automatically or on-demand without needing manual intervention from Desktop.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Manas Parashar

79675285

Date: 2025-06-22 16:44:09
Score: 1
Natty:
Report link

On the GitLab feature request mentioned by @Jonathan, kawadumax posted a nice solution leveraging Just's ability to have embedded Bash that is essentially:

#!/bin/bash -eu
command1 &
command2 &
trap 'kill $(jobs -pr)' EXIT
wait
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mark C

79675280

Date: 2025-06-22 16:33:06
Score: 2
Natty:
Report link

Sorry for late answer, but you could use this gist on Github, it should solve validation issue without any problem. Hope this helps you or anyone who sees this.

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

79675279

Date: 2025-06-22 16:30:05
Score: 1
Natty:
Report link

the scope photoslibrary.readonlyphotoslibrary has been deprecated and will be removed after March 31, 2025.

After this date, any API calls using only this scope will return a 403 PERMISSION_DENIED error.

What should you do?

For reading photos, use the https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata scope.

For other use cases, review the latest Google Photos API documentation for supported scopes and migration instructions.

Reference:

https://developers.google.com/photos/support/updates#affected-scopes-methods

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: CCLU

79675276

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

If there is anyone that has the problem of not showing suggestions in html and not showing open with live server option, just go to preferences in settings, click on edit json file. Paste this:

"files.associations": {
  "*.html": "html"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mustafa khan 1921

79675274

Date: 2025-06-22 16:12:01
Score: 1
Natty:
Report link

Reactive base environment


conda activate base

Ensure extensions work

jupyter nbextension enable --py widgetsnbextension
jupyter nbextension enable --py ipympl

restart your PC.

re-run

jupyter notebook

In notebook, Kernel --> restart and clear ouput, Run all cells.

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

79675254

Date: 2025-06-22 15:46:54
Score: 0.5
Natty:
Report link

The PC actually contains, only the address of the next instruction. It does not contain the actual instruction. Same is the case with MAR. The difference between PC and MAR exists, based on their individual purpose.During the fetch stage of Instruction Cycle, the next instruction is actually read in the following way:

1: The PC has the address for the next instruction. This address is copied into MAR.
2: The Control Unit then polls for the actual instruction stored at the address that MAR points to. This is done by sending a signal to data bus to read the data at that address.
3: The actual data is sent to the CPU via data bus, which is then stored in the Memory Data Register (MDR) , also sometimes called Memory Buffer Register. The PC is incremented at this stage.
4: The content of MDR is then copied into CIR, the Current Instruction Register. After this, the decode stage starts.

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

79675246

Date: 2025-06-22 15:33:50
Score: 2.5
Natty:
Report link

Add this in the header of the Mapper:

@Mapper(.....injectionStrategy = InjectionStrategy.CONSTRUCTOR)

Documentation: https://mapstruct.org/documentation/1.5/api/org/mapstruct/InjectionStrategy.html

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

79675243

Date: 2025-06-22 15:29:48
Score: 1
Natty:
Report link

I found that the ClientId of the RadioButtonList is good enough.

    $(document).on('click', "#RBL1_CliendId input", function() {        
        if($(this).prop("value") == 3){
            // do something
        } else {
            // do something else
        }
    });     
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: esims

79675240

Date: 2025-06-22 15:23:46
Score: 1
Natty:
Report link

Same issue 5 years down the line and not even AI can solve this. Anyway I used this work around for me.

# Some GDAL configurations for GIS support
# os.environ['GDAL_DATA'] = "C:\\OSGeo4W\\share\\epsg_csv"
os.environ['PROJ_LIB'] = "C:\\OSGeo4W\\share\\proj"
os.environ['GEOS_LIBRARY_PATH'] = "C:\\OSGeo4W\\bin\\geos.dll"
Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Surveyor Jr

79675239

Date: 2025-06-22 15:23:46
Score: 2.5
Natty:
Report link

In chrome, after trusting certificate, needed to run chrome in incognito as the old certs were cached.

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

79675234

Date: 2025-06-22 15:18:44
Score: 8 🚩
Natty: 4
Report link

I have the same question, I fully uninstalled the vscode using control panel, but the problem remained.

There is no suggestions when writing html code and when right click on html file it shows option of "open with..." when i click on that, it just shows a plain text editor, please provide a fix

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Low reputation (1):
Posted by: Mustafa khan 1921

79675233

Date: 2025-06-22 15:18:44
Score: 1.5
Natty:
Report link

Thanks to @DavidMaze i simply used queue.put_nowait() as i run on the same thread.

In hindsight :

So by using put_nowait() I handled QueueFull exception by logging/counting/dropping, which makes more sense when the user has requested a bound queue.

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

79675227

Date: 2025-06-22 15:12:42
Score: 2.5
Natty:
Report link

I also faced this issue, and I tried several ways but didn't solved. Then I tried the same thing using aggregate, then it works perfectly, so maybe this is a bug from mongoose referencing. The low level aggregation pipeline does it correctly, so its some internal issue I think.

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