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

79760499

Date: 2025-09-10 05:35:08
Score: 2
Natty:
Report link

We are in the same situation that I also want to know how to create an http-server in PHP just like in Node Js (http.createServer() or using Express Js ) since there are now ways to use PHP to be like Node js functionality.
I searched the web and found this library:

https://github.com/amphp/http-server

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: John Mark Roco

79760493

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

have you tried wrapping the code in

window.onload = function(){

}
Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ensza

79760487

Date: 2025-09-10 05:14:03
Score: 1.5
Natty:
Report link

فيما يلي مثال أساسي حول كيفية تنفيذ وظيفة تسجيل المكالمات في تطبيق Flutter:

import 'package:flutter/material.dart';
import 'package:audio_session/audio_session.dart';
import 'package:record_mp3/recorder.mp3.dart';

class CallRecorder extends StatefulWidget {
  @override
  _CallRecorderState createState() => _CallRecorderState();
}

class _CallRecorderState extends State<CallRecorder> {
  bool _isRecording = false;
  final _audioSession = AudioSession.instance;

  void _startStopRecording() async {
    if (_isRecording) {
      await _stopRecording();
    } else {
      await _startRecording();
    }
    setState(() => _isRecording = !_isRecording);
  }

  Future<void> _startRecording() async {
    final recorder = await RecorderMp3.start(
      outputDirectory: 'path_to_your_directory',
      format: Format.mp3,
    );
    await recorder.start();
  }

  Future<void> _stopRecording() async {
    final recorder = await RecorderMp3.stop();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Call Recorder'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            _isRecording
                ? ElevatedButton(
                    onPressed: () => _startStopRecording(),
                    child: Text('Stop Recording'),
                  )
                : ElevatedButton(
                    onPressed: () => _startStopRecording(),
                    child: Text('Start Recording'),
                  ),
          ],
        ),
      ),
    );
  }
}

هذا الكود يُسجِّل الصوت ويحفظه في ملف في المجلد المُحدَّد. يُرجى العلم أن هذا الكود يتطلب أذونات لتسجيل الصوت، وقد تختلف هذه الأذونات باختلاف نظام التشغيل (أندرويد أو iOS).

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Abdo Abdo

79760483

Date: 2025-09-10 05:09:02
Score: 3
Natty:
Report link

I was having a similar issue, what I did was disable gradle caching in my gradle.properties file.

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

79760475

Date: 2025-09-10 04:57:58
Score: 7.5 🚩
Natty:
Report link

Can you share your code?

Can you change your code to generate the sequence numbers inside the transactions? Will you still get the duplicates but with the unique DBTASKID()?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your code
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you share you
  • Low reputation (1):
Posted by: George Potemkin

79760474

Date: 2025-09-10 04:51:56
Score: 0.5
Natty:
Report link

Note that since C++20, the default constructor of std::atomic_flag initializes it to clear state.

Source: https://en.cppreference.com/w/cpp/atomic/atomic_flag/atomic_flag.html

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

79760473

Date: 2025-09-10 04:48:56
Score: 0.5
Natty:
Report link

npm init itself doesn’t have a flag to auto-set "type": "module" in package.json. By default, it creates CommonJS projects.

So, there’s no direct npm init flag for "type": "module". The simplest automated way is:

npm init -y && npm pkg set type=module

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

79760463

Date: 2025-09-10 04:25:51
Score: 0.5
Natty:
Report link

Ok. I found solution in different question. This is whole code. To the code that i added I wrote code explanation via "//". Basicly what happenes is that i create Listener for Every Enemy on the stage. If i click on the Enemy i can see the index of that Enemy in Array (i test it for my self with trace) and then apply all these actions for enemy that was clicked....

Excuse my bad english. Anyway thanks for help. Hope u understand....


for (var j:int = enemyNaScene.length -1; j> -1; j--) {   
 // For every Enemy on the stage create Listener 
 // that indicates if it was CLICKED - than play actions
    enemyNaScene[j].addEventListener(MouseEvent.CLICK, enemyNapaden);      
}
      function enemyNapaden(event:MouseEvent):void{
var j:int = enemyNaScene.indexOf(event.target);    
 // If i click on Enemy -> j = index position of Enemy on the Stage in Array 
    trace(enemyNaScene.indexOf(event.target));  // Show the index with Trace
        enemiesHp[j]-=1;                  //Apply that index number ("j") for Enemy -                         
trace(enemiesHp[j])                      //that was clicked further down the line
    aTextFields[j].text = String(enemiesHp[j])
    aTextFields[j].setTextFormat(myTextFormat)
    
    if(enemiesHp[j]==0){
        aTextFields[j].visible=false;
        enemyNaScene[j].gotoAndPlay("enemydead")
        enemyNaScene[j].removeEventListener(MouseEvent.CLICK, enemyNapaden)
      }
      }
         
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vojtěch Pavlíček

79760462

Date: 2025-09-10 04:19:50
Score: 1.5
Natty:
Report link

I had the same issue, and finally solved it with a simple method. All you need to do is add a 'Speak' action with the text 'Please wait' right after the 'Ask' component. Then, there will be no timeout limit.

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

79760458

Date: 2025-09-10 04:01:46
Score: 1.5
Natty:
Report link

It's required ndk r28 or newer to compile 16KB by default
https://developer.android.com/guide/practices/page-sizes?authuser=2#compile-r28

I do not sure. Did you have to update some lib or not. Because I using image_picker 1.1.2 But I can build on Pre-Release 16KB ARM SDK and APK Analyzer also 16KB Alignment
enter image description here

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

79760456

Date: 2025-09-10 03:59:46
Score: 1
Natty:
Report link

I am finally able to get this to work. Changed the --proto_path to point to the root of all proto folder hierarchy. I got it working in the morning. Just now saw your solution. I will accept it - you are right. I thought it would be some such silly mistake in paths. Yesterday I was lost in VS Code, Visual Studio and PyCharm.

C:\tmp\proto>python -m grpc_tools.protoc --proto_path=c:/tmp/proto/ --python_out=c:/tmp/generated_python_files --grpc_python_out=c:/tmp/generated_python_files c:/tmp/proto/common/*.proto

I also changed to grpc_tools.protoc to generate the client and server stubs. And now *.proto also works. Able to generate for all my files (one folder at a time).

Thanks

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

79760454

Date: 2025-09-10 03:57:45
Score: 3.5
Natty:
Report link

I don't receive my numeric code when I put my phone number in.

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

79760449

Date: 2025-09-10 03:47:42
Score: 1
Natty:
Report link

You need to specify an encoding for the characters otherwise python doesn't know how to handle the strings.


import random

import string

random.choice(string.ascii_lowercase)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Foton

79760446

Date: 2025-09-10 03:43:41
Score: 2.5
Natty:
Report link

I believe I actually know the answer, it lies in your classpath of the module in your gradle settings when you go to run/debug your configurations

Mine works fine if I set it to my main class module

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

79760443

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

I've solved the issue by including the param directConnection=true to my connection string.

?directConnection=true

So, the connection string is something like this:
mongodb://127.0.0.1:27017/mydb?directConnection=true

I get the tip from mongosh, which connected successfuly

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

79760435

Date: 2025-09-10 03:21:36
Score: 2.5
Natty:
Report link

In VSCODE you can use https://marketplace.visualstudio.com/items?itemName=gabbygreat.flutter-l10n-checker
Plug in lists all hardcoded values in tits tab

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ashwin Nandihalli

79760428

Date: 2025-09-10 03:01:30
Score: 2
Natty:
Report link

For the benefit of any future searchers, I also got this error when I tried to pass an owned parameter instead of a reference: mat1.dot(mat2) instead of mat1.dot(&mat2).

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

79760424

Date: 2025-09-10 02:56:29
Score: 4
Natty:
Report link

ctrl+d helps me in macos to close vscode terminal, ctrl+C doesn't work for me.

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Xie Yuchen

79760419

Date: 2025-09-10 02:45:26
Score: 2
Natty:
Report link

You know you can decode the JWT easily and look at the claims tables or summary and it says Media Type = "MT" but yes it could mean other things.

Claims Table
typ MT
The media type of this complete JWT. Learn more

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

79760412

Date: 2025-09-10 02:32:23
Score: 1
Natty:
Report link

I know it's been about 14 years since your original question, but I too had a need for a C++ pivot table implementation and thought I would share my code. My focus was more on reducing RAM usage (at least for the function, and the functions are limited in what kind of input data they take, but they do allow for an arbitrary number of index and value fields.

Within my GitHub project, which is available under the MIT license, you can find two pivot table functions within the pivot_compressors.cpp file. The first, scan_to_pivot(), generates pivot table data by iterating through a .csv file row by row, thus limiting your overall memory needs. (It makes extensive use of Vince La's CSV parser, both for input and for output.)

The second function, in_memory_pivot(), allows data already in RAM to be processed. It requires, though, that the input data take the form of a vector of maps of string-variant pairs. Within this structure, each vector entry represents a row; each string represents a field name, and each variant represents a string- or double-typed cell value. It shouldn't be too hard to modify this setup to fit your needs, though.

To create pivot_tables, in_memory_pivot() first groups the values corresponding to the index fields passed by the caller into single strings. It then uses these strings as keys within a map; the values are themselves maps with value field names as keys and structs as values. (These structs allow sum, count, and mean data to get stored for each value field.) The main benefit of this implementation is that it allows for as many index or value fields to get incorporated into your pivot table as your computer can handle.

As an alternative (and undoubtedly better-tested option), I should also note that Hossein Moein's C++ DataFrame library, available under the BSD-3_Clause license, offers pivot-table functionality in the form of a set of groupby() functions. I believe that these support up to three index fields, but I might ask whether he could allow for an arbitrary number of fields to get passed to the function.

Reasons:
  • Blacklisted phrase (1): I know it's been
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KBurchfiel

79760409

Date: 2025-09-10 02:22:19
Score: 2.5
Natty:
Report link

To prevent referral scams in WordPress, implement referrer validation in PHP by checking HTTP_REFERER against a whitelist, but note it’s easily forged. Combine with User Agent inspection, CAPTCHA for interactions, and plugins like Akismet for comment moderation. Always scrape referrers to verify links exist.

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

79760405

Date: 2025-09-10 02:17:17
Score: 1
Natty:
Report link

Afaik, JAX doesn’t compile “Python” directly — it traces your function and lowers everything to a small set of primitives. High-level NumPy functions like reshape and broadcast are rewritten into those primitives, and you can inspect the exact Jaxpr with make_jaxpr. For a deeper dive, the JAX paper and the docs on Jaxpr are the authoritative resources.

Reference:
The most direct explanation is in the JAX documentation and the original JAX paper:

  1. Frostig, Matthew, Johnson, Roy, and Leary, Chris. “Compiling machine learning programs via high-level tracing.” SysML 2018.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Leo Alcaraz Jr.