79761083

Date: 2025-09-10 16:34:25
Score: 0.5
Natty:
Report link
<!--HTML CODE-->
<html>
    <head>
        <!-- CSS CODE-->
        <style>
            /* Background Image */
            body 
            {
                background-image: url(Background.png); /* Used to add the Background Picture */
                background-position: center; /* Used to center the Picture into the screen */
                background-size:cover; /* Used to cover the picture in the entire screen */
                background-repeat:repeat; /* Used to repeat the Background Picture */
                background-attachment: fixed; /* Used to keep the background fixed when scrolling */
            }

            #p1 
            {
                color:aqua;
            
            }
        </style>
    <head>

    <body>
        <header>
          
        </header>

        <main>
            
        <p id="p1"> GeorgeK@portfolio:~@</p>
        </main>

        <footer>

        </footer>

    </body>

</html>

THIS IS MY CODE

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: anonymus hacker

79761069

Date: 2025-09-10 16:24:22
Score: 1
Natty:
Report link

Why is this code different?

The difference is when and where you create the task. There is a big difference between

... Task.Run(async () => await CreateTheTaskInsideTheLambda().ConfigureAwait(false))...

and

var theTask = CreateTheTaskOutsideOfLambda();
... Task.Run(async () => await theTask.ConfigureAwait(false))...

The lambda is executed on the thread pool, so CreateTheTaskInsideTheLambda() cannot catch any ambient SynchronizationContext. .ConfigureAwait(false) here changes nothing, it's not necessary.

CreateTheTaskOutsideOfLambda() on the other hand may catch SynchronizationContext on the first await inside, if that await doesn't have .ConfigureAwait(false). This may cause a deadlock.
Again .ConfigureAwait(false) in Task.Run(async () => await theTask.ConfigureAwait(false)) changes nothing.

Reasons:
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why is this code
  • Low reputation (0.5):
Posted by: Sinus32

79761067

Date: 2025-09-10 16:18:17
Score: 6 đŸš©
Natty:
Report link

Did build a persistence plugin that supports asynchronous storages in IndexedDB: https://github.com/erlihs/pinia-plugin-storage

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: erlihs

79761065

Date: 2025-09-10 16:17:16
Score: 0.5
Natty:
Report link

This turned out to be a version difference in surveyJS.

Resolution
Upgrade to the latest SurveyJS. After upgrading, the configuration below behaves correctly:

{
  "pages": [
    {
      "elements": [
        {
          "type": "text",
          "name": "m",
          "title": "Month",
          "inputType": "month",
          "isRequired": true,
          "maxValueExpression": "today()"
        }
      ]
    }
  ]
}

Why others couldn't reproduce
They were testing on newer SurveyJS versions where this issue has already been fixed.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ariel Piyale-Anisman

79761059

Date: 2025-09-10 16:10:15
Score: 3.5
Natty:
Report link

so for everyone who googles this in the future, on mac it's a little icon like a rectangle between square brackets. looks like this: [▭]

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

79761041

Date: 2025-09-10 15:59:11
Score: 2
Natty:
Report link

That's what you should do with its suggestion there, before the code having issue, just add this command there:

@kotlin.ExperimentalStdlibApi

Or you can upgrade your IntelliJ to latest version and it also solved this issue. I got same one there and both ways work for me.

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

79761035

Date: 2025-09-10 15:53:10
Score: 1
Natty:
Report link

First WildFly 14 is quite old so I'm not sure what is supported and you should definitively upgrade (as 37.0.1 is out now). https://docs.wildfly.org/wildfly-proposals/microprofile/WFLY-11529_subsystem_metrics.html shows that metrics are exposed as Prometheus data to be consumed. I'm pretty sure yo can find documentation on how to do that on the web like https://www.mastertheboss.com/jbossas/monitoring/using-elk-stack-to-collect-wildfly-jboss-eap-metrics/

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

79761033

Date: 2025-09-10 15:52:09
Score: 3
Natty:
Report link

This is still one of the first results in Google so thought I'd answer even though it is an old post.

I did a spawned filter for GeoIP of email servers a bit ago. Code is on github if anyone wants it.

https://github.com/malacusp/policyd-geoip

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Malac

79761030

Date: 2025-09-10 15:47:08
Score: 4
Natty:
Report link

Size limit, probably. Did build a persistence plugin that supports asynchronous storages in IndexedDB: https://github.com/erlihs/pinia-plugin-storage

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

79761025

Date: 2025-09-10 15:41:06
Score: 1
Natty:
Report link

I know this is super late, but hopefully this helps anyone else needing a workaround for such function. I had a similar requirement. Permit me to tale my requirement for better context and to those who have similar problem. Except that in my case it wasn't a 5th or 30th record. It's expected to be dynamic.

On a stocks market analysis project, each day has a market record, but days aren't sequential there are gaps e.g weekends, public holidays etc. Depending on user's input the program can compute or compare across a dynamic timeline e.g 5 market days = 1 week, 2W, 3W, 52W comparison etc. Calendar isn't reliable here. Since data is tied to trading days, not calendar days. In my case it became expedient to leverage row number.

E.g. if date is 2024-08-05 and row_number 53,505. I can look up 25 market days or 300 records away to compute growth etc.

Back to the Answer.

I used Django's annotate() function with a subquery that leverages PostgreSQL's window function to filter the queryset. The answer q = list(qs) above would suffice in cases where data isn't much. I wanted to avoid materializing a large queryset into a list, which would be inefficient.

PostgreSQL's ROW_NUMBER() window function. The SQL query looked something like this:

SELECT subquery.row_num FROM (SELECT id, ROW_NUMBER() OVER (ORDER BY id ASC) as row_num FROM {table_name}) subquery WHERE subquery.id = {table_name}.id

Here's how I implemented it in my Django workflow:

from django.db.models.expressions import RawSQL

class YourModel
...

@classmethod
    def get_offset_record(cls, record_id, offset):
        """
        Returns X number of market record (days) ago
        """
        table_name = cls._meta.db_table
        qs = (
            cls.objects.all()
            .annotate(
                row_number=RawSQL(
                    f"(SELECT subquery.row_num FROM (SELECT id, ROW_NUMBER() OVER (ORDER BY id ASC) as row_num FROM {table_name}) subquery WHERE subquery.id = {table_name}.id)",
                    [],
                    output_field=models.IntegerField(),
                )
            )
            .order_by("id")
        )

        try:
            current_row = qs.filter(pk=record_id).first()
            target_row_number = current_row.row_number - offset
            return qs.get(row_number=target_row_number)
        except cls.DoesNotExist:
            return None

i'm aware there's a from django.db.models.functions import RowNumber But i find the raw sql easier to use.

I hope this helps someone, Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have similar problem
Posted by: Olamigoke Philip

79761016

Date: 2025-09-10 15:33:03
Score: 2
Natty:
Report link

There is also set key opaque (see also https://superuser.com/questions/1551391 and Set custom background color for key in Gnuplot).

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Friedrich -- ХлаĐČа ĐŁĐșŃ€Đ°Ń—ĐœŃ–

79761012

Date: 2025-09-10 15:27:01
Score: 2.5
Natty:
Report link

Igbinake, A. O., and C. O. Aliyegbenoma. "Estimation and Optimization of Tensile Strain in Mild Steel." Journal of Applied Sciences and Environmental Management 29.5 (2025): 1554-1559.

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

79761011

Date: 2025-09-10 15:26:01
Score: 0.5
Natty:
Report link

In the request headers, we can see:

Provisional headers are shown

It means the request is cached, Chrome doesn't need to execute it because the answer is in the cache. Cookies aren't cached, so their headers are missing.

  1. Force page reload with Ctrl + Shift + R.
  2. The cookie headers should appear.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luc PHAN

79761010

Date: 2025-09-10 15:26:01
Score: 3.5
Natty:
Report link

I know this thread is really old, but you can create PR templates these days - however they do not (yet) support the YAML form-field version, like issues templates do. https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository

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

79761000

Date: 2025-09-10 15:12:57
Score: 2.5
Natty:
Report link

Open Visual Studio Installer, then open Modify, click additional project template (previous version) and .net framework project and item templates, then install them. Finally, open visual studio and enjoy!!!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BĂči KhĂĄnh Minh

79760995

Date: 2025-09-10 15:01:53
Score: 0.5
Natty:
Report link

It has been a while but I can confirm that everything works fine as long as the secret rotation is done one step at a time:

- Rotating primary secret
- Deploy Pulumi
- Rotate Secondary secret

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

79760992

Date: 2025-09-10 14:58:53
Score: 2
Natty:
Report link
  1. Select the row containing the column header names.

  2. Copy this row.

  3. In a blank area, right-click, and select the "Transpose" button.

    A screenshot of the Transpose option in Excel's Paste Special menu

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

79760985

Date: 2025-09-10 14:42:49
Score: 0.5
Natty:
Report link

Whenever we see this error. Follow the below steps

Step 1: Find out whether the username has added into the GitBash or not

CMD: git config --list

enter image description here

Step 2: Add the username which is similar to github. Go to Github --> Profile --> You will see your name and next something like this basha_fxd

CMD: git config --global user.name "basha_fxd"

Step 3: Run the same code Step 1. You will see that your username has added.

Step 4: Run the below code and it will take your success.

git commit -m 'Updated the Code

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ibrahim Basha Imran

79760976

Date: 2025-09-10 14:36:47
Score: 1
Natty:
Report link

I was looking at this issue since I've been using remote compute for development, and with the workspace stored in azure blob storage making storing node_modules in the workspace inefficient and slow, and sometimes bricks my remote compute. Instead, I need to have node_modules stored locally on the azure remote compute instance - but since it's outside of my workspace I can't sync the package.json with changes that are live in the repository. I found:

symlink home/azureuser/.../package.json pointing to frontend/package.json

then symlink frontend/node_modules pointing to home/azureuser/.../node_modules

Basically, symlinking in opposite directions, one (package.json) reading from the workspace which is live and synced with the repo, and the other (node_modules) then reading from the remote compute

Another solution would be to have the entire workspace on the compute, but it's not company practice

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Awesomefly

79760971

Date: 2025-09-10 14:33:46
Score: 0.5
Natty:
Report link

After spending an entire afternoon going down the Google rabbit hole, I found a post here that referenced another post that appeared to be broken but the Wayback Machine came to the rescue here. After finding what I needed, I realized a couple of SO questions came close to providing an answer indirectly (here and here) but the information wasn't presented in a way I would have picked up on at the time.

For DB2 (i Series at least) use an "x" outside the single quotes with the hex string inside them, like so:

SELECT * FROM [schema].[tablename] WHERE fieldname=x'A0B1C2D3'

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Wildcat Matt

79760954

Date: 2025-09-10 14:09:39
Score: 1.5
Natty:
Report link
import seaborn as sns
sns.set_style("darkgrid")

It looks like the plot was previously styled with Seaborn. You might try adding the block above to set it again.

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

79760950

Date: 2025-09-10 14:05:38
Score: 1
Natty:
Report link

go to your /User/your_user/

type - open .zshrc

and go to the line specified after .zshrc in the error
/Users/mellon/.zshrc:12(<-- here): parse error near `-y'

remove/fix the error and you are good to go

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

79760948

Date: 2025-09-10 14:01:37
Score: 1
Natty:
Report link

Now the matplotlibs has changed to a bit modern style that is why you are seeing difference in the plots. Although you can still use the old style of plots using this line in your code -

plt.style.use('classic') 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdul_Basit

79760947

Date: 2025-09-10 14:01:37
Score: 0.5
Natty:
Report link

Seems that Vert.x is delegating all JSON parsing to Jackson (com.fasterxml.jackson.databind.ObjectMapper under the hood).
Using the following before creating OpenAPIContract seems to fix the issue:


import com.fasterxml.jackson.databind.DeserializationFeature;import io.vertx.core.json.jackson.DatabindCodec;

// Disable using Long for integers so small numbers become IntegerDatabindCodec.mapper().configure(DeserializationFeature.USE_LONG_FOR_INTS, false);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mac johnsto

79760939

Date: 2025-09-10 13:54:35
Score: 2.5
Natty:
Report link

You might want to check your dependency tree to identify the conflict, see this Stackoverflow post and this documentation as your reference.

After confirming which dependency is pulling in the older version, exclude the transitive google-api-services-storage dependency from it. Then, explicitly declare the correct version you need as a new, top-level dependency in your pom.xml or build.gradle file.

This will allow Apache Beam 2.67.0 to provide its required, compatible version as a transitive dependency, which will resolve the NoSuchMethodError because the correct version contains the getSoftDeletePolicy() method.

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

79760938

Date: 2025-09-10 13:53:34
Score: 2
Natty:
Report link

Simply had to update my Fastfile from

xcodes(version: "16.2")

to

xcodes(version: "16.4")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sami

79760936

Date: 2025-09-10 13:53:34
Score: 1
Natty:
Report link

You can try a singleValueLegacyExtendedProperty for outlook to sent custom key.

create key when send

 const replyMessage = {
            comment: comment
            message: {
                singleValueExtendedProperties: [
                    {
                        "id": "String {guid} Name Property-name",
                        "value": "String"
                    }
                ],
            }
        };

example guid: 66f5a359-4659-4830-9070-00040ec6ac6e

and on the event side you can fetch with expand.

const message = await this.graphClient
                .api(`/me/messages/${messageId}`)
                .expand("singleValueExtendedProperties($filter=id eq 'String {guid} Name X-CRM-IGNORE')")
                .get();

Hey here is the resources.

https://learn.microsoft.com/en-us/graph/api/singlevaluelegacyextendedproperty-post-singlevalueextendedproperties?view=graph-rest-1.0&tabs=javascript

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

79760913

Date: 2025-09-10 13:34:28
Score: 0.5
Natty:
Report link

NAV 2009 is tricky—its “classic” version has pretty limited integration options, mostly via direct SQL access, flat file export/import, or XML ports. The “RTC”/web services layer is more robust in NAV 2015, which supports OData and SOAP web services for exposing entities like customers and contacts.

For NAV 2009, you’ll likely end up using XML ports or automating flat file exports, then building something to sync those with Salesforce (either on a schedule or triggered). Direct SQL access is possible but not recommended unless you’re careful about data consistency and NAV’s business logic.

Once you upgrade to NAV 2015, things get easier—you can publish pages or codeunits as web services and consume them directly from Salesforce or an integration middleware. You’d expose the relevant entities (contacts, accounts, etc.) and pull data using standard web service calls.

If you need to write back from Salesforce to NAV, you’ll need to set up codeunits for that purpose and expose them as web services. Authentication and permissions can be a hassle, so plan some time for that.

In short, integration is much smoother in NAV 2015, but doable in 2009 with more workarounds. If the upgrade is coming soon, it might be worth waiting unless the client needs something ASAP.

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

79760912

Date: 2025-09-10 13:33:28
Score: 1
Natty:
Report link

You are asking GraphQL to instantiate an abstract class. That is simply impossible. Change your declaration in such a way Animal is not abstract any longer.

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

79760893

Date: 2025-09-10 13:13:23
Score: 0.5
Natty:
Report link

Okay, I see what's going on here. Your column has VLOOKUP formulas dragged down, so even the "empty" ones are returning an empty string (""), and Excel treats those as non-blank cells for counting purposes. That's why SUBTOTAL(3, ...) is counting everything with a formula, including the blanks. And your SUMPRODUCT attempt is skipping them all because every cell has a formula in it. Let's fix this step by step. I'm assuming you want to count the number of cells in that column (say, J5:J2000 based on your example) that actually have a value from the VLOOKUP (not just ""), and you want to use something like SUBTOTAL to respect any filters or hidden rows you might have.First, confirm your goal: If you're trying to sum the values instead of count them, let me know because that changes things (e.g., if it's numbers, SUBTOTAL(9, ...) might already work fine since "" gets treated as 0). But based on what you described, it sounds like a count of non-blank results. If the data from VLOOKUP is always numbers, we can use a simpler trick with SUBTOTAL(2, ...), which counts only numeric cells and ignores text like "". But if it's text or mixed, we'll need a different approach. For now, I'll give you a general solution that works for any data type.Here's how to set it up without a helper column, using a formula that combines SUMPRODUCT and SUBTOTAL to count only visible cells (ignoring filters) where the value isn't "".

  1. Pick the cell where you want this subtotal to go (probably below your data range or in a summary spot).

  2. Enter this formula, adjusting the range to match yours (I'm using J5:J2000 as an example, but swap in L5:L16282 if that's your actual column):=SUMPRODUCT(--(J5:J2000<>""), SUBTOTAL(3, OFFSET(J5, ROW(J5:J2000)-ROW(J5), 0)))Press Enter (or Ctrl+Shift+Enter if you're on an older Excel version that needs array formulas—most modern ones handle it automatically).

  3. What this does in simple terms:

    • The (J5:J2000<>"") part checks each cell to see if it's not an empty string, turning matches into 1s and non-matches into 0s.

    • The SUBTOTAL(3, OFFSET(...)) part creates an array of 1s for visible rows and 0s for hidden/filtered rows.

    • SUMPRODUCT multiplies them together and adds up the results, so you only count the visible cells that aren't "".

  4. Test it out: Apply a filter to your data (like on another column) to hide some rows, and watch the subtotal update automatically—it should only count the visible non-blank ones. If you have no filters, it'll just act like a smart COUNTIF that skips the "" cells.

If this feels a bit heavy for a huge range like 16,000 rows (it might calculate slowly), here's an alternative with a helper column, which is lighter on performance:

  1. Add a new column next to your data, say column K starting at K5.

  2. In K5, put: =IF(J5<>"", 1, "")

  3. Drag that formula down to match your range (all the way to K2000 or whatever).

  4. Now, in your subtotal cell, use: =SUBTOTAL(9, K5:K2000)

  5. This sums the 1s in the helper column, which effectively counts the non-"" cells in J, and SUBTOTAL(9) ignores any filtered rows. You can hide the helper column if it clutters things up.

If your VLOOKUP is always returning numbers (not text), reply and tell me—that lets us simplify to just =SUBTOTAL(2, J5:J2000), since it counts only numeric cells and skips "" (which is text).

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

79760882

Date: 2025-09-10 12:54:18
Score: 4
Natty:
Report link

In this blog post, you can see how to automate and accelerate chunk downloads using curl with parallel threads in Python.

https://remotalks.blogspot.com/2025/07/download-large-files-in-chunks_19.html

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: guest

79760880

Date: 2025-09-10 12:54:18
Score: 1.5
Natty:
Report link
  <preference name="scheme" value="app"/>
  <preference name="hostname" value="localhost"/>

adding the code to config.xml solve my problem.

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

79760875

Date: 2025-09-10 12:48:16
Score: 3.5
Natty:
Report link

Looking at the awnser, its probaly scaling. i would put it at a feature with the libary itself, but Im not to sure since I only really use tkkbootstrap for my GUI's.

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

79760873

Date: 2025-09-10 12:45:15
Score: 0.5
Natty:
Report link
Thank you for your quick reply and your suggestions. We initially implemented logging by creating a custom directory inside wp-content, and this approach worked well on most environments. Here's the code we used:
function site_file() {
    $log_dir = WP_CONTENT_DIR . '/site-logs';

    // Create directory if it doesn't exist
    if (!file_exists($log_dir)) {
        mkdir($log_dir, 0755, true);
        file_put_contents($log_dir . '/index.php', "<?php // Silence is golden");
        file_put_contents($log_dir . '/.htaccess', "Deny from all\n");
    }

    return $log_dir . '/site.log';
}


However, due to WordPress compliance guidelines and common restrictions on shared hosting, we cannot create writable files outside the uploads folder.So we updated our implementation to fallback to wp_upload_dir() when writing to the custom directory failed. Here's a simplified version of the updated logic:
$root_dir = dirname(ABSPATH);
$log_dir = trailingslashit($root_dir) . 'site-logs';

// Fall back to uploads folder if not writable
if (!wp_mkdir_p($log_dir) || !is_writable($log_dir)) {
    $upload_dir = wp_upload_dir();
    $log_dir = trailingslashit($upload_dir['basedir']) . 'site-logs';

    if (!file_exists($log_dir)) {
        wp_mkdir_p($log_dir);
    }

    // Add basic protections
    if (!file_exists($log_dir . '/index.php')) {
        @file_put_contents($log_dir . '/index.php', "<?php\n// Silence is golden.\nexit;");
    }

    if (!file_exists($log_dir . '/.htaccess')) {
        @file_put_contents($log_dir . '/.htaccess', "Deny from all\n");
    }

    // Generate obfuscated log filename
    $unique = substr(md5(wp_salt() . get_current_blog_id()), 0, 12);
    self::$log_file = trailingslashit($log_dir) . "site-{$unique}.log";
}

This fallback ensures logging works even in restrictive hosting environments, which is important for plugin compatibility. We do not log sensitive data, and we add basic protections like .htaccess and obfuscation.
On  Nginx servers, we realize .htaccess is ignored, and the file remains publicly accessible if its path is known — which is the core issue we're trying to mitigate without server-level config access.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: softscriptsolutions

79760871

Date: 2025-09-10 12:44:15
Score: 2.5
Natty:
Report link

Memory Safety in C++ is not really possible.

Here is why: https://sappeur.di-fg.de/WhyCandCppCannotBeMemorySafe.html

The best you can do is to be very disciplined, follow KISS and use modern C++.

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

79760866

Date: 2025-09-10 12:38:14
Score: 1
Natty:
Report link

I contacted Twilio support and got the feedback, that my account is connected to region Ireland (ie1). So the Twilio Client Constructor has to look like this:

client = Client(
    account_sid=account_sid,
    username=api_key_sid,
    password=api_key_secret,
    edge="dublin",
    region="ie1",
)

So be aware of the credentials you use.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Thorsten Göllner

79760863

Date: 2025-09-10 12:35:13
Score: 1
Natty:
Report link

I have a working setup but this error sometimes(very rarely) still happens and then fixes itself. Without any changes in the infra.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Amin Shojaei

79760860

Date: 2025-09-10 12:34:12
Score: 2.5
Natty:
Report link

I'm Gonna Teach You New Skills And Rout In Gorilla Tag So You Can Become A Proand If You Wanna Film A Video Or You Wanna Chill And Have Fun | Got You For $2.5 And The 5 is Important.

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

79760856

Date: 2025-09-10 12:32:12
Score: 9.5
Natty: 7
Report link

did you succeed? I am trying to do the same thing to migrate my on-premise domain to EntraID

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • Blacklisted phrase (3): did you succeed
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Sebastien

79760850

Date: 2025-09-10 12:21:08
Score: 3
Natty:
Report link

The problem occurs in the minification and shrink process. It is necessary to create an exception with a progrardFile removing the ExoPlayer class.

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

79760846

Date: 2025-09-10 12:15:06
Score: 4
Natty:
Report link

(Scenario) --> In the container instance

Even though i've given like below i can't able to curl....

env:
          - name: OPTION_LIBS
            value: ignite-kubernetes,ignite-rest-http

so done below:
netstat -tulnp
and i didn't find any http 8080 in the listeners.... and configured connectorConfiguration by using the below code in config

        <property name="connectorConfiguration">
            <bean class="org.apache.ignite.configuration.ConnectorConfiguration">
                <property name="host" value="0.0.0.0"/>
                <property name="port" value="8080"/>
            </bean>
        </property>

Then i can confirm that http server is started but in the name TCP binary (I'm expecting in the HTTP).... confirmed from the logs

[11:41:19,261][INFO][main][GridTcpRestProtocol] Command protocol successfully started [name=TCP binary, host=/0.0.0.0, port=8080]

so tried to curl

wget -qO- http://127.0.0.1:8080
wget: error getting response

and in the logs i've got below warning in the logs:


[12:06:56,874][WARNING][grid-nio-worker-tcp-rest-3-#42][GridTcpRestProtocol] Client disconnected abruptly due to network connection loss or because the connection was left open on application shutdown. [cls=class o.a.i.i.util.nio.GridNioException, msg=Failed to parse incoming packet (invalid packet start) [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=0, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=false]], b=47]]
[12:06:56,874][WARNING][grid-nio-worker-tcp-rest-3-#42][GridTcpRestProtocol] Closed client session due to exception [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=1757506016868, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=true]], msg=Failed to parse incoming packet (invalid packet start) [ses=GridSelectorNioSessionImpl [worker=ByteBufferNioClientWorker [readBuf=java.nio.HeapByteBuffer[pos=0 lim=90 cap=8192], super=AbstractNioClientWorker [idx=3, bytesRcvd=0, bytesSent=0, bytesRcvd0=0, bytesSent0=0, select=true, super=GridWorker [name=grid-nio-worker-tcp-rest-3, igniteInstanceName=null, finished=false, heartbeatTs=1757506016868, hashCode=1109163085, interrupted=false, runner=grid-nio-worker-tcp-rest-3-#42]]], writeBuf=null, readBuf=null, inRecovery=null, outRecovery=null, closeSocket=true, outboundMessagesQueueSizeMetric=o.a.i.i.processors.metric.impl.LongAdderMetric@27c2862d, super=GridNioSessionImpl [locAddr=/127.0.0.1:8080, rmtAddr=/127.0.0.1:59486, createTime=1757506016868, closeTime=0, bytesSent=0, bytesRcvd=90, bytesSent0=0, bytesRcvd0=90, sndSchedTime=1757506016868, lastSndTime=1757506016868, lastRcvTime=1757506016868, readsPaused=false, filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridTcpRestParser [marsh=JdkMarshaller [clsFilter=o.a.i.marshaller.IgniteMarshallerClassFilter@fbbedd80], routerClient=false], directMode=false]], accepted=true, markedForClose=false]], b=47]]

can anyone please help me....

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (0.5): anyone please help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manoj

79760840

Date: 2025-09-10 12:12:05
Score: 0.5
Natty:
Report link

Determining the attribute type from Akeneo attribute value from payload dynamically is not a reliable way as values may be present or absent in payload based on data in Akeneo or its family attributes association in Akeneo.

Better you create a configuration in Magento for attribute mapping between Magento and Akeneo. This would be one time config. And update it as and when there is new attribute introduced is Akeneo.

Then update your logic using that mapping + available attributes in payload and create/update product in Magento accordingly dynamically.

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

79760835

Date: 2025-09-10 12:08:04
Score: 0.5
Natty:
Report link

Your PINN may be overfitting because the network is learning to satisfy the boundary and initial conditions without correctly enforcing the underlying differential equation across the entire domain. The high weight given to the data loss (the training points) causes the model to prioritize fitting those points perfectly, neglecting the physics-based loss.

You MAY try to use a residual-based curriculum learning approach: try yo dynamically sample more points from regions where the physics-based loss is high. The model will focus on the areas where it is failing to satisfy the governing differential equation, this may improve its generalization.

To provide a better answer, we may need more details and clarification.

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

79760833

Date: 2025-09-10 12:08:04
Score: 3
Natty:
Report link

enter image description hereenter image description hereRight click on test folder in your project, then click on " Run 'test in test' " then wait for processing and check your console by clicking on tick in the left top corner of the console.

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

79760821

Date: 2025-09-10 11:56:01
Score: 0.5
Natty:
Report link

For future readers who wanted to "connect to a wss" instead of serving one, you can use HttpClient#wss instead of HttpClient#webSocket

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ejar rill

79760811

Date: 2025-09-10 11:46:59
Score: 3.5
Natty:
Report link

It seems to have changed again, now it's in the options at the right of the screen:

enter image description here

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

79760807

Date: 2025-09-10 11:42:57
Score: 3
Natty:
Report link

We used a CloudFront viewer-request 301 redirect. and it works good. The only “downside” is cosmetic: the browser URL changes to the Grafana workspace hostname.

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

79760798

Date: 2025-09-10 11:31:53
Score: 12.5 đŸš©
Natty:
Report link

Is there any solution to this? I have the same problem.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any solution to this
  • Low reputation (1):
Posted by: user2398244

79760791

Date: 2025-09-10 11:25:52
Score: 0.5
Natty:
Report link

As already stated in the comments by @yotheguitou you have to commit to save the changes made to your SQLite since the last commit.

After you executed a DELETE statement you need to call connection.commit().

cursor.execute("DELETE FROM ticket WHERE ROWID = (SELECT MAX(ROWID) FROM ticket)")

connection.commit()

If you want to automatically commit after any executed statement, set isolation_level=None.

conn = sqlite3.connect("example.db", isolation_level=None)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @yotheguitou
Posted by: Bending Rodriguez

79760784

Date: 2025-09-10 11:19:50
Score: 3.5
Natty:
Report link

just 1 prefix backslash

\cp <source_file> <destiation addr>

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

79760776

Date: 2025-09-10 11:14:48
Score: 4
Natty: 4
Report link

Since android API 31: Build.SOC_MODEL
https://developer.android.com/reference/android/os/Build#SOC_MODEL

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

79760775

Date: 2025-09-10 11:13:47
Score: 0.5
Natty:
Report link

I had the same issue, and my problem was that I was trying to call http://www.example.com instead of https://www.example.com, and my nginx server was trying to redirect the request from http to https, which preflight didn't like.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Fusseldieb

79760774

Date: 2025-09-10 11:13:47
Score: 2.5
Natty:
Report link

The changes during the sequence updates are double protected: by an exclusive lock of the sequence block and by the SEQ latch. It’s not possible for two sessions to update simultaneously not only the same sequence but any two sequences in the same database.

If you would update a sequence inside a transaction and the AI logging is enabled for a database then you could restore the database to the state after any transaction and you could read the last sequence value. I don’t believe you will see the duplicate values for two transactions.

BTW, what is your OpenEdge version? There were a few changes in the ways how Progress works with the sequences. The most recent one was in 12.2

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: George Potemkin

79760773

Date: 2025-09-10 11:12:47
Score: 1.5
Natty:
Report link

I have recently had an issue from an update around that time which had this [completion](https://code.visualstudio.com/docs/copilot/ai-powered-suggestions) added with a green tab:

enter image description here

For this specific problem, go to settings.json, User, then search for @tag:nextEditSuggestion and change the following setting from Editor>Inline Suggest>Edits: Allow Code Shifting from always to never.

enter image description here

How I easily accessed the menu was when the green tab came up came up, hover over it and click settings.

enter image description here

Note - to activate the changes, I had to close the file after changing the settings and re open the file.

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

79760772

Date: 2025-09-10 11:11:46
Score: 3.5
Natty:
Report link

Just copy goalseek from VBA, there's one line

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

79760771

Date: 2025-09-10 11:09:45
Score: 1
Natty:
Report link

Now we have a new tool -- mise.

curl https://mise.run | sh

mise use -g [email protected]

Also, mise support uv. If you have installed uv (for example, with mise use -g uv@latest), mise will use it to create virtual environments.

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

79760767

Date: 2025-09-10 11:06:45
Score: 1
Natty:
Report link

Tampering with the scale sets that Kubernetes creates is not supported which seems to be the case. Most likely someone has tried to install this extension directly on the scale set which resulted in failure without being able to remove it. As it has failed there is not actual installation but the extension resource is in some state that cannot be removed. That is also causing the issue when you try to apply the kubernetes configuration via Bicep. My advise would be to re-create the AKS cluster or try to replace the current system pool with another one. You can also try to contact Azure Support to see if they can force the removal of the extension but it is unclear if they will provide support for something they have explicitly said it is not supported.

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

79760762

Date: 2025-09-10 10:59:43
Score: 1.5
Natty:
Report link

DigiCert timestamp server (http://timestamp.digicert.com) uses HTTP, not HTTPS. The error you were seeing occurred because the signing tool couldn't reach the HTTP timestamp server through your proxy.

By setting HTTP_PROXY, your signing process can now properly route the HTTP requests to the timestamp server through your corporate proxy, which should resolve the error you were encountering.

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

79760761

Date: 2025-09-10 10:54:42
Score: 0.5
Natty:
Report link

The issue was that I was importing toaster in View from this way:

import { toast } from 'vue-sonner'

But actually, if I installed Sonner as a component (in /ui), I need to import it in that way:

import {
  toast
} from '@ist/ui';

and I also must insert that:

import { toast } from 'vue-sonner'

into ui/index.ts

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Giacomo Brunetta

79760755

Date: 2025-09-10 10:50:41
Score: 1
Natty:
Report link

For anyone looking at this now, as noted when you have strings ("?") mixed in with ints you can do the following in pandas.

# convert the data to int64/float64 turning anything (i.e '?') that can't be converted into nan 
df["Bare Nuclei"] = pd.to_numeric(df["Bare Nuclei"], errors="coerce")
# if you really need it as int you can then do the following, Int64 can handle NaN values so is useful in these situations
df["Bare Nuclei"] = df["Bare Nuclei"].astype("Int64")
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: gj_overflow

79760750

Date: 2025-09-10 10:41:39
Score: 1.5
Natty:
Report link

Another way to do it is

use Data::Printer {
    class => {
        expand => 'all',           # default 1
    },
};

https://metacpan.org/release/GARU/Data-Printer-0.35/view/lib/Data/Printer.pm#CUSTOMIZATION

As of now we are 12 years in the future, I'm not sure when the expand param was added, but pretty useful!

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

79760749

Date: 2025-09-10 10:41:38
Score: 7 đŸš©
Natty: 5
Report link

Thank you for this post.

I'm getting en error : "No action specified" when using the command WinSCP.com /keygen ....

Do you know what that means ?

Regards,

HD

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (1): I'm getting en error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Housseyn DAOUD

79760738

Date: 2025-09-10 10:27:34
Score: 1
Natty:
Report link

Use { Count: > 0 } to check if the collection is not null and if the count is greater than 0 at the same time.

if(yourCollection is { Count: > 0 })
{ }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sahin

79760727

Date: 2025-09-10 10:18:31
Score: 0.5
Natty:
Report link

I solved it by not using the combined template. Just created Angular 20 project with CLI in VS Code and Web API in Visual Studio, then ran both (ng serve for Angular and run API from VS). Worked fine.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bilal Pothigara

79760726

Date: 2025-09-10 10:18:31
Score: 3.5
Natty:
Report link

Rather than a misuse of the API, this appears to have been a driver-related issue on AMD's end, which is not present in driver version 31.0.21923.11000.

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

79760720

Date: 2025-09-10 10:12:30
Score: 1
Natty:
Report link

To find the time shift from UTC on a running computer, the code below is the shortest solution I have found:

Function UTCTime()
'Get the UTC
'function from: https://stackoverflow.com/questions/1600875/how-to-get-the-current-datetime-in-utc-from-an-excel-vba-macro
Dim dt As Object, utc As Date
Set dt = CreateObject("WbemScripting.SWbemDateTime")
dt.SetVarDate Now
utc = dt.GetVarDate(False)
UTCTime = utc
End Function

'function to calculate time shift from UTC
Function TimeZone()
TimeZone = Hour(Now() - UTCTime())
End Function
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ɓukasz MaƂarzewski

79760716

Date: 2025-09-10 10:07:28
Score: 2.5
Natty:
Report link

In GoLand I had to remove all .idea files with rm .idea -rf and reopen the project to make this error disappear.

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

79760714

Date: 2025-09-10 10:07:28
Score: 2
Natty:
Report link

This error happens to me very often, I m an expert developer and, yes, sometimes no reason for this error.

If you can exclude every type of "real" error as described in the other answers, simply try to comment the variable declaration (in this case: dim SixTables), execute the code and you should get the error "variable not declared". At this point you are sure that your code doesn't contain a double definition.
Uncomment the declaration and execute again: kind of magic - it works!

Generally it happens when you import modules containing the same declaration and you remove one of them.
Example:
Module1 and Module2 contain both a public varX.

Removing (or commenting) one of two, you still receive "ambiguous name".

No reason, simply VBA failure.

Removing both and executing VBA realizes varX is not declared. Now you are in a consistent state.

Set again your declaration and the problem is solved.

Because I m old, I still use Enum construct and in this case this error is quite common.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uby One

79760713

Date: 2025-09-10 10:06:28
Score: 3
Natty:
Report link

My work-around for this was to split into two table visuals side-by-side. The columns you want frozen displayed to the left, and the non-frozen columns to the right. Not ideal but is probably "good enough" in a lot of cases.

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

79760711

Date: 2025-09-10 10:04:26
Score: 4
Natty:
Report link

With Sling Models with @Exporter annotations, AEM component data can be exposed as JSON and accessed through the component's JSON endpoint.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Exporter
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kapricorn

79760704

Date: 2025-09-10 09:59:25
Score: 2.5
Natty:
Report link

Found the issue.

It was not Android Studio related, but it was an Mac OS setting that was somehow turned on out of nowhere.

I disabled it by going to Settings > Accessibility > Hover Text > Disabled "Hover Text"

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

79760679

Date: 2025-09-10 09:31:17
Score: 1
Natty:
Report link
// ...
import androidx.compose.ui.tooling.preview.Preview

@Composable
fun MessageCard(name: String) {
    Text(text = "Hello $name!")
}

@Preview
@Composable
fun PreviewMessageCard() {
    MessageCard("Android")
}
  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar tiwari

79760673

Date: 2025-09-10 09:25:15
Score: 1.5
Natty:
Report link

So I partly figured it out. Turns out that I was trying to put the event listeners on the mailbox itself instead of the item, which made it so the function was never triggered since the event was fired on the item. Haven't found a solution for the title but here is the new base, seems to work just fine (will replace the console.log with the handler functions I have).

useEffect(() => {
        const mailbox = Office.context.mailbox;
        
        if(mailbox.item?.itemType==='appointment'){
          Office.context.mailbox.item?.addHandlerAsync(Office.EventType.AppointmentTimeChanged, (msg:any)=>{console.log(msg)});
          Office.context.mailbox.item?.addHandlerAsync(Office.EventType.RecipientsChanged, (msg:any)=>{console.log(msg)});  
      }
    }, []);
Reasons:
  • RegEx Blacklisted phrase (1): Haven't found a solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ConLem

79760670

Date: 2025-09-10 09:21:13
Score: 9.5 đŸš©
Natty: 6.5
Report link

Brad, did you manage to implement the solution the way you wanted?

I am currently facing a similar issue, I'd like to insert an actual blank row in the flextable itself, not the original data.frame.

The "padding" solution is not ideal for me.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ezequiel

79760668

Date: 2025-09-10 09:15:11
Score: 4
Natty:
Report link

-DskipPublishing did the trick.

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did the
  • Low reputation (0.5):
Posted by: Pat

79760666

Date: 2025-09-10 09:14:11
Score: 2
Natty:
Report link

maybe you can just try

tc.SetNoDelay(false) 

if not yet tried.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: HEMMERLIN Laurent EIFFAGE ENER

79760663

Date: 2025-09-10 09:12:10
Score: 5
Natty: 4.5
Report link

Had similar issue and found this link with instructions to fix: https://github.com/twosixlabs/armory/issues/156

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

79760649

Date: 2025-09-10 08:59:07
Score: 0.5
Natty:
Report link

I ended up with a workaround based on Hannes' answer. It doesn't do exactly what i want, but close enough.

Solution

I couldn't just add a $target variable to my pipeline, it didn't seem to take the updated value from earlier jobs. Instead, i found the dotenv feature of gitlab CI which allowed me to pass the variable to a later script.

I also scrapped the dbg2release job, it's now part of the debug job.

I now have 2 stages: target which has optional manual jobs for picking "debug"(+dbg2release) or "release", and package which has a manual job "package" to publish the package using the configuration which was selected in the previous stage.

It still has annoyances:

Code

stages:
  - target
  - package

debug:
  stage: target
  rules:
    - if: '$CI_COMMIT_BRANCH == "develop" && $CI_PIPELINE_SOURCE == "push"
      when: manual
      allow_failure: true
  before_script:
    - []
  after_script:
    - []
  script:
    - echo "TARGET=DEBUG" > target.env
  artifacts:
    reports:
      dotenv: target.env
  
release:
  stage: target
  rules:
    - if: '$CI_COMMIT_BRANCH == "develop" && $CI_PIPELINE_SOURCE == "push"
      when: manual
      allow_failure: true
  before_script:
    - []
  after_script:
    - []
  script:
    - echo "TARGET=RELEASE" > target.env
  artifacts:
    reports:
      dotenv: target.env

package:
  stage: package
  rules:
    - if: '$CI_COMMIT_BRANCH == "develop" && $CI_PIPELINE_SOURCE == "push"
      when: manual
      allow_failure: false
  script:
    - echo $TARGET
    - do things

Other possibility

I could have just added a job variable to the "package" job, and have users enter the variable value manually when running it. Gitlab's UI for doing that is a bit cumbersome and hidden, so i really wanted to avoid it.

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

79760648

Date: 2025-09-10 08:58:06
Score: 1.5
Natty:
Report link

If you want to push your changes in the developer branch of "MyAwesomeProject" and "ClientProject" then i think you can use a git alias (a git shortcut command) .

To push to both remote branches:

git config alias.pushall '!git push origin developer && git push client developer'

Then run:

git pushall

Please let me know if there is other ways or Improvements.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: saptarshi

79760643

Date: 2025-09-10 08:52:02
Score: 4
Natty:
Report link

Downvoted already. You people are such cunts.

Turns out that some twat at Microsoft has renamed requests to AppRequests depending on fuck knows what.

Reasons:
  • Blacklisted phrase (2): fuck
  • RegEx Blacklisted phrase (2): Downvote
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Richard Barraclough

79760638

Date: 2025-09-10 08:47:00
Score: 3.5
Natty:
Report link

where can I input below code section?Which file?

<Target Name="EffectCompile" Condition="'@(Effect)' != '' ">
  <Exec Command="&quot;$(MSBuildProgramFiles32)\Windows Kits\10\bin\10.0.22621.0\x64\fxc.exe&quot; /T ps_3_0 /Fo %(Effect.RelativeDir)%(Effect.FileName).ps %(Effect.Identity)"/>

  <!-- Add this if you need to embed the file as WPF resources -->
  <ItemGroup>
    <Resource Include="%(Effect.RelativeDir)%(Effect.FileName).ps" />
  </ItemGroup>
</Target>
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): where can I in
  • Low reputation (1):
Posted by: rui liu

79760635

Date: 2025-09-10 08:46:00
Score: 2
Natty:
Report link

Instead of using ' and " directly, we can use hexcode x22 to represent single quotes and x27 to represent double quotes in the regex string.

r"^[\x22\x27]+$"

Ref: https://community.esri.com/t5/arcgis-survey123-questions/regex-to-allow-both-and-quot/m-p/1389514#M55156

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

79760625

Date: 2025-09-10 08:33:56
Score: 1.5
Natty:
Report link

Actually there is an API for Direct Admin which is described in the docs here:

https://docs.directadmin.com/developer/api/#api-access

And here you can find more details:

https://demo.directadmin.com:2222/static/swagger.json

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

79760618

Date: 2025-09-10 08:29:55
Score: 2.5
Natty:
Report link

for me there was a different number of columns in the file at a certain line. it helped passing names arguement when reading csv (which fixed the column count).
fix different column count in file

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

79760610

Date: 2025-09-10 08:23:52
Score: 2
Natty:
Report link

This solved it for me:

In short: A Windows update broke the IIS

In the file: C:\Windows\System32\inetsrv\config\administration.config

the %WINDOWS_PUBLIC_KEY_TOKEN% is no longer valid

Replace it with 31bf3856ad364e35

Done!

https://learn.microsoft.com/en-us/answers/questions/5544355/iis-no-longer-displaying-my-websites

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lars Bo Wassini

79760605

Date: 2025-09-10 08:16:51
Score: 0.5
Natty:
Report link

Your Dice() function doesn't return any values. Change it to:

def Dice(listabc):
     return random.choice(listabc)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Bending Rodriguez

79760598

Date: 2025-09-10 08:07:48
Score: 1
Natty:
Report link

I wanted to share my observations with "ODBC Driver 18 for SQL Server".

Doing SQLSetConnectAttr(..., SQL_ATTR_ENLIST_IN_XA, OP_START, ...) and then SQLSetConnectAttr(..., SQL_ATTR_TXN_ISOLATION, ...), gives me the error in SQLGetDiagRec() "Operation invalid at this time".

Doing your suggested XID Data layout, didn't work for version 18.
I get XA Error (-8) (XAER_DUPID, Duplicate XID) whenever i do gtrid (length 24) at data[0] and bqual (length 12) at data[64].
My guess is, that MSDTC will read this like other DB's now:
gtrid = data[0] and bqual = data[24]
bqual will be always the same (0') => Duplicate XID.

"The incoming tabular data stream (TDS) protocol stream is incorrect. The stream ended unexpectedly."
If someone has this error at SQLGetDiagRec(), make sure you have SQL_AUTOCOMMIT_ON when enlisting XID's and SQL_AUTOCOMMIT_OFF when done enlisting.
This has costed me a lot of time to figure out.

Besides executing the Query from @nfrmtkr above, I would suggest setting TRACE_XA to 4 (Verbose) and the TraceFilePath.
You can see each XA Call with a few details in the log file.
For Windows: https://learn.microsoft.com/en-us/troubleshoot/windows/win32/enable-diagnostic-tracing-ms-dtc
On Linux you can use the tool mssql-conf.
/opt/mssql/bin/mssql-conf set distributedtransaction.trace_xa 4
/opt/mssql/bin/mssql-conf set distributedtransaction.tracefilepath /tmp
Restart SQL Server afterwards.
The file will look like this /tmp/MSDTC-sqlservr.exe-444.log

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1): I get XA Error
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @nfrmtkr
  • Low reputation (1):
Posted by: AdventureT

79760596

Date: 2025-09-10 08:05:47
Score: 3.5
Natty:
Report link

Just change the playground, and it will work. It took me two days.

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

79760588

Date: 2025-09-10 07:55:44
Score: 2.5
Natty:
Report link

So, I got it working.

When I executed the migration from angular to NX monorepo it created tsconfig.app.json and tsconfig.spec.json under apps/my-app/...
I received errors saying "cannot find import path", however I clearly defined everything in the tsconfig.base.json

That is.. well.. I copied tsconfig.app.json and named it tsconfig.json, you know what? It worked..

Reasons:
  • Whitelisted phrase (-1): It worked
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Ruslan Rudenko

79760586

Date: 2025-09-10 07:51:43
Score: 1
Natty:
Report link

Based on your use case, I would actually recommend  using the Connect feature from Stripe along with Destination Charges. Destination Charges allow your customers to transact with your platform for products or services listed by your connected accounts, removing the need to recreate your products across different connected accounts. The products will exist solely on your platform account.

Also, with Destination Charges, you can set the on_behalf_of parameter, this means that the charges will settle in the connected account’s and currency.

You'd also have to choose the type of connected account you'd like to associate with the charge. I would actually suggest going with the Express Account type, as it requires the least effort to integrate and pairs with Destination Charges.

You can see the other charge types in this table and other account types here , each of which has its own use cases.

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

79760580

Date: 2025-09-10 07:42:40
Score: 0.5
Natty:
Report link

If [ System.Security.Authentication.AuthenticationException ] is thrown, with [ RemoteCertificateNameMismatch ] , but it is confirmed/certain that:

In this case, we need/want dump , with DEBUG statements, the text/substrings that were expecting and what it found in the remote certificate (SubjAlName)during TLS handshake.

         “RemoteCertificateNameMismatch DEBUG: Expecting [ X (array of subjAltNames) ] but found [ Y ]”

Are these variables [X] and [Y] already already populated that we can debug/printf (log or Stdout) in the try{}/catch{} ?

We are working with a development subcontractor, and do not have direct access to code, but we want to assist them.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Brian Seklecki

79760572

Date: 2025-09-10 07:27:36
Score: 0.5
Natty:
Report link

You should read up on exactly what latent variables are. These are unmeasured variables that are estimated by taking shared variance between a variety of indicators. They are NOT for linking conceptually connected measures, that are statistically unrelated, such as gender and age within demography.

With this in mind, most or all of your latent variables do not make sense and this may have contributed to the problems with convergence. Try thinking about whether it makes sense for any of your variables to be latent variables at all or if there is a better way to analyse your data.

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

79760559

Date: 2025-09-10 07:13:32
Score: 1.5
Natty:
Report link

In fedora, the libraries are called freeglut, so the command would be

sudo dnf install freeglut freeglut-devel

Worked on NobaraOS

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

79760555

Date: 2025-09-10 07:06:30
Score: 1
Natty:
Report link

Morning .

Because you don’t have permission to push to that Docker Hub repo!
So try to :
1. Log in with docker login.
2. and docker tag 007-thebond docker.io/<your-username>/007-thebond

When you do that try re-push it .

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

79760534

Date: 2025-09-10 06:43:25
Score: 1.5
Natty:
Report link

See Percent-encoding in a URI (WikipediaÂź). You can pass actually any (ASCII) character in the URL if encoded properly.

See also RFC 3986 (Uniform Resource Identifier (URI): Generic Syntax): "2.4. When to Encode or Decode".

Most of the time Perl's CGI module does "the right thing" automatically.

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

79760532

Date: 2025-09-10 06:41:24
Score: 1.5
Natty:
Report link

Notice the two? characters in the URI. That makes the driver fail to parse it correctly in modern versions of the MongoDB Node driver (which Mongoose 5+ uses).

mongoose.connect(
  "mongodb://stackoverflow:[email protected]:31064/thirty3?authSource=admin",
  { useNewUrlParser: true, useUnifiedTopology: true }
);
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lokendra Parmar

79760526

Date: 2025-09-10 06:35:23
Score: 2
Natty:
Report link

I’m Sharan from Apptrove!

We’re building a Slack community for developers, with coding challenges, tournaments, and access to tools and resources to help you sharpen your skills. It’s free and open — would love to see you there!

Link to join: https://join.slack.com/t/apptrovedevcommunity/shared_invite/zt-3d52zqa5s-ZZq7XNvXahXN2nZFtCN1aQ

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

79760517

Date: 2025-09-10 06:25:20
Score: 1
Natty:
Report link

What’s happening is that you’re not actually using a Dense layer the way you might expect from a 1D vector setting (e.g., after a Flatten).

How Keras Dense really works

In Keras/TensorFlow, Dense is implemented as a matrix multiplication between the last dimension of the input and the layer’s weight matrix. It does not require you to flatten the entire input tensor, nor does it care about the other dimensions.

If the input has shape (batch, H, W, C), a Dense(units=64) layer just takes the last axis C and produces output (batch, H, W, 64).

Internally, TensorFlow broadcasts the weight multiplication over all other dimensions (H and W here).

That’s why you don’t get an error: your inputs have shapes like (batch, 1, T, 64), and Dense just treats (1, T) as “batch-like” dimensions that it carries along.

Why this allows dynamic input sizes

Because the Dense operation is applied pointwise along all non-last dimensions, it doesn’t matter whether T = 12 or T = 32. The only requirement is that the channel dimension (C) is fixed, since that’s what the weight matrix expects. The temporal dimension (T) can vary freely.

So in your example:

Input: (12, 1, 32, 64) → Dense(64) → (12, 1, 32, 64)
Input: (17, 1, 12, 64) → Dense(64) → (17, 1, 12, 64)

Both work fine because Dense is applied independently at each (batch, 1, time) location.

Contrast with pooling or flattening

If you had tried to do Flatten → Dense, then yes, you would need a fixed time dimension, because flattening collapses everything into a single vector.

But using Dense “in place” like this behaves more like a 1x1 Conv2D: it remaps features without collapsing spatial/temporal dimensions.

TL;DR

You’re not getting an error because Dense in Keras is defined to operate on the last axis only, broadcasting across all other axes. It’s essentially equivalent to applying a 1x1 Conv2D across the feature dimension. That’s why variable-length time dimensions are supported automatically in your setup.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Leo Alcaraz Jr.

79760512

Date: 2025-09-10 06:01:15
Score: 0.5
Natty:
Report link

Scalability, security, and long-term maintenance are typically more important concerns when developing enterprise Android apps than coding speed alone. Here's a quick summary:

Programming Language

Modern, concise, and safer than Java, Kotlin is officially backed by Google. ideal option for brand-new business applications.

Java → Still supported and widely used, ideal if your business already uses a Java-based system.

Tools & Frameworks

Android Jetpack (Google libraries) ↑ helps in lifecycle management, data storage, user interface, etc., improving the speed and cleanliness of development.

Dependency Injection → To make managing big projects easier, use Hilt or Dagger.

To ensure safe and effective API communication, use Retrofit or OkHttp.

Enterprise-Level Requirements

Use Android Enterprise's work profiles, data encryption, and secure logins like OAuth/SSO to ensure security.

Testing ↑ To ensure quality, use automated testing tools like Robolectric, Espresso, and JUnit.

Scalability → To ensure that the application may expand without getting disorganized, take into account modular architecture, such as MVVM or Clean Architecture.

Integration of Backend and Cloud

Combine with business backends such as Google Cloud, AWS, or Azure.

If you want a speedy setup, use Firebase for analytics, push alerts, and authentication.

Use Kotlin + Jetpack libraries + safe enterprise tools for Android development in an enterprise setting. To make the software scalable and future-proof, incorporate robust testing, a modular architecture, and cloud support.

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

79760511

Date: 2025-09-10 06:00:14
Score: 0.5
Natty:
Report link

You might try:

BullModule.forRoot({
    redis: {
        host: "YOUR_REDIS_HOST",
        port: 6379,
        db: 0,
        password: "YOUR_REDIS_PASSWORD",
        tls: { // Specifiy the host and port credentials again here
            host: "YOUR_REDIS_HOST",
            port: 6379,
        }
    }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: masadamsahid