text
string
meta
dict
Q: Uploading WebP images in Wordpress Media Library Running Wordpress 6.1.1 and PHP 7.0.33 hosted on Plesk Obsidian v18 and Linux 7.9 When I try to upload a webp image through WP's media library, I get this warning: This image cannot be processed by the web server. Convert it to JPEG or PNG before uploading. I went and...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600302", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to change a brach name on git even after raising a merge request? The brach name has a . in it. So want to rename the branch. Any commands to do it or do I need to create a new branch and again push all the code there and raise PR again? A: In my opinion, creating a new branch would be best. Create a new branch...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600304", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: The method put(String,Employee3) in the type Map is not applicable for the arguments (int,Employee3) The method put(String, Employee3) in the type Map<String,Employee3> is not applicable for the arguments (int, Employee3 I'm getting like this ...Can anyone say what's the issue?! Map<String, Employee3> employees = ne...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600306", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to iterate over a xlsx file with multiple comma separated values in cell in to a JSONArray I am reading a xlsx file using java Apache poi util. In which the xlsx file has 3 columns as Teacher, class&Section, Sunbect. The last two columns have multiple comma separated values in the cell. I need to iterate over an...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600307", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Roll Up Status Panels in Grafana I have a requirement in hand. Wherein I need to present Health Hygiene Dashboard in Grafana for my project. The ask basically is to have a High Level View at a Glance --> Detail Level View --> Node Level View and The Roll Up would Bottom to Top. Let's say if any goes wrong at the Nod...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600309", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: OneSignal In App Messaging always display full screen dialog in android Get full-screen dialog when firing In-App message in android, I also set the center view in one signal console, is anyone have any idea about this problem? OneSignal setUp: Get Notifications in android devices like this: Is there any problem w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600311", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: 404 Not Found, but route exist in Laravel 9 I am trying to hit on name and get the details of lead but every time it shows 404 not found blade file code @foreach($lead as $lead) <tr> <td> <a href="{{ url('show_lead', $lead->id) }}">{{ $lead->first_name }} {{ $lead- >last_name }}</a> </td> <td>{{ ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600315", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: jenkins in docker not connect with vault server hosted in my local pc I installed docker in my windows 10 and run jenkins with alpine openjdk 11, and it seems to work ok, because it can download the code from github but the problem is when it needs to get the secret from Vault server hosted in my local PC. Actually ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600316", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Import files in docker compose with volumes I need to import a couple of files in my docker-compose project to be able to read them and use them in a gunicorn file configuration. Here is my current docker compose: version: "3.9" services: db: container_name: my_table_postgres image: postgres ports: ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600317", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Mapping String data from List I am new in mapping response DTO's coming from a List DTO's and I am stuck in this dilemma. FF are the details of my Issue: This is my flat table entity using MongoDb @NoArgsConstructor @AllArgsConstructor @Data @Document(collection = "booking") public class BookingEntity { @Id ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600319", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to use stopwords and filters properly in Elasticsearch (python client) I'm learning Elasticsearch using Python client and have managed to build an index and query function. Problem: Even if I have used stemmer and stop words in the below settings, when I query a text with all the stop words to test the working, ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600322", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to identify connected Facebook account is developer or regular account? I'm implementing Facebook API to get user data, post, comments, views, etc. and calling this API https://www.facebook.com/v16.0/dialog/oauth?client_id=my_client_id&redirect_uri=my_url&scope=pages_show_list,instagram_basic,instagram_manage_in...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600326", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: I want to broadcast an pytorcc tensor of dimension (a,b,c) onto an array of dimension (b,c) to get an output of dimension (a,c) how do I do this? I have two pytorch tensors, A.shape = [416, 20, 3] B.shape = [416,20] I want to produce C = matmul(A,B) C.shape = [416,3] Ie for each of the 416 20x3 arrays in A, find t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600328", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: "Failed to extract servers version error": ODBC to elasticsearch for Power BI. How to solve? Is there other way to connect Elasticsearch to Power BI? enter image description hereBelow is the Log for the error[], Can we connect Elasticsearch to PowerBI without ODBC? [ERROR] parse_es_version_cbor()@connect.c:1595 [DBC...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600329", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How does axios in vue handle exceptions gracefully? I'm using axios in vue. In order to simplify the code, I use the global interceptor of axios to uniformly handle some request errors. axios.interceptors.response.use(function (config) { console. log(config) if (config. data. code !== 200) { return Promis...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600331", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: sql*plus y developer Por que no estan sincronizados el SQL*PLUS Y el SQL Developer? Al crear una tabla en uno, no aparece en el otro. Probe reiniciar la computadora pero aun sigue sin funcionar.
{ "language": "es", "url": "https://stackoverflow.com/questions/75600332", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to render the function inside addEventListener load in reactjs or nextjs? const Test = () => { const [ reload , setReload ] = useState('') useEffect(() => { console.log("useEffect Reloded"); document.getElementById( "img" )!.addEventListener('load' , () => { console.log("img ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600333", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Doxygen: Generate different content based on certain switch My code has a compiler switch to support different platforms. I would like to use doxygen to generate different content based on this compiler switch. #define UsedPlatform PlatformA Is there anything like #if(UsedPlatform==PlatformA) that I can use in .dox...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600335", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how do I solve mbedtls_ssl_handshake failed error with mbedtls on stm32cubeide while connecting to AWS IOT Cloud through MQTT protocol I am using the following development environment for connecting the stm32f429zi development board to AWS IOT Cloud using STM32CUBEIDE v1.8.0 and the secure MQTT protocol. . Developme...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600336", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I want to decrypt an Image but I don't know how I should read the file I have an image "1.jpg.enc", I know how to decrypt it in Javascript but when I try to do it on Python I keep getting error of "io". here's my Javascript code function _decryptImage( encrypted, key ) { // create a view for the buffer let d...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600339", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: How to correctly use useEffect in React+Formik when creating an input with hints? There is a task to create a scalable form on Formik with dependent fields and a list of drop-down options. Scalability is achieved with FieldArray and map Fields. I forward a custom input layer into one of the Field, in which, through ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600340", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to getText of value entered in `TextField` widget in flutter integration test In flutter integration test, i want to get the text entered in TextField widget. Here is the development code looks like: , Here is the integration test code I written to get the text of it , Its printing the hole widget tree data, b...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600342", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Search for unknown special character in CSV files in unix I have huge csv files in unix . I am trying to read the unknown special characters and fix the same. But due to the sizes of the csv files (Min file size is 5 GB). i am not able to spot any special characters. Kindly help. Sample files: "ABC","DEF","123","202...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600345", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Convert jupyter to python I want to convert a string which represents a jupyter notebook to a string representing python program. And I met a problem that in jupyper, something like data = pd.read_csv("tmp.csv") data.head() will output something, while in python program, we need to use print, like print(data.head()...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600347", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: jsonb will not be updated if I add a field With this code, Hibernate does not execute an update statement MyEntitity entity; entity.getJSONB().put("Field", 14f); //returns Map<String,Object> session.merge(entity); this works: MyEntitity entity; entity.setX(12); entity.getJSONB().put("Field", 14f); //returns Map<Str...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600348", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Drawing a Bezier Curve with the turtle in Python I'm trying to draw a Bezier Curve with the python Turtle, but it just draws these weird inclined lines. enter image description here Could you please tell me why it isn't working or what is missing? Thank you This is my code, I'm using Google Colab [[enter image descr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600352", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Javascript JSON string interpolation let uuidX = getNewUuid(); let data = { method: 'POST', body: JSON.stringify({ app_id: '<app_id>', contents: { en: '{"uuid":"c407d334-d9e4-4754-a749-38e3a3b200e9","callerName":"Android","type":"CALL"}', }, apns_push_type_overri...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600355", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Can we use interfaces when the implementations cannot be accessed via interface I am little new to programming design techniques. I have two classes like FooHandler and BarHandler. class FooHandler{ ... fun method1(someArgs){ getMap() } ... fun method2(someArgs){} fun getMap() {} } class BarHandler{ ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600356", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: i have some problem in register in my .net core web api Unable to resolve service for type 'Application.AppointmentOp.CreateAppointmentHandler' while attempting to activate 'DoctorAppoiment.Controllers.AppointmentController'. i wanted creat post api but have problem ( Unable to resolve service for type 'Application...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600358", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: what is the difference from"npm" and "npx --no-install" The problem is not "npm and npx are what different is". I know "npm" and "npx" what different is, but wonder in what scenario would I use "npx --no-install", not "npm". please tell me, if you know anything about it.
{ "language": "en", "url": "https://stackoverflow.com/questions/75600360", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Save Combobox selected value in XML File and than load it again on button click using C# so I have a WPF App which is made dynamically with the information from XML File and I have a ComboBox where I can select items which I need, than I need to save it in another XML File (it works with TextBox and CheckBox) and I ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600363", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to display the hierarchy of WooCommerce categories? How can you output categories based on the parent in which you are? For example, there is such a list of categories: * *Parent category * *Gregory 1 * * *Subcategory 1.1 * * *Subcategory 1.2 * * *Subcategory 1.3 *Gregory 2 * * *Subcatego...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600365", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: React Reducer get payload:undefined I tried to get some data from googlesheets and send it to reducer. When I get data from sheets I check it in console and when I send it to reducer and check it in console it is undefined. Reducer: const defaultState = { data: [], } const GET_DATA_FROM_GOOGLE = "GET_DATA_FROM_GO...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600367", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: How to mask view by another view with clear color in Swift UI? I want to make the same effect when the view is intersected by another transparent view How can this be done to turn out like Apple?
{ "language": "en", "url": "https://stackoverflow.com/questions/75600368", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: SSAS CustomData() MDX function freezes my machine When I try to run the CustomData() MDX function in SQL Server Management Studio or through SSRS Report designer in Visual Studio it taxes my system's memory to 100% and everything slows down. The query fails with an exhausted memory error. I've never used this before...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600369", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: matAutocomplete is not setting the value to formcontrol on select from dropdown angular I have a component in which I am using Mat auto complete with google autocomplete apis Here is the code import { ChangeDetectionStrategy, ChangeDetectorRef, Component, forwardRef, Input, OnDestroy, OnInit } from '@angular/core'; ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600372", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Pandas + Plotly + Dash, Create dashboard from 3 dataset, with 1 tables, 3 charts and multi dropdowm for dataset Create 1 dashboard from 3 datasets with the same columns, each dataset must have an interactive table and 2/3 different interactive charts and 4 dropdowns I have the following 3 csv files tab_investments =...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600374", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Query to find the records between the start date and end date I need to fetch the records that are falling between the start date and end date in oracle SQL. I 'll be having varStartDate and varEndDate. I want to fetch all records that are falling between the varStartDate and varEndDate. I am trying below query wher...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600375", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how can I suggest my iOS app for opening location sent from whatsapp? I want to show my app in the list of apps showing when click on a whatsapp location. How can I mak it possible. The link starts with maps.google.com. I added maps.google.com under Associated Domains in entitlement file. But it doesn't works.
{ "language": "en", "url": "https://stackoverflow.com/questions/75600376", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: how to create dives on bases of number selection in select options in react js I want to create number of dives on the of number selection in select options in react.js .for example, if user select 2 then two dives should create. My select option code is below that is in PackageForms.js component. ` import React fro...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600377", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Flutter UI freezes when clicked IconButton I am new to flutter/dart. I am trying to develop a Music Player application. Problem is when my application trying to retrieve all mp3 files from downloads folder. It lists all audio(mp3) files on emulator, but when I installed APK on my device the button is stuck when pres...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600378", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What language should I learn for this kind of job I got an job offer from relatives to be their IT programmer for their upcoming company(selling product like: powder detergent, bleach, soap etc. ,with referral system) , but I have zero knowledge about programming, so my question is what language should I learn to cr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600379", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: JSON string deserialization c# issue I found solution [JsonPropertyName("currentPage")] attributes should be added for each property or second and better solution add camelCaseOption like this var options = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600383", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Can we use time_step = 1 for sample by sample inference using LSTM? I am using TensorFlow/ keras to train an LSTM model. The input to LSTM has to be in the following format: [sample, timestep, n_features] I collect sensor measurements from the robot (forces, moments) as my data and then I perform the windowing metho...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600384", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Multiple carousels in html webpage I want to display photographs of multiple products, one after the other, on a web page. Each product has one to four images. The layout in mind is: carousel of images of first product carousel of images of second product : : : carousel of images of nth product How can this be done?...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600385", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to prevent index.ts imports (e.g. via eslint) in libraries of a monorepo? My project has about the following structure: project |-- applications | |-- app1 | |-- app2 | |-- libraries |-- lib1 | |-- src | | |-- lib | | | |-- dom-utils.ts | | | |-- index.ts // exporting do...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600387", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Exclude multiple models from run When running dbt with descendants, I would like to exclude two models. I can exclude one model like so: dbt run ga4_update_set+ --exclude nz_daily_cohorts The above works as expected. I tried the following to exclude multiple models. dbt run ga4_update_set+ --exclude nz_daily_cohort...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600390", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: HTTP Error 502.5 after installing .NET Core 6.0.14 I installed .NET Core version 6.0.14 for my new computer running Window Server 2019 Standard. However, I still get - ANCM Out-Of-Process Startup Failure as follow. I have tried to reboot and uninstall Survey Solution and .NET Core platform, but it doesn't seem work...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600392", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: SignJWT : TypeError: Key for the ES256 algorithm must be one of type KeyObject or CryptoKey I am trying to connect to gcloud ksm and the a sign a message. My private is loaded from the json file. The isssue is, when i run the code. i get this error "TypeError: Key for the ES256 algorithm must be one of type KeyObjec...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600398", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: PIP3 distils.cmd module not found Error Code Solutions I have tried: Reinstall/removal of pip & pip3 via *apt-get remove python-pip apt-get install python-pip apt-get install --reinstall python-pip apt-get remove python3-pip apt-get install python3-pip apt-get install --reinstall python3-pip apt-get install python3-...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600401", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Sum function inside sum function I have a code to get sum of each product from different tables and multiple to price to get total for each rows in columns. However, I want to calculate rows to be in one rows in one sentence. could you please help me. SELECT FORMAT((((ISNULL(IT.Q,0) + (SELECT ISNULL(SUM(IM.Q),...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600403", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Display text in the closest element with certain class I'm trying to display a text in the closest element with the .msg class, but it always displayed in the first element with .msg class. let btn = document.querySelectorAll('button'); btn.forEach(function(i) { i.addEventListener('click', function() { let...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600404", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Delphi 3D surface plot algorithm I want to visualize large 2D function datasets. My dataset is organized in a *.csv file. Each column as x entries and I have y rows of this type x= 100....100.000; y = 100....100.000; Different files have different x and y values I failed using python ploty and matlab wit...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600407", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: How to adjust the .NET MAUI Picker windows size Using .NET MAUI (7) Picker to display a selection of say 20 countries, I want to limit the size of the window (Android) used to display the selection. Currently, the selection windows expands when more options are added to the list until the selection windows covers th...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600408", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Am I setting up sheets API correctly to run on cloud functions with cloud scheduler? Background: trying to deploy a python script to run once a day with cloud scheduler but can't figure out what's causing the problems and the error logs aren't really helping Am using gspread, requests, time. BeautifulSoup the proper...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600413", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to chain the SlideTransition I use animation making my widget move. when I click play button, I want the widget * *move from 1 to 2 *waiting for few seconds *move from 2 to 3 and disappear Now I just complete 1 and have no idea how to achieve 2 and 3 Here is my code in State. @override void initState()...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600415", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: page becomes when updating state through API when i try to update state in quantity of product, adding item to cart the page becomes blank, but the state is updated when refreshing the page. my page enter image description here when i try to update state in cart , it throws error, type error, cart is undefined ente...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600416", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Listen for events export const getSomethingByFileId = async file_id => { const cursor = client.getCursor(file_id); cursor.addListener('FRAME_RESPONSE', msg => { console.log(msg); }); . . }; Client will be imported from an external package.The issue I'm facing here is that the events not getting i...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600425", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Deleting a row in google sheet based my expiration date So I'm trying to make google sheet delete a row on but it doesn't work here is the google sheet link I want to delete the rows based on dates on column C before today I tried the method from below but it didn't work and because it's in JS which I don't understa...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600426", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: aws lambda bundling - for debian based docker image cant run apt-get command I am using container images for bundling and deployment of my aws lamda using cdk. Below is my sample code snippet. The issue i am facing here is not able to run any apt commands part of my command list. pip commands are working fine. Basic...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600428", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Export password protected Excel file (.xls) from SQL Server I'd like to execute a stored procedure and generate the query result into .xlsx file daily basis. is it possible to add or set password to .xlsx file while the file generated from SQL Server? or are there any other possibility to make those .xlsx file prote...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600430", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Creating a Form Submission App With Vertx I can't seem to find an example on YouTube or any other online resource that can demonstrate a full stack app using Vertx for handling form submissions. I am trying to practice using Vertx beyond just a simple Hello World print out. I want a form in the browser, that accepts...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600431", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to reverse the order of colors coming from PowerBI schema I use pbiColorNominal in the Deneb for coloring a custom stacked bar chart. The order of colors in such chart is reversed comparing to a similar out-of-the box stacked bar visual. Is there a way to reverse the order of colors imported via pbiColorNominal?...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600432", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to use latestOfMany on pivot tables in laravel? I have two models: User and Role. They have many to many relationship where RoleUser acts as a pivot table. This is my RoleUser model: <?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsToMany; ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600434", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Excel UDF giving value error if selected range is not from a single sheet The following code is made to concatenate cells with a delimiter. The Ref here can be a continuous range or a group of ranges put inside a bracket. The only limitation i'm getting is that if the group of cells contain range from two different ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600435", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: In MVC file upload its saving "System.Web.HttpPostedFileWrapper" in DB instead of file name I'm trying to do a file-upload using MVC5 but its saving object name "System.Web.HttpPostedFileWrapper" in DB instead of file name also file is not transferred to given location. [HttpPost] public ActionResult Create(FormView...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600438", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Raising Image Flutter Card i'm new to flutter and i wanted to create simple design for menu app as shown in image below ... i tried below code but it didn't give same design, is there any way to achieve it? Image Here MaterialApp( home: Scaffold( appBar: AppBar( title: Text("Card over stack"), )...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600441", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to over write helm values yaml file? In my values file I have image: tag: '123465' I want to overwrite this from my github ci/cd so Argocd can pick it up I'm writing this command sed -i 's|image.tag:.*|image.tag: test|g' dev-*.yaml I'm getting sed: 1: "dev.yaml": extra characters at the end of d command er...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600445", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to identify if there is an actual issue in the code from cypress I am trying to write a test script using Cypress and in this scenario, there is an actual 500 server error in the system. But when I try to automate this using Cypress it does not give me any error and works fine. Is it because I am using fixtures?...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600448", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is there any way on iOS device to load the debugger and then an app and step into it? I have a problem with the an iOS app launchScreen that does not display the included image and want to use the debugger to determine the source of the problem. I would like to be able to start a debugger on iOS and then get it to l...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600453", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: VB.NET: ExecuteReader(CommandBehavior.CloseConnection) hangs after running SQL Query I am trying to execute a SELECT SQL statement which returns a value to me. The following is my code to Get the value from the SQL select statement. Private objSQLHelper As SQLHelper Private Const SQL_Error_Query = "SELECT field1 FR...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600455", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: The webpage view on the phone is too large until the first click I have a question and actually a small problem.This is my first created website after small course. When I access the page on mobile, until I made first click (anywhere) the viewport looks like a bit stretched. If I click anywhere, everything returns t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600456", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Incorrect valid coins value. Error in code logic I am assigned with the task of giving coins to the user on successful delivery of an order. The coins come with an expiration date of 45 days. I am using MongoDB and have 2 collections: User and Ledger. User collection has a key currentCoins which holds the current a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600458", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Using STM32F4 to print keys pressed on a keypad No idea why it won't work. Don't know where to start. I've look up everywhere to figure this out. I'm using an STM32F446RE controller with uVision software. The basic objective of this project is 2. Write the complete code for printing the pressed key on Debug (printf)...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600459", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Calculate vertex distances of a mesh I am using Numpy arrays to express a triangular mesh. I have two matrices: coordinates is a 3 x n matrix, and connectivity is an n x n matrix that uses 0s and 1s to store vertex connectivity. Now I want to calculate a n x n matrix named distances that stores vertex distances. Onl...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600460", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Rotating secret key but keeping other database credentials? I am currently using AWS Lambda for rotating the secret key. I followed the guide on the AWS website which uses the SecretsManagerRotationTemplate. This works well to rotate the current secret key with a new secret key. The problem is that I have also store...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600462", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how to use Wireshark between k8s pods I want to use Wireshark to sniff packets between two k8s pods. I want to run Wireshark on my host laptop where k8s is installed. Basically, I need to run Wireshark from the node and capture inter pod communication. Is there a way to achieve this? Thanks A: Wireshark is a graphi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600465", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Select multiple columns from a table but group by one which is always unique In the UI I have a table where I'm showing data grouped by shipday which is days of the week. To do that in the hasura I've created a PostgreSQL view - CREATE OR REPLACE VIEW "public"."view_shipday" AS SELECT shipdata.shipday, count(*) ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600467", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Integrate db with OpenTelemetry in quarkus I am try to integrate quarkus application with OpenTelemetry. For that I want Instrumentation for JDBC. In the documentation https://quarkus.io/guides/opentelemetry#jdbc it mentions to use https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600469", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: how to code for the circular avatar to place at one place with no.of participation number how to keep the the photos to place on each other and tell the no.of participant in the list . A: Try this: @override Widget build(BuildContext context) { int length = 20; return Scaffold( body: Center( ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600475", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: UI button doesn't show up in Unity's gameview For context: I am building an AR experience in Unity (with the AR setup) as the android counterpart to the adobe aero experience (completed). I've been following a bunch of tutorials for implementing buttons that switch between scenes, and have since abandoned the little...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600484", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How do I set up Visual Code Studio to preview javascript? I've been trying to go through some basic tutorials on youtube, but I can't work out how to preview the code I've written. This is what I get in the preview.js window and running the file through node: As you can see, the code simply shows up like text in th...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600489", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to add ID for minimize, maximize and close button of chrome using Javascript? I have requirement to add Id for minimize, maximize and close button for newly open tab(window.open) in chrome using javascript. A: I made the following assumptions: Adding 2 buttons to dialog title bar using jQuery/jQuery UI Minimi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600492", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Does ANTLR eat its own dog food? Does ANTLR parse grammar files by using a parser generated by ANTLR? I tried googling but didn't find answer to the question. A: Yes it does. ANTLR4 comes with a full batch of ANTLR4 grammars for building itself. This is why it still requires an existing parser for the build process...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600493", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Unable to create requested service org.hibernate.cache.spi.RegionFactory error in grails 4.0.10? I am having problem making hibernate second level cache to work. I am using grails 4.0.10. The error i am getting is Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hibe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600497", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Attempt to invoke interface method 'android.os.IBinder android.system.keystore2.IKeystoreService.asBinder()' on a null object using MasterKey I tried MasterKey since MasterKeys is depricated and below is the stacktrace. Exception java.lang.RuntimeException: Unable to create application com.a.b.c: java.lang.NullPoint...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600499", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: What is connection string for Go GORM with SQL Server in case Windows Authentication? With username/password authenticatio package postgres import ( "gorm.io/driver/sqlserver" "gorm.io/gorm" ) type Product struct { gorm.Model Code string Price uint } func Main() { dsn := "sqlserver://sa:1...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600508", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How GA4 Detects Purchase items but Not showing Total revenue? View GA4 image Before 28th feb 2023 GA4 shows total revenue for us, But after 28th Feb GA4 not showing Total revenue but, it showing purchase items. Please help how to solve this error. I need solution for this problem.
{ "language": "en", "url": "https://stackoverflow.com/questions/75600510", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: EF Core - duplicate error when adding entities When adding entities to a DbContext in EF Core I get following error message: The instance of entity type 'OrderTask' cannot be tracked because another instance with the key value '{Id: 1}' is already being tracked. When attaching existing entities, ensure that only one...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600511", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to set custom value for a column when using groupby in pandas dataframe I have a dataframe dt as follows: I want to group it by val1, then val3, then have a sum of count and any value from processed time (doesn't matter which one). I am able to do most of it using this operation: df_grouped = df.groupby(['val1'...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600512", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Multiple cursors in STMCUBE-IDE I want to replace only some occurrences of a variable, so I wonder if a multiple cursors option is available on the STMCUBE-IDE. If anyone knows, please reply. Thanks! P.S: On Keil MDK, if you hold down the Ctrl key and use the left mouse click on the desired location, you can activat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600513", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Unable to scroll in a Container with PageView.builder in Flutter enter code hereI'm having trouble scrolling through a PageView.builder widget that's embedded inside a Container in Flutter. I've tried setting the physics property of the PageView.builder to AlwaysScrollableScrollPhysics(), but it doesn't seem to work...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600514", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Generating and removing entry lines for html forms I'm trying to make a html form whereby the user has the option of adding new entry form boxes (rows for text entry) and removing existing ones, by clicking adjacent buttons. For a better idea here's a visual example: The idea is that the form is interactive and cli...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600515", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: reading a sample.xml file from the path in oracle and storing the content in the clob variable using plsql I have a sample.xml file in the path '/test/FILE'. Now i want to get this file from the given path and read the file and store the contents in the variable v_clob which is of datatype clob using PLSQL. The v_cl...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600516", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Scraping data from sankey diagram using python and BS I am new to Python and am currently trying to figure out how to scrape data from this web: https://www.iea.org/sankey/#?c=Indonesia&s=Balance i have tried using BS and selenium but it didnt work. Need data that showed inside the diagram. Thank you for your answer...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600517", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Impluse Response Function plots cut off in R Markdown PDF For some reason when using the irf() function and knitting the markdown to pdf the second of the two plots generated gets cut off. Is there a way to fix this or a way to call the individual plots one at a time to have them stack on top of each other instead? ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600518", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I want to validate operration name ie( I want to validate operation name for below for null or want get the operation response <wsdl:operationname ="retriveprefsync" Response message if it's operation name = "retriveprefsync" A: Check that the name attribute of the <wsdl: operation> element matches the operation na...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600519", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: cordova implementation with ionic keycloak i wanted to make a sso authentication with the help of keycloak so that i can validate but i am getting this error in this below code also i wanted to implement the deep link so that i can get the token and that token is essential how do i impelement the browser tab and dee...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600520", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why is there a memory leak in this program and how can I solve it, given the constraints (using malloc and free for objects containing std::string)? This is a minimal working example for the problem I am facing in my real code. #include <iostream> namespace Test1 { static const std::string MSG1="Something reall...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600524", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "50" }
Q: How to use Azure VM Image in different regions I created Azure Image Galery and Image definition inside it in order to control versioning of my VMs. It is possible to use those images across different subscriptions, but I found that it is impossible to use it in different regions from where the definition was create...
{ "language": "en", "url": "https://stackoverflow.com/questions/75600528", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }