Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
676 views

I have composed a multiplatform project with Android and iOS. The Android app runs and installs successfully, but when I run the iOS app from XCode build, it fails with the below error. 🛑 No ...
Murali M's user avatar
0 votes
0 answers
61 views

I’m using AdMob’s User Messaging Platform (UMP) in my Android app to handle user consent for personalized ads. While it generally works as expected, I’ve encountered an issue in a specific scenario: ...
ThatThechDevGuy's user avatar
0 votes
1 answer
77 views

We've integrated a widget on our clients' websites that utilizes gtag for sending events to Google Analytics (GA4). Each client provides us with their Measurement ID (tracking code / GA4 ID) for this ...
Aberllin's user avatar
1 vote
1 answer
715 views

I have set up a custom template using code from my CMP provider, which works fine for consent setting. We have had to make several additions and edits to the CMP as provided. I want to send a custom ...
JHDT_1's user avatar
  • 13
1 vote
1 answer
405 views

Sharing following code, how am I calling for CMP dialog. fun initDebugConsent(deviceId: String, onConsentResponse: OnConsentResponse) { this.onConsentResponse = onConsentResponse val ...
Sohaib Ahmed's user avatar
  • 3,179
0 votes
1 answer
159 views

this is my lua config for cmp: require('lspconfig')['jdtls'].setup { root_dir = function(fname) return vim.fn.getcwd() end, cmd = { 'jdtls', '-vmargs', '-...
YnwrdCreso's user avatar
0 votes
0 answers
123 views

I have simple script which is checking if file from today is different than file from yesterday. For that I am using cmp command, but unfortunately I need to also make some correction in file so I use ...
majan's user avatar
  • 159
-1 votes
1 answer
68 views

I have a hash ref with values being an array ref. I would like to sort the hash using multiple values. For example: { 'ID' => ['Age', 'Name', 'Start-Date'] } I would like to sort by: 1) Age; then-...
h q's user avatar
  • 1,550
0 votes
1 answer
1k views

Here is a code to sort the given array in assembly language .model small .stack 100h .data ;roll number 2435 data1 db 66h, 2, 045h, 4, 040h, 3, -025h, 5, -010h, 011h swap db 0 .code mov ax, ...
A1 D's user avatar
  • 1
1 vote
1 answer
499 views

I have two log files with every line starting by the time. I'd like to compare the files except for this time part. for exemple : file1.og [20220201_133108] abc [20220201_133108] defg [20220201_133108]...
hugogogo's user avatar
  • 655
0 votes
0 answers
334 views

I have such part of code cmp eax, [SPHERE] je VolumeSphere I use the variable SPHERE and it's like enum for 1. Also, I check what is in eax and it 1 too(by printf). So, I have changed the code to ...
Shura's user avatar
  • 39
1 vote
1 answer
3k views

Hello I was trying to compare two tuples in python using the cmp() function But there was an error wich is the following: NameError: name 'cmp' is not defined my Code: myStupidTup = ("test",...
radh ouane's user avatar
0 votes
1 answer
355 views

(MSP430 16 bit) CLR[.W] R14 CMP[.W] #0x0200, R14 JC #1234 How can I know if Carry flag will be set? Can CMP[.W] #0x0200, R14 make Carry flag be set?
鍾豐吉's user avatar
-2 votes
1 answer
46 views

#include<iostream> #include<cstdio> #include<vector> #include<algorithm> #include<string.h> #include<map> #include<functional> using namespace std; map<...
유유영균's user avatar
1 vote
0 answers
166 views

I'm trying to implement TCF 2.0 consents on amp page. Here is a sample code which I took from https://github.com/ampproject/amphtml/blob/master/examples/amp-consent/cmp-vendors.amp.html <!-- ...
Andrii Sukhoi's user avatar
1 vote
0 answers
36 views

I'm trying to print hello word with assembly on Windows 10. I successfully converted the object file to executable file with nasm -f elf64 hello.asm and ld hello.o -o hello but when I run the file ...
karam's user avatar
  • 33
0 votes
0 answers
433 views

I want to compare files in a local folder with subfolders to its counterpart on a ftp server and delete the unchanged files in my local folder. My command currently looks like this (inspired by the ...
tmo's user avatar
  • 1
1 vote
2 answers
7k views

I have a data frame as the following: df = pd.DataFrame({'id':[3333311,3455572,6464544,2323322,2222111,4333311,5454566,3321767],'A':['12 days','35 days','36 days','56 days','54 days','44 days','56 ...
user9419602's user avatar
1 vote
1 answer
332 views

I'm migrating an EJB2 application and I don't know how to deal with the FinderException thrown by EJB2 CMP entity beans because in some business methods there was logic code implemented in catch ...
user771221's user avatar
0 votes
0 answers
27 views

I have a code: flag=true if cmp -s item1 item2 ; then if test flag = true; then echo 'a' else echo 'b' fi fi and for somereason only the else is triggered and I get 'b', why is ...
Alexander's user avatar
  • 1,398
1 vote
1 answer
2k views

I've written a sort in Python2, I'm trying to convert it into Python3 which asks for a key and says no more cmp function is available : test.sort(lambda x, y: cmp(x[2],y[2]) or cmp(x[4], y[4]) or cmp(...
Vince's user avatar
  • 11
0 votes
1 answer
282 views

I want to delete the same files in two directories. Both have so many files with the same name. If two files are same I want to delete in the first directory. I am not sure whether linux shell is ...
Joonho Park's user avatar
1 vote
1 answer
614 views

I'm comparing a bunch of fastq.gz files. Each file is ~4G: if filecmp.cmp(f1,f2,shallow=False) It returns false, as in f1 and f2 are different. But when I compare the files using diff/comm I get 0 ...
FairyDuster's user avatar
-2 votes
1 answer
421 views

I'm trying to write simple assembly program, which takes 2 strings from command line and then counts occurrences of first one in the second one. For example: x="abc" y="abcabc abc". It should print 3. ...
J.Brown's user avatar
1 vote
5 answers
112 views

I'm trying to write a script as a part of my registration form. Everything is set, however, I would like to implement a "UID" function similar to how UID works in the bash. However here's the tricky ...
Gifter Villanueva's user avatar