79337478

Date: 2025-01-07 22:15:28
Score: 1.5
Natty:
Report link

I used the recorder to get this code, and it seems to work?

function main(workbook: ExcelScript.Workbook) {
    let selectedSheet = workbook.getActiveWorksheet();
    
    // Set range A1:B3 on selectedSheet
    selectedSheet.getRange("A1:B3").setValues([["A",1],["B",2],["C",3]]);

    // Insert chart on sheet selectedSheet
    let chart_1 = selectedSheet.addChart(ExcelScript.ChartType.columnClustered, selectedSheet.getRange("A1:B3"));

    // Change fill color for point on series on chart chart_1
    chart_1.getSeries()[0].getPoints()[0].getFormat().getFill().setSolidColor("ffc000");
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: wandyezj

79337468

Date: 2025-01-07 22:02:24
Score: 7 🚩
Natty:
Report link

I am also facing the same issue.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tak Rahul

79337456

Date: 2025-01-07 21:57:23
Score: 1.5
Natty:
Report link

I found the solution. I needed to add at the end of the code.

Response.Headers.Add("Location", session.Url);

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abdullah Ergun

79337455

Date: 2025-01-07 21:57:23
Score: 1.5
Natty:
Report link

I have been dealing with the same issue and found the solution on https://furnacecreek.org/blog/2024-12-07-centering-nswindows-with-nshostingcontrollers-on-sequoia

Here is the OP's sample code with the one line fix added:

let contentView = WelcomeView()
let hostingVC = NSHostingController(rootView: contentView)
onboardWindow?.contentViewController = hostingVC
onboardWindow?.updateConstraintsIfNeeded() // fixes zero size issue
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Luke Griffioen

79337446

Date: 2025-01-07 21:54:22
Score: 0.5
Natty:
Report link

I came to this old question out of frustration after having done optimisation of the rails assets pipeline the whole day. It turns out it doesn't matter what rails version or any other gem you use - if you have activated the throttle function in the browser.

I'm using chrome and for some reason I managed to activate the throttling function used to simulate slow web connections. Check that as one debugging step in your browser.

Reasons:
  • No code block (0.5):
Posted by: JUlinder

79337435

Date: 2025-01-07 21:45:19
Score: 5
Natty: 4
Report link

cant you just use a when clicked block

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can
  • Low reputation (1):
Posted by: dr sues

79337432

Date: 2025-01-07 21:44:19
Score: 2
Natty:
Report link

I think it will be necessary for Apple Developers to know this because Wise Support doesn't know how to fill out the correct data.

Checked Source Code I get format Account Number Format: ###-#######-## (12 numbers from IBAN)

Source Rerex

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

79337423

Date: 2025-01-07 21:40:18
Score: 1.5
Natty:
Report link

Programmable configuration registers are addressed with pointer variables. The programmer must take additional steps:

  1. The address range should be flagged write-through (not cached.) This is NOT a language convention, this is done with supportive libraries.

  2. If the register is both written, and then subsequently READ then the pointer should be flagged as "volatile" telling the compiler "do NOT perform optimizations that avoid reading this value from memory."

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

79337418

Date: 2025-01-07 21:38:17
Score: 0.5
Natty:
Report link

ttf font files are now widely supported, so you should be safe using your custom font. In case your font doesn't load, you can also set a fallback in your CSS:

p {
  font-family: 'Custom', Arial, sans-serif;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cutler.Sheridan

79337415

Date: 2025-01-07 21:37:17
Score: 3.5
Natty:
Report link

To answer the original question asked, which is actually achievable. There are several steps needed. For educational research, just go to my repository: https://github.com/Rythorian77/Microsoft-SafeGuard/blob/main/Microsoft%20SafeGuard/Form1.vb

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

79337407

Date: 2025-01-07 21:33:16
Score: 5.5
Natty:
Report link

I'm running into similar issues. I understand, @davidfowl, that Aspirate doesn't understand Azure resources. But some kind of supporting documentation to help us get through what is a very simple example would be nice.

I'm trying to build/deploy a .NET Orleans app with Aspire that is leveraging Blob/Table storage as the clustering/grain-state.

When deploying my project via Aspirate, I do get a bicep file for my storage account, but it doesn't appear to be executed as a part of the deployment.

When attempting to deploy via azd, it appears that my only option is to deploy to a Container Apps instance.

I've also attempted to do two separate deployments but continue to run into major problems.

  1. The storage account's name is a unique id generated from the resource group name. It is not clear how to pass the storage account's resource group name into the configuration settings for my Aspire AppHost so that it understands where to get the connection string from.

  2. Because I'm using Orleans there are way more environment variables that must be assigned instead of just the connection string in order for the Orleans app to even startup and recognize its providers properly. So, checking if the ExecutionContext is running vs publishing to override the connection string doesn't generate the details necessary for the Aspire Orleans package to pickup the configuration settings.

I would think this is a somewhat simple scenario for Aspire/Aspirate. Can we get some help or more documentation to support this?

Reasons:
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @davidfowl
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jeff Scherrer

79337399

Date: 2025-01-07 21:31:15
Score: 2.5
Natty:
Report link

Combinación de 2 formatos:

select CONVERT(VARCHAR, GETDATE(), 103) + ' ' + convert(VARCHAR, GETDATE(), 24)

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

79337386

Date: 2025-01-07 21:27:14
Score: 0.5
Natty:
Report link

E2E (End-to-End) testing validates entire user workflows, ensuring all parts of your application (frontend, backend, database) work together as expected. It is ideal and important for testing critical user journeys like login, checkout, or form submissions, especially when features span across multiple systems or parts of the application.

Unit tests, on the other hand, focus on individual functions or components in isolation and are faster and cheaper to run. They are sufficient for validating specific logic or component behavior without external dependencies.

E2E testing can be used to validate real-world scenarios and integration points, while unit tests should handle the majority of isolated functionality. A good test strategy balances both: unit tests for speed and coverage and E2E tests for user-focused validation.

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

79337381

Date: 2025-01-07 21:27:14
Score: 1.5
Natty:
Report link

Instead of using with syntax you can try manually using the context manager with __enter__() and __exit__(None, None, None)

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

79337373

Date: 2025-01-07 21:25:14
Score: 2
Natty:
Report link

It seems that Google OSS Licences Plugin v0.10.6 is incompatible with Gradle 8.8 and higher.
See: https://github.com/google/play-services-plugins/issues/299

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

79337367

Date: 2025-01-07 21:22:13
Score: 3
Natty:
Report link

Also check in wp-config.php if multisite if you are setting subdomain to true define('SUBDOMAIN_INSTALL', true);

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

79337366

Date: 2025-01-07 21:22:12
Score: 8 🚩
Natty: 4.5
Report link

I've got the same issue. Working from Arduino core with WiFiManager.h, can't handle to connect using ESP IDF and the protocol_examples_common.h

Have you ever solved this issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this issue?
  • RegEx Blacklisted phrase (2): Have you ever solved
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Fin3

79337360

Date: 2025-01-07 21:20:11
Score: 0.5
Natty:
Report link

I have the same issue that VSCode cannot pick up the my .editorconfig config for my SQL scripts.

Turns out I missed the * character to wildcard all SQL files in my directory.

Here is an example of my .editorconfig file.

# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
end_of_line = lf
insert_final_newline = true

# Indentation override for all SQL files
# make sure you add the * to wildcard all your files.
[*.sql]
indent_style = space
indent_size = 2

Hope it helps.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Whitelisted phrase (-1): Hope it helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • High reputation (-1):
Posted by: Eric

79337357

Date: 2025-01-07 21:18:10
Score: 3
Natty:
Report link

Turns out that Starlette's url_for looks for the Route name, which is by default the name of the endpoint provided when making the Route object. In this case, it would be get_token, not token

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

79337356

Date: 2025-01-07 21:17:10
Score: 3
Natty:
Report link

Fortunately it was easier as expected. Originally, I created an empty ODS file with Microsoft Excel. This did not work with my approach. But when I create an empty ODS file with LibreOffice, it works perfectly.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Stefan Jung

79337352

Date: 2025-01-07 21:17:10
Score: 0.5
Natty:
Report link

In addition to @Reza's reply. In Compose, you can just pass ByteArray in model:

import kotlin.io.encoding.Base64
import kotlin.io.encoding.ExperimentalEncodingApi
/*private const val*/ BASE64_SUBSTRING = "base64,"


@OptIn(ExperimentalEncodingApi::class)
val base64ImageByteArray = Base64.decode(base64ImageString.substringAfter(BASE64_SUBSTRING))

AsyncImage(
    model = base64ImageByteArray,
    contentDescription = null,
    placeholder = ColorPainter(MaterialTheme.colorScheme.surfaceContainer),
    error = ColorPainter(MaterialTheme.colorScheme.surfaceDim),
    contentScale = ContentScale.Crop,
)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Reza's
  • Low reputation (0.5):
Posted by: mxkmn

79337346

Date: 2025-01-07 21:15:10
Score: 2
Natty:
Report link

It looks like the issue was with the friend declaration in the Foo class. FRIEND_TEST(utFooFixture, FooStartsAndClosesProcess) expansion declares:

friend class utFooFixture_FooStartsAndClosesProcess_Test;

But utFooFixture is the class that needs to be declared as a friend.

9_Inacc

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

79337342

Date: 2025-01-07 21:12:08
Score: 4.5
Natty: 5
Report link

What is the name of my dad dawood

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Dawood Mentoor

79337336

Date: 2025-01-07 21:09:08
Score: 1
Natty:
Report link
  1. Create SplashVC

Create a new Swift File: In your Xcode project, right-click on the project's folder in the Project Navigator and select "New File from Template" -> "Cocoa Touch Class". Name it "SplashVC.swift".

  1. Update your AppDelegate.swift like

    @main class AppDelegate: UIResponder, UIApplicationDelegate {

     var window: UIWindow?
     private let navigationController = UINavigationController()
    
     func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
         window = UIWindow(frame: UIScreen.main.bounds)
         window?.rootViewController = navigationController
         window?.makeKeyAndVisible()
    
         goToSplashScreen()
         return true
     }
    
     private func goToSplashScreen() {
         let splashViewController = SplashVC(nibName: "SplashVC", bundle: nil)
         navigationController.setViewControllers([splashViewController], animated: false)
     }
    

    }

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @main
  • Low reputation (1):
Posted by: Ameer Hamza

79337335

Date: 2025-01-07 21:07:07
Score: 1
Natty:
Report link

Based on a quick look at the source code, I think it's only histogram metrics that aren't allowed. Have you tried the other metric types?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: David Anderson

79337333

Date: 2025-01-07 21:05:07
Score: 1
Natty:
Report link

In that vein, I played a little with the monthExt, QuarterExt, and modified as below. It appears to work.

{
  "name": "monthExt",
  "update": "[data('xExt')[0]['s']-oneDay ,data('xExt')[0]['s'] + ((ganttWidth-minDayBandwidth)/minDayBandwidth)*2*oneDay]"
},
{
  "name": "quarterExt",
  "update": "[data('xExt')[0]['s']-oneDay, data('xExt')[0]['s'] + ((ganttWidth-minMonthBandwidth)/minMonthBandwidth)*1.5*oneDay]"
},
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ZoeZ

79337325

Date: 2025-01-07 21:01:05
Score: 6
Natty: 7.5
Report link

I tried that and it did not work. What is the next step for a solution to the server connection?

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jori Dale

79337319

Date: 2025-01-07 20:57:04
Score: 1.5
Natty:
Report link

In the settings module under Extension Configuration, femanager has the setting:

"Replace the input field for a fe_user's country with a select box."

Which is deseleced by default. Once this is checked and the cache cleared, everything works as expected.

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

79337317

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

Solved thanks perplexity.ai

Answer To forward a domain name in Wix to another domain in Wix, follow these steps: Go to the Domains section in your Wix account23. Click the Domain Actions icon next to the domain you want to forward2. Choose "Assign to a site" or "Assign to a different site" depending on whether the domain is currently connected to a site2. Select the site you want to forward to and click Next2. Choose "Redirect it to the primary domain" option2. Click Assign to complete the process2. "After completing these steps, allow up to 24 hours for the redirection to fully propagate3. During this time, your site may be accessible under both domain names. After 24 hours, when visitors enter the redirected domain's URL, the address bar in their browser will change to show the primary domain3."

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: EASLH

79337308

Date: 2025-01-07 20:49:02
Score: 1
Natty:
Report link

I finaly manage to use tensorflow transformation to finish the job.

first turn it to numpy array:

feature = np.array(df.select("vector_features_scaled").rdd.map(lambda row: row[0].toArray()).collect())

and turn it to a tensor and voila!

feature = tf.convert_to_tensor(feature, dtype="float32")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jonathan Roy

79337302

Date: 2025-01-07 20:46:01
Score: 2
Natty:
Report link

I finnaly find the problem.

tensorflow dataset are a kind of data generator so we don't need to use a data generator to chunck dataset and pass it to tensorflow dataset.

Use .batch() to generated "chunck" of data to read by itteration.

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

79337299

Date: 2025-01-07 20:45:01
Score: 2.5
Natty:
Report link

Quick workaround: Delete this file, if you notice a file at this directory below:

android/app/src/main/kotlin/com/example/myapp/MainActivity.kt

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

79337298

Date: 2025-01-07 20:45:01
Score: 1.5
Natty:
Report link

I think you should be able to make your delete function internal. I don't see any visibility requirements in DAOs in the Room documentation. If you separate your DAOs into a separate module, visibility to your delete function will then be restricted to only within that module.

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

79337296

Date: 2025-01-07 20:44:01
Score: 0.5
Natty:
Report link

ok the solution was to remove the network from all containers and let the pod handle everything.

mediawiki.pod

[Pod]
PodName=Mediawiki
Network=mediawiki.network
PublishPort=8080:80
PublishPort=3306:3306

mediawiki-app.container

[Container]
Image=docker.io/mediawiki:1.42
ContainerName=mediawiki-app
Pod=mediawiki.pod

mediawiki-db.container

[Container]
Image=docker.io/mariadb:11.6
ContainerName=mediawiki-db
Pod=mediawiki.pod
EnvironmentFile=mediawiki-db.env

mediawiki.network

[Network]
Driver=bridge
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Akreter

79337292

Date: 2025-01-07 20:44:01
Score: 1
Natty:
Report link

I hit the same issue with oh-my-zsh custom plugins. I found the answer in oh-my-zsh's wiki.

In your .zshrc, you can specify the custom directory with an environment variable: ZSH_CUSTOM=$HOME/my_customizations

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

79337283

Date: 2025-01-07 20:39:00
Score: 2.5
Natty:
Report link

to day add

 titleAlignment: ListTileTitleAlignment.center,

See the options: enter image description here

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

79337279

Date: 2025-01-07 20:36:59
Score: 2
Natty:
Report link

since Azure blob Allows unstructured data to be stored and accessed at a massive scale in block blobs. It supports streaming and random access scenarios. Also, if you want to be able to access application data from anywhere then you should choose Blob Storage. https://learn.microsoft.com/en-us/azure/storage/common/storage-introduction#blob-storage

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

79337270

Date: 2025-01-07 20:33:57
Score: 6 🚩
Natty:
Report link

Perhaps this video is useful https://www.youtube.com/watch?v=1YIOHhz5FgI

Install 'Linux Debugger' in VS 2022

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: packonet

79337268

Date: 2025-01-07 20:33:57
Score: 1
Natty:
Report link

why not just add the onclick attribute to the radio button?

<asp:RadioButton ID="CapitalImprovementsNO" runat="server" GroupName="CapitalImprovements" value="No" onclick="javascript:nocap();"/>

As far as I can tell the attribute isn't specifically an attribute of asp.net but it does end up an attribute of the generated HTML

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): why not
  • Low reputation (0.5):
Posted by: RCDAWebmaster

79337266

Date: 2025-01-07 20:33:57
Score: 5.5
Natty:
Report link

I am doing similar of downloading from SFC and running in IIS. Getting the below exception which I think it isn't getting the import maps correctly. Thanks in advance


Uncaught TypeError: Failed to resolve module specifier "vue". Relative references must start with either "/", "./", or "../".

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: joseph son

79337255

Date: 2025-01-07 20:30:56
Score: 3.5
Natty:
Report link

The solution to this problem is to use one topology for one topic.

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

79337233

Date: 2025-01-07 20:17:53
Score: 1
Natty:
Report link

The answer provided by Mayuhk works for the issue I laid out. But it slows down the function of the workbook to the point where it's basically unusable. I found that using the basic index-match-match functions with an indirect table array nested in each portion works much better.

INDEX(INDIRECT("'" & $B4 & "'!A11:Z41"),MATCH($C4, INDIRECT("'" & $B4 & "'!$A$11:$A$41"),0),MATCH(D$3, TEXT(INDIRECT("'" & $B4 & "'!$A$11:$Z$11"),"mmmm, yyy"),0))
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AdamG66

79337220

Date: 2025-01-07 20:11:52
Score: 0.5
Natty:
Report link

My solution: I created a Flask server that acts as an interface between the Android Emulator and the Firebase Emulator.

Before (@BeforeClass) the tests I use OkHttp3 to send HTTP requests from the tests to the Flask server. These requests specify the data I want to load into Firebase. When the Flash server receives a request, it uses the Firebase Admin SDK to upload the data.

Reasons:
  • Whitelisted phrase (-2): solution:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mr T

79337218

Date: 2025-01-07 20:10:51
Score: 0.5
Natty:
Report link

Try using SAFE.PARSE_DATE. It will attempt to parse each row following the format you indicate. It will return null if there’s an error. Here’s an example:

SELECT FORMAT_DATE('%Y-%m-%d', COALESCE( SAFE.PARSE_DATE('%d-%b-%y', column), SAFE.PARSE_DATE('%Y-%m-%d', column) ) ) AS formatted FROM table;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yannco

79337214

Date: 2025-01-07 20:09:51
Score: 0.5
Natty:
Report link

I'm not sure that Beautiful soup knows what you are saying. It's more like it uses some engine to parse and fix the HTML. It has this method soup.get_text() which returns all the text in HTML. Maybe you are looking for this. If not then it would help understand why you need such a function.

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

79337212

Date: 2025-01-07 20:08:51
Score: 3
Natty:
Report link

Thanks for all of them, Yes, The issue solved after removing the scope in >spring-boot-starter-tomcat in pom file or build and run config, need to select Add "dependencies scope with classpath"

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

79337206

Date: 2025-01-07 20:06:50
Score: 2
Natty:
Report link

Can you try to initialize your clients with localhost.localstack.cloud enpoint like suggesting in this answer?

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (0.5):
Posted by: fa44

79337205

Date: 2025-01-07 20:06:50
Score: 3
Natty:
Report link

I have gone through lots of discussion topics and read the below as well. I have tried a combination of solution posted by Ivan Shatsky and below. It is working. I have to monitor the performance for few days.

https://github.com/kbourdakos/facebook-UA-facebookexternalhit-1.1---RateLimit-Using-nginx/blob/main/configuration

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

79337191

Date: 2025-01-07 20:02:49
Score: 1
Natty:
Report link

I have created a working variant, but it works only once.

When I try to call it again, it doesn't work. Seems like something with ViewController lifecycle.

I will be grateful for your help. Maybe we can beat it together.

extension View {
func exportPDF<Content: View>(@ViewBuilder content: @escaping () -> Content, completion: @escaping (Bool, URL?) -> ()) {
    let documentDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first!
    let dateString = generateUniqueStringFromCurrentTime()
    let outputFileURL = documentDirectory.appendingPathComponent("MyFile-\(dateString).pdf")
    
    let rootVC = getRootController()
    
    let pdfView = convertToScrollView {
        content()
    }
    pdfView.tag = 123
    let size = pdfView.contentSize
    pdfView.frame = CGRect(x: 0, y: 0, width: size.width, height: size.height)
    
    // Insert the View to RootView to render PDF and remove from it afterwards.
    rootVC.view.insertSubview(pdfView, at: 0)
    let renderer = UIGraphicsPDFRenderer(bounds: CGRect(x: 0, y: 0, width: size.width, height: size.height))
    
    do {
        try renderer.writePDF(to: outputFileURL, withActions: { context in
            context.beginPage()
            pdfView.layer.render(in: context.cgContext)
        })
        completion(true, outputFileURL)
    } catch {
        completion(false, nil)
        print(error.localizedDescription)
    }
    
    rootVC.view.subviews.forEach { view in
        if view.tag == 123 {
            view.removeFromSuperview()
        }
    }
}

private func convertToScrollView<Content: View>(@ViewBuilder content: @escaping () -> Content) -> UIScrollView {
    let scrollView = UIScrollView()
    
    let hostController = UIHostingController(rootView: content()).view!
    hostController.translatesAutoresizingMaskIntoConstraints = false
    
    let constraints = [
        hostController.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor),
        hostController.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor),
        hostController.topAnchor.constraint(equalTo: scrollView.topAnchor),
        hostController.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor),
        
        hostController.widthAnchor.constraint(equalToConstant: screenBounds().width)
    ]
    
    scrollView.addSubview(hostController)
    scrollView.addConstraints(constraints)
    scrollView.layoutIfNeeded()
    
    return scrollView
}

private func getRootController() -> UIViewController {
    guard let screen = UIApplication.shared.connectedScenes.first as? UIWindowScene else {
        return .init()
    }
    
    guard let root = screen.windows.first?.rootViewController else {
        return .init()
    }
    
    return root
}

private func screenBounds() -> CGRect {
    return UIScreen.main.bounds
}

private func generateUniqueStringFromCurrentTime() -> String {
    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = "yyyy-MM-dd-HH-mm-ss-SSS" // Format: Year-Month-Day-Hour-Minute-Second-Millisecond
    let dateString = dateFormatter.string(from: Date())
    return dateString
}
Reasons:
  • RegEx Blacklisted phrase (2): I will be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ilya Biltuev

79337184

Date: 2025-01-07 19:59:47
Score: 6.5 🚩
Natty:
Report link

Which Magento version do you use here?

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

79337177

Date: 2025-01-07 19:57:47
Score: 1
Natty:
Report link

I've been having a lot of trouble with Digital Ocean building Python containers.

Basically you either have to reduce the memory needed which is hard/impossible or build it yourself and push as it explains here: https://docs.digitalocean.com/support/why-is-my-app-platform-build-or-deployment-failing-with-an-out-of-memory-error/.

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

79337174

Date: 2025-01-07 19:56:46
Score: 2
Natty:
Report link

There is no way to get historical data with the Telegram Bot API. But you can do this using a user account and the Telethon library. https://docs.telethon.dev/en/stable/ Quick start page here https://docs.telethon.dev/en/stable/basic/quick-start.html

However, this method will also allow you to receive only 100 messages at a time.

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

79337173

Date: 2025-01-07 19:55:46
Score: 4.5
Natty: 4
Report link

Kafka Streams left outer join on timeout

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

79337166

Date: 2025-01-07 19:51:45
Score: 1
Natty:
Report link

You use checkout.session.async_payment_succeeded (docs) to know when an async payment succeeds. Overall, you can't complete an expired Checkout Session, which is what triggers the async payment method to begin processing, so this shouldn't really be an issue.

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

79337160

Date: 2025-01-07 19:49:44
Score: 4
Natty:
Report link

Is there any way to get the result to show in a cell? What I would like is to count the number of worksheets (including hidden sheets) that are in a workbook up to and including a sheet named "SAMPLE", and then have this number displayed in cell BA on a sheet titled "ADMIN".

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: ffc2004

79337144

Date: 2025-01-07 19:44:42
Score: 1.5
Natty:
Report link

Something like this: txt_bene_birth_date > #01/01/ & DatePart("yyyy",Today())-2 & #

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

79337143

Date: 2025-01-07 19:43:41
Score: 4
Natty: 4
Report link

Kind of a follow-up to this question - but on the on-premises side. If the on-premises terminating endpoint changes (say a new firewall appliance where it terminates), is it simply a matter of changing the public IP on the local Gateway?

Any steps on the on-prem side? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: user2736158

79337127

Date: 2025-01-07 19:32:37
Score: 8.5 🚩
Natty: 6.5
Report link

Did you ever get this to work? I am trying the same thing.

Reasons:
  • Blacklisted phrase (1): I am trying the same
  • RegEx Blacklisted phrase (3): Did you ever get this to
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Rusty_Gates

79337122

Date: 2025-01-07 19:30:37
Score: 2.5
Natty:
Report link

Based on some answers provided by Databricks, the backfillInterval is used to check all files based on the interval you set. So it is supposed to check all files, just at the specified interval.

enter image description here

References: https://community.databricks.com/t5/data-engineering/what-does-autoloader-s-cloudfiles-backfillinterval-do/td-p/7709

https://community.databricks.com/t5/data-engineering/databricks-auto-loader-cloudfiles-backfillinterval/td-p/37915

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

79337117

Date: 2025-01-07 19:28:36
Score: 1.5
Natty:
Report link

[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:3.2.5:repackage (repackage) on project SROIncidents: Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:3.2.5:repackage failed: Unable to find main class -> [Help 1]

above my error and all i did was

delete the files under src/main/webapp/WEB-INF/ which are "lib" folder and "classes" folder

then did a "MVN clean install" worked for my build.

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

79337112

Date: 2025-01-07 19:25:35
Score: 2.5
Natty:
Report link

There is update in React-Router-Dom in version 7 if you want to pass your test case use version 6 using *

npm i [email protected]

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

79337111

Date: 2025-01-07 19:25:35
Score: 0.5
Natty:
Report link

as of 2025 is still happening:

go mod tidy

solved the issue for me. Which is think it is better than deleting imports or deleting go.mod/go.sum.

Pay attention go mod tidy might take awhile and the first time you will run/build your main.go will also take some time.

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

79337100

Date: 2025-01-07 19:19:34
Score: 0.5
Natty:
Report link

Video: https://imgur.com/a/10w3rzk

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

79337098

Date: 2025-01-07 19:17:33
Score: 7.5
Natty: 7
Report link

Can you please help? I want to exploit this vulnerability using the $.parseHTML function.

jQUery.1.12.4 Vulnerability

Reasons:
  • RegEx Blacklisted phrase (3): Can you please help
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please help
  • Low reputation (1):
Posted by: user29096157

79337091

Date: 2025-01-07 19:14:32
Score: 2.5
Natty:
Report link

There was a membership agreement needs to be reviewed and agreed. Once I agreed and after 10 min

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

79337090

Date: 2025-01-07 19:14:32
Score: 2
Natty:
Report link

The best way to do this is likely blob storage connected to a VM, you can determine what type of storage you need for your requirements and use that. (This is dependent on the archive tier, for example the standard hot storage in a file share starts around 5 TB and can be extended from there.) In this case you may not need the VM and could just mount the drive to your machines.

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

79337086

Date: 2025-01-07 19:09:30
Score: 4
Natty: 4.5
Report link

According to https://github.com/OmixVisualization/qtjambi/tree/bfa9c310ccc56434727ac6ff3d30bac68a527b45, it is very much in active development.

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

79337081

Date: 2025-01-07 19:08:29
Score: 2.5
Natty:
Report link

According to the information provided on

FilamentPHP: Adding some style · Laravel Bytes

and the

Override account widget · filamentphp/filament · Discussion #8752

You can attempt customization by creating a resources/views/vendor/filament-panels/components/page/sub-navigation/sidebar.blade.php file.

hey am new to development especially in laravel , as mentioned in these website when using vendor publish wont there be issue if we dont lock the dependencies version, i could only think of using a seperate view independent of filament panel and adding the theme and styling from the vendor file (copying the code) and exclude the navigation and other panel elements ! will this work? is there any alternative to override panel layout without vendor publish ? i really need to exclude all panel layout element except for it theming and styling

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user29095976

79337080

Date: 2025-01-07 19:08:29
Score: 2.5
Natty:
Report link

I currently refactored a component with a very slow perfomance removing all methods from view, After refact the problem was solved and I thought the lag was due to methods in view but after a while I noticed the perfomance issue was due to console.log on those methods

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Davi Américo

79337077

Date: 2025-01-07 19:07:29
Score: 0.5
Natty:
Report link

go to the flutter dir and run :

git pull

(need good internet)

then : flutter --version

if this is not satisfactory then run : flutter upgrade --force

this is worked for me :)

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

79337069

Date: 2025-01-07 19:02:28
Score: 1
Natty:
Report link

You could try using @media print in your CSS to force the table borders and background colors to appear.

For example:

@media print {
  table {
    border-collapse: collapse; /* Ensures borders display properly */
  }
  table, th, td {
    border: 1px solid black; /* Forces visible borders */
  }
  th, td {
    background-color: #f0f0f0 !important; /* Forces background colors */
    color: black !important; /* Ensures text is visible */
  }
}

I’ve had a similar issue before where certain styles were being overridden or ignored during printing.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @media
  • Low reputation (1):
Posted by: Sailor Moon

79337060

Date: 2025-01-07 18:56:27
Score: 2.5
Natty:
Report link

Please find official solution for this here https://datatables.net/examples/api/multi_filter.html . In the comments part of the documentation find the solution to modify it to bring it to head part.

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

79337055

Date: 2025-01-07 18:54:26
Score: 4
Natty:
Report link
  1. Remove SceneDelegate.swift file
  2. Remove SceneDelegate methods from AppDelegate.swift
  3. Remove Application Scene Manifest from Info.plist file
  4. Add var window: UIWindow? to AppDelegate.swift
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ameer Hamza

79337040

Date: 2025-01-07 18:49:24
Score: 2.5
Natty:
Report link

Go to https://console.cloud.google.com/apis/ then, on the credentials section, select your project and update the Authorized Javascript Origins and Authorized redirect URIs with your homepage link.

Note: The localhost URI may change when rebuilding the app, so be sure to update the URIs in the Google Cloud API console.

Google Cloud API console

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

79337033

Date: 2025-01-07 18:47:23
Score: 8
Natty: 7
Report link

I am experiencing the same issue recently. Did you manage to find a solution?

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

79337022

Date: 2025-01-07 18:43:22
Score: 3
Natty:
Report link

Can you add the full formula used? To check what is happening I need to check the full formula.

From what I see in the part of the formula shown, 'CASE WHEN {custcol_alloc_department.subsidiary} contains {item.linesubsidiary}' looks quite strange. They are using 'contains,' but 'contains' is a function that cannot be used on just any field as it requires a specific index.

Best ERPSof

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you add the
  • Low reputation (1):
Posted by: ERPsof Software

79337019

Date: 2025-01-07 18:42:22
Score: 2.5
Natty:
Report link

Seems like there is definitely a security flaw that needs to be updated in your code or a timestamp issue in your database. However, I do think you should dive into the messages on your dashboard.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aaron J. Washington

79337017

Date: 2025-01-07 18:42:22
Score: 3.5
Natty:
Report link

You've probably noticed that the pom does not exist at any of your specified URLs, which all return HTTP 404. Do you need to build PJSIP following the build instructions? The source code is on GitHub.

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

79337011

Date: 2025-01-07 18:41:21
Score: 1
Natty:
Report link

You can exclude it like this as well:

cargo test -- --skip "test_some_rare_test"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Eugene

79337007

Date: 2025-01-07 18:39:19
Score: 8 🚩
Natty:
Report link

Could you share, years later :) what was the problem? I am facing the same issue. The Advice is not set or executed.

Sincerely,

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kolo

79337005

Date: 2025-01-07 18:38:18
Score: 4.5
Natty:
Report link

I forgot to save the file lol!

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

79336997

Date: 2025-01-07 18:32:17
Score: 3
Natty:
Report link

As per the API documentation https://www.twilio.com/docs/sendgrid/for-developers/sending-email/segmentation-query-language#contains, CONTAINS function is mainly for querying on arrays(not a string function). One way to query for a subject line would be to use the LIKE operator(encoded).

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

79336995

Date: 2025-01-07 18:31:16
Score: 3.5
Natty:
Report link

Adding the node_modules folder to the .dockerignore file resolved the error for me

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

79336974

Date: 2025-01-07 18:21:14
Score: 2.5
Natty:
Report link

'sizeof' provides size information of types, not runtime array lengths when dealing with pointers. Always rely on a predefined constant or explicit size parameter for looping over arrays returned from functions.

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

79336971

Date: 2025-01-07 18:19:13
Score: 3
Natty:
Report link

If anyone in the future finds this: i gave up and downloaded everything from scratch in WSL2. works great.

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

79336964

Date: 2025-01-07 18:18:12
Score: 6.5 🚩
Natty: 4.5
Report link

yep, you were missing it, I have a quick question: My OKX wallet contains USDT, and I have the recovery phrase (channel cupboard south attend shrimp force spike toilet search position uncover question). How should I proceed to transfer them to Binance?

Reasons:
  • Blacklisted phrase (1): How should I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user29095118

79336963

Date: 2025-01-07 18:17:11
Score: 8 🚩
Natty: 4.5
Report link

this is my aproach to the problem but always failing in the 3 case, any ideas?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MSL

79336947

Date: 2025-01-07 18:09:08
Score: 3
Natty:
Report link

Removing node_modules and package-lock.json, and running npm install did it for me. The state of the local files was out of sync after an outdated git pull

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

79336945

Date: 2025-01-07 18:09:03
Score: 7.5 🚩
Natty: 5
Report link

can u explain your code just i want to learn

Reasons:
  • RegEx Blacklisted phrase (2.5): can u explain your code
  • RegEx Blacklisted phrase (1): i want
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can u
  • Low reputation (1):
Posted by: khald

79336944

Date: 2025-01-07 18:09:01
Score: 8.5 🚩
Natty:
Report link

Did you fix this, I have having the same issue and really confused as the user can see the files in the web interface just not in the;

_api/web/recycleBin

Reasons:
  • RegEx Blacklisted phrase (3): Did you fix this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Starts with a question (0.5): Did you fix this
  • Low reputation (1):
Posted by: Daniel Owen

79336930

Date: 2025-01-07 18:04:59
Score: 2.5
Natty:
Report link

you can drop just by writing this where df is your DataFrame and in index write the index of the row you want to drop df.drop(index=0)

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

79336920

Date: 2025-01-07 17:59:57
Score: 0.5
Natty:
Report link

You can also use this ansible oneliner command to generate the template without adding code in your playbooks or role file:

ansible -m template -a "src=~/workspace/ansible_templates/somefile_template.j2 dest=/etc/somefile/apps-available/someproject.ini" localhost
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Titou

79336918

Date: 2025-01-07 17:59:57
Score: 0.5
Natty:
Report link

Yes, you can implement a secure over-the-air exchange of the certificate pins.

Your app can download a signed list of pins from an unpinned domain. The signature of the data payload ensures the data's authenticity and can be validated on the client side using a built-in public key (baked into the mobile app).

You need to establish a process to keep the list of pins up-to-date when a new certificate is issued so that the app always downloads the correct pins. Also, as a pro tip, do not forget to add a challenge to the request from the mobile client to prevent replaying the response (the response should be a signed list of pins together with the challenge).

Here is an example tutorial on how to implement dynamic SSL pinning on iOS and Android:

https://developers.wultra.com/tutorials/posts/Dynamic-SSL-Pinning-for-Mobile-Apps/

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Petr Dvořák

79336911

Date: 2025-01-07 17:57:57
Score: 3.5
Natty:
Report link

It seems like the issue was with the shebang and line endings. Change from CRLF to LF resolved the issue.

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

79336899

Date: 2025-01-07 17:51:54
Score: 4
Natty:
Report link

DVC is saving files in the content-addressable way to be able to find the previous version of a file, directory. If you push files directly, the question is how do you find the previous state of the directory (e.g. if you need to remove some files?).

If you'd like to have files in a human-readable format, I would recommend a bit different setup / workflow.

Consider using DataChain + DVC as shown here, for example: https://github.com/shcheklein/example-datachain-dvc (+ DataChain gives a way to manage and query data granularly).

The difference for you in this case is that you push, upload, modify files directly in the cloud. DataChain captures a snapshot of a state of the bucket(s) when you need to produce a new version of a dataset and saves that snapshot into DVC.

So, instead of copying data into DVC, you are essentially saving a file with references to the original data. It's a different way of doing versioning if you wish where both tools work nicely together.

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): do you find the
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Shcheklein

79336898

Date: 2025-01-07 17:51:54
Score: 1.5
Natty:
Report link

Just got this problem implementing the Autofill component using a laptop with touchpad.

Based on Leandro's debugging + my own, I'm guessing the problem lays in how touchpad clicks are registered:

Seems like there is something wrong with the listeners in the code (will confirm tomorrow when I get the time to look into it).

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Marc Carranza Ferrez

79336895

Date: 2025-01-07 17:49:54
Score: 2
Natty:
Report link

I was really struggling with the installation of Python 3.8 and pip on my Ubuntu 16.04 system. I tried several methods, but I kept running into the issue with the platform.linux_distribution error, and none of the solutions seemed to work. I tried switching Python versions and adjusting paths, but it only made things worse.

Then I came across a guide that helped me solve the issue quickly: this detailed guide gave me a much clearer approach compared to the others I had found. The steps were straightforward and worked flawlessly, resolving my pip installation issues in no time.

I highly recommend checking it out if you're facing similar struggles—this guide was way more helpful than the others!

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Megha

79336894

Date: 2025-01-07 17:49:54
Score: 2
Natty:
Report link

The value of your $signed_field_names variable should include "reference_number".

See pages 71 and 72 in their docs.

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

79336893

Date: 2025-01-07 17:49:54
Score: 2
Natty:
Report link

The issue likely occurs because iOS isn't rendering the "Open-Sans-Bold" font properly. Ensure the font file is correctly linked and provided in web-safe formats like .woff or .woff2. Explicitly set font-weight: bold; for the strong tag and include a fallback font-family, such as sans-serif, in case the primary font fails. Verify the font file is loading correctly in the browser's developer tools, as missing or incompatible files can cause this issue.

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

79336888

Date: 2025-01-07 17:47:54
Score: 2
Natty:
Report link

The different CapCut Cloud Space subscription options typically vary based on the amount of storage you get. If you subscribe to the cheapest option, you’ll likely get less storage space but still enjoy all the basic cloud benefits, like saving and accessing your projects across devices. If you're looking to use CapCut templates or work on more complex edits, consider how much storage you’ll need to avoid running out. You can always upgrade later if needed! You can also use modded version of capcut apk.

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