All Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
5 views

Function Behavior with Out-of-Bounds Buffer Access [duplicate]

I've come across the function getBitByPos from here, and I'm trying to understand its logic. I consistently see the value 204 when accessing the buffer when I appear to be accessing out of bounds. ...
Daniel's user avatar
  • 509
0 votes
0 answers
2 views

Document reference in Microsoft Teams bot with Teams SDK

I'm struggling to discover how can I change the way the document references are presented by my teams bot in microsoft teams. Current document reference This is the way the reference is shown but I ...
Vinicius Maximiliano's user avatar
0 votes
0 answers
2 views

How to visualise and know the shape/size of XCOS block? Can we print the output in console

I have one script zcos. There is an issue with the port size and type. How to debug it? Why there is not options to know the or visualize or print in console the output of XCOS block developed? ...
Vimal Chawda's user avatar
0 votes
0 answers
2 views

Separating one mysql row into n different ones

My company's client has a table to store inventory data, this inventory separates products using a column called product_code, and it has another column called Qtd that stores how many of the same ...
Pedro Henrique Trentin's user avatar
0 votes
0 answers
3 views

JQuery - use static file in getscript

In one of my script, I'm using $.getScript("https://rawgit.com/indrimuska/jquery-editable-select/master/dist/jquery-editable-select.min.js").then(() => {...}); to get a script before ...
Nico44044's user avatar
  • 401
0 votes
0 answers
4 views

vb.net Directory.EnumerateFiles does not seem to bring back hidden files

I'd like to use Directory.EnumerateFiles to show all the files and folders including the ones that are hidden. It's bringing back all the files and folders now but it's not including the hidden ones. ...
jvcoach23's user avatar
  • 3,005
-1 votes
0 answers
5 views

Zimbra Webapp is not accessible - Ubuntu 18.04

I installed Zimbra 10.1.0 GA Release on Ubuntu 18.04 in a local environment (VMWare). The installation succeeded without any warnings then but I can't access the web interface, instead it displays ...
skinnyp3nis's user avatar
0 votes
0 answers
5 views

Dynamic audio rendering with tone.js

Sorry for the trivial question, but I'm struggling in finding the correct/best method that I should use to achieve this simple task using Tone.js (and/or a clear example): I would like to create a &...
Vor's user avatar
  • 385
0 votes
0 answers
8 views

Console Application - How to compare values in Excel faster?

I have an excel file and I am trying to find matching values bases on these criterias. For ARMADAS B2: D542295890, I am getting the ARMADAW A2:B05KAYIP I will look for B05KAYIP in the E column ...
raysefo's user avatar
  • 455
0 votes
0 answers
4 views

Xcode 16 issues, npm run ios no longer working

As the title suggests I recently upgraded my macOS version which in turn made me update my Xcode to version 16.0, because of this the app that I was developing would work fine on version 15.4. I got ...
Aman Singh's user avatar
0 votes
0 answers
3 views

Slow linked server (SQL server to Oracle)

I need to move data from an Oracle database to SQL server... If I run this very simple directly on the database, I get my results in <1 sec. (return 30K out of 250m records) select * From my_table ...
Ben's user avatar
  • 1
0 votes
0 answers
5 views

EPPlus 7.3.2 Can't copy a worksheet from one workbook to another

I have looked everywhere for examples of how to copy a worksheet from one workbook to another. They all seem to say use Workbook.Worksheets.Add(Name, SheetToCopy). My code below does everything I ...
Scott Smith's user avatar
0 votes
0 answers
3 views

Jupyter does not release a numpy memmap file handle

When creating a numpy memory mapped file in a Jupyter notebook, I find the following works, but additional writes in later cells fail because the file handle is still being held. Specifically the ...
richbai90's user avatar
  • 5,154
0 votes
0 answers
4 views

The request failed to reach my Django view

This is a web Django project, In my navbar I have a drop down that contains buttons to exploring products depending on their category, here is the code of the drop down list snippet in the main ...
Lina Alrashid's user avatar
0 votes
1 answer
11 views

static_assert a non-constexpr expression

Is there a way to require the compiler to prove a property of a runtime expression, similar to static_assert but without the requirement that the expression be constexpr? A trivial case would be ...
The Bic Pen's user avatar
  • 1,088
0 votes
1 answer
5 views

How to use the output of a CONCAT() function as an array in Excel

I would like to use the output of a CONCAT() function as the title for an array within XLOOKUP(). The XLOOKUP() formula I am using that works is: =XLOOKUP(MetricDesired,'2023-12-13_000_Report.txt'!$C:...
Chris Houdy's user avatar
-1 votes
0 answers
9 views

How to I upload Images to the OpenAI API?

I am getting an error when I try to upload images to the openai api. Below is my code import openai openai.api_key = '' def process_image(file_path): # Open the image file with open(...
randomUser786's user avatar
1 vote
0 answers
12 views

What is the exact compiler optimization applied here expect for tail recursion elimination?

I'm compiling a simple C program, implementing an inorder tree traversal function: void inorderTraversal(struct TreeNode* root) { if (root == NULL) { return; } inorderTraversal(...
Xushu Dai's user avatar
0 votes
0 answers
5 views

JetPack Compose -- Why DragAndDropSource transferdata does not reflect new state after recomposition?

I have a list of items, each of which uses Modifier.draganddropsource to publish a ClipData for some targets within the same screen. When an item is dropped on a target, it is removed from the ...
alr3000's user avatar
  • 83
0 votes
0 answers
3 views

Blazor OpenIDDict Invalid Issuer

I have an intermitten issue that will occasionally stop upsers from signing into my my site. When they log in they are met with the below error when they are redirected from the OpenIDDict server. ...
Travis Pettry's user avatar
0 votes
0 answers
8 views

How can I install Monogame offline?

I have a PC that doesn't have a network card and I can't even connect it to the router via cable, I can only put data on it via a storage drive, for example a USB stick. I installed .net and vscode ...
Novac Novac's user avatar
0 votes
0 answers
4 views

git clone from folder throwing fatal error of too many arguments?

I am a new member on a team where my predecessor left instructions on how to clone the project repo from a folder on a shared drive. However, when I do exactly as the directions instruct I receive an ...
carousallie's user avatar
0 votes
1 answer
5 views

Gradle Build Fails: Could not resolve com.bmuschko:gradle-docker-plugin:3.6.2

A problem occurred evaluating root project `'ngp'`. > Could not resolve all artifacts for configuration `'classpath'`. > Could not find com.bmuschko:gradle-docker-plugin:3.6.2. Searched ...
NaralaChetty Navitha's user avatar
0 votes
0 answers
9 views

R can't recognize the dplyr function separate()?

I get an error "could not find function 'separate'", even though I've got the most up-to-date version of dplyr installed and there shouldn't be any packages with namespace conflicts. The ...
Benjamin Hendricks's user avatar
0 votes
0 answers
2 views

pass cookie to a fetch request on a different subdmain

Say I have a html page on mycooldomain.com. On that page I do login to login.mycooldomain.com using axios. const smartAxiosLogin = axios.create({ timeout: 5000, // 5 seconds ...
Lelio Faieta's user avatar
  • 6,604
0 votes
0 answers
3 views

Cannot connect react native app to run on ohone

Tried resetting connection, using same wifi network, trying to connect to react native app developing in laptop. Worked before on the wifi network being used (mobile hot spot from third party phone) ...
Ashan Deen's user avatar
0 votes
0 answers
3 views

can't find documentation on creating a standalone API with serverpod

I have already built an app with flutter, now i m trying to implement license verification and things like that that depend on a server, i can seen that serverpod has a lot to offer but I can't find ...
Hani Bachi's user avatar
0 votes
0 answers
3 views

Python Qt6 - dependant dropdowns with values based on a dictionary

I am having an issue creating dependent dropdowns based on dictionary values, I am very new to Python but have experience with SAS, SQL, VBA, and minor HTML. I was able to import an Excel table into ...
Diner Knight's user avatar
0 votes
0 answers
2 views

How to to configure lsp, formatter and linter for laravel and vuejs in LazyVim

I have tried to configure LazyVim to code a laravel project with vuejs framework. I've tried lazyextras, configuring lsp and mason, installing coc-nvim, coc-volar... I have already tried everything ...
Joan T's user avatar
  • 37
-3 votes
0 answers
11 views

Assigning videos in Google Classroom

I have assigned youtube and other links to my Google classroom. From my end, teacher's, the videos play without ads and extras at the end. From the students' end the ads and extras play. how do I turn ...
Liz Bryan's user avatar
0 votes
0 answers
6 views

Write pandas dataframe to excel consume too much memory

I am using this code to write a dataframe into excel file: with pd.ExcelWriter(file_data, engine='xlsxwriter',engine_kwargs={"options": {"strings_to_formulas": False}}) as writer: ...
Tiancheng Liu's user avatar
0 votes
0 answers
3 views

Kubernetes nodeport not accessible

I have installed Grafana on Kubernetes. The installation is ok. When I do port forwarding, I can access Grafana dashboard. However, when I try to access using nodeport, web times out. My Grafana ...
RB.'s user avatar
  • 155
0 votes
0 answers
2 views

How to use Python Lambda for batch creation of AWS Secrets?

I'm working on a Backup & Restore test for AWS Secrets, where I need to create around 1000 secrets from the backup JSON file. I've written a Python Lambda function, but it’s only partially ...
Ravichandran's user avatar
0 votes
0 answers
5 views

Has anyone successfully managed to configure a PHP class method to retrieve a CheckoutId for a Sumup Payment Widget

Our HTML/Javascript client sends a request to our PHP proxy Class and method to invoke the communication with the Sumup API. The Sumup Developer Documentation appears to require three steps: Use Curl ...
Webcliq's user avatar
  • 16
0 votes
1 answer
11 views

Properties are not passed to docker-compose

The point is, I want to deploy my project to Docker, and the project consists of several microservices, in Docker Compose the configuration of Keycloak is described, and if you run the application on ...
Назар's user avatar
0 votes
0 answers
3 views

exception message System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.WindowsAzure.Storage.DataMovement, Version=0.7.0.0

I am getting error in Azure DevOps Pipeline for testing framework pipeline "exception message System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.WindowsAzure.Storage....
user26558402's user avatar
0 votes
0 answers
3 views

How to Avoid Granting PipeAccessRights.CreateNewInstance to User Without NamedPipeServerStreamAcl.Create Throwing UnauthorizedAccessException

I've seen similar questions addressing the issue of creating a NamedPipeServerStream with security configurations throwing UnauthorizedAccessException. The problem lies in creating multiple instances ...
javery's user avatar
  • 25
0 votes
0 answers
6 views

How to get handle to dragged item -- HTML drag and drop API

I'm using the HTML drag and drop API. When dragging an element, I want to get separate handles to the draggable element (the original element) and to the dragged element (the moveable copy of the ...
C-RAD's user avatar
  • 1,107
0 votes
1 answer
6 views

NLOpt vector-valued inequality constraint function signature in C++

I'm working on implementing a nonlinear optimization problem using the NLOpt library, and I'm having some trouble defining a vector-valued inequality constraint using the C++ interface. The NLOpt docs ...
Carl's user avatar
  • 1
0 votes
0 answers
4 views

EPPlus returning different values ​in the same version

I have an API in .NET Framework that receives a list of cells to populate and returns the result of a specific cell after performing calculations. I'm currently migrating this API to .NET 8. To ...
Caio Lucas's user avatar
-8 votes
0 answers
18 views

Google account got hacked [closed]

Urgent: My Google Account Got Hacked – Need Help! Hey everyone, I’m in a really tough situation – my Google account got hacked, and somehow the hacker bypassed 2-step verification and changed all my ...
abhishek214's user avatar
0 votes
0 answers
3 views

How can I create editable and drawable grid cells in tldraw, similar to a spreadsheet?

I'm working on a project using tldraw and trying to create a grid-like interface where each cell can be used to draw or write inside it, similar to a spreadsheet. I want to integrate the drawing tools ...
AbdALNasser Gamal's user avatar
0 votes
0 answers
2 views

Flutter Flow: Implementing Virtual Try-On Feature

I'm working on a Flutter Flow app that needs to incorporate a virtual try-on feature. I want users to be able to upload a photo of themselves and then virtually try on different clothing items. I've ...
Dheeraj Pandey's user avatar
0 votes
0 answers
8 views

How to find the Azure Function key used in a given request

When you make a request via Azure Function, there is a necessary host/master/function key that must be used in the request query, unless the function is anonymous. The format is like https://...
anastaciu's user avatar
  • 23.7k
0 votes
2 answers
9 views

update statement failing with ORA-01427

I have 2 tables, see below. I need to update table1.sample1 to be the same as table2.sample2 where table1.level1=table2.level2. The table2.sample2 is unique, but table1.sample1 can have more than one ...
mspart's user avatar
  • 1
-3 votes
1 answer
12 views

Str.Contains in Pandas

I have a dataset as below where Coffee type = ['Robusta/Arabica','Arabica/Robusta','Arabia','Robusta'] How can I filter on rows which only contain 'Robusta'? I tried to use str.contains('Robusta') ...
Mỹ Trần's user avatar
0 votes
2 answers
16 views

count by occurrences

I am a query similar to the following: select * from combined where valid_rating is null order by FIND_IN_SET(provider, (select provider from combined where valid_rating is null group by provider ...
David542's user avatar
  • 109k
0 votes
1 answer
17 views

Can't Debug When Calling Function From Cell

I'm trying to call a function from a formula in a cell. In this case: =CompareColors(test1, test2) Where test1 and test2 are named ranges. The function returns the value as expected, but I'm never ...
Sudio's user avatar
  • 155
0 votes
0 answers
6 views

How to combine two .FITS images into a single one?

I have the following issue. The thing is I'm currently working with three .FITS images (which are maps of temperature, mass, etc.) They represent the exact same region of the sky in RA, Dec ...
mr_starspotting's user avatar
0 votes
0 answers
4 views

Google Map Static route DRIVING with no road itinerary

Does anyone know if we can create a directionsService.route() when there is no connection road between two waypoints For exemple with this itinerary : https://www.google.com/maps/dir/New+York,+NY,+USA/...
Pierre Ferron's user avatar

15 30 50 per page
1
2 3 4 5
…
484489