383 questions
-1 votes
1 answer
383 views
MIFARE Classic 1K How to locate the Value Block
Could someone help me identify the value blocks of a MIFARE Classic 1K card? I understand that the first 4 bytes contain the value in hexadecimal format, but I cannot identify which ones they are. I ...
0 votes
1 answer
110 views
Why does using structuredClone on an Object in mxGraph result in "Uncaught TypeError: terminal.insertEdge is not a function"
I'm trying to clone an Vertex object in mxgraph, to edit the coordinates without changing the original Vertex, but I get the Error "Uncaught TypeError: terminal.insertEdge is not a function"...
0 votes
2 answers
113 views
How to make a clone of shared_ptr value given that shared_ptr encompasses abstract class?
This is a project from university, I have to make a "Paint"-like application and now I am stuck at making copying and pasting. shape is an abstract class from which other real shapes like ...
0 votes
1 answer
70 views
Clone <div> and change id of img upload
So out of curiosity and teaching myself how to code I've decided to make a Twitter mimic. I've been doing decently well until now -- I'm trying to make it so you can hit the "clone tweet" ...
2 votes
1 answer
1k views
Cloning project in Azure DevOps
I am trying to clone a project from one organization to another in Azure DevOps. We’ve been able to successfully clone within one org, but when we use same steps to clone between two organizations, it ...
1 vote
0 answers
118 views
due to non-UTF-8 characters in the output during command execution, leading to decoding errors
1.I am building tmiv18.0 using the prebuild script provided by that project https://gitlab.com/mpeg-i-visual/tmiv/-/blob/v18.0/doc/building.md 2.when I run python I:\qyq\Encoder18\Workspace\tmiv\...
-2 votes
1 answer
97 views
Why does changing a property of a reference variable in an object changes that object's memory address?
We have the Person class, with 3 variables, "firstName", "lastName" (both String) and "Address" address. Address class has 2 properties, "cityName" and "...
0 votes
1 answer
63 views
Firebase Commands on VS Code- Errors
I'm a beginner as a developer and I'm having trouble running a React app on Firebase. I have already installed Node.js and npm, and I'm using VS Code as my code editor. Here are the steps I've taken ...
0 votes
1 answer
276 views
Is there a way to wrap an &str to a &T(String) without cloning?
In Rust, I frequently wrap Strings with custom structs for the purpose of disambiguating trait behavior. For example, I might have a data access trait called IGetByField<T,F> implemented like so:...
0 votes
0 answers
69 views
React and JS Web Component - onChange Event Gets Lost when Cloning HTML from Template to Component Output
I have a React app and I want to use a reusable JS web component that is supposed to output a <dialog> with content cloned from HTML inserted into the <custom-tag> of same JS component. ...
0 votes
1 answer
202 views
Node Cloning in JavaFX
I have a JavaFX Node object, and I wish to clone it via code. It's my understanding that Java variables are reference-types, and simply doing something like clonedNode = oldNode would result in ...
-1 votes
2 answers
123 views
In Java : How to duplicate "entirely" a Map with Collections as value? [duplicate]
The code below is illustrating my problem : public class TreeMapCopyProblem { private static TreeMap<Integer, SortedSet<Integer>> treeMap1; private static TreeMap<Integer, ...
0 votes
1 answer
52 views
IntValue isn't increasing, when cloning (Roblox Studio)
I have a strawberry field, where I want everyone to have their own strawberries spawn in. I'm trying to make it, so only 10 strawberries can be on the field at once. I've set it up so everytime a ...
0 votes
1 answer
248 views
ERROR: polling failed in /home/jenkins/test on sk-node(83) java.io.IOException: error=2, No such file or directory
I configured a Jenkins pipeline to clone my repository. When I manually click on the build now button it works fine but when I try to make a new commit in my GitHub repository and that webhook payload ...
1 vote
1 answer
86 views
Dart standardizing logic of child class clone methods using existing Map methods
I am trying to standardize the logic of a class.clone method so that every child of my abstract class clones the exact same way. I've tried using factory constructors and all sorts of roundabouts but ...