79491364

Date: 2025-03-07 05:45:16
Score: 0.5
Natty:
Report link

STL offers std::to_address under <memory> for this purpose starting in C++ 20. Looking at the implementation for MSVC, it seems to revolve around manually calling operator->, so this could be another option in older language versions. This has the advantage of also working with raw pointers, useful in template scenarios where the exact pointer type can vary.

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

79491360

Date: 2025-03-07 05:40:15
Score: 1
Natty:
Report link

Pass this props in Autocomplete:

slotProps={{ paper: { style: { width: 'fit-content' } } }}

to Autocomplete component

<Autocomplete
  ....
  slotProps={{ paper: { style: { width: 'fit-content' } } }}
/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhijeet Kumar

79491324

Date: 2025-03-07 05:19:11
Score: 0.5
Natty:
Report link

Why the NVARCHAR column in the base table is made a VARCHAR type in the view ?

It's because you have first created table and view and then after creating view you altered column size in table.

Any schema change in base table not reflects automatically in the view.

How can I have it in the view as NVARCHAR ?

You have two options:

  1. If schema change is intended and you want to reflect in view then execute "sp_refreshview" stored procedure immediately after column changes:
EXEC sp_refreshview V_ACC_POL
  1. if schema change is not intended which is done by some another developer and you want to prevent this kind of unintended changes then create view with schema binding option which will prevent others by modifying table schema:
ALTER VIEW [dbo].[V_ACC_POL]
WITH SCHEMABINDING
AS
SELECT 
    [ID]
    ,[Name]
FROM
    [dbo].[ACC_POL]

This will give below error if someone tries to update table schema:

Msg 5074, Level 16, State 1, Line 12
The object 'V_ACC_POL' is dependent on column 'Name'.
Msg 4922, Level 16, State 9, Line 12
ALTER TABLE ALTER COLUMN Name failed because one or more objects access this column.
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why the
  • Low reputation (0.5):
Posted by: Harsh Varde

79491318

Date: 2025-03-07 05:13:10
Score: 0.5
Natty:
Report link
Set<Id> permissionSetIds = new Set<Id>();
for (PermissionSetAssignment psa : [SELECT PermissionSetId 
        FROM PermissionSetAssignment 
        WHERE AssigneeId = :currentUser.Id]) {
    permissionSetIds.add(psa.PermissionSetId);
}

Set<Id> accessibleOrgWideAddressIds = new Set<Id>();
for (SetupEntityAccess sea : 
        [SELECT SetupEntityId
        FROM SetupEntityAccess
        WHERE ParentId IN :permissionSetIds
        AND SetupEntityType = 'OrgWideEmailAddress']) {
    accessibleOrgWideAddressIds.add(sea.SetupEntityId);
}

Then query [SELECT Address, DisplayName 
            FROM OrgWideEmailAddress 
            WHERE Id IN :accessibleOrgWideAddressIds)]
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: apexdevforce.com

79491317

Date: 2025-03-07 05:12:10
Score: 1.5
Natty:
Report link
read_excel Is a Function Name, here _ is used to make it more readable,
and read_excel is a function defined inside pandas so it is called referanced using '.' 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adarsh S

79491315

Date: 2025-03-07 05:11:09
Score: 9 ๐Ÿšฉ
Natty: 6
Report link

i am currently going through the same question. Were you able to find this? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khushi Singh

79491312

Date: 2025-03-07 05:09:08
Score: 1
Natty:
Report link

The "Update 2023: The current method for getting the current job name:" method does not work if attempting to set an environment variable in a reusable workflow like the following:

jobs:
  deploy:
    name: Deploy job
    env:
      DD_GITHUB_JOB_NAME: ${{ github.jobs[github.job].name }}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ic_

79491303

Date: 2025-03-07 05:02:07
Score: 5
Natty: 4
Report link

Great article! ColdFusion makes QR code generation seamless. If you're looking for a free QR code generator, check out QRCodeChamp. Itโ€™s fast, easy, and supports various formats. Thanks for sharing these insights on QR code creation with ColdFusion! ๐Ÿš€

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Govind Geek

79491301

Date: 2025-03-07 05:01:07
Score: 2
Natty:
Report link

@sambalpuri671

The smell of this fig attracts a horde of insects which are called fig wasps. For every ficus tree, there is a separate fig wasp that pollinates it. These fig wasps are attracted by the smell of figs. These wasps are small insects and mostly dominated by females thatย  can pass through the eye of a needle. They are laden with pollen. A fig wasp enters the fig through a gate-like opening. The moment it enters the fig, it is surrounded by microscopic flowers, mostly male. The fig wasp goes inside the fig and lays its egg and dies over there. These eggs are then covered with a protective covering called galls. About 2 months later, the eggs hatch inside the galls. The galls could contain both male and female fig wasps. The male fig wasps do not have any wings but have powerful jaws. They break open the gall and come out searching for a female. It mates with a female even before she hatches from the gall.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @sambalpuri671
  • Low reputation (1):
Posted by: Teja nial

79491298

Date: 2025-03-07 04:59:06
Score: 1
Natty:
Report link

#include <stdio.h>

#include <stdlib.h>

#include <dirent.h>

#include<conio.h>

int main(void) {

DIR *d;

struct dirent *dir;

char *directory_path = " "; // "." refers to the current directory

clrscr();

printf("\nEnter path of the directory...!\n");

printf("\For example: 'C:/TURBOC3/SOURCE' :\n");

scanf("%s",directory_path);

d = opendir(directory_path);

if (d) {

while ((dir = readdir(d)) != NULL) {

printf("%s\n", dir->d_name);

}

closedir(d);

} else {

perror("Unable to open directory");

return EXIT_FAILURE;

}

getch();

return EXIT_SUCCESS;

}

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

79491277

Date: 2025-03-07 04:44:03
Score: 2
Natty:
Report link

You are trying to get a value from event as if it is a Map<String, dynamic> on this listener:

flutterFft.onRecorderStateChanged.listen((event)...

Are you sure event is a Map? Maybe it's a List? Or maybe it is a Map, but not a Map<String, dynamic>

I'm not familiar with flutter fft, but I imagine their API docs will have some info for you.

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

79491270

Date: 2025-03-07 04:38:02
Score: 1
Natty:
Report link

I faced the same issue and I was able to install third-party packages in the following way:

BATCH_CONFIG = {
    "pyspark_batch": {
        "main_python_file_uri": f"{BUCKET}/python/latest/{JOB}",
        "python_file_uris": [f"{BUCKET}/python/latest/local_lib/requests-2.32.3-py3-none-any.whl]
        "args": ["gs://pub/shakespeare/rose.txt", f"{BUCKET}/sample-output-data"]
    },
    "environment_config": {
        "execution_config": {
            "network_uri": f"projects/{PROJECT_ID}/global/networks/main-vpc-prd",
            "subnetwork_uri": f"https://www.googleapis.com/compute/v1/projects/{PROJECT_ID}/regions/{REGION}/subnetworks/data-prd",
            "service_account": IMPERSONATION_CHAIN,
        }
    }
}

What I did is to download the python whl file for the library that I want to use. Then I included that as item in the python_file_uris array.

Note: Following this approach you can include as many packages as you want.

Sources:
-> Requests whl file: https://pypi.org/project/requests/#files

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

79491261

Date: 2025-03-07 04:32:01
Score: 2
Natty:
Report link

I was able to resolve this by changing the trait method to not take Self, instead defining a new struct to hold the relevant data, and passing that instead.

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

79491260

Date: 2025-03-07 04:32:01
Score: 1.5
Natty:
Report link

In the S3 connection you can provide AWS Access Key ID ,AWS Secret Access Key, Region and leave host empty. Then in ListObject you need to fill only Bucket Name. This worked for me.

If this didn't work for you, please provide your configuration after removing sensitive information.

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (2.5): please provide your
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kalindu Gandara

79491242

Date: 2025-03-07 04:21:59
Score: 2.5
Natty:
Report link

To speak to someone at Sage 50, call the toll-free number ๏ผ‘๏ผ๏ผ˜๏ผ•๏ผ•๏ผ๏ผ’๏ผ‘๏ผ–๏ผ๏ผ“๏ผ”๏ผ’๏ผ—or ๐Ÿ–๐Ÿ“๐Ÿ“-๐Ÿ๐Ÿ๐Ÿ”-๐Ÿ‘๐Ÿ’๐Ÿ๐Ÿ• . Their expert team is available to assist with installation, troubleshooting, and resolving any technical issues related to ๐•ค๐•’๐•˜๐•–๐Ÿ๐Ÿ˜. Have your product details ready for quicker service. Support is available Monday through Friday during business hours for efficient assistance.

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

79491240

Date: 2025-03-07 04:20:59
Score: 1
Natty:
Report link

Apple is very strict on software requirements. I think there is no workaround and CI/CD tools for signing will not help to resolve this issue because the .ipa you will upload to CI/CD will contain the information about the Xcode version it was build with and there are very little chances that you can do something.

Been there, updated to a new mac just because Apple likes to deprecate stuff

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

79491238

Date: 2025-03-07 04:18:59
Score: 1
Natty:
Report link

It looks like the server that is sending the JSON is sending an invalid JSON - could be due to the DB not retrieving any data at all and sending "None" over the REST endpoint. More context is needed w.r.t to the server code to understand the flow.

Incoming data parsing with express.json() -- may cause the client to crash if the server sends wrong format.

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

79491231

Date: 2025-03-07 04:10:57
Score: 3.5
Natty:
Report link

You can just make a new animation that has no keyframes and set that as the default.

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

79491218

Date: 2025-03-07 03:58:55
Score: 3.5
Natty:
Report link

you can add a large plane behind the model to act as the background.

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

79491211

Date: 2025-03-07 03:52:54
Score: 2
Natty:
Report link

%PDF-1.5
%รขรฃรร“
3 0 obj
<</ColorSpace/DeviceGray/Subtype/Image/Height 203/Filter/FlateDecode/Type/XObject/Width 749/Length 4211/BitsPerComponent 8>>stream
xล“รญhโ€‘Iร‡โ€”
ร‘W#ยฝรˆโ€น)/รฏรฑร‚โ€นรฏE[1]รก^
โ€ข%หœรฃลฝล’)โ€ข`รถ

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

79491204

Date: 2025-03-07 03:44:52
Score: 5
Natty: 6.5
Report link

I have created a Library to do that. Please read this blog.

https://codeformat.dev/blog/how-youtube-download-videos-and-play-video-offline

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anime Vietsub

79491203

Date: 2025-03-07 03:44:52
Score: 1.5
Natty:
Report link

I experienced very similar issue when using Python v3.12 (64 bit) with mysql-connector-python 9.2.0 and 9.1.0

It turns out that mysql-connector-python 9.2.0 and 9.1.0 started working when I used Python v3.12 (32 bit)

Since I need to use python 64 bit, I had to downgrade mysql-connector-python to 9.0.0

However, keep in mind that there is a known vulnerability with version 9.0.0 (details: https://github.com/advisories/GHSA-hgjp-83m4-h4fj )

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: lsantsan

79491197

Date: 2025-03-07 03:37:51
Score: 3
Natty:
Report link

Instead of using a float just use the display: inline. It should have the same effect but not have the white space.

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

79491196

Date: 2025-03-07 03:36:51
Score: 2.5
Natty:
Report link

i think the problem is Five Server, try to run your app without it, because static html wont need development server, just directly open your file in browser

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

79491195

Date: 2025-03-07 03:36:50
Score: 4.5
Natty:
Report link

I am unable to comment due to the lack of reputation points, but I tested this on iOS 16.7.10 (iPhone X) and I cannot reproduce your issue. Could you update your post with more information, such as where it was produced (debug or release), the phone and iOS version you used?

I'll edit this answer with a solution after you provide us with more info. In the meantime, I can only give you a potential answer to this:

VStack {
  Button("Test SWIFTUI") {
    sShowing = true
  }
}
.fileImporter(isPresented: $sShowing, allowedContentTypes: [.item]) {result in
  alertText = String(describing: result)
  showAlert = true
  sShowing = false // Maybe this is what you need? Setting it back to false might address your problem
}
Reasons:
  • Blacklisted phrase (1): Could you update
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1.5): reputation points
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: UnstoppableWil

79491181

Date: 2025-03-07 03:21:47
Score: 2
Natty:
Report link
  1. Don't run the exe from Visual Studio.
  2. Your main code is compiled into a static binary, so uncheck the Writable option.

Cheat Engine Writable option

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

79491175

Date: 2025-03-07 03:12:46
Score: 2
Natty:
Report link

Changing

pdf_doc = word.Documents.Open(pdf_path)

to

pdf_doc = word.Documents.Open(pdf_path, False, False, False)

fixed the issue for me.

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

79491171

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

Removing iPad from Supported Destinations should suffice.
enter image description here

But there are some considerations. I believe that if you already have your app released on the App Store and it supports iPad, it may mean you should create a different iPhone only app instead. This behaviour described here in apple docs, please read for more information on what you can do next

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

79491161

Date: 2025-03-07 03:04:44
Score: 0.5
Natty:
Report link

After some experimentation, I found a solution that works on modern macOS:

tell application "System Events" to get value of combo box 1 of group 1 of toolbar "Navigation" of group 1 of front window of application process "Firefox"

Based on an answer by @0xZ3RR0

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

79491150

Date: 2025-03-07 02:53:42
Score: 3.5
Natty:
Report link

There is a two-step solution to this issue:

  1. Upgrade SymmetricDS to the latest 3.15.x version, since there were many fixes related to interrogating database objects in both 3.14.x and 3.15.x
    Download: https://symmetricds.sourceforge.net/
    See also: https://issues.symmetricds.org/changelog_page.php

  2. If that does not help on it's own, add a new Transform for loading target table. This allows you to specify table name to match database engine exactly.

    https://symmetricds.sourceforge.net/doc/3.15/html/user-guide.html#\_transforms
    Get exact table name by querying system objects: Get list of all tables in Oracle?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Pavel_JM

79491146

Date: 2025-03-07 02:48:38
Score: 5
Natty:
Report link

I am facing similar problem but it just happen to one of my screen. The rest of my flutter app screen is working fine except this one screen it become blank which clicked. It work fine on the ios simulator.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: One Namecard

79491132

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

We encountered a similar requirement.
The Service Bus Explorer in the Azure portal allows peeking scheduled messages, but this option disappears when switching to "Receive" mode.

We've developed a C# script to purge scheduled messages.
However, it requires using the older, deprecated Azure Service Bus SDK.

https://gist.github.com/vantheshark/3247c3440dd399b6a88dd6b753354850

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: Van Thoai Nguyen

79491130

Date: 2025-03-07 02:40:36
Score: 4
Natty:
Report link

solved, i had do something with ts config file, i was using typescript.

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

79491121

Date: 2025-03-07 02:36:35
Score: 5.5
Natty:
Report link

Could it be a problem with the Gradle for Java plugin version?

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

79491116

Date: 2025-03-07 02:28:33
Score: 6 ๐Ÿšฉ
Natty:
Report link

By 177!, do you mean 177 x 176 x 175 ... or just 177?

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

79491095

Date: 2025-03-07 02:10:30
Score: 1.5
Natty:
Report link

In my case it was not showing for cpp as I accidently hid it.

Here's what you need to do.

right click on those three dots on the top right here

(Remember it's right click on three dots and not left click)

(Right click on the toolbar wont show this option, you need to do right on any of the button on the toolbar)

Then you can select the run/debug option or just simply reset the menu see here

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

79491091

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

Just had to use sudo for my case

sudo npm i
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muaz Rehan

79491089

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

No. Currently there is no such option.

See feature request :

  1. https://developercommunity.visualstudio.com/t/add-support-for-excluding-files-from-intellisenser/406303

  2. https://developercommunity.visualstudio.com/t/C-Linter-is-missing-suppression-suppor/10375696

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

79491087

Date: 2025-03-07 02:03:29
Score: 1
Natty:
Report link

There is no need for the slash I was writing an app that adds data to a firestore db, but when the code below was executed,

await db.collection("request_data").

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

79491080

Date: 2025-03-07 02:00:28
Score: 1
Natty:
Report link

If the Source and Sink blocks are on two different computers on the same LAN, then the IP and port number of the Sink block must be specified on each end of that connection. For example, if the Sink is on IP 192.168.2.14:5678 and the Source is on IP 192.168.2.5, both Source and Sink blocks must specify the Sink IP and port (192.168.2.14:5678).

https://wiki.gnuradio.org/index.php/ZMQ_PUB_Sink

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

79491077

Date: 2025-03-07 01:59:28
Score: 2.5
Natty:
Report link

You can't derive that country = Belgium from 0470123456

In Australia our phone number follows the same format

My ex's number 0405684675 (jking)

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

79491071

Date: 2025-03-07 01:54:27
Score: 1.5
Natty:
Report link

I noticed that you set TintColor as a bindable property, but in this page you defined its color through Dynamic Resource.

For the case of using Dynamic Resource, you only need to change the value in Resource to change the color.

Please refer to the following document for specific steps:

Dynamic styles.

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

79491042

Date: 2025-03-07 01:30:22
Score: 1.5
Natty:
Report link

Here is a recursive let/lambda function that works:

=LET(f, LAMBDA(f,n, IF(LEN(n)=1, n, LEFT(n) + f(f, RIGHT(n, LEN(n)-1)))), f(f,B2))

And here is non-recursive function that will do the same thing:

=SUM(--MID(B2, SEQUENCE(LEN(B2)),1))

enter image description here

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

79491039

Date: 2025-03-07 01:25:21
Score: 3
Natty:
Report link

The timeout tunnel is not only applicable to http mode, but also to tcp mode and applies when the haproxy analyzer is removed from both requests.

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

79491036

Date: 2025-03-07 01:24:20
Score: 3
Natty:
Report link

Also newer version of hibernate doesn't require you to specify the dialect , it detects automatically

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

79491035

Date: 2025-03-07 01:23:20
Score: 1
Natty:
Report link
ffmpeg -i normal_ad.ts -copyts -fps_mode passthrough -enc_time_base 0.0001 -frame_pts 1 out%d.png

my first filename out512259325.png

ffprobe -show_frames

and first media_type=video frame pts_time=51225.932467

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

79491029

Date: 2025-03-07 01:16:19
Score: 1
Natty:
Report link

Thank you L Tyrone, that was very helpful! I modified your example to something that was easier for me, a total beginner, to understand and was successful in making my map.

This is what I used:

#load libraries
library(sf)
library(tmap)
library(dplyr)

#read in shape file
YGS_GLGY <- st_read("Yukon_Bedrock_Geology_Complete.shp/Bedrock_Geology.shp/Bedrock_Geology.shp")

#Colour the polygons using the RGB values provided under the columns RED, GREEN, BLUE.

#the RGB colours need to be scaled from (0 - 255) to (0 - 1)
YGS_GLGY <- YGS_GLGY |>
  mutate(R = RED / 255,
         G = GREEN / 255,
         B = BLUE / 255)

#then, they need to be converted to one column of hex values
YGS_GLGY <- YGS_GLGY |>
  mutate(HEX = rgb(R, G, B))

#then the coloured polygons can be plotted as a map
tm_shape(YGS_GLGY) +
  tm_polygons(fill = "HEX") +
  tm_borders() +
  tm_scalebar(position = c(0.01, 0.035)) +
  tm_compass(size = 1.5, position = c(0.05, 0.95))
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kirsten Rasmussen

79491027

Date: 2025-03-07 01:13:19
Score: 1.5
Natty:
Report link

You can wrap your Link with SheetClose.

<SheetClose asChild>
  <Link
    href="#about"
    className="text-xl"
  >
    About
  </Link>
</SheetClose>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HG.R Sanjayamal

79491019

Date: 2025-03-07 01:06:17
Score: 1
Natty:
Report link

I looked closer at the docs and this line caught my eye:

If you're loading a font from a service like Google Fonts, make sure to put the @import at the very top of your CSS file:

I inspected the compiled CSS in the browser, and turns out the @import url line was not at the top of the compiled CSS. There were some @font-face lines before that.

screenshot showing @import line being preceded by other CSS code

Geist is of course the default font that comes with every Next.js install. I determined that to load a custom font, I could either load all of my Google fonts using next/font/google or the Tailwind way (i.e. don't mix methods). I chose the latter and the font now loads as intended.

Specifically I removed these lines to get the @import in my CSS working:

modified   src/app/layout.tsx

@@ -1,17 +1,6 @@
 import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
 import "./globals.css";

-const geistSans = Geist({
-  variable: "--font-geist-sans",
-  subsets: ["latin"],
-});
-
-const geistMono = Geist_Mono({
-  variable: "--font-geist-mono",
-  subsets: ["latin"],
-});
-
 export const metadata: Metadata = {
   title: "Create Next App",
   description: "Generated by create next app",
@@ -24,11 +13,7 @@
 }>) {
   return (
     <html lang="en">
-      <body
-        className={`${geistSans.variable} ${geistMono.variable} antialiased`}
-      >
-        {children}
-      </body>
+      <body className={`antialiased`}>{children}</body>
     </html>
   );
 }
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @import
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Screensavers

79491013

Date: 2025-03-07 00:58:16
Score: 6
Natty: 7.5
Report link

How to Deploy your own mern stack Project on Hostinger. this blog help you -> https://samwithcode.in/blogs/mern-stack-hosting-in-hostinger-with-apache2

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Saif

79491012

Date: 2025-03-07 00:58:16
Score: 0.5
Natty:
Report link

I have a thought - can it be deploy Blazor and Web Api on the same host problem? To deploy both applications on the same host I copy wwwroot directory from Blazor's publish directory to WebApi's publish directory. Also I add

app.UseStaticFiles();app.MapFallbackToFile("index.html");

lines to the WebApi's Program.cs file.

But in the Blazor's publish directory, there are 3 files besides the wwwroot directory.

BlazorFrontEnd.staticwebassets.endpoints.json

emcc-props.json

web.config

I tried to add 2 first files to the host and added web.config Blazor's instructions to the existing (WebApi) web.config.

After this, I got the error:

Failed to load config file ./blazor.boot.json SyntaxError: Failed to execute 'json' on 'Response': Unexpected end of JSON input SyntaxError: Unexpected end of JSON input

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: max

79491010

Date: 2025-03-07 00:58:16
Score: 1
Natty:
Report link

Just wanted to reinforce Dave Chen's answer - SimpleITK seems a nice alternative to dicom2nifti as it avoids distortions regarding some shades of gray


Conversion with dicom2nifti


Conversion with SimpleITK

Note that both are the same frame

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

79491009

Date: 2025-03-07 00:56:15
Score: 4.5
Natty:
Report link

For fuck's sake, STOP WRITING CHINESE ON ENGLISH SPEAKING WEBSITES!!!!!!!!!!

You HAVE TO POST IN ENGLISH!!!!!!!!!!!!!!!!!!!!!!!!!!!!

It's very RUDE, I don't speak Chinese, and we don't understand what you are talking about!!!!!!!!! This is NOT a Chinese forum, it's an ENGLISH ONLY FORUM!!!!!!!!!

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): !!!!!!!!!!
  • Filler text (0): !!!!!!!!!!!!!!!!!!!!!!!!!!!!
  • Filler text (0): !!!!!!!!!
  • Filler text (0): !!!!!!!!!
  • Low reputation (1):
Posted by: SixSixSixSixSixSix 666666

79491008

Date: 2025-03-07 00:56:15
Score: 1.5
Natty:
Report link

Is there a reason you're not just using the hosted_link_url property provided by Plaid, rather than constructing the URL yourself? See https://plaid.com/docs/link/hosted-link/#integration-process for instructions on getting the URL. Using the Plaid Hosted Link URL should fix the issues you're seeing.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
Posted by: Alex

79491007

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

Okay guys I was able to fix this by changing the dimensions of the input data. Initially all input vectors had dimensions [0:1] converting them to [-1:1] or [-2:2] fixed the problem. Apparently the summation after softmax does not work correctly for strictly positive data.

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

79491003

Date: 2025-03-07 00:52:14
Score: 1.5
Natty:
Report link

Now it's 2025 and sometime in the last 4 years I've discovered pnpm which solves this problem generically and robustly. Instead of having many node_modules scattered about, there is a single source of truth and thus, in this case, only a single sentinel value to worry about.

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

79491001

Date: 2025-03-07 00:51:14
Score: 1
Natty:
Report link

Thanks Jason Spence's recommendation. I use okta.signOut() after oktaBaseUrl/logout, works fine for me.

signout(): void {
  const oktaBaseUrl = `${environment.okta.issuer}/v1`;
  const oktaTokenStorage: any = JSON.parse(localStorage.getItem('okta-token-storage'));
  const oktaIdToken = oktaTokenStorage?.idToken;

  window.location.href = `${oktaBaseUrl}/logout?id_token_hint=${oktaIdToken.idToken}&post_logout_redirect_uri=${environment.okta.logoutUri}`;
  
  this.okta.signOut();
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DavidL Viva

79490984

Date: 2025-03-07 00:29:10
Score: 4
Natty:
Report link

Now i check if telegram notify me i will take a rest

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ะšะพะฝัั‚ะฐะฝั‚ะธะฝ ะฉะตั€ะฑะฐะฝะตะฒ

79490972

Date: 2025-03-07 00:14:08
Score: 0.5
Natty:
Report link

There doesn't seem to be a way to do this in Github at the moment. The closes that I could get was naming my job "-" so it wasn't so obtrusive.

jobs:
  build-and-deploy:
    name: '-'
    uses: ./.github/workflows/lambda-build-and-deploy.yml
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ascott18

79490971

Date: 2025-03-07 00:13:07
Score: 4
Natty:
Report link

You can configure Clerk to always show selector prompt, by editing the Google OAuth settings:

enter image description here

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

79490969

Date: 2025-03-07 00:12:07
Score: 2
Natty:
Report link

That's because you're setting up an application with the latest version of Tailwind.

Tailwind v4 follows a CSS-first configuration!

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

79490967

Date: 2025-03-07 00:11:06
Score: 2
Natty:
Report link

This solution work fine for me:

import {} from 'dotenv/config';
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhamed Ajdinoski

79490963

Date: 2025-03-07 00:10:06
Score: 6
Natty: 7.5
Report link

Overwhelmed by backend options? This guide compares them all

https://medium.com/@Samishaikh7277/which-backend-framework-should-you-choose-lets-break-it-down-7c3567d241f6

Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sami shaikh

79490947

Date: 2025-03-06 23:53:02
Score: 1
Natty:
Report link

I tested your GET on 23.214.0020, and I didn't get your error.
Please note, 23.200.001 version is a very early beta, so there is no guarantee it works properly. I suggest to upgrade that instance to an official release.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Zoltan Febert

79490942

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

The Google Distance Matrix API has been deprecated and is now replaced by the Compute Routes endpoint of the Routes API (https://blog.afi.io/blog/using-the-google-distance-matrix-api-for-taxi-dispatch/). This API costs $5 CPM per element so if you have a 25 origin x 25 destination it will cost 10 * 10 * ($5 / 1000) = $3.125. You won't be able to do a single 2 x 1000 call because the max number of origins and destinations is 25.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: theprof

79490940

Date: 2025-03-06 23:46:00
Score: 4.5
Natty:
Report link

And of course right after 90 minutes of searching and then posting, I find the answer: Get-ProcessesByName in powershell to monitor individual python scripts running

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

79490935

Date: 2025-03-06 23:41:00
Score: 1
Natty:
Report link

For anyone who found this because of the same problem with Azure Data Studio, this ADS issue on GitHub provides the remedy for that tool:

https://github.com/microsoft/azuredatastudio/issues/9898#issuecomment-940401615

Essentially, the ADS setting is at Settings > Data > Query Editor > Results: Copy Remove New Line

Uncheck this setting to retain the newline when copying to the clipboard.

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

79490933

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

Any help?

$csvFilename = 'C:\CSV\FromNickk.csv'
$outfile = 'C:\CSV\Flora.mxtsessions'
$csv = Import-Csv -Path $csvFilename -Delimiter ','

@'
[Bookmarks]
SubRep=
ImgNum=42
'@ | Out-File -FilePath $outfile

$output = foreach ($line in $csv) {
    "$($line.hostname)= #109#0%$($line.ip)%22%[loginuser]%%-1%-1%%%22%%0%0%0%%%-1%0%0%0%%1080%%0%0%1#MobaFont%10%0%0%0%15%236,236,236%0,0,0%180,180,192%0%-1%0%%xterm%-1%0%0,0,0%54,54,54%255,96,96%255,128,128%96,255,96%128,255,128%255,255,54%255,255,128%96,96,255%128,128,255%255,54,255%255,128,255%54,255,255%128,255,255%236,236,236%255,255,255%80%24%0%1%-1%<none>%%0#0#"
}

$output | Out-File -FilePath $outfile -Append -Encoding ASCII

I am using this, but it is importing a blank session and the CSV file has more than that.

I was using this before

$csvFilename = 'C:\Users\ikundabayo.ma\OneDrive - Procter and Gamble\Documents\From Nick.csv'
$outfile = 'C:\Users\ikundabayo.ma\OneDrive - Procter and Gamble\Documents\DYFCMobaXterm_Sessions.mxtsessions'
$csv = Import-Csv -Path $csvFilename -Delimiter ','

$output = foreach ($line in $csv) {
    "$($line.hostname)=#109#0%$($line.ip)%22%[loginuser]%%-1%-1%%%22%%0%0%0%%%-1%0%0%0%%1080%%0%0%1#MobaFont%10%0%0%0%15%236,236,236%0,0,0%180,180,192%0%-1%0%%xterm%-1%0%0,0,0%54,54,54%255,96,96%255,128,128%96,255,96%128,255,128%255,255,54%255,255,128%96,96,255%128,128,255%255,54,255%255,128,255%54,255,255%128,255,255%236,236,236%255,255,255%80%24%0%1%-1%<none>%%0#0#"
}

$output | Out-File -FilePath $outfile -Encoding ASCII
Reasons:
  • Blacklisted phrase (1): Any help
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ikundabayo Mathusalem

79490925

Date: 2025-03-06 23:35:58
Score: 4
Natty:
Report link

I have a scenario where I need to do synching every one hour with server, while my message processing should happen every 5 s.

i.e. files that are available in server should be copied every one hour, while those should be sent to message channel every 5 s and processed.

Currently I see the poller is coupled up for both synching and emitting of message. how to decouple it. am using Direct channel.

Please suggest

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Please suggest
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: karthikeyan sivapragassam

79490922

Date: 2025-03-06 23:35:58
Score: 1.5
Natty:
Report link

The @JsonAlias annotation itself has the response, use the following:

data class MyClass @JsonCreator constructor(
  @JsonAlias({"name", "title"})
  val name: String
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: rubenqba

79490913

Date: 2025-03-06 23:28:57
Score: 1
Natty:
Report link

Ion-content is a component, and has "stuff" inside it. Depending on which version of Ionic you are using, this stuff may be different, so you will have to go to the documentation for the component and also probably examine it in the DOM, since the documentation is unlikely to be clear enough.

In the case of Ionic 7, the ion-content has 2 inner css shadow parts: scroll and background. I just targetted them one at a time to see which one was relevant:

/* Essential for Flexbox to work inside ion-content (correct @ Ionic 7) */
ion-content::part(scroll) {
  display: flex;
  flex-direction: column;
}

/** Flexbox child element */
.page-content {
  flex: 1; // *
  display: flex; // nested children: {form, social & auth-link}
  flex-direction: column;
  padding: 20px;
  justify-content: space-between; // space out children equally (along primary axis)
}

This sorted the issue out, I assume by giving flexbox the information needed about it's parent. It is necessary to define the flex-direction: column at each level, or it breaks. Also, flex: 1; is needed, or else the page-content doesn't actually stretch to fill the available space.

P.S. Could the person who voted to close this question please illuminate us all why it isn't a valid question? It seems to me that there is good content here?!

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: monkey

79490910

Date: 2025-03-06 23:27:56
Score: 4
Natty:
Report link

Using the suggested action, I was able to find it is colored this way when the variable has its type narrowed.

enter image description here

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

79490903

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

Prisma and pnpm have compatibility issues, with each new version potentially causing problems. To address this, you may consider using npm instead. Additionally, I personally switched from Prisma to Drizzle to avoid the frustrations of dealing with recurring Prisma errors upon updates.

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

79490899

Date: 2025-03-06 23:19:54
Score: 4.5
Natty:
Report link

Im having the same issue right now! Everything works fine when i'm running everything in my IDE (or when I run it through cmd -> python main.py) but when I make the .exe file with PyInstaller and run it, the model simply doesnt make the predictions, the app just stays loading forever. It seems as if the predict() function just does not work.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fran Aliss

79490897

Date: 2025-03-06 23:17:54
Score: 3.5
Natty:
Report link

There are online / offline events since long ago:

https://developer.mozilla.org/en-US/docs/Web/API/Window/online_event

https://developer.mozilla.org/en-US/docs/Web/API/Window/offline_event

It fires any javascript function when you get offline / online (e.g. on mobile phones).

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

79490893

Date: 2025-03-06 23:15:53
Score: 2
Natty:
Report link

Thank you for responce, seems simple, but you help me a lot.

I had the same error that is quiet generic "can't find pid file".
No journalctl, neither systemctl made the sence.
The key was looking the log of jboss or wildfly in my case (whereever you have it JBOSS_CONSOLE_LOG),
it was very descriptive that the service couldn't find the JAVA_HOME.

Fixing this,I have got the solution

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alexander Nazarenko

79490889

Date: 2025-03-06 23:12:52
Score: 1
Natty:
Report link

By configuring Orleans to serialize also CancellationTokens with System.Text.Json, I made the webapplication version work and also produce the expected output.
For that the nuget package Microsoft.Orleans.Serialization.SystemTextJson must be installed.

builder
    .UseOrleans(siloBuilder =>
    {
        siloBuilder.UseLocalhostClustering();
        siloBuilder.Services.AddSerializer(serializerBuilder =>
        {
            serializerBuilder.AddJsonSerializer(isSupported: typeCand => typeCand == typeof(System.Threading.CancellationToken));
        });
    });

More details and other approaches can be found in the docs (https://learn.microsoft.com/en-us/dotnet/orleans/host/configuration-guide/serialization-configuration?pivots=orleans-7-0#configure-orleans-to-use-systemtextjson).

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

79490888

Date: 2025-03-06 23:11:52
Score: 1.5
Natty:
Report link

The profitability of in-app advertising is absolutely affected by the frequency of events on each screen. In the case of Google AdMob, if the frequency of events on each screen in the app is low, increasing the frequency with single-unit ads is effective in terms of ad supply rate and eCPM. For iOS apps, Google tends to be stricter on iOS apps after Apple implemented its App Tracking Transparency (ATT) policy.

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

79490875

Date: 2025-03-06 23:01:50
Score: 2.5
Natty:
Report link

My workaround was to comment out the WSGIDaemonProcess process in the initial http (port 80) conf file, and then re-run the certbot command.

As I no longer had a need for the http conf I left it commented, and uncommented the WSGIDaemonProcess line in the https conf that was autogenerated by certbot.

Reasons:
  • Blacklisted phrase (1): to comment
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: c7borg

79490838

Date: 2025-03-06 22:32:44
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arafat Rohan

79490834

Date: 2025-03-06 22:31:44
Score: 2
Natty:
Report link

I had a similar error. Fixed by: export PYTHONPATH=/usr/lib/python3/dist-packages (I found the location using "locate gps|fgrep py")

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

79490831

Date: 2025-03-06 22:27:43
Score: 1.5
Natty:
Report link

It looks like the topic is not very popular. The approach I see most often in CMake scripts is that it's configuration, not code.

Most of the projects I found were too opinionated and had too many assumptions, like how to organize test code. So yes, I recently made my own small project to test CMake code ;) It probably doesn't cover all cases, but it works to the extent I need it to.

I was inspired by how CMake code is tested in the CMake project itself https://github.com/Kitware/CMake/tree/master/Tests/CMakeTests.

I am using add_test() and custom target that call CTest - only two functions and few assertions (no mocks so far). Every test code is stored in separate file and looks like usual unit test. Test is failed if message(SEND_ERROR "...") or message(FATAL_ERROR "...") is executed.

include(CMakeUnit)  # for assertions
include(set)        # module under test

# Act
set_if_defined(NewVariable "New value")

# Assert
EXPECT_UNDEFINED(NewVariable)

For more examples please see https://github.com/tawez/CMakeUnit-example/tree/master/tests

Reasons:
  • Blacklisted phrase (0.5): I need
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tawez

79490826

Date: 2025-03-06 22:24:43
Score: 1.5
Natty:
Report link

To your 1st question, private instance fields and methods are inherited by child class but it can't access them directly due to the private access modifier.

To your 2nd question, when an object is stored on the heap, it includes all of its parent class's private instance fields, even if they are marked as private. The private access modifier only restricts direct access to the field from outside the class, but the field is still part of the object's memory layout in the heap.

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

79490820

Date: 2025-03-06 22:21:42
Score: 2
Natty:
Report link

You can change the Namespace to urn:com.workday.report/bsvc in the Advanced tab of the report.

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

79490814

Date: 2025-03-06 22:18:40
Score: 6 ๐Ÿšฉ
Natty: 5
Report link

I cant comment on your fix because I don't have the rep points. I found this by having the same problem as you, but when looking at your fix I realized your account name and key is in the App Settings in Environment Variables Section.

Reasons:
  • RegEx Blacklisted phrase (1): cant comment
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikko Pabion

79490798

Date: 2025-03-06 22:06:38
Score: 2
Natty:
Report link

The result of Math.IEEEremainder(angle, 360) will be in the interval (-180, 180]

https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Math.html#IEEEremainder(double,double)

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Steve Ward

79490796

Date: 2025-03-06 22:04:38
Score: 3
Natty:
Report link

I faced the same issue. Got it resolved by unchecking "clone git repositories using ssh" in settings.settings screenshot

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

79490790

Date: 2025-03-06 21:58:36
Score: 3
Natty:
Report link

March 2025 We Solved en ReactNative

  1. We created a SSO web with Netcore

  2. used WebView in ReactNative App

  3. from JS in Netcore send a string or JsonString with

    var mensajeString = JSON.stringify(mensaje); window.ReactNativeWebView.postMessage(mensajeString);

Regards

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

79490785

Date: 2025-03-06 21:56:36
Score: 3
Natty:
Report link

SELECT utl_raw.cast_to_Nvarchar2(dbms_lob.substr(raw_col,1000,1)) FROM test;

this select out put SHOULD BE LIKE YE 195 45

SO THE OUT PUT FOR CHARTER IS OK (YE)

BUT THE OUTPUT FOR NUMBERS IS [] LIKE THIS NOT NUMBERS

THIS IS THE PROBLEM HOW CAN I CONVERT HEXA TO NUMBERS

Reasons:
  • Blacklisted phrase (0.5): HOW CAN I
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Zayed Saad Al-Marhabi

79490776

Date: 2025-03-06 21:48:34
Score: 2.5
Natty:
Report link

My solution is to use the Place search API instead

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Francis Ade

79490768

Date: 2025-03-06 21:43:33
Score: 4.5
Natty:
Report link

Thanks to @moritz-ringler for bringing up stackoverflow.com/a/76934503/4883195. I've managed to put together a working github.com/OnlyLoveOleg/vue3-vuetify-webcomponent example in case anyone is looking for a solution to this problem.

index.html

<!DOCTYPE html>
<html lang="">
  <head>
    <meta charset="UTF-8">
    <link rel="icon" href="/favicon.ico">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Vue3 Vuetify Web Component</title>
  </head>
  <body>
    <my-navbar></my-navbar>
    <script type="module" src="/src/main.js"></script>
  </body>
</html>

src/main.js

import { defineCustomElement } from './defineCustomElementWithStyles'
import '@mdi/font/css/materialdesignicons.css'
import { createVuetify } from 'vuetify';
import { aliases, mdi } from 'vuetify/iconsets/mdi'

// Import the Vue component.
import MyNavbarComponent from './components/MyNavbar.ce.vue'

const vuetify = createVuetify({
    icons: {
        defaultSet: 'mdi',
        aliases,
        sets: {
          mdi,
        },
    },
})

customElements.define(
    'my-navbar',
    defineCustomElement(MyNavbarComponent, {
        plugins: [vuetify],
    })
)

src/defineCustomElementWithStyles.js

// defineCustomElementWithStyles.js
import { defineCustomElement as VueDefineCustomElement, h, createApp, getCurrentInstance } from 'vue'

export const defineCustomElement = (component, { plugins = [] } = {}) =>
  VueDefineCustomElement({
    styles: component.styles,
    render: () => h(component),
    setup() {
      const app = createApp()

      // install plugins
      plugins.forEach(app.use)

      const inst = getCurrentInstance()
      Object.assign(inst.appContext, app._context)
      Object.assign(inst.provides, app._context.provides)
    },
  })

src/components/MyNavbar.ce.vue

<template>
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/vuetify@3/dist/vuetify.min.css" />
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" />
  <v-app>
    <v-app-bar>
      <template v-slot:prepend>
        <v-app-bar-nav-icon></v-app-bar-nav-icon>
      </template>

      <v-app-bar-title>App title</v-app-bar-title>

      <v-spacer></v-spacer>

      <v-btn icon>
        <v-icon>mdi-magnify</v-icon>
      </v-btn>

      <v-btn icon>
        <v-icon>mdi-heart</v-icon>
      </v-btn>

      <v-btn icon>
        <v-icon>mdi-dots-vertical</v-icon>
      </v-btn>
    </v-app-bar>
  </v-app>
</template>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @moritz-ringler
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Oleg

79490756

Date: 2025-03-06 21:36:32
Score: 4.5
Natty:
Report link

@valnik,

it's not providing correct result, say for input 500, expected output is '500, 400, 300, 200, 100,90, 50, 40, 30, 20'. But it's showing enter image description here

wherever there is multiple student going to a teacher, it's breaking

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @valnik
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user3016635

79490752

Date: 2025-03-06 21:34:31
Score: 0.5
Natty:
Report link

The error is occurring in your view file but isn't being displayed on screen. To troubleshoot, add logging statements at potential error points:

log_message('error', 'Error message: ' . $e->getMessage());

Then check your logs in the writable/log/ directory to identify the specific issue.

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

79490746

Date: 2025-03-06 21:30:30
Score: 4.5
Natty: 4
Report link

The first implementation was for images thats correct

added implementation for DWT1D and IDWT1D that may help

https://github.com/Timorleiderman/tensorflow-wavelets/blob/642335ad5473531fb06ca11b921f9b8c99a1b144/src/tensorflow_wavelets/Layers/DWT.py#L201C7-L201C12

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

79490744

Date: 2025-03-06 21:30:29
Score: 7 ๐Ÿšฉ
Natty:
Report link

I tried all of the above, nothing seems to work. Can someone help, please. Here is my website: https://swapnilin.github.io/portfolio-website/

and here is the code https://github.com/swapnilin/portfolio-website

the image under about section doesn't want to load when deployed.

Reasons:
  • RegEx Blacklisted phrase (3): Can someone help
  • RegEx Blacklisted phrase (1.5): help, please
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: User771

79490742

Date: 2025-03-06 21:29:28
Score: 0.5
Natty:
Report link

you could try adding a "honeypot" field that is hidden to regular visitors, using something like "date of birth", which the bots will faithfully inserta value into. Then in your function you can discard anything which has a value in that field. I know its not exactly what you were asking but it could be a relatively easy win.

Also the hook you are using seems to be to validate extra custom fields in the form and return errors. If the bots are still getting through maybe they are using a different vector

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

79490739

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

Multiple possible solutions. One requires a different language but easy to implement if you use it as a microservice. Another is harder to implement but uses the correct language and framework that you are using.

Solution 1

Continue using React and Javascript.

Install graphviz with npm to use with javascript and react https://www.npmjs.com/package/graphviz-react

(There are graphviz libraries for many languages such as python and javascript, but need to use the one with graphviz and react)

Read the docs here for graphviz to make an ER diagram https://graphviz.org/Gallery/neato/ER.html

Use this graphviz playground to learn and test the langauge. https://magjac.com/graphviz-visual-editor/

However, one big problem is that you would need to somehow convert your JSON file into a graphviz language. And that might be really hard to do it with the JSON structure that you have.

Your JSON structure is nice and nested with table name, column name, and relations.

Graphviz does not have a hierarchical structure. You would basically have to do a lot of work to make JSON fit with graphviz-react package. You would basically have to figure out how to take a nice hierarchal JSON structure, and flatten it and figure out what table maps to what relationship.

But if you get it working, you will have some sort of function and/or react component that can take in a JSON file and output a SVG of an ER Diagram.

Solution 2

Use d2. https://github.com/terrastruct/d2

Follow the directions, install the go programming language. Clone the repo, wrap the library as a Go Lang server.

Make the Go Lang server into a micro service. It should do a http get or post requests, and take in a json file and output a svg file.

The Go Lang microservice should be able to convert a json file into a friendly .d2 file and then convert the .d2 file into an SVG and then send that back to the frontend. This should be not as hard as graphviz. This is because JSON is hierarchal, and .d2 files are hierarchal. Meaning that the file structures are similar, and you just have to parse the JSON and turn it into an object/struct. The once you turn the JSON file into a struct, you then turn that struct into a .d2 file.

So it might look something like this.

  1. Frontend sends the JSON to the Go Lang microservice by http request.
  2. Turn each JSON object to have a related Go Lang Struct.
  3. Convert the Go Lang Struct into a string that follows something like a .d2 file
  4. concatenate all of them in a specific order and create the .d2 file
  5. use the library to convert them into an SVG.
  6. Send that to the frontend as a http response payload.

Here is an example of what the final product might look like.

The image below shows the "tasks" table mapping to "tasks_data" table and then mapping to "data" table. Basically showing the relations of tables using the PK and FK. this image shows an example of what d2 can do. It shows that the structure of the language matches similarly to JSON and can create an SVG file for an ER diagram

Use the playground to check your work. https://play.d2lang.com/?script=pJBBCoNADEX3OcWHrnuBWfQqQ1pHG9RoJ9mIePeiUloGoYVuw-P9_-NsrQXMBNidxxRgjy46X7tEgFQBoo75Nqh5ZlEPGLP0nKfYpmkh4ATlPh1w9ZCTNPridso8iza0EFXs_FdwLV2KhXWbE1c1Ptwo5fhuX03xsEaxaw37AVxoL4fzBe-W2xeK0zMAAP__&

Use the docs for learning how it works. https://d2lang.com/tour/sql-tables#foreign-keys

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

79490736

Date: 2025-03-06 21:26:28
Score: 2
Natty:
Report link

I think Typescript is the standard now and is a really better approach for most of the cases. Anyway, if you still want to code with javascript, I think you can do it even Typescript is configured.

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

79490728

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

The error HCW8001 Unable to determine the Tenant Routing Domain should not generally occur, and it may have occurred due to an issue with provisioning the tenant, or perhaps an accidental deletion of a critical configuration item in Exchange Online.

Review the Accepted Domains in Exchange Online. Generally this should include your custom domain, and the one you were initially given, for example, <domain>.onmicrosoft.com. *Also there should be <domain>**.mail.*onmicrosoft.com.

Accepted Domains can be accidentally removed, if the <domain>**.mail.**onmicrosoft.com domain was unintentionally removed, it cannot be easily added back, as the DNS records belong to Microsoft, and therefore you cannot verify the domain.

This error will occur if it cannot find an Accepted Domain in Exchange Online with the ".mail." substring, and if it does find it, the same domain with ".mail." removed must also be an Accepted Domain.

For example, if it finds "domain.mail.onmicrosoft.com" in the Accepted Domains list, it must also find "domain.onmicrosoft.com" in the Accepted Domains list.

If <domain>.mail.onmicrosoft.com is not in the Accepted Domains list, you may need to contact Microsoft support.

Otherwise a temporary workaround may be to add an accepted domain that you can verify, with the ".mail." substring. For example, <x>.mail.<domain.com> where domain.com is your custom domain that you have DNS authority over. In this way, you will need to add both <x>.mail.<domain.com> and <x>.<domain.com> to your Accepted Domains list to satisfy the Tenant Routing Domain requirement.

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

79490726

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

After checking the Android source as per Robert's suggestion, it looks like the ID is derived from the device name, which is derived from the device's place on the USB bus (specifically, bus number * 1000 + device number).

Some light googling suggests that this renders the ID assignment behavior dependent on the device kernel's bus/device# assignment behavior when a USB device is attached.

So I'd definitely have to assume that IDs might be reused at any time.

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