Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
97 views

I am getting this error, am not able to solve [!] Android toolchain - develop for Android devices (Android SDK version 36.1.0) X Android SDK location currently contains spaces, which is not supported ...
sandeep rana's user avatar
0 votes
0 answers
54 views

In pandas, I can search for multiple different substrings in a column, and determine which rows they can be found in. How can I do this in polars? my pandas code: df = pd.DataFrame({'col1':['a red','...
frank's user avatar
  • 3,816
-3 votes
4 answers
122 views

Current Outputs: Is [1, 2, 3] found in [1, 2, 1, 2, 3] ? >>> false Is [1, 1, 3] found in [1, 2, 1, 2, 3] ? >>> false Needed Outputs: Is [1, 2, 3] found in [1, 2, 1, 2, 3]? >>&...
NotInferno_'s user avatar
0 votes
1 answer
58 views

I am perplexed to say the least. Currently working on a PowerShell script to deploy SharePoint Libraries to users via Intune. I use a custom detection script, which checks the folder-attribute sync-...
dedphish's user avatar
0 votes
2 answers
116 views

I have two dataframes df1 and df2 print(df1.shape) (1042009, 40) print(df1.columns) Index(['date_acte', 'transaction_id', 'amount', ...], dtype='object') print(df2.shape) (734738, 37) print(...
bravopapa's user avatar
  • 419
0 votes
1 answer
164 views

This is somewhat similar to this: jq: how to filter an array of objects based on values in an inner array? but extended I have a list of values I want to filter out but it is not 1:1 match. It's ...
termil0r's user avatar
  • 133
0 votes
0 answers
20 views

I am new to RegEx, but I am trying to setup a process that sets a designated 'Role' based on an employee's title. For instance, I have a list of key phrases that point to the user having a role of '...
J J's user avatar
  • 11
1 vote
1 answer
3k views

Specifically (https://github.com/mikefarah/yq) 4.35+ I have a comma-separated string of terms and I want to filter down a list if a field value is one of those terms. Ex) Given the following input: - ...
jaundiced's user avatar
0 votes
2 answers
616 views

I'm trying to use the ignore case option for Contains, and I get this error: CS1501 No overload for method 'Contains' takes 2 arguments This is the code line: item.buildMach.Contains("co.net&...
Michele's user avatar
  • 3,936
1 vote
1 answer
51 views

I am currently uploading images directly to wordpress. The file names of the images also contain the article number in the form arm-1001-01.jpg arm-1001-02.jpg arm-1001-03.jpg arm-1001-04.jpg arm-...
Redbeard's user avatar
1 vote
1 answer
262 views

I'm having a JSON like: {"a": {"z":true,"y":false}, "b": {"z":false,"y":false} }. I need to obtain in MariaDB if there is any (sub) ...
John Schols's user avatar
-1 votes
1 answer
73 views

How can I check if a value from an Array Contains any value from an other Array ? For example: string[] array1 = {"1726KB12","271","MB192"} string[] array2 = {"KB&...
heyyimpiggy's user avatar
1 vote
1 answer
798 views

i have name field in cyrillic and trying to search by that field using $containsi parameter fetch("https://example.com/api/products?filters%5B$or%5D%5B0%5D%5Bname%5D%5B$containsi%5D=%D0%B3%D1%80&...
danyalutsevich's user avatar
1 vote
1 answer
318 views

I have a calculated PowerShell variable that may be set to $True (Boolean), or 'True' (String), or $False (Boolean), or 'False' (String), and I want to test if it's "True" (Boolean or string)...
David Sitner's user avatar
0 votes
1 answer
45 views

I have a list of words and phrases which I want to use to specify which rows to remove when creating a new dataframe. include = ['word1', 'word2', 'word3'...] exclude = ['word4', 'word5 word6' ...] ...
Joshua Hey's user avatar
0 votes
1 answer
47 views

I have this XML file : <Archive Lot="1"> <DOSSIER> <Identifiant>100715</Identifiant> <Personne> <LIBL>File</LIBL> </Personne&...
Pick's user avatar
  • 57
0 votes
1 answer
73 views

I have the following script import os import shutil ################# MOVE FILES SCRIPT ############################ # Moving files from one folder to another based on file names starting or ending ...
LakeConstanceCH's user avatar
-1 votes
1 answer
83 views

Having this enum : public enum MyEnums { A = 1, B = 2, C = 3, D = 4, E = 5 } If I create a list with some enum values from MyEnums for example this : IEnumerable<MyEnums> ...
user7849697's user avatar
0 votes
1 answer
66 views

I need to compare each word in the recognized String with the base string. In logcat, I see the two strings are the same but when compared, it returns false. Which step did I go wrong? This is my code ...
Sơn Vi's user avatar
0 votes
1 answer
358 views

I have K8s cluster with one master and one worker Node. Scenario – 1 I am deploying a simple sidecar container within same POD where I have define emptyDir as share volume and it is working fine. The ...
Kubespecial's user avatar
1 vote
1 answer
802 views

I want to compare two nested json response, so i am using "contains deep". But while comparison i want to ingnore some fields(skip comparison on those fields). Example: I want to ignore the ...
rajeev ranjan's user avatar
0 votes
1 answer
68 views

I'm looking for a code that checks whether or not it's an animal. My table looks like this: id test 1 fish_test 1 shoe 1 tiger_test 1 shirt 1 test_bird What I want to get is this table: id test group ...
uncertainty's user avatar
1 vote
3 answers
181 views

I try to match ancestor-or-self of any element containing certain text string: In step 1 matching of elements containing text works: //*[contains(text(),"ABC")]. But I struggle with the ...
Evgeniy's user avatar
  • 2,657
0 votes
1 answer
61 views

I have a pandas data frame that include full names and acronyms of assessment names called names_df. enter image description here I also have another data frame that has the information of how to use ...
mamoset's user avatar
0 votes
1 answer
334 views

import base64 def img_base64(img_path): if os.path.exists(img_path): with open(img_path, 'rb') as f_obj: image_data = f_obj.read() base64_d = base64.b64encode(...
onePersonLoveCoding's user avatar

1
2 3 4 5
66