text
string
meta
dict
Q: How to set google firebase functions region in nuxt 3? I have a nuxt 3 app and im deploying it via firebase and firebase functions, im using as per their docs to create a build: NUXT_PRESET=firebase npm run build and then to deploy firebase deploy This is all great and working fine but ive noticed that the firebas...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619274", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: ConnectedDevice returns undefined I'm trying to use the connectedDevice that has been initialized in a file that has the connecToDevice function, however, when I try calling the connectedDevice in another file it's returned undefined. I've tried using a useEffect to re-rendered the component in which I want to use c...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619276", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: ASP.NET MVC - Bypass Login and use Windows Username to Authenticate User and Authorize Sections with their Stored DB Roles I have created an asp.net mvc web application and added a login using this tutorial: https://www.c-sharpcorner.com/UploadFile/asmabegam/Asp-Net-mvc-5-security-and-creating-user-role/ The applica...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619277", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Using LLVM pass, I would like to extract how many times each loop in a program would run (trip count). Or Is there any better way to get this info? I am just trying out a simple pass to print loop information inside a code. For instance, I am trying to print out the SE.getBackedgeTakenCount(L) for each loop. However...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619278", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Stuck on Telegram bot error - seeking advice Traceback (most recent call last): File "main.py", line 2, in from telegram.ext import Updater, CommandHandler, MessageHandler, Filters ImportError: cannot import name 'Filters' from 'telegram.ext' I have tried reinstalling the telegram module and checking the version o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619287", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Syntax error sending upload file to amazon s3 fromString (Spring Boot) I have a product controller and my goal is to receive an upload image, save the url in my database and send the image to amazonS3. In my settings I have the S3Client configuration like this: package com.api.business_manager_api.Config; import org...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619289", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Can I perform a https request with curl and a pfx? It is possible to perform a curl request to a website under https if all I have is a pfx? When I run: curl -k -v --insecure --cert client.pem:1234 --key privkey.pem "https://testurl/service/RESTService/GetCustomers" I get the error: failed to import cert file 0x80...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619291", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Mongodb aggregation conditionally match array I have a document with an array field named items. This is an optional field and not always set within the document. So this could either be undefined, empty array, or contain an array of id numbers [1, 2, 3]. What I'm trying to do is return all documents if the items ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619292", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SauceLabs prerun is not working as expected in my project we planned to implement SauceLabs prerun setting for VM and we created a host file also for that, but when we passing that host file in to executable object it is failing because of prerun issue host file Filename: akamai-host-file (no file extension added) @...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619293", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Invalid comparison between dtype=datetime64[ns, America/Chicago] and datetime64 Is there a difference in dtype=datetime64[ns, America/Chicago] and datetime64? I'm not sure why the follow code will not work: start1 = np.datetime64('2023-01-29 17:00:00') end1 = np.datetime64('2023-01-30 16:00:00') df = df.loc[(df['ti...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619294", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Swift/UIKit Push to new View Controller when clicked inside a UILabel I have a signup page in my app and I want users to be able to view terms of service (TermsOfServiceViewController) and privacy policy (PrivacyPolicyViewController) when user pressed text inside my UILabel. My statement is as such: "By checking thi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619296", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: HTML - How to add a search feature to a select dropdown I would like to use a select box in HTML with a dropdown containing many names that the user can type in to search for a name. I do not want the user to add anything that doesn't already exist in the list, just select from the list, but instead of scrolling thr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619297", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to deal with a single instance event in a mixed integer linear programming? Let's say that a you have x=(1,2,...,10) machines at t=0(beginning of operation). You are planning to buy a certain number of machines and/or to salvage some of your preexisting machines. Given t=(0,1,2,...,100) as the operation time. Co...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619299", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Who to use pass args to to python argparse in docker compose I'm building a web crawler with selenium and I want to deploy it with selenium. Crawler is composed of two part, a chromedriver instance running in one container and my code who connect to running instance to process data. After trying to find a way to pas...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619301", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: React: how to prevent infinite loop and redirect to the just created resource The code attached causes an infinite redirect loop (maybe due the fact I call this.setState() inside onCreateMyResource()?). My goal is to redirect the browser to the URL of the just created resource. I'm using "react-router-dom": "^6.8.1"...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619308", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Why javascript multiplication is wrong? In javascript, this expression returns false: (18392.19 * 10 * 10) === (18392.19 * 100) Why?
{ "language": "en", "url": "https://stackoverflow.com/questions/75619310", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Count total of words using group by I want to count the total number of words in text group by id: df <- data.frame(id=rep(1:3, 2), tx=c("test one. test two", "this is a test. again test", "test two", "test three times", "test, in a future time point", "test has completed, at t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619311", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to get focus to selected window if it exists in WPF C# I have application with "About" button. When it is clicked, I want to open a new window with credits. But If the window is already open, I want only bring it to focus (first plan), instead of opening next instance. The first part, to prevent opening multiple...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619317", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Pandas date function Given a Pandas DataFrame df with a column 'Date' that contains timestamps, write a Python function to select all rows where the date is between '2023-01-01' and '2023-01-31'. This is the data I generated df12=pd.DataFrame(data=['2023-01-02 09:15:00','2023-03-02 15:25:02','2023-03-02 15:45:00','2...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619318", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Date range selection when graphing a scatter plot Here is the following code for my scatter plot. The date are ranges from 1-01-2015 to 03-01-2022. How can I adjust the code to only view specific date ranges such as 01-01-2015 to 12-30-2015? import matplotlib.pyplot as plt import numpy as np import pandas as pd df ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619324", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to apply a function to multiple PySpark dataframes in parallel I'm kinda new to pyspark and I'm trying to construct a datawarehouse with it. So baiscally I've a lot o dataframes where I need to apply the same function to all of them. I made a simple version of my code to you to undestand what I mean. My simple c...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619328", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: terraform azure dynamic rule creation based on map I'm trying to get more flexible in my NSG rule creation. I tried to handle the following map: Backend = { subnet_postfix = "128.0/17" add_nsg = true rules = [ { name = "Rule1" direction = "Outbound"...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619329", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Restructure multidimensional $_POST array before storing in the database I have a somewhat complex nested repeater in WordPress (using ACF), and I am building a frontend form that lets users submit posts. Let's say I have a repeater field (just an array) Spaces, and another nested repeater field Walls. A user can ad...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619330", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: flutter_image_compress constantly fails on iPad FlutterImageCompress.compressAndGetFile from flutter_image_compress never succeeds to write the output to targetPath on any iPad. The exact same code works on iPhone and all Android phone and tablet. Here is the function that doesn't run as expected: Future<File?> _c...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619332", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Set search path in postgresql in a spring boot application How to set search path in postgresql to switch to new schema based on tenant id ? I want to resolve the tenant at runtime and redirect the request to specific schema. The application I am developing is a spring boot application with Data JPA. Refer here to p...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619334", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Pandas -- reset a group by counter This solution does not work for me Count cumulative true Value I explicitly need to group by id and consecBool; the above assumes a homogenous data set with no distinct groups How can I reset my cumsum counter when a boolean column is False? df = pd.DataFrame({'id': [1, 1, 1, 1, 1,...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619335", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to use xpath to find a word which has a padding of 10px before it I have a hierarchy data like below in a pdf: Fruit <10PX SPACE>Banana How do I use xpath to find there is word like 'Banana' which has a 10px padding before it String pattern = "Banana"; WebDriver dr = getCurrentWebDriver(); elements = dr.find...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619336", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: any sugestions on how to manage wal archives on primary We have a postgres cluster database with primary and 2 standbys. Each of the environment has its own wal_archive folder. The archive_cleanup_command is configured on our standbys so the cleanup is taken care of. With regards to primary database, if we don't hav...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619339", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Error "Uncaught TypeError: Cannot read properties of undefined (reading 'value')" while building a simple tic tac toe game using react I'm trying to create an array to store value of square each time I click. Then I can use that array to implement logic of the game. But each time I click on the square it rerender an...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619344", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: FirebaseError not being caught by try/catch block in signInWithEmailAndPassword I'm building a react app using Firebase for authentication, and I'm trying to use the signInWithEmailAndPassword method to log in a user. The login process works correctly when the email and password are correct, but when the password is...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619348", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to use Uni and AsyncFile in Quarkus for serve a preview of large file? How to use Uni and AsyncFile in Quarkus for serve a preview of a large file as, for example, a video/mp4 file, while reading it from minio? I tried to implement this with Response class, following this, but without success: @GET @Path...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619349", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Vaadin: different behaviour with css while styling grid cell and combo box item I am using V14, I have a simple test css file like: .foobar { color: red; } on my test view class I import it with: @CssImport(value="./styles/test.css") and a Grid where I create a column like: grid.addColumn(TemplateRendere...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619356", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Yarn dev not working in Next.js 13: Using wasm build of next-swc I am developing a next.js 13 app with app experimental feature enabled. You can checkout the project here. On my one device, yarn dev is running properly, but on device, I am having a problem starting the development server, as shown below: $ yarn de...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619358", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How can i change the StatelessWidget class into setState so that my icons refresh when clicked? I am having trouble changing the class so that my icons without reloading the app will change. The problem is that I don't know how to properly change the StateWidget class to setState, because without it I don't know how...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619359", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Change scrapy settings via api I use scrapy and scrapyd and send some custom settings via api (with Postman software). Photo of the request: For example, I send the value of start_urls through api and it works correctly. Now the problem is that I cannot apply the settings that I send through the api in my crawl. Fo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619360", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: CDK VPC SubnetSelection from an imported subnet names I'm working on defining a load balancer that is attached to a defined set of VPC subnets. The list of VPC subnets to attach to is configurable in the code. The VPC stack and appropriate subnets are pre-existing in the account, and the subnetIds are exported there...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619363", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: find inside json and remove object {"fgdsgd":"11111","dsadsadsa":["ip","userAgent"],"fdsfsd":{"sadsdsaasd":false,"dates":null},"pxg":{"trackingIds":[{"active":1,"pixelId":"12"},{"active":1,"pixelId":"123"}]}} how can I search in this JSON the key pixelId? if=12 than remove the object it's in.. so I will get {"fgdsg...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619364", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I have set a scheduler in pipeline. How to check if it is working? In Client Log not showing Event Type In FusionEzee, I have set a scheduler in pipeline. How to check if it is working? In project logging not showing event type. [enter image description here](https://i.stack.imgur.com/xJCpt.png) A: Based on your qu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619365", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Jackson deserialization classes that can be different types from XSD choice I have the following Deserializer: @Override public PrivateInstance deserialize( final JsonParser jsonParser, final DeserializationContext deserializationContext) throws IOException { ObjectMapper mapper = (ObjectMa...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619366", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Render HTML In Body of Wordpress Post Via Rest API I would like to send some HTML as part of the text of a given post via the Wordpress API and have it rendered in the post. Currently, I am simply concatenating raw escaped html to the raw text of the content of the post like: postStr := "<some escaped html>" + myPos...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619367", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Creating admin page for my e-commerce website How can I add two or more different interfaces one for admin and other for user for my e-commerce website? I only know Php as a back-end language and HTML, CSS, JS for front-end languages. I didn't try yet, but I expect that the admin page will have advanced control sett...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619368", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: How to run a function using SU or the whole entire app in Superuser - kivy I'm making a kivy app in where i'm scanning the ipv4, using arp, now for this superuser is required. But i'm struggling to either run the function via super user or the whole entire app, whatever works. Thanks for the help. What i tried: cmd ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619369", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why don't have a match while comparing two strings - PowerShell I have an array that holds list of strings $result.packagename holds a list of names like PublisherServiceOnIDU LogicalShadowDatabase ManagementConsoleClient ProbeDatabase FilewalkProbeWithoutProbeSvc ADWalkProbeWithoutProbeSvc I want to find a mat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619371", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: VueJS v3 - npm run dev ERROR - failed to log config vite.config.js I've got a problem while running npm run dev after initializing vue application and installing all modules. Here is the error: failed to load config from <Project directory>\vite.config.js error when starting dev server: Error: ENOENT: no such file ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619372", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: error mounting "/PATH/nginx/nginx.conf" to rootfs at "/etc/nginx/conf.d/default.conf": mount /PATH/nginx/nginx.conf:/etc/nginx -- DOCKER Error Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error m...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619373", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How can I enable DLC for Ruby on Rails Application on CircleCi I have a ruby on rails application and I am using circleci tool for deployment. When I merged some features to test branch circle start to build a docker container. After building the docker container, it pushes to AWS ECR. But every time rails assets:pr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619376", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Celery beat, dynamic rescheduling Is it possible to add a task to the celery beat schedule without restarting celerybeat? The methods app.conf.beat_schedule and @app.on_after_configure.connect only trigger at initial startup and form the schedule celery beat will work with. Can a task be added while the process is r...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619377", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Python Script to load JSON file and save values to variables Hello I have this code to load a JSON file and I want to pass values to variables: with open('C:/files/response.json') as json_file: data = json.load(json_file) for item in data: if 'XMLRESPONSE' in item: property_values.append(item['IT...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619381", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: @Query param shows an error while using pagination in spring boot // Dao Layer @Query(value = "select id,sku,name,description,unit_price,image_url,active,units_in_stock,date_created,last_updated,category_id,image from product_bkp where category_id=?1", nativeQuery = true) public Page<Product> findProductListByCatego...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619383", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How can I send in a variable a local image from my backend to my php front.blade with html? I am programming an email and I need to send an image to my front, I send it from a variable because I have a condition that changes the image that the variable contains. This is the condition code $countGWS = substr_count($e...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619386", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Convert Column Letter to Column Number in vb.net The company I work for has a lot of legacy programs that I either use and/ or maintain. Some are written in VBA, some in vbScript, and some on VB.net. I am, overtime, cleaning up a lot of the code. One thing I am trying to clean up now is in this vb.net application...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619387", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: How can I make a NSView move NSWindow? I want a nsview be able to move window with this code: import Cocoa class ViewController: NSViewController { override func viewWillAppear() { self.view.window?.isMovableByWindowBackground = true } override func viewDidLoad() { super.viewDi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619388", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to Deploy Theme Changes Using Ghost CLI? How can I use the Ghost CLI to deploy my theme changes to my live production site? Is this possible? What is the most efficient way to do this?
{ "language": "en", "url": "https://stackoverflow.com/questions/75619389", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How does Redis replica keep themselves updated with the data? When a redis replica is fully caught up with the master, and a new write happens on the master, how does this new data arrive in the replica? Do replicas constantly poll for new data? Or master sends the data to the replica as a push mechanism? A: Docume...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619391", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Google App Script .getDisplayValue() not getting some displayed values when MATCH of IMPORTRANGE range is used I've noticed that range.getDisplayValues() is not getting some of my values that are obviously displayed and visible in the cells. This is what I have done: * *have a sheet (#1) that is an IMPORTRANGE() ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619394", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What parts ASAuthorizationAppleIDCredential.user consist of? Value of this property consist of three parts devided by points. What is meaning of each part? I tried search information in Apple documentation and WWDC video, but can't find what user identifier consist of.
{ "language": "en", "url": "https://stackoverflow.com/questions/75619395", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Don't understand how to print the search path of a skip list I am busy with an assignment where I am expected to print out(display) all the nodes that the skip list visited when searchin for a specific element. The code that follows is my search algorithm. I am not sure where to put the output lines to show the sear...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619397", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why is Haversine not working for me with large dataset? I am trying to find the nearest underground station given a point using the Haversine formula implementation in Python, but I get a KeyError, which i think means that the key is not in the dictionaries. However, when i reduce the data to a minimal size, the Hav...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619398", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: I get a 500 error when using input type="file", what could be the reason? [enter image description here](https://i.stack.imgur.com/kKBJv.png) While there is no problem in using text, password etc, it gives me an error when using file. Solving the problem!
{ "language": "en", "url": "https://stackoverflow.com/questions/75619399", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Regex to find 2 or more multi-word strings in entire document (either string first) I need some help with how to make a regex that matches only if 2 or more multi-word strings exist anywhere in the entire document, and any of the strings could appear first or last or in any order in the document. I have found tons o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619400", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to fix _CastError (Null check operator used on a null value) -Flutter (Dart) I am trying to get the user's profile picture, name and email but I keep on getting the _CastError (Null check operator used on a null value) error. This is where I get my error: final user = FirebaseAuth.instance.currentUser!;//at the ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619404", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Eclipse data size Can anybody help me in question about setting of data size model in Eclipse?, please In process of compiler I have got the following errors: additional relocation overflows omitted from output (from heap4.c) relocation truncated to fit: R_MIPS_GPREL16 agains 'no symbol' (from heap4.c) small-data s...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619405", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How do i fix "unassigned variable instance_create referenced" in Gamermaker newest version So I am getting an error message that says "unassigned variable instance_create referenced" I am not sure why I get it but I have tried to fix it but with no luck, does anyone know what can cause this? Here is my code, it is m...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619409", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Contact form isn't sending emails. I'm trying to find where I would change that When submit is clicked, it errors and doesn't send. trying to change the email settings or even see where the form points to. I didn't write this but am trying to understand it to help out a friend. I've researched some but I feel this i...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619410", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Inconsistent flow duration times I have a flow that has been running as-is for several months. During this time, I've noticed that there are times when the duration sees a considerable jump. In some cases, I get notifications that it has also failed or is being throttled. Here's an example showing that it can run fi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619412", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: TestBed.configureTestingModule throws injector of null error using jest I have a project that was on jasmine, and I'm trying to migrate to jest. All I changed was the jasmine.createSpy to jest.fn, so I suspect it's something with my configuration. Here is my old spec.ts file with jasmine: myServiceMock= { ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619414", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Trying to load Active Directory Users into a database Need to create an application where you type in a samaccount name and it loads the user info into a grid that is then passed and stored into a sql database. This is my first actually project so I am having some trouble with it, if any can help or point me in the ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619416", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Fillpdf function in python not working: Hidden dependencies? I used the fillpdf function Tyler Houssian describes in this Stackoverflow-Answer. I produced a working code at home. Unfortunately the fillpdf function at the end of the script doesn't flatten the pdfs at my work computer although the Python version and t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619420", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Node Js async & Await Issue with SQLite3 I have an issue with Nodejs & SQLite 3 I think its regrading the await and async I have a customized module to make some queries/inserts but when I call the query function the await is not working fine with me. SQLite Module Js File: const sqliteDB = require('sqlite3').verbos...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619421", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Invalid delete operation when using parsedDocumentContext I am using a piece of code like this val jsonString = "{\"commandIssuerUserId\":\"a50ce700-c7f9-412b-8a53-23387bd0f26e\",\"orgId\":\"2c3c9f9e-73d9-4460-a668-047162ff1bac\",\"propertyType\":\"mf.group\",\"timestamp\":\"2023-03-02T18:09:13.411498Z\",\"operation...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619422", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SQL alchemy not running sprocs despite 'finding them' I have a simple SPROC in a postgres SQL V14 database that does the following: CREATE PROCEDURE testSProc() LANGUAGE SQL AS $$ INSERT INTO "activePairs" ("SYMBOL") VALUES ('Hello'); $$; I am trying to run this SPROC from SQL alchemy in python using: with engine.co...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619423", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to transform a nested case class to another nested case which has one extra field inside the nested class using chimney in scala package a final case class mySettings(multicache: myCacheSetting, defaultTtlHours: Duration) final case class myCacheSetting( weightedRoundrobin: InternalWRRMultiCacheSetting, ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619424", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why won't the if (argv[1] == "info") work, the command line argument is info The char * argv[] defined in main function gets the command line input. However, the if doesn't do anything. My code. I tried to add pointers and I expected the the code within the if loop to be run.
{ "language": "en", "url": "https://stackoverflow.com/questions/75619426", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: Created an accounting API to 3-way match and merge pdfs and automatically print invoices and packing slips if matched my code looks good and everything seems to be working but it won't connect. I'm getting ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refuse...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619434", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why is there a loop at the end of predict_tabular_classification_sample when only one dict to provide? I am using the function from GoogleAPI Python which provides predict_tabular_classification_sample() I have multiple dicts with features in a list. However, I get the error message to provide a dictionary, but the ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619436", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Stata memory behavior Can anyone explain me how does stata memory work? It seems that when I am handling large datasets in stata, often if my local computer runs out of memory, stata is able to use the hard drive to compensate (i.e. I see a lot of i/o activity when running functions on stata that should not require ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619439", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Osmdroid: How can I make my map not center by a marker? I'm making an app which contains a map with multiple markers that always move. The number of markers is not constant and depends on data from Firebase live database. I have a loop that creates the needed amount of markers on coordinates from database and delete...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619440", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Nuget package restore not making a local ../packages folder I think something is jacked up with my Nuget where a package restore isn't restoring properly So my global cache seems to have the stuff %userprofile%.nuget\packages But in a new repo I download that has a packages.config for like <package id="Owin" version...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619442", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: how to setup cache for OpenML I am following the instructions from https://docs.openml.org/Python-guide/ and created the ~/.openml/config with apikey=f1c3f9de75e-bla-bla cachedir=~/.openml/cache but when I try import openml from sklearn import neighbors openml.config.start_using_configuration_for_example() task = o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619444", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why can't i get the value of the scrollWidth property? i'm a student who's learning a little about the gsap library to make some animation for my portfolio project. It's my first time using it and i don't really have strong Javascript basics... I want to re-create something like this CodePen which I made from some o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619445", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to match a column value of one Pandas DataFrame in a DataFrame (lookup table) and return an offset cumsum of a column I want to populate columns of Data_One_df (input table) by matching the row value of the 'Time' column to the 'Time' column in Data_Tow_df (lookup table) and returning the offset (1 row down) of ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619450", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: no viable conversion from returned value of type 'vector' to function return type 'int' Basically, I was trying to solve a vector problem, and I found the problem: Line 19: Char 10: error: no viable conversion from returned value of type 'vector<char>' to function return type 'Int' return char2; ^~~~~` I...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619451", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-6" }
Q: Adding postional (well Id) specific data to a table (based on a 96 well plate) I'm trying to work with a large data set, that contains csv files that have been exported from graphpad. I need to eventually pivot/meld these tables into a long skinny format, but first I need to assign a wellID to each number. (Ignorin...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619452", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to scale a set of different-sized images the same amount to fit one container? I have multiple images of different sizes to display within one container. I want the images to all shrink the same percentage so that the widest one doesn't exceed the width of the container. For example: <div class="container"> ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619453", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why is the font size printed too large in a PDF file My app generates a pdf file with the data from a list view. I don't understand why the pdf is printed with font size 17, although the font size is 12. I almost despair. Please help me. I'm new to app development I just can't find the right help I've tried everythi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619454", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Adding Label to Gmail sent from Nodemailer with GmailAPI I am using Gmail API, with nodemailer to send an automated email to unread threads. I want to add a label of AutoResponse in Gamil so that the replied mails appear with that labels. Here is the code for sending the mail const checkForNewMessages = () => { ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619455", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to test awswrangler with local data I am working with awswrangler to execute athena queries and transform it with pandas. I want to test my code in local without any actual aws instance. Is there a way to mock aws services or other ways to work with awswrangler in local ?
{ "language": "en", "url": "https://stackoverflow.com/questions/75619456", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: VBA in Excel to find free appointment in Outlook and display in a label Ok so my code has grown legs and I can't seem to now work out what to do. I want to search for free appointment spaces in my outlook calendar and (eventually) pre-write an email. For now I just want to print my next free 1 hour slot (within my w...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619457", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Use exec provider in asnible plugin I'm triying a way to use openssh-bastion-host.node-executor and openssh-bastion-host.file-copier with ansible plugin generated inventory. In a first try, add a node-executor and file-copier with node enhancer. Host are showed in rdeck screen nodes with these two new attributes nod...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619463", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How change the color of text bar like the color of the bar? I have the following figure: I want to change the color of text like the color of its bar, for example 100 => blue, 83.3 => red ...etc. Also I want to text appear vertical not horizontal. This is the code: for k1 = 1:4 ctr(k1,:) = bsxfun(@plus, Bar(k1)...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619465", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Prevent all the users from creating the subscription directly under the Azure Tenant level I'm trying to write a custom policy to prevent all kind of users from creating the subscription directly under the Tenant level. Rather, the subscriptions should only be created under the Management group level. Tried multiple...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619470", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SSL incomplete response (Python) I'm trying to recive data from an API through ssl (the only allowed method), the dimension of "response" changes as the amount ("n_data") of requested data, so the socket buffer size is increased as the increment of data. When I decode the response I find that it is incomplete (with ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619471", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Trigger another Jenkins job multiple times Using a Jenkins 2.375.2 pipeline job I tried to create a job that batches another job. It takes a batch count and triggers the other job with parameters that many times. The other job queues itself with lockable resources. The goal is to batch up a user-specified number of ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619473", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Print (or print preview) of multiple specified hidden sheets new to this site, I hope someone can assist me with a solution. Any help would be greatly appreciated. I have a workbook with 1 sheet/tab that will always be visible (input sheet) that is for user inputs. This is where I will have form control buttons to a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619474", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SSIS Data Flow Task from a PostgreSQL Server to a Oracle DB too slow using Ado Net I am using SSIS to load around 100 tables and some oh them have around 30M rows, from a PostsgreSQL server to a Oracle DB. Im using a Data Flow Task from an ADO NET Source to a ADO NET Destination. And they are taking too much time to...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619475", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Proper Approach for Outlier Detection at Tail End of Time Series using tsoutliers The R package tsoutliers provides a clean and clear approach for identifying outliers in some Time Series data. For example on his popular blog post Rob J Hyndman gives an example applied to the gold data set where he uses tsoutliers t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619476", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to properly describe events in Backbone views with JSdoc? I am describing JavaScript code that uses the Backbone framework. I am wondering how to document events that are declared in my views. Let's say I have a class with this events: define([], function(Backbone){ let myView = Backbone.View.extend( model...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619478", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Build flutter problem when trying to test BACK4app : Error :vsync: and const AnimatedSize( Back4app ) My problem is the following, I am trying to integrate BACK4APP as a database to my flutter app project with this code: void main() async { //binding WidgetsFlutterBinding.ensureInitialized; //SetupBack4app Parse...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619482", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Where namespace reside in kubernetes architecture I am confused that where namespace comes in k8s architecture? I mean it is part of cluster itself or inside worker node or in master node (Control panel). So there is one k8s cluster, inside the cluster one control panel and multiple worker nodes are there. Now quest...
{ "language": "en", "url": "https://stackoverflow.com/questions/75619484", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: why this message appear when run flutter when I run android flutter appears This problem Exception: [!] Your app is using an unsupported Gradle project. To fix this problem, create a new project by running flutter create -t app <app-directory> and then move the dart code, assets and pubspec.yaml to the new project....
{ "language": "en", "url": "https://stackoverflow.com/questions/75619486", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }