text
string
meta
dict
Q: how to select this css selector in scss file [_nghost-lqr-c142] .tabset[_ngcontent-lqr-c142] .tab[_ngcontent-lqr-c142] a[_ngcontent-lqr-c142] {} <nb-tabset #tabset> <nb-tab *ngFor="let v of selectedVersion" [active]="v" class="hide-title"> <nb-accordion> <nb-accordion-item *ngIf="v.feature.length" [exp...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602335", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Values in my prediction changes after converting from DataFrame to CSV I am using the predict_proba() function to get the class probabilities. Down below are two pictures: first one is the values for the first 5 rows of the output from predict_proba() in dataframe format and the second one is after I convert the dat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602337", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to pass a shiny object into HTML file using JavaScript I want to display the user name of the user in each tab. The Tab design is done using HTML and displayed in Shiny using the includeHTML() function. The user's name should be displayed in the same tab panel rendered using an HTML file. I want to pass the user...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602338", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Making a global server connection in vue 3 I want to make a connection to typesense server and pass the searchClient to all my widgets in other components import TypesenseInstantSearchAdapter from "typesense-instantsearch-adapter"; const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({ serve...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602340", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SQL OpenJson - parse json to table Trying to get JSON string as table in SQL . JSON is sent dynamically and based on that need to form the SQL Table querying the JSON dynamically as the JSON structure may vary for each request Am trying to get key element as column name and value field as value like below with hard ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602342", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to submit a V2 Google text-to-speech request via php? The below code does just show a NULL instead of the mp3 data. It is missing the actual submit of the request I guess. Unfortunately, all documentation is based on V1 of the api. $synthesizeSpeechRequest = new SynthesizeSpeechRequest(); $synthesizeSpeechReques...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602344", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: WordPress Page Slug with URL custom template So I want to create a custom template file for my user profile page something like this URL http://localhost/wordpress/user/username. Here you can see I have created a new page in Admin with this permalink user and I have created a new file in my theme directory at theme/...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602346", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to create solid background with rounded corners under rows only in DataGrid in WPF I wish to make datagrid with solid background with rounded corners under rows only. Header row must be without background. I tried several options to reach this by (row / header / datagrid) styles, but it wasn't successfull. I gue...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602347", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Alternatives of DRBD on Oracle Linux 8 I need a new alternantive of DRBD on Oracle linux 8 because DRBD will not be distributed anymore on OL8 im looking for an alternatives of DRBD on Oracle Linux 8. Im searching something similar but working on OL8 because Ceph is not distributed anymore on OL8. If you know simila...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602349", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Problems with response snapshot of firebase functions exports.getCompanies = app.https.onRequest((req, res) => { const starCountRef = app.database.ref("company/"); starCountRef.onCreate((snapshot, context) => { res.send(snapshot.val()); }); }); exports.getCompanies = app.https.onRequest((req, res) => ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602350", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to convert these Days into integers? one question. I have a list under a column that looks like this: `[<36 * Days>, <23 * Days>] `` I would like to get only the values 36 and 23 as integers from this list (so that I can get the mean value from these two numbers for other purposes). I have tried methods like thi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602351", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: PostgreSQL initialization with DDL commands from a function I asked this earlier question on the best approaches to initialize a PostgreSQL database with AWS RDS inside a VPC. My original question related to the typical commands described in Managing PostgreSQL users and roles which include recommendations for creat...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602353", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to share MongoEngine document schema between projects? What are the best practices for sharing the same mongoengine document schema between different projects? For example, what if I have a data collection project that collects the data and uploads to MongoDB and then I want to display that data in web so I have...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602356", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Use columns of dataframe as y-values in plotly dash I want to use some (but not all) columns (['V+', 'V-', 'I_tube', 'I_heat']) of a dataframe to be plotted against 'time'. When I hard-code the columns like y = I_heat then it works, but I don't know how to make it reactive so that y will change according to the user...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602360", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Efficiently achieve inference on CPU and GPU with tensorflow I want my model to run on CPU or GPU, depanding on the parameter i give to my program Here is a piece of code for it if flag == 1: with tf.device('/GPU:0'): start_time = time.time() result = test_model.predict(prepare_datase...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602362", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Create a Contingency table on Shared Visitors I need to create a contingency table based on a location and values should be frequency of visits based on a persons checkin. Below is a sample problem with data: a = [["A", "Buidling 12", 1], ["A", "Building 11", 3], ["A", "Building 12", 1], ["A", "Building 11", 3], ["B...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602364", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: importing svg and attaching event handlers in Svelte have an SVG file which I've imported as a component in my +page.svelte like this: import squares from '$lib/images/asset1.svg'; The SVG that's imported looks like this: <svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230.29 10...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602365", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to manage mysql database versioning to keep track of changes? Can someone tell me the best way to manage database versioning to keep track of changes? We have huge table, store procedure and function. We want to keep track of changes in database definition. Just like we did in code using git. A: Normally you ca...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602366", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Issue related to Kafka Transaction I have written a Kafka Consumer and Producer. The producer is a transacted producer and the consumer is configured with isolation.level as read_commited. But eventually, after sometime, the consumer is not able to read the data. It does not happen suddenly. It happens eventually. W...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602367", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Inability to Upload File(s) in Release Mode on Firebase Storage I'm using flavors in my codebase together with environment variables (.env). While working on debug mode, I'm able to upload files to FirebaseStorage, but once the app is deploy on either TestFlight (for iOS) or Internal Testing (android), uploading of ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602370", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to add field names and values of a json object into List using jsonNode I have an expected json file as below. It is a nested object { "contact_info": [{ "contact_id": "Contact_001", "contact_status": { "exam_status": 0, "term_list": [{ "term_code": 110...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602371", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Web App for music player with pitch control and playback audio rate We're going to build a web music player (inc - video) app which has additional controls like pitch & playback controls. Is anybody worked in this before? or Having any Idea about it, please advice ! I tried open sources like tone.js & Jplayer. We're...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602373", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: I can't print a string form a member of a class in c++ I have done a class who contains itself a array of an other class. When I edit one member of this other class and want to print it, it print something not interpretable. There is the class in file.hpp: class channel { char name[50]; public: ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602375", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Im trying to make a console game can someone correct my code? 1- when i "kill" an enimy dice my turn duplicate idk why 2- when i finish the game, the game crash and i dont see who is the winer 3- O jogo deve acabar quando o taboleiro estiver totalmente preenchido the game: ing= Knucklebones pt= jogo da bogalha its a...
{ "language": "pt", "url": "https://stackoverflow.com/questions/75602376", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-3" }
Q: How to I assign a value to a raw pointer at the module level in Rust? If I have a raw pointer that is defined at the module level, how do I assign another value to it? struct SomeStruct { field: u8, } // create a module level null raw pointer static mut MODLEVELRAWPOINTER: *mut SomeStruct = std::ptr::null_mut::...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602378", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Dockerized Flask app cannot connect to MySQL I am trying to setup a docker-compose file that creates 2 services i.e., the MySQL 8 service and a Flask app written python. Since I am using Mac M1, I am forced to use arm64v8/mysql The structure of the docker-compose file looks similar to this: networks: app_network: ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602385", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: spring security ReactiveAuthenticationManager can't put Mono Pass to ReactiveAuthorizationManager first: public class LambAuthManager implements ReactiveAuthenticationManager { @Override public Mono<Authentication> authenticate(Authentication authentication) { authentication.setAuthenticated(true)...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602397", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Wordfence plugin isn't installed though it's blocking the admin-ajax (403 forbidden) I've one website created using Wordpress. It was working fine until last 2 days, but it's started blocking the website from login into the admin panel for few users and also it's blocking admin-ajax for jupiter x theme who is able t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602398", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Image processing within range in Hugo I'm trying to apply some image processing to an image I get from page's metadata. I have a range of posts and this works: {{ range sort (where .Site.Pages ".Params.layout" "playlist") ".Params.sort" }} <div class="w-full max-w-sm bg-gray-900 hover:bg-brand border border-gray...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602399", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Read JSON attributes using a loop? I wrote the following code, which works finely: document.getElementById('firstName').value = persons[checkboxId].firstName; document.getElementById('lastName').value = persons[checkboxId].lastName; document.getElementById('street').value = persons[checkboxId].street; ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602400", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: My website deploys fine on desktop, but only renders the background color on smaller devices. How do I fix it? I created a portfolio website and deployed it on Netlify. Here's the GitHub repo: https://github.com/AnukratiMehta/portfolio-website.git Here's the Netlify address: https://anukratimehta.netlify.app The web...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602401", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Dynamically set html's lang attribute still pops up wrong language in Chrome's "Translate this page" We built an Angular web app that, at initial loading, does a HTTP-request to an API to determine the available languages. Then it uses the first language to set the <html>'s lang-attribute, so, for example, it looks ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602404", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unnecessary domain in type message of ntlm authentication in requests-ntlm If use "requests-ntlm==1.2.0" the Type 3 message of the final step in ntlm authentication contains "DOMAIN" information but user don't set domain in user name, like "user" not "domain\user". If use "pywin32==305" authentication complete succe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602405", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: I can't upload images in symfony I tried to add Image files in my symfony add method but I've having this erros even though I enbabled the fileinfo extension in the php.ini file in xampp and when i start the server in the symfony terminal I get a warning about how the filinfo.dll is non existant. symfony page error ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602409", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Pine Script V5 showing first 5 minute OHLC or any bar over period of time e.g last two month or 1 month i am trying to use pinescript to display bars of 5 minutes from first 5 minutes of day i.e 930-935am est. i used following code but it is giving error that Mismatched input ':' expecting ']' my goal is to see only...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602415", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Telegram pump_upp malvare Does anybody found this url on web his forms/code/anywhere? https://t.me/pump_upp I think it is a malware from some browser extension but it seems to appear in Chrome and Edge... This URL is a cryptocurrency telegram group. If you found it, can you give more information about this scam? Whe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602417", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to install Windows android subsystem? (Amazon appstore) I would like to install amazon appstore on my windows 11 but I see requirements error "This app can't work on your device" and link to CPU requirements But my CPU is satisfies requirements (i7-8750H). Virtual Machine Platform feature also enabled. How can ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602418", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: TypeError when applying a function to every element of a nested array I want to vectorize the function apply to an array of arrays in order to avoid the loop. The input array arr is array([array([], dtype=float64), array([0.03, 0.04,])], dtype=object) If I do a loop for a in arr: np.exp(-a) I don'...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602420", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: chart.js line chart with unknown datasets I have found plenty of examples of how to build a Chart.Js line chart with multiple lines over time, but all of these have a fixed number of datasets. What I am trying to do is have the x-axis be days, and the y-axis have multiple integers ... however at the time of developm...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602422", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Need help for creating a k8s cluster using magnum? I am currently using Openstack Yoga version and after following the official documentation https://docs.openstack.org/magnum/yoga/install/launch-instance.html in order to launch a cluster of one master and one worker , only the master node has been created successfu...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602424", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to Retrieve Azure Cost Usage using any Billing API I am trying to build a script to get the daily Azure Cost Usage but haven't found anything yet. If somebody has already worked on this type of issue, will be of great help. Thanks
{ "language": "en", "url": "https://stackoverflow.com/questions/75602425", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Angular Material navbar responsive I would like to create a responsive navbar with angular material. I would like to create something this bootstrap navbar: see bootstrap responsive navbar When the screen size is reduced, I would like it to show the Hamburger Menu, as it allows you to do bootstrap. Which techniques...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602426", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Updating udev rules fails during docker build I'm trying to build my docker image that installs JLink, but when trying to update udev rules it fails. Udev is installed before the part that fails. Docker part that fails: WORKDIR /usr/src/app RUN wget --post-data 'accept_license_agreement=accepted&non_emb_ctr=confirme...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602427", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to edit a component from another library in ReactJS? I am practicing some tests on my React app, the app is listing all user info on cards. I want to add a custom html attribute called "data-selector-id" to a card title "h3" inside the "Card" component imported from another React library. May I have your suggest...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602428", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: WatchOS App using Firebase not working if started via Testflight I'm currently developing a watchOS-only App which uses some Firebase functionality. If I build the App directly on my watch via Xcode everything is working fine. However if I upload it to Apple Store Connect via Product -> Archive and then install it v...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602429", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Change dataframe's aggregation based on two keys and other frequencies and shuffle based on one of the keys I have a dataset with target, company ,dates (daily), year, month.. I want to group my data per month and per company by summing only the target values and keeping year month and the others as is (they will st...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602430", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to check for VBA7 in Office 365/x64? At my job, VBA in Outlook is turned off. I've been using a Excel VBA code to store Outlook attachments. In Windows 10 / Office 365 x64 / OneDrive I can't save the Excel file after adding the code. The section of the code that when I add, the file won't save: #If VBA7 Then ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602432", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Converting & to %26 using htmlspecialchars in the following function I'm unable to get my head around this one. As per the following, if Author name = Simon&Schuster, then it'll add simon&schuster to the URL. Problem is the & character is also part of the search function so putting it in the URL screws things up. Ho...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602433", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to build Skia for Android with SVG support I'm trying to build Skia for Android and followed the documentation here. Eventually I ended up using this configuration: bin/gn gen out/arm64 --args='ndk="../Android/sdk/ndk-bundle" target_cpu="arm64" is_component_build=true is_official_build=false skia_enable_svg=true...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602435", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: CLOCK_WATCHDOG_TIMEOUT error on Windows 10 for eigendecomposition of large matrices (python or matlab) When i run various implementations of the "eig" function on large symmetric matrices (including matlab, np.linalg.eig, np.linalg.eigh, sc.linalg.eig, sc.linalg.eigh), my computer sometimes crashes and gives me a bl...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602440", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: PowerApps form errors with 'Error Code: Out of memory' I have a PowerApps form where it is capturing order details and each order can have many number of items. The Items section is implemented through Gallery. Now let's say when I try to fill out ~100 items for a single order and try to Save/submit the form , it sh...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602441", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Offset a rectangles position to always have a part of it touching the along the circles circumference Hi I have object which I position along the edge of a circle. I have achieved this with the code below. private Point GetPosNew(double degrees, double radius) { double Radains = Deg2Rad(degrees -...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602443", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: VBA Excel Validation: Use of IF-Statements in Formulas I am trying to create the Formula1 string for a validation list in VBA. My goal is to create a drop down list based on a parameter. If I only want the stuff for Person A, then only "Some Stuff" and "Object 3" need to be in that drop down list. Likewise if I onl...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602445", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Add scroll bar to Ckeditor 5 text editor django I am quite new to using django. I want to add a rich text editor to my webapp and I saw a tutorial on how to do so using "django-ckeditor-5". I followed these steps: https://pypi.org/project/django-ckeditor-5/ and the editor works fine and everything however, it keeps ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602446", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Writing htmlhint rules I've just installed htmlhint, and I'm using this .htmlinitrc: { "doctype-first": false } because this project is largely made up of include files, which don't have a DOCTYPE. The problem is that this turns off all the rule checking. Without this rule, I get various other errors reported. Wi...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602447", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: pattern is the topic i am not getting the answer E E D E D C E D C B E D C B A print using for loop public class t3 { public static void main(String[] args) { int n=5; for(int i=1;i<=n;i++){ for(char j='E'-i;j<='E';j++){ System.out.print(j...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602451", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: Trying to put a PHP math result into JavaScript chart I've been trying to figure this out for days. I hope I can explain this clear. I am trying to call up the results of this simple math equation in JavaScript code below: <?php $x=37; $y=15; $z=$x-$y; ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602452", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Read e-mail addresses from appsettings.json and write in a List Unfortunately, I can't manage to load the email addresses in the appsettings.json to the list . What am I doing wrong? IConfiguration config = new ConfigurationBuilder() .AddJsonFile("appsettings.json", false, true) ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602453", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: Firestore document not created with await I am trying to add a document in Firestore but my code isnt working as intended. private val todoCollection = db.collection(TODOS) private val userCollection = db.collection(USERS) suspend fun insertTodo(todoName: String) { withContext(defaultDispatcher) { //defa...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602454", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Hi , I am unable to view Azure explorer with the following error Details of Error : Plug-in com.microsoft.azuretools.azureexplorer was unable to load class com.microsoft.azuretools.azureexplortexter.views.ServiceExplorerView. I tried adding Azure toolkit for eclipse in sts toolkit and able to sign in and select subs...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602457", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Scala Swagger ArraySchema Type mismatch error @Operation( operationId = "GetNamesByUserIds", description = "GET request for geting Names, returns user ids.", parameters = Array( new Parameter( name = "UserIds", description = "UserIds: UUID", in = Paramete...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602459", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Filtering values from a 3D array after condition hopefully I'm missing no answer already given her, but nothing I found seems to fit my problem. I want to filter a 3D-array for certain outlier values (x > .300, x < 3). I have a structure like this here, with 30 slices for each subject with 2 columns for reaction tim...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602460", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to implement prompts for exception information in Jenkins plugin development, such as pop-up prompts In the process of developing the Jenkins plugin, I need to show some information to the user how to implement this function, and the prompt method can be a pop-up window and the top of the window
{ "language": "en", "url": "https://stackoverflow.com/questions/75602462", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Date Range Picker from JPM UI toolkit Reset button does not close the panel When we click on Reset the start and end date get reset but Panel does not close. Is there any way to close the panel when dates are reset ? I have tried with defaultPanel prop but it does not seems to be working There is one onOutsideClick ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602464", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Stats from MACsec I´m trying to capture some information regarding the comunication between 2 computers through a MACsec tunnel, i want to know where the information obtained from the command <ip -s macsec show> comes from, some of them can be found in "/sys/devices/virtual/net/macsec#/statistics" like the packets r...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602468", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How style border in css with background-image without border-generator? I want create border that looks like dashed, but with more spaces between, so I suppose that I need use background-image property with some image. Here is border example:
{ "language": "en", "url": "https://stackoverflow.com/questions/75602469", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Mongoose - how to expire/delete a subdocument? Im trying to expire a subdocument after 30 seconds. Anything I tried so far doesnt do anything. What I tried: const productSchema = new mongoose.Schema({ name: { type: String }, reports: [ReportSchema] }) mongoose.model('Product', productSchema); ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602471", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Java microservice shopping list project I'm writing to request your assistance with writing a code for a shopping list project in Java micro service. I'm a novice coder and I'm having difficulty creating this code on my own. I would greatly appreciate any help you could provide. I believe that with your expertise an...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602473", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-6" }
Q: io.open doesn't throw an error but the script doesn't continue as well This used to work in python2 but doesn't work in python3 encodings = ['utf-8', 'ascii', 'latin1'] for e in encodings: try: fh = io.open(archive_path, 'r', encoding=e) fh.readlines() fh.seek(0) except Exception as e...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602474", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Could not detect a supported production environment I am trying to deploy sveltekit app on fleek, using adapter-auto. and getting the error 2:02:38 PM 03/01/2023: > Using @sveltejs/adapter-auto 2:02:38 PM 03/01/2023: Could not detect a supported production environment. See https://kit.svelte.dev/docs/adapters to lea...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602475", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Python version not finding PyQtGraph module I have been unable to connect Python with PyQtGraph and I can't see where the problem lies and how to solve it. I'm using MacOS Ventura. The version of Python I'm using is 3.11.2. I try to run a program importing pyqtgraph and get an error: ModuleNotFoundError: No module n...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602478", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: search and delete documents with a fast query this query should be able to find all child documents with templateid='{..............} of the "product" folder: /sitecore/content/home/products//[@@templateid='{....}'] Can you help me and improve it so that it is able to delete all documents except those with the fol...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602482", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-4" }
Q: @Valid: Expecting an error message but nothing happens I am using Spring Security 3 with Spring Security 6 and I have a problem with validations. My pom.xml contains the following: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <depe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602485", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to remove empty symbols (epsilons) from grammars I am trying to implement three function. Witch I already did. But I found a problem in my solution that don't cover some cases. For example: S -> Ay A -> C | z C -> x | ε And I don't know how to fix it. make permutations, this function takes a rule and a non-ter...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602487", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Sharing providers across terraform environments I have some terraform scripts to deploy certain resources. My app is a rest api which takes a request, and creates an appropriate folder, and copies all the scripts and initializes an environment dedicated to the requester using -from-module option. The problem I have ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602490", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to build Android custom tab layout I've been digging into TabLayout lately. I'm trying to build this kind of TabLayout: So far I'm having a problem with the indicators: Left aligning all 3 items and how to build that blue custom indicator. Also I'm wondering if it's possible to animate that blue indicator, when...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602491", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: When custom map style is provided, @/react-google-maps/api doesn’t render map, or does with errors Map is working normally but when I pass mapId prop (custom google cloud map styling) it stops rendering tiles and throws error. when I pass mapId in options options = {{ mapId: 'xxxxxxxxxxxxx' }} and in LoadScript ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602494", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Regex product url after change domain The current situation is as follows: * *Ecommerce site on shopify on primary domain mysite.com We are developing a new showcase website only for the brand (developed in wordpress) which must have the primary domain mysite.com and the shop on shopify will have a subdomain shop...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602497", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Jquery select box option function read xml file I have a jquery code that creates a drop down list for me. I would like it to load data from an xml file into the start field. I work in the xslt format and there I have a function with a ready-made link (in select field) for downloading data from an xml file I would l...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602498", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Electron JS - React App. Gpu Cache Creation Failed : -2 && Unable to create cache I am currently creating an application using Electron Js and React. For a week now, I have been searching and testing solutions to my problem (see image) enter image description here. problem Here Somtimes it's this one I have tried ma...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602500", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Curl error connection reset by peer in Laravel I have a problem when I want to call an api which is config in my vendor file, Yesterday that worked and all was fine but now i can't make any call and I have this error "Curl Error, connection reset by peer'. I'm in laravel project and i call my Api with that command :...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602502", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why will my python paths mess up my package import? I installed pyautogui. I try to run this program. import pyautogui print(pyautogui.size()) It doesnt work with: enter image description here This is already strange to me as no2.py is not in .venv so why does it try to run it there: enter image description here I h...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602505", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I get 405 error message when submitting a form using POST method in HTML and JS The add blog HTML page is as below: <form action="/HTML/viewBlog.html" method="post" name="myForm" onsubmit="getData()"> <label class="form-label">Enter Title:</label> <input type="text" class="form-control" name="ti...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602508", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Using Flutter-dotenv for build release I have made a Flutter application that uses flutter_dotenv v5.0.2 and the .env file has API keys stored and API URLs that is private. The app and APIs are working fine in debug mode but when I build a production build and run app-release.apk the API are not working. Do I have t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602509", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Email going to spam I purchased a domain from Bluehost and initially hosted it there. However, I decided to use Tilda Publishing, a website builder, to build my website and changed the A record to point to Tilda. As a result, I am currently experiencing email issues, specifically that all sent emails are being sent ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602513", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Built-in way to name one specific celery task I'm using Celery with Django (and django-db as result backend). I know that it's possible to give names to registered tasks using @app.task(name='My Task') but that's only like categorizing. Assume uploading and processing a file "batch-210520.json". I want to be able to...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602514", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Symfony 6 - How to add captcha to authentication and catch errors I created custom authenticator: <?php namespace App\Security; use App\Service\CaptchaService; use Doctrine\ORM\EntityManagerInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602515", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unable to use predict function I am having an issue running predictions with multiple iv's. I have 3 Iv's and co efficient table from them but I am not sure what to input into the formula, the coefficients table is as follows, and i am looking to predict variables tempo slow, gender male and Stroop hard, I have curr...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602520", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Sending packets from Pktgen to UDP socket with specified destination port Problem I'm trying to send data packets from the traffic generator Pktgen to an UDP socket I have implemented so that it will forward the packets back to their source. The problem I have run into is that I cannot find any way of sending data p...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602521", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: ASP.NET Core Web API that calls web APIs via client credential flow - MSAL.NET or Microsoft.Identity.Web? Going to have a web api that calls another web api requiring the OAuth client credential flow. The web api does not need authentication. Should I use MSAL.NET instead of Microsoft.Identity.Web in this case? I ha...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602526", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Error instantiating servlet class 'com.telusko.AddServlet' I am trying to run my app on tomcat server. In web.xml, I have given the correct classname for my servlet which resides in the package com.telusko Still, it says error instatiating class'com.telusko.AddServlet' , noclassfoundexception Please help Error File ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602527", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Manual Forest plot in ggplot, how to tune variable titles? I am trying to build a forest plot with the results of some meta-analysis (performed by myself, so I do not want to use the meta package). The results you can copy for reproducibility are those: structure(list( cohort = c("cohort1", "cohort2", "cohort3", "co...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602530", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Visual studio - Debugging a phone while having another usb device connected to the phone? I want to run debugging in VS while having some hardware connected to the phone, since the phone only has one usb connection i can't have the both the hardware and computer connected to the phone at the same time. I know i can ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602532", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Progress bar stop animating after 2nd element - jQuery I've created a slider which is changing content after every 8 seconds, but I don't know why the progress bar is not animating after the 2nd slider, can someone help? jQuery(document).ready(function() { //Quotes rotator var divs = jQuery(".cbp-q...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602533", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What's the best way to import over 600 geotiff into geoserver (WMS & WMTS)? Ensuring quality and speed? I'm trying to upload over 600 geotiff (mosaic) into geoserver so that they can be visualized in a WMS and a WMTS service, but i'm not getting to a solution that works. I've tried the importer module but the rgb ch...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602535", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: NPOI copy and insert column between columns How can I use NPOI to copy a column and insert it as new column between existing columns -just like in excel? For example, I have excel cells with value, | A | B | C | D | I want to copy the whole column in A as new column between C and D, so it become like below, | A | B ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602537", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: trying to convert a json schema to pydantic model. while running datamodel-codegen it is giving IndexError: list index out of range trying to convert a json schema to pydantic model. while running datamodel-codegen it is giving IndexError: list index out of range
{ "language": "en", "url": "https://stackoverflow.com/questions/75602538", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Stuck at bandit23 OverTheWire My issue: bandit23@bandit:/tmp/kin$ cp level23.sh /var/spool/bandit24 cp: cannot create regular file '/var/spool/bandit24/level23.sh': Operation not permitted Content in my 'level23.sh': #!/bin/bash cat /etc/bandit_pass/bandit24 > /tmp/kin/bandit24 please tell me what happen, get me...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602539", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Whole column background formatted the same manner with openpyxl doesn't work as intended MRE: import openpyxl from openpyxl.styles import PatternFill # Create a new workbook workbook = openpyxl.Workbook() # Select the active sheet sheet = workbook.active # Set the background color of the third column to black fil...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602541", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Load partial view with Ajax and execute document.ready functionality for partial Lets say i am loading a partial view via Ajax call: $.ajax({ type: "GET", url: item.dataset.controller + "/IndexJson", success: function (result) { $("#main-container").html(result); }, error: function (res...
{ "language": "en", "url": "https://stackoverflow.com/questions/75602542", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }