There are multiple Merge requests merged into Develop but I want to MR only my changes from develop branch to the QA branch /abc/abc.py ---| /abc/deg.py --
I am trying to get this implementation to work, tho it ends in an infinite loop. What am I missing? def bubbleSort(l: List[Int]): List[Int] = if(isSorted(l)) l
I am trying to do something which is very simple in excel, but I cant seem to find the way the way to do it in python. I want to calculate the next value in a d
I am having an issue where a Tomcat server fails to shut down correctly when it has a Spring Boot web application. This causes issues with scheduled tasks and b
I'm trying to superimpose an image in the back of a matplotlib plot. It is being rendered as HTML in a flask website so I am saving the plot as an image before
Getting error like this What went wrong: Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example,
I am using passport to handle user authentication. During initialization, I have to do the following for managing the session cookies: passport.serializeUser((u
I have two tables in a MySQL database: address that includes a description field which at most has a city name and a country buried somewhere inside it. There a
I am studying LinkedLists and wanted to check Java's implementation. However, I have some questions. I saw that I can print the contents of java.util.LinkedList
I am facing with the below error but upon checking, i have realized and reduced the characters to less than 20character for the name but I am still getting the
I need to use the smartwatch_gestures from Tensorflow datasets and here is my code: pip install --upgrade tfds-nightly import tensorflow_datasets as tfds impor
I have a CSV: '1\n2\na'. If I read it with something like pd.read_csv(io.StringIO('1\n2\na'), names=['A'], dtype={'A': 'float'}) specifying that the first colum
I have hundreds of excel files with a single column and a single sheet containing text. I am trying to write a loop that will 'Wrap Text' and align the single c
Launch the app store for smart TV tizen I am trying to launch the app store from my current tizen TV application. I am using angular and making my app a web apl
I have a domain name registered and i made an A record on it that points to 127.0.0.1 (aka localhost). I want to be able to work on websites in this case from m
I am trying to implement a gaussian filter for an image with dimensions (256, 320, 4). I first generated a gaussian Kernel for the same and then individually pe
Imagine I need to check if in longString = "this is a long sting where a lo must be detected." the substring lo as a word is contained. I need to use the leadi
I have the JSON please see below and I need help to convert changing the format mentioned below. I want to move the data to different columns (format mentioned
Using Mule 4.4 community edition . I am reading a file using mule's sftp connector : <dependency> <groupId>org.mule.connectors</group
I have the following situation when migrating and compiling in native mode a quarkus service from version 2.5 to 2.6 and it is the following: We have a JAR whic
Like in the title, how to delete a certain part of text without deleting the whole text. The example how it should work. "Some text I put in t
I want to achieve something like this: I give function a string that should be trunctated and a maximum number of characters. local function TruncateBackwards(
I'm trying to use Tensorflow for some federated learning purposes, but I can't successfully install it using pip. pip install tensorflow Error message I get is
I will be very grateful for any help. My situation.. I have a table with students (I write only main columns for this question): | Id | Lastname | Firstname | _
I've created a Query Loop on a Post. It works fine. If I change to Code Editor, I see there is a queryId:{int} which is generated. I'm wondering where that int
I'm having trouble getting r's dplyr::arrange() to sort properly when used in a for loop. I found many posts discussing this issue (like ex.1 with the .by_grou
In the following code, the Jacobian I get is None. Why is that? a1 = tf.constant(2.0) a2 = tf.constant(1.5) with tf.GradientTape(persistent=True) as tape:
I was doing a question where I was adding a character using for loop in string like this: for(int i=0;i<n;i++){ str = ch + str; } This code was running
I've tried using sdkmanager from command line with the following command: "sdkmanager --nohttps --verbose" but it gives me the following exception: Warning: IO
For monitoring purposes I created a website (with ip restriction) that I added to a tab in a Microsoft teams channgel. So far so good. However, every time I upd