79540225

Date: 2025-03-27 23:37:48
Score: 3
Natty:
Report link

Sadly, if you deleted message for yourself, there is no way to delete it from others.

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

79540221

Date: 2025-03-27 23:32:47
Score: 3
Natty:
Report link

este post me ayudo con mi proyecto, cambie el codigo para que en vez de escribir, lograra leer un registro en el plc, pero me manda 16 bit de error, me ayudan a saber cual es el problema...
Saludos

 public void Sockettwo()
 {
     string SERV_IP_ADDR = "192.168.1.90";
     const int FINS_UDP_PORT = 9600;

     byte[] sendPacket = new byte[]
     {
 // Full UDP packet: 80 00 02 00 00 00 00 05 00 19 01 02 82 00 64 00 00 01 00 01
 // Header
 0x80, //0.(ICF) Display frame information: 1000 0001
 0x00, //1.(RSV) Reserved by system: (hex)00
 0x02, //2.(GCT) Permissible number of gateways: (hex)02
 0x00, //3.(DNA) Destination network address: (hex)00, local network
 0x00, //4.(DA1) Destination node address: (hex)00, local PLC unit
 0x00, //5.(DA2) Destination unit address: (hex)00, PLC
 0x00, //6.(SNA) Source network address: (hex)00, local network
 0x05, //7.(SA1) Source node address: (hex)05, PC's IP is 192.168.250.5
 0x00, //8.(SA2) Source unit address: (hex)00, PC only has one ethernet
 0x19, //9.(SID) Service ID: just give a random number 19

 // Command (Updated for Read Request)
 0x01, //10.(MRC) Main request code: 01, memory area read (0x01: Read, 0x02: Write)
 0x01, //11.(SRC) Sub-request code: 01, memory area read

 // PLC Memory Area
 0x82, //12.Memory area code (1 byte): 82(DM)

 // Address information
 0x00, //13.Read start address (2 bytes): D100
 0x64,
 0x00, //15.Bit address (1 byte): Default 0
 0x00, //16.No. of items (2 bytes): Read 1 word (D100)
 0x01,

         // No data to send, just requesting to read
     };

     UdpClient client = new UdpClient(); //create a UdpClient instance

     try
     {
         // Send the request packet to read from the PLC
         client.Send(sendPacket, sendPacket.Length, SERV_IP_ADDR, FINS_UDP_PORT);

         // Receive the response (response packet will contain the read value)
         IPEndPoint remoteEndPoint = new IPEndPoint(IPAddress.Parse(SERV_IP_ADDR), FINS_UDP_PORT);
         byte[] receivePacket = client.Receive(ref remoteEndPoint);

         // Print the received packet length and content for debugging
         Console.WriteLine("Received packet length: " + receivePacket.Length);
         Console.WriteLine("Received packet: " + BitConverter.ToString(receivePacket));

         // Ensure packet is at least 19 bytes long
         if (receivePacket.Length >= 19)
         {
             // Debugging: Print the part of the packet where data is expected
             Console.WriteLine("Extracted data (from byte 17 onward): " + BitConverter.ToString(receivePacket, 17, receivePacket.Length - 17));

             // Extract the read value from the response packet (data starts at byte 17)
             byte[] readData = new byte[2];  // Adjusted to read 2 bytes for int16 (for 'D100' which is INT)
             Array.Copy(receivePacket, 17, readData, 0, 2);  // Copy 2 bytes (for 'int16')

             // Convert the read data to a 16-bit integer (for an 'int16' type, 2 bytes)
             short value = BitConverter.ToInt16(readData, 0);  // Using ToInt16 for 2 bytes
             Console.WriteLine($"Read value: {value}");
         }
         else
         {
             Console.WriteLine("Received packet is too short to contain the expected data.");
         }
     }
     catch (SocketException se)
     {
         Console.WriteLine(se.ErrorCode + ": " + se.Message);
     }

     client.Close();
 }
Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (1.5): Saludos
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carlos J. Galvez O.

79540206

Date: 2025-03-27 23:18:44
Score: 1.5
Natty:
Report link
#include <iostream>
#include <windows.h>

using namespace std;

int main() {
    SetConsoleOutputCP(CP_UTF8);
    cout << "Это работает" << endl;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dian

79540195

Date: 2025-03-27 23:11:42
Score: 1
Natty:
Report link

Looking at Vuetify 3, the most recent solution is the menu-icon prop.

Just add:

:menu-icon="null"

Source:
https://vuetifyjs.com/en/api/v-combobox/#props-menu-icon

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: botivegh

79540194

Date: 2025-03-27 23:11:42
Score: 1
Natty:
Report link

There are a few ways that you can download your files.

For the website:

  1. You can click the 3 dots in the Files sidebar drawer, and then click Download as zip. See the following screenshot: download as zip on website

  2. In the same drawer, next to each file, there are 3 dots. You can click that then click Download.

For the app:

  1. In the Files menu, click the Download as zip button at the bottom: download as zip on mobile app

  2. In the same menu, next to each file, there are 3 dots. You can click that then click Download.

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

79540181

Date: 2025-03-27 23:00:38
Score: 9 🚩
Natty: 5.5
Report link

did you find a solution for this problem ?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution for this
  • Low reputation (1):
Posted by: Y_Djin

79540175

Date: 2025-03-27 22:56:37
Score: 1.5
Natty:
Report link

thisremove this files

delete this files in (C:\Users\elsan\AppData\Local\Microsoft\VisualStudio\17.0_be4d75f3)

toolbox.tbd

toolboxIndex.tbd

?*?.tbd

run

C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE

Devenv.exe /ResetSettings

Start a project, in case of MAUI proyect close all windows and open App.xaml

this will show tools.

close project.

backup this files (C:\Users\elsan\AppData\Local\Microsoft\VisualStudio\17.0_be4d75f3)

ApplicationPrivateSettings.lock

ApplicationPrivateSettings.xml

devenv.exe.config

InstalledTemplates.json

NpdProjectTemplateCache_en-US

privateregistry.bin

sdk.txt

toolbox.tbd

toolboxIndex.tbd

if fail again copy backuped files

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: juan gomez

79540167

Date: 2025-03-27 22:48:35
Score: 3
Natty:
Report link

During the xero sign in when getting access_token have you checked if you selected Demo Company

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

79540162

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

in my case it was fixed with this code:

.mat-mdc-form-field-flex{
    height: 46px;  /* Set your height here */
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pedro Paulo Sobral de Moraes

79540161

Date: 2025-03-27 22:43:35
Score: 1
Natty:
Report link

The simplest solution to this problem I have found is manually importing the modified type and type casting the data to it.

So in this case I want to pass in the to.meta from my Nuxt middleware into the typed function. tsserver and vue-tsc are both telling me that to.meta is of the vue-router type RouteMeta which has been modified in my index.d.ts. So i adjusted my middleware to look like this:

import type { RouteMeta } from "vue-router";

// global authorization middleware that runs on every route to check if user is entitled to be there
export default defineNuxtRouteMiddleware(
  (to) => {
    // ...

    const isAuthorizedTo = useAuthStore().isAuthorizedTo(to.meta as RouteMeta);

    // ...
  },
);

I am typecasting from RouteMeta to RouteMeta, which feels redundant and unnecessary, but it does solve the compilation and language server issues.

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

79540156

Date: 2025-03-27 22:42:34
Score: 4
Natty:
Report link

Well to continue the trend here is another online JSON Visualiser:

  1. https://jsonvisualizer.com

  2. https://jsoncrack.com

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

79540146

Date: 2025-03-27 22:33:32
Score: 2.5
Natty:
Report link

You can do it via settings. Settings > General > Login Items and Extensions > Remove the app from the list.

Simple as that

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

79540129

Date: 2025-03-27 22:13:28
Score: 2.5
Natty:
Report link

I post this sample screen shot to approve it is possible.

enter image description here

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

79540126

Date: 2025-03-27 22:10:28
Score: 3.5
Natty:
Report link

I don't know how to modify startup list content , but it's possable to execute CoE command direct from Ads , I made a note there https://advanlee.blogspot.com/2021/11/access-twincat-ethercat-coe-soe-object.html

Hope that's help

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

79540116

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

This is a configuration or networking issue in your Docker setup. Make sure both your app container and database container are on the same Docker network:

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

79540113

Date: 2025-03-27 22:03:26
Score: 2
Natty:
Report link
val.replace(/(code=)[^&]+/, '$1***')
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Igor Shmukler

79540092

Date: 2025-03-27 21:46:24
Score: 3.5
Natty:
Report link

Support for plug-ins has meanwhile landed in Fleet. You can install them from a dedicated UI within the editor. See https://www.jetbrains.com/help/fleet/managing-plugins.html.

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

79540090

Date: 2025-03-27 21:44:23
Score: 3.5
Natty:
Report link

I restarted DD and rebooted my laptop.

Problem solved. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Brian Tracy

79540087

Date: 2025-03-27 21:40:23
Score: 1
Natty:
Report link

The official JDBC driver for MySQL is mysql-connector-j, not mysql-connector-java.

The latest version of mysql-connector-j works.

<dependency>
  <groupId>com.mysql</groupId>
  <artifactId>mysql-connector-j</artifactId>
  <version>9.2.0</version>
  <optional>true</optional>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: giles3

79540080

Date: 2025-03-27 21:37:22
Score: 1.5
Natty:
Report link

The problem I see here, and I'm not a technical person, I simply try to co exist in the world with those who wish to climb every ladder and project their opinions and lifestyles onto the rest of the population who are not interested at all so these wannabes find it necessary to get to us anyway they can and to hack their way into our devices is such a pleasure for them it tickles their narcissistic tastebuds while those of us hacked are left feeling angry and victimised but it seems that everywhere we turn there's instructions and lessons for these intrusive germs to worm their way into our lives more fully.

I'm here to say it's wrong, distasteful and it reeks of delusional entitlement.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Herby birdstree

79540072

Date: 2025-03-27 21:34:21
Score: 2
Natty:
Report link

I had this issue and it was due to a silly mistake in the curl call. See below:

Wrong call: curl http:127.0.0.1:8000
Corrected call: curl http://127.0.0.1:8000

I missed the // and the curl was not recognizing the service due to this.

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

79540070

Date: 2025-03-27 21:33:21
Score: 5
Natty:
Report link

I'm using the recommended Hardcodet NotifyIcon and having the same problem. The balloon tip icon (the small one, in the upper left corner, left from the balloon title) is just old, shows an icon, that was already deleted from the application. The big balloon icon can be set without any problems, just the small one is wrong.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luděk

79540062

Date: 2025-03-27 21:27:19
Score: 2.5
Natty:
Report link

Old thread, but there is an Android app to triangulate Wifi Access Points without connecting to them: https://play.google.com/store/apps/details?id=com.wloc Of course it is based on the GPS measurements performed by the mobile device, however, maybe that app is able to do the reverse measurements. I am not sure though.

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

79540052

Date: 2025-03-27 21:20:18
Score: 2
Natty:
Report link

I haven't got to the root of the problem nor know how to diagnose it.

However I did fix the problem by uninstalling netmiko -

pip uninstall netmiko

and uninstalled python version 3.13.

I have re-installed python 3.12 and installed:

pip install netmiko==4.2.0

and it fixed the problem.

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

79540048

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

After hours of trial and error, I've resolved the problem by deleting the MachineLearning extension (I had installed it before beginning to try debugging). Apparently, the extension comes with an older version of protobuf-java library, specifically the version 3.17.3, and the Ghidra loads this version, not the newer version 3.21.8 that comes bundled with it.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: jtxkopt - STOP GENOCIDE

79540040

Date: 2025-03-27 21:11:17
Score: 2.5
Natty:
Report link

Same issue here. When I unclicked the initialized XR during startup and it renders the component in a window. But when I checked that box and deploy again, nothing was rendered after opening the app. Not even working on the example scene. I worked with MRTK2.8.3 Unity 2020.3.11f1 and VS2022.

Everything was fine when I worked with MRTK3 on Unity2022.3.58f1, I don't know what's happening to MRTK2.8

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • No code block (0.5):
  • Low reputation (1):
Posted by: Annie Teng

79540023

Date: 2025-03-27 21:00:14
Score: 1.5
Natty:
Report link

barebones React Native requires at least the Android and iOS build tools (Xcode commandline tools & whatever it's called on android) to build those applications.

As far as I know certain frameworks built on top of React Native (like Expo) either install these during the framework installation.

In either situation, you dont need to use Android Studio nor Xcode to build your RN apps. Just either simulator to test out your app.

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

79540014

Date: 2025-03-27 20:56:13
Score: 0.5
Natty:
Report link

You can simply use document.body.dataset.theme to detect the current Azure DevOps theme (e.g., "light", "dark", "high-contrast") without making any API or network calls.

This value is injected directly into the DOM by Azure DevOps and stays in sync with the user's theme preferences.

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

79540004

Date: 2025-03-27 20:51:13
Score: 1.5
Natty:
Report link
const headerObserver = new IntersectionObserver(obsCallback, {
  root: null,
  threshold: 0.01, // Use a tiny threshold instead of 0
  rootMargin: `-${navHeight}px 0px 0px 0px`, // Explicitly define margins
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hamed Fathi

79539998

Date: 2025-03-27 20:46:11
Score: 11 🚩
Natty: 4.5
Report link

Did you find a solution for this? I'm facing the same problem

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution for this
  • Low reputation (1):
Posted by: Maddalena Scagliusi

79539997

Date: 2025-03-27 20:46:11
Score: 2
Natty:
Report link

The dumbest mnemonic of the century.

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

79539992

Date: 2025-03-27 20:45:11
Score: 1
Natty:
Report link

Just wanted to drop in, that there is also a command called Toggle Tab moves Focus. I toggled it off and then I was able to use my Tab key to accept suggestions from Copilot again. Before every time I hit Tab I was apperantly just loosing focus... 🙈

In the following screenshot you see my Show All Commands which I open via Ctrl + Shift + P.

Showing that I recently used

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

79539987

Date: 2025-03-27 20:42:10
Score: 1
Natty:
Report link

As seen in the "Rest API for Code Insight Code Coverage for BitBucket Server 7", Code coverage is not in Bitbucket Server 7.0 yet.

Code coverage has not been implemented as a core feature in Bitbucket Server yet.

It is also said here.

It's a bit different if you're using Bitbucket cloud or Bitbucket server.

On Bitbucket cloud, you need to:

  • Use the local proxy in order to bypass authentication on the REST API.

  • Change the url scheme from https to http.

  • Set some parameters in the endpoint which you get from bitbucket default environments variables such as BITBUCKET_REPO_OWNER, BITBUCKET_REPO_SLUG and BITBUCKET_COMMIT.

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

79539961

Date: 2025-03-27 20:29:07
Score: 2
Natty:
Report link

I think this short step-by-step guide that I made will help you:

  1. Connect to your database:

    • Go to the Database Tool Window in IntelliJ (Path: View > Tools/Tool Windows > Database)

    • Add your database connection by clicking on: + icon and selecting your database type.

    • Enter your connection details (host, port, username. password, other authentication factors etc.)

  2. Enable JPA Support in IntelliJ:

    • I think in File > Project Structure you can add the JPA Specification to your project. This enables IntelliJ to understand and work with JPA and database-related features.
  3. Generate Entity Classes:

    • In the Database Tool Window you should expand your Schema and find the tables you want to generate entity classes for.

    • Right-click on it and an option like: Generate-POJO or Generate Enitties should appear.

This is it assembled short and easy.

Recommendations:

If you don't have lots of entities to create, you can code those by hand quite fast and save some time, rather than spending it on countless clicking to do this.

I personally prefer this manual approach as it is more intuitive and can train you into further more understand how the relations between Java and other resources and databases work.

Resources for further help:

Similar question with lots of answers: How can I generate entities classes from database using Spring Boot and IntelliJ Idea?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Andrei

79539960

Date: 2025-03-27 20:28:07
Score: 0.5
Natty:
Report link

According to the Internet Assigned Numbers Authority (IANA) which is the time zone name from the tz database.

News for the tz database

Release 2025b - 2025-03-22 13:40:46 -0700

Briefly:

New zone for Aysén Region in Chile which moves from -04/-03 to -03.

Changes to future timestamps

Chile's Aysén Region moves from -04/-03 to -03 year-round, joining the Magallanes Region. The region will not change its clocks on 2025-04-05 at 24:00, diverging from America/Santiago and creating a new zone America/Coyhaique. (Thanks to Yonathan Dossow.)

Model this as a change to standard offset effective 2025-03-20.

Since the goal of the change was to align the Aysen region with the Magallanes region, using the "America/Magallanes" timezone may be a valid work around. Provided that the systems in question, correctly reflect the current status of that timezone.

In this case, use "-03:00" or "UTC-3." This will eliminate any reliance on potentially problematic time zone identifiers. The most reliable and universally compatible approach is to use UTC offsets directly.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: McMaco

79539956

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

I love sed, but think that Perl is shorter and simpler in this case:

ldd some-proj/build/a.out | perl -ne 'print $1 . "\n" if m/\s+=>\s+(\S+?)\s+/' | tar -hcvf some-proj.tar.gz -T -

\s matches both space and tab.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: paulv

79539947

Date: 2025-03-27 20:25:06
Score: 3.5
Natty:
Report link

I'm using macOS and Option + Z does the trick

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

79539946

Date: 2025-03-27 20:23:06
Score: 1
Natty:
Report link

The "intermediate table" way mentionned by @Brad has several examples all over StackOverflow, but this may be what you would like to avoid when you say "I don't want to import data as VarChar because of the 6 M rows"

On the other hand, with the OPENROWSET you cited, once you have [defined a format file](https://learn.microsoft.com/en-us/sql/relational-databases/import-export/create-a-format-file-sql-server?view=sql-server-ver16&tabs=non-xml#a-create-a-non-xml-format-file-for-native-data] with your numeric as SQLVARCHAR,
they will appear as table columns which you can convert to FLOAT:

INSERT INTO dbo.table
SELECT …, CAST(REPLACE(fieldx, ',', '.') AS FLOAT), …
FROM OPENROWSET( BULK 'C:\mycsv.csv' ,
              FORMAT='CSV',
              FIRSTROW = 2,
              FIELDQUOTE='"',
              CODEPAGE='65001',
              FORMATFILE=''
) as a;
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Brad
  • High reputation (-1):
Posted by: Guillaume Outters

79539943

Date: 2025-03-27 20:21:05
Score: 2.5
Natty:
Report link

I implemented this https://github.com/bartlettpsj/GetUtil

It handles:

var value = get(top_object, a.b[2].c.d.e[0])
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul Bartlett

79539941

Date: 2025-03-27 20:20:05
Score: 3
Natty:
Report link

Copy all the files from the Gtk /bin directory to a temporary directory, add that directory to the Windows path, run your executable, then select everything in the temporary directory and try to delete it. Anything loaded by your executable can't be deleted, including the gdbus.exe executable.

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

79539937

Date: 2025-03-27 20:17:04
Score: 1
Natty:
Report link

Now that the Zoom JWT app type is end of life, to use this library, you should use the Zoom Server to Server app type. Make sure to add your Zoom Account ID as a ZoomClient param as well.

# Documentation Sample Code

import json
from zoomus import ZoomClient

client = ZoomClient('ZOOM_CLIENT_ID', 'ZOOM_CLIENT_SECRET', 'ZOOM_ACCOUNT_ID')

user_list_response = client.user.list()
user_list = json.loads(user_list_response.content)

for user in user_list['users']:
    user_id = user['id']
    print(json.loads(client.meeting.list(user_id=user_id).content))
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tommygaessler

79539936

Date: 2025-03-27 20:17:04
Score: 2
Natty:
Report link

Update - I had a problem with G-Drive, issue has been resolved. Thank you everyone who considered my post.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: GPB

79539934

Date: 2025-03-27 20:16:04
Score: 3.5
Natty:
Report link

Disabling Loom Chrome extension resolved the issue right away.

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

79539926

Date: 2025-03-27 20:11:03
Score: 2
Natty:
Report link

Just use the "context" in your JSON, followed by the user's message ID to reply contextually.

curl 'https://graph.facebook.com/v19.0/YOUR_PHONE_NUMBER_ID/messages' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-d '
{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "USER_PHONE_NUMBER",
  "context": {
    "message_id": "MESSAGE_ID_OF_THE_ORIGINAL_MESSAGE"
  },
  "type": "text",
  "text": {
    "body": "YOUR_REPLY_MESSAGE"
  }
}'

The MESSAGE_ID_OF_THE_ORIGINAL_MESSAGE will look something like this: wamid.HGda31LMCY0AKKVNDM4OvAIdaROCUagASBQzQTdCNTg5RjY1MEMyJrlGLRjGUgA

# IMPORTANT
The contextual bubble will not appear at the top of the delivered message if:

# DID EVERYTHING CORRECT AND IT'S NOT WORKING?
When I first tried this functionality, I thought it wasn't working, but in reality, it was. I couldn't see the contextual bubble on my computer (Debian 12 - Firefox), but I could see it on my cellphone.
Seeing the reply on my cellphone.
Seeing the same reply, but this time through my computer

Reasons:
  • RegEx Blacklisted phrase (2): WORKING?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: FireguiQueen

79539925

Date: 2025-03-27 20:10:03
Score: 3.5
Natty:
Report link

Make sure the image directory you select on PY installer(e.g..C:\Users\User1\pycharm projects...etc) is the same as the one in Py-Charm

( e.g..image1 = customtkinter.CTkImage(light_image=Image.open('C:\Users\User1\pycharm projects...etc)'

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): User1
  • User mentioned (0): User1
  • Low reputation (1):
Posted by: Methusela

79539922

Date: 2025-03-27 20:09:02
Score: 1
Natty:
Report link

Solved, the main issue was the [selectedCoords, setSelectedCoords] = useState({ lat: 18.220833, lng: -66.590149 }); For some reason, the InfoWindow kept using the initial state while the AdvancedMarker updated correctly. Changing the initial state to null fixed the issue:

const [selectedCoords, setSelectedCoords] = useState<any>(null);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dp258

79539920

Date: 2025-03-27 20:08:02
Score: 4.5
Natty: 5
Report link

Found this old thread. Well, there is an Android app for this task: https://play.google.com/store/apps/details?id=com.wloc

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

79539909

Date: 2025-03-27 20:01:00
Score: 1
Natty:
Report link

This is the new Get Data experience in Visual Studio Analysis Services for tabular models 1400 and higher.

To get the old experience back, go to Tools > Options > Analysis Services Tabular, and check Enable legacy data sources.

You can now add a legacy data source. With that legacy source, you can import tables with a query

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

79539905

Date: 2025-03-27 20:00:00
Score: 2.5
Natty:
Report link

If you use Typescript, this can occur if a module contains only types (distributed to empty=invalid js module), try adding exporting constants

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

79539901

Date: 2025-03-27 19:55:59
Score: 2
Natty:
Report link

Extending user1124809 's answer (snippet below) so that the tbody and thead fit the width of the table:

Set display: block; for the table Set position: sticky; top: 0; for the header row.


To make tbody and thead fit the width of the table:

table {
   display: block;
   overflow-y: auto;
}

thead {
  position: sticky;
}

thead, tbody {
display: table;
width: 100%;
}

Note - Apologies user1124809, I did not have enough rep to comment on the answer with this additional information so I had to reply with my own answer.

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user1124809
  • User mentioned (0): user1124809
  • Low reputation (1):
Posted by: Sean Owen

79539899

Date: 2025-03-27 19:54:59
Score: 2
Natty:
Report link

I got this with empty package.

My package consisted only of types. Adding exported constant (for making it valid js module) fixed this

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

79539883

Date: 2025-03-27 19:48:57
Score: 1.5
Natty:
Report link

just went to C:\Program Files\PowerShell\7\Modules and renamed the PackageManagement folder. Rename the command Install-Module -Name ExchangeOnlineManagement and it worked. Verified with command: Get-InstalledModule -Name ExchangeOnlineManagement and it shows version 3.7.2 as of today.

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

79539880

Date: 2025-03-27 19:47:57
Score: 0.5
Natty:
Report link

This issue was caused by a version mismatch between the awt library 0.1.8 and the lwjgl library 3.3.6. This issue is resolved by updating the awt library to 0.2.3 or downgrading the lwjgl library to 3.3.3.

When updating to 3.3.6, I found that the method was fixed, which is why this error occurs.

I was unable to download awt 0.2.3, but rebooting my PC fixed it.

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

79539879

Date: 2025-03-27 19:47:57
Score: 2.5
Natty:
Report link

I used the wrong file for the background which was helpfully pointed out by someone else that commented on the question. Instead of the pdf image for the background, I switched it for a jpg file. Everything is running smoothly now.

background-image: url("../public/img/stickyNoteImage.jpg");

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

79539867

Date: 2025-03-27 19:38:55
Score: 2.5
Natty:
Report link

Had to allow IP from network access in Atlas Cloud mongodb

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

79539866

Date: 2025-03-27 19:37:55
Score: 2
Natty:
Report link

to get the branchname you need to do it like that:
GOPROXY=direct go get -u github.com/someone/some-repo@branch-name

if you don't want to type it all the time you can do it like that permanently:
go env -w GOPROXY=direct

and then you can update just by:
go get github.com/someone/some-repo@branch-name

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

79539861

Date: 2025-03-27 19:35:54
Score: 5
Natty: 4
Report link

Is there anyway somebody can write a program to be able to have my ipfs fully functional? And to be able to hold my Bitcoin in my phone

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

79539860

Date: 2025-03-27 19:35:54
Score: 2
Natty:
Report link

Excel won't do this directly. You can make a new set of y values (y') using a function that translates your original y to y'. This function would map your values such as 0 to 0, 16 to 1, 70 to 2, 200 to 3 and so on. You'd have to decide what function to use for the interior values such as y = 8 to y'=0.5, (linear) and maybe logarithmic between y= 2000 and 30,000. Plot these new values instead of your originals. Then hand jam your own axis labels. I do this a lot for gaussian axes, probabilities and other inconvenient things.

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

79539852

Date: 2025-03-27 19:29:52
Score: 6.5 🚩
Natty:
Report link

@zorancz's answer was perfect.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @zorancz's
  • Has no white space (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: John Dough

79539843

Date: 2025-03-27 19:25:51
Score: 1.5
Natty:
Report link

From reading the documentation, it appears that clLinkProgram will only link for the provided cl_context. This seems to be to allow a programmer to create cl_program objects with binary source for multiple platforms, and link them at runtime to the desired cl_context.

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

79539841

Date: 2025-03-27 19:23:51
Score: 0.5
Natty:
Report link

For Visual Studio 2022

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: SendETHToThisAddress

79539840

Date: 2025-03-27 19:23:51
Score: 3
Natty:
Report link

This looks like a variant of this question:

https://superuser.com/questions/175799/does-bash-have-a-hook-that-is-run-before-executing-a-command

A bash function that run prior to execution might be able to detect the extra space and then log the command or take another action.

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

79539839

Date: 2025-03-27 19:23:51
Score: 1.5
Natty:
Report link

A HTML-only solution with no coding required is using the "plaintext-only" type for contentenditable elements:

<div contenteditable="plaintext-only">This text can be edited by the user.</div>

See https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/contentEditable

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

79539837

Date: 2025-03-27 19:21:50
Score: 2.5
Natty:
Report link

3.3  Using any tool of your choice ,draw a line from point (20,30) to point (100,50) on a graphics display .                                                                                                                                               (5 Marks)

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

79539816

Date: 2025-03-27 19:07:48
Score: 3.5
Natty:
Report link

in the new 6.0 spyder it's changed to tools->preferences->debugger->ignore python libs while debugging

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

79539815

Date: 2025-03-27 19:06:48
Score: 1
Natty:
Report link

What I have seen others do is embed the script in the actual autounattend XML file iteslf and you would have to look at their github page to reverse engineer it for yourself.

This is cschneegans' xml generator

I think there is also a way to edit the ISO image itself and have an $OEM folder or something like that, but it's been too long since I looked at it so you would have to research that.

A good tool I used for editing the ISO image is called "AnyBurn"

Stand by for the admin that tells me how my answer does not solve your problem
in 3, 2, . . .

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What I have
  • Low reputation (0.5):
Posted by: Vern_Anderson

79539813

Date: 2025-03-27 19:05:48
Score: 1.5
Natty:
Report link

Maybe this wasn't the case 8 years ago, but now you can just move the node relative to its local coordinate system...

cubeNode.localTranslate(by: SCNVector3(x: 0.01, y: 0, z: 0)) // Move 1 centimeter along X axis (red)

See: https://developer.apple.com/documentation/scenekit/scnnode/localtranslate(by:)

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

79539804

Date: 2025-03-27 18:58:46
Score: 3
Natty:
Report link

I was importing useNavigation from react-router. My issue got resolved after I corrected import from react-router-dom instead of react-router.

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

79539797

Date: 2025-03-27 18:54:45
Score: 1
Natty:
Report link

Lubridate Could be useful for this:

curr_date <- lubridate::ymd('20250327')
lubridate::ceiling_date(lubridate::ceiling_date(curr_date, "month"), "month") - lubridate::days(1)
#"2025-04-30"

lubridate::ceiling_date(curr_date, "month")
#"2025-04-01"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: LeonFokou

79539786

Date: 2025-03-27 18:49:44
Score: 1.5
Natty:
Report link

This was an issue in the Zoom Meetings API Spec which has since been fixed.

You can via the spec on the Meetings API reference (the download button on the top right) or use this link:

https://developers.zoom.us/api-hub/meetings/methods/endpoints.json

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tommygaessler

79539784

Date: 2025-03-27 18:49:44
Score: 2
Natty:
Report link

https://v7.material.angular.io/cdk/drag-drop/api#CdkDragDrop

Using the CdkDragDrop event, you would be able to identify the container dropped and the container which it was dropped upon.

With this information, you would be able to carry out whichever function you wish, should the re-order occur, you can revert the changes in the list.

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

79539782

Date: 2025-03-27 18:48:43
Score: 4
Natty:
Report link

The problem is solved today 2025-03-27 with the update of the packages

@wordpress/create-block change log

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: lionel-dev-fr

79539770

Date: 2025-03-27 18:43:42
Score: 1.5
Natty:
Report link

Small Trick in the view.

' or ''' won't be replaced until the p4 view is being executed.

" or """ will be replaced before the p4 view is being executed.

The variables defined by the plug in must be replaced during the execution as they don't exist until that point so must be in the ` or '''. For instance ${JOB_NAME}, ${P4_CLIENT}, etc. See: https://help.perforce.com/helix-core/integrations-plugins/p4jenkins/current/Content/P4Jenkins/variable-expansion.html#Define_your_own_variables

The variables defined in the Jenkins environment (in example ${BRANCH}) need to be replaced before plugin executes so have to be in a " or """.

So when you want to use both you will need to piece the string together
Example:
'//depot/' + "${BRANCH}" + '/... //jenkins-${NODE_NAME}-${JOB_NAME}-${EXECUTOR_NUMBER}/' + "${BRANCH}" + '/...'

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

79539769

Date: 2025-03-27 18:42:42
Score: 0.5
Natty:
Report link

Other answers will help to disable Gemini on a project level.

If you wish to disable Gemini entirely: At time of writing, as of Android Studio Meerkat, Gemini features are provided in a plugin called "Gemini". You can disable the plugin from Settings > Plugins:

Screenshot of Android Studio's Settings page under KDE Plasma, demonstrating the built-in Gemini plugin found therein, with the plugin disabled.

So far, I've found no trace of Gemini features in my editor or toolbars after disabling the plugin. The same works for GitHub integrations and other built-in functions, in case you wish to disable those entirely as well.

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

79539765

Date: 2025-03-27 18:41:42
Score: 0.5
Natty:
Report link

This worked for me.

<form action="List" >

"List" is the name of my HttpGet function and .cshtml file.

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

79539762

Date: 2025-03-27 18:39:41
Score: 1.5
Natty:
Report link

Any resolution on this? I'm experiencing the same issue:

I have absolutely verified the issue is not DB query related or network latency related. It is the local Django instance delaying responses to the local client for many, many seconds. In some cases, 10's of seconds.

In fact, the local Django server even logs its response in the console almost immediately but the client doesn't receive the response from the local Django sever for an inexplicable amount of time.

I appreciate other posters suggesting investigating query optimization, network topology optimization, etc. but that is NOT the problem.

The problem is something in the Django infrastructure imposing incredibly long local response times after the response has been processed.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Andy Riedel

79539760

Date: 2025-03-27 18:38:41
Score: 4
Natty: 5
Report link

actually i have a question

we know that we can change bodey property of scafolled with bottom navigation bar but what if you had wrote your code in diffrent dart files and u want to put a simple botton and say go to home tab and show other things?

im a new learner

Reasons:
  • Blacklisted phrase (1.5): i have a question
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mohsen karimi

79539758

Date: 2025-03-27 18:38:40
Score: 2.5
Natty:
Report link

I found a workaround... In the ADO Pipeline/Artifacts if you navigate to Download artifacts of the Playwright Report Artifact and then unzip the download on your local machine then the Screenshots are found and displayed in the Playwright Test Report.

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

79539756

Date: 2025-03-27 18:37:40
Score: 2
Natty:
Report link

(https://i.sstatic.net/fXXzuM6t.png)

When in VS Code, go to Settings (bottom left corner gear icon or `Ctrl + ,`).

In the search bar, type "highlight".

Under Extensions, select SQLTools.

Under "Sqltools: Highlight Query" uncheck the box in front of "Highlight the query at the cursor position."

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

79539745

Date: 2025-03-27 18:33:39
Score: 1.5
Natty:
Report link

an example of how to run that file

node folder_name/jsfile

you can also do this, you need to give full path of where the file is located, if the js file you want to run is not in immediate folder

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

79539744

Date: 2025-03-27 18:33:39
Score: 5
Natty:
Report link

I created a package that makes it super simple. Check it out at https://pypi.org/project/gc-data-storage/

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aymone Kouame

79539743

Date: 2025-03-27 18:33:39
Score: 1
Natty:
Report link

WebP has such a nuance - not all browsers support it.
For example, some versions iOS Safari, regular Safari, IE - do not support WebP.
https://caniuse.com/#feat=webp
Therefore, you must always store at least two versions of each image. Webp (for WebP-enabled browsers) and original image.
And give the right version depending on the browser.
And the original image must also be optimized/compressed - so that even for browsers without WebP support, images will be optimized (lighter in weight) - this is the third! version of the file..
At the optipic service, I recently noticed a new plugin in which all of this is already in the box.
https://optipic.io/en/webp/wordpress/
You can even connect everything so that the urls of the images do not change (they remain exactly the same and look like internal urls on my site). But in fact, they are loaded through their system with automatic compression, conversion to webp and recognition of webp support.
It turns out that everything is simple and beautiful, and inexpensive))

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Виктор Андреев

79539742

Date: 2025-03-27 18:32:38
Score: 4
Natty:
Report link

We are facing the same problem with eclipse-temurin:17.0.12_7-jdk and application has been deployed in AKS and using the below GC parameters for one the application, still seeing G1 Old Gen utilization is more than 70%.

-XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=512m -Xms256m -Xmx4096m -Xms512m -XX:+UseStringDeduplication -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:ParallelGCThreads=20 -XX:ConcGCThreads=5 -XX:InitiatingHeapOccupancyPercent=45

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (1):
Posted by: gsb

79539730

Date: 2025-03-27 18:27:37
Score: 4
Natty:
Report link

make postcss.config.js -> postcss.config.mjs

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sri Ram

79539725

Date: 2025-03-27 18:24:37
Score: 2.5
Natty:
Report link

This took forever for me to figure out. The related things people mention about cron are unrelated. You need to go to Settings->General->Sharing->Remote Login click on the "i", and enable "Allow full disk access for remote users"enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Sir Intellegence-BrainStormexe

79539722

Date: 2025-03-27 18:23:36
Score: 2
Natty:
Report link
from zipfile import ZipFile
import os

# Crear estructura de carpetas para simular los dos PowerPoints
os.makedirs('/mnt/data/Matrix_PPT/Ejemplo - cuento', exist_ok=True)
os.makedirs('/mnt/data/Matrix_PPT/Ejemplo - QTE', exist_ok=True)

# Crear archivos vacíos simulando los PowerPoints
with open('/mnt/data/Matrix_PPT/Ejemplo - cuento/Ejemplo - cuento.pptx', 'w') as f:
    f.write('Presentación de ejemplo - cuento Matrix')

with open('/mnt/data/Matrix_PPT/Ejemplo - QTE/Ejemplo - QTE.pptx', 'w') as f:
    f.write('Presentación de ejemplo - QTE Matrix')

# Crear un zip con ambos archivos
zip_path = '/mnt/data/Ejemplos_Matrix_PPT.zip'
with ZipFile(zip_path, 'w') as zipf:
    zipf.write('/mnt/data/Matrix_PPT/Ejemplo - cuento/Ejemplo - cuento.pptx', arcname='Ejemplo - cuento.pptx')
    zipf.write('/mnt/data/Matrix_PPT/Ejemplo - QTE/Ejemplo - QTE.pptx', arcname='Ejemplo - QTE.pptx')

zip_path  # Mostrar la ruta del archivo zip generado
Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: YAEL GARCIA OVIEDO ASTNOMO

79539714

Date: 2025-03-27 18:19:35
Score: 3.5
Natty:
Report link

I made a Python+GTK all-in-one (AIO) archive with Python 3.11.10, GTK 3.24.43, and PyGObject 3.51.0.

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

79539712

Date: 2025-03-27 18:17:35
Score: 2
Natty:
Report link

PyGObject and GTK are painful to build and install on Windows, so I made a Python+GTK all in one archive with Python 3.11.10, GTK 3.24.43, and PyGObject 3.51.0.

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

79539710

Date: 2025-03-27 18:15:35
Score: 1.5
Natty:
Report link

I made a Python+GTK all in one archive with Python 3.11.10, GTK 3.24.43, and PyGObject 3.51.0. It builds with MSVC on GitHub Actions, so it's reproducible and easier to maintain. It's less like an installer and more like a portable application, but it can be packaged in your favorite installer (e.g., NSIS, InnoSetup).

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

79539707

Date: 2025-03-27 18:14:34
Score: 2
Natty:
Report link
  build: {
    rollupOptions: {
      external: [
        '@emotion/react',
        '@emotion/styled',
        'framer-motion'
      ],
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dev Preguiçosa

79539706

Date: 2025-03-27 18:13:33
Score: 12.5 🚩
Natty:
Report link

Did you ever manage to fix it? I'm having same issue whereby embeddings are being retrieved correctly, but the agent simply sends a "output":"" as a response?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever manage to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ferdinando Valsecchi FVAudio

79539704

Date: 2025-03-27 18:12:33
Score: 0.5
Natty:
Report link

Below are the steps to upgrade the node version using NVM :

  1. Open the console and type below command : nvm list

  2. To install the <NODE_VERSION> version run the below command : nvm install <NODE_VERSION>

  3. After the installation is complete it will add the node version in the nvm. To check the same type command : nvm list

  4. To switch the Node version type the below command: nvm use <NODE_VERSION>

  5. To verify the node version switch type the below command:
    node –v

For reference : https://www.erpluse.com/2018/11/nvm-installation-on-windows.html

Reasons:
  • No code block (0.5):
Posted by: Shrinivas Kalangutkar

79539701

Date: 2025-03-27 18:09:33
Score: 1
Natty:
Report link

I have been working on a sheet which has been working AOK with

`

var UI = SpreadsheetApp.getUi();

`on the fifth line. Suddenly I was getting the can not call from context message. Landed here and decided I would try to close and open the sheet and voila, error is gone. Strange goings on......

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

79539688

Date: 2025-03-27 18:04:32
Score: 1
Natty:
Report link

Using @Quentin's advice in comments, as a workaround I am able to make it work using translateY as an external property, instead of getting previous one from DomMatrix.

const box = document.querySelector('.box');
let id = undefined;
let translateY = 0;

function animateTest() {
  box.style.transform = `rotate(12deg) translateY(${translateY}px)`;
  translateY = translateY+2;
  id = requestAnimationFrame(() => animateTest());
}
id = requestAnimationFrame(() => animateTest());

let button = document.querySelector('.button');
button.addEventListener('click', function() {
  cancelAnimationFrame(id);
  translateY = 0;
  id = requestAnimationFrame(() => animateTest());
}, false);

setTimeout(()=> {cancelAnimationFrame(id)}, 5000);
.box {
  margin-left: 300px;
  width: 10px;
  height: 10px;
  background-color: black;
  transform: rotate(15deg);
}
<button class='button'>rerun</button>
<div class="box"></div>

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Quentin's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sidharth Bajpai

79539663

Date: 2025-03-27 17:51:29
Score: 1
Natty:
Report link

Found that the issue was when I originally passed the data from the postgres table to the ejs file in the GET route not included above, I had only included the two columns that showed up rather than the entire table.

Changed database query from this:

db.query("SELECT task_description, color FROM tasks WHERE section='To Do'");

To this:

db.query("SELECT * FROM tasks WHERE section='To Do'");
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jessie Moore

79539660

Date: 2025-03-27 17:49:28
Score: 0.5
Natty:
Report link

If all you want to do is add a volume.

The JSON patch format is probably better.

Example below to start a container without the database running.

kubectl run -it --rm psql \
--image=tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 \
--override-type=json \
--overrides='
[
{"op": "add", "path": "/spec/containers/0/volumeMounts", "value": [{"mountPath": "/var/lib/postgresql/data", "name": "pgdata"}]},
{"op": "add", "path": "/spec/volumes", "value": [{"hostPath": {"path": "/host/db"}, "name": "pgdata"}]}
]
' --command -- sh
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Asad

79539658

Date: 2025-03-27 17:49:28
Score: 0.5
Natty:
Report link

I'm not 100% sure but shouldn't the drop table command be

log.info(f"Dropping Table: mygrc.{table_name}")
dynamic_class.__table__.drop(dbEngine, checkfirst=True)

I think you're forgetting the dot just after dynamic_class .

Also maybe instead of dropping the table, you can use the constructor with the extend_existing parameter set to true?

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: tayken

79539650

Date: 2025-03-27 17:44:27
Score: 2
Natty:
Report link

This can be closed.

A co-worker fixed the issue, so certain comments have a value going towards 0 from below.

I already decided that I will use our company maven mirror and move there the jars - not all have a maven dependency.

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

79539644

Date: 2025-03-27 17:40:26
Score: 2.5
Natty:
Report link

You can check this package : djang url group permissions https://pypi.org/project/django-url-group-permissions/

A Django package for managing URL-based permissions through user groups with HTTP method support

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

79539639

Date: 2025-03-27 17:39:25
Score: 2.5
Natty:
Report link

У меня было три таблицы по первой сделан срез

В меню макросов в листе вставлен код по отслеживанию изменений на листе в срезе и потом если изменения есть запускается процедура по приведению других таблиц к срезу в первой

' Флаг для предотвращения рекурсии
Private IsSyncing As Boolean

' Переменная для хранения предыдущего состояния среза
Private previousSelectedValues As String

Private Sub Worksheet_Calculate()
    ' ЭТОТ КОД ДОЛЖЕН БЫТЬ В МОДУЛЕ ЛИСТА
    Dim sc As SlicerCache
    Set sc = ThisWorkbook.SlicerCaches("Срез_РЦ") ' Укажите имя вашего кэша
    
    If sc Is Nothing Then Exit Sub
    
    ' Получаем текущие выбранные значения
    Dim currentSelectedValues As String
    currentSelectedValues = GetSelectedSlicerItems(sc)
    
    ' Сравниваем с предыдущим состоянием
    If currentSelectedValues <> previousSelectedValues Then
        previousSelectedValues = currentSelectedValues
        
        ' Запускаем синхронизацию фильтров
        If Not IsSyncing Then
            IsSyncing = True
            СинхронизироватьФильтры
            IsSyncing = False
        End If
    End If
End Sub

Function GetSelectedSlicerItems(sc As SlicerCache) As String
    Dim result As String
    Dim si As SlicerItem
    
    For Each si In sc.SlicerItems
        If si.Selected Then
            result = result & si.Value & vbCrLf
        End If
    Next si
    
    GetSelectedSlicerItems = result
End Function

и потом с помощью процедуры в модуле вставлен код приведения срезов талбицы

' Этот код должен быть в ОБЫЧНОМ МОДУЛЕ (например, Module1)
Sub СинхронизироватьФильтры()
    ' Эта процедура отображается в списке макросов (Alt + F8)
    Dim sc As SlicerCache
    Set sc = ThisWorkbook.SlicerCaches("Срез_РЦ") ' Укажите имя кэша среза
    
    If Not sc Is Nothing Then
        ' Собираем выбранные элементы
        Dim selectedItems As Collection
        Set selectedItems = New Collection
        
        Dim si As SlicerItem
        For Each si In sc.SlicerItems
            If si.Selected Then selectedItems.Add si.Value
        Next si
        
        ' Применяем фильтры к таблицам
        ApplyFilterToTable "План", "РЦ", selectedItems
        ApplyFilterToTable "Выполнение", "РЦ", selectedItems
        
        'MsgBox "Фильтры синхронизированы!", vbInformation
    Else
        MsgBox "Срез не найден!", vbExclamation
    End If
End Sub

Sub ApplyFilterToTable(tableName As String, field As String, items As Collection)
    ' Процедура для фильтрации таблиц
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Sheets("Показатели запрос") ' Укажите имя листа
    
    Dim lo As ListObject
    Set lo = ws.ListObjects(tableName)
    
    ' Находим индекс столбца
    Dim colIndex As Integer
    colIndex = lo.ListColumns(field).Index
    
    ' Снимаем текущий фильтр
    On Error Resume Next
    lo.Range.AutoFilter field:=colIndex
    On Error GoTo 0
    
    ' Применяем новый фильтр
    If items.Count > 0 Then
        Dim criteria() As String
        ReDim criteria(1 To items.Count)
        
        Dim i As Integer
        For i = 1 To items.Count
            criteria(i) = CStr(items(i))
        Next i
        
        ' Используем константу 7 (xlFilterValues для русской версии)
        lo.Range.AutoFilter _
            field:=colIndex, _
            Criteria1:=criteria, _
            Operator:=7
    End If
End Sub

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Юрий Щ