Results for How to perform code reviews effectively
I was scanning over the graphql docs to find express-graphql deprecated so I decided to implement the recommended graphql-html version: this is my ser...
I am working on a Flutter logistics application, that basically tracks products. But, I am facing an issue in my pubspec.yaml file The Code inside pub...
I tested if I change the duration value to 1 it will flopping each number every 1 millisecond and if i set it to 10 then each second. in the duration ...
Let's say I want to make a module of code that provides utilities for fetching information about the user's monitors. Just looking at perhaps one func...
Let's say i want to make a module of code which provides utilities for fetching information about the user's monitors. Just looking at perhaps one fun...
I am bit stuck here and trying to figure out the following: How increment the id (code) if it reaches Item-00010 or Item-00100..and so on? Is it bett...
I'm getting System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.' while generating random numeric string usin...
here is my input: 3 Programming in C 21.5 Programming in VB 18.5 Programming in Delphi 25.0 and here is my code: #include #include struct book{ ch...
This is my string: public string EmptyViewText { get; set; } = "Please input a bin id first!*"; I have a simple command: public async Task Entry(strin...
I want to check if all value in the object are true. I want to return true if all are true but return false if any one is false { "2211284396232-5...
I keep getting the error shown below on line 32 of my code. Essentially all I'm trying to do is to copy the Project and Client values from one table i...
I am a bit lost in Combine at the moment. I have an ObservableObject. This is mostly because this model is used in SwiftUI and having properties @Publ...
I have a dataframe like below df = spark.createDataFrame( [(1,1,10), (2,1,10), (3,1,None),(4,1,10),(5,1,10),(6,1,20) \ ,(7,1,20), (1,2,10),(2,2,...
delete from dupp where empno in (select empno,count() from dupp group by empno having count()>1) Error Code: 1241. Operand should contain 1 column(s) ...
I have a struct storing an iterator and a map of items previously produced by the iterator. This struct has a method that checks whether any previous...
In C++ if you want to create debugging utilities or other code that you don't want to make it to production, you can use the pre-processor, for exampl...
I have this webgl code const positionBuffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, positionBuffer); gl.bufferData(gl.ARRAY_BUFFER, positi...
In the below code example, if you click the "Deposit money" button and then click "Lock account" quickly before the API call returns, the money still ...
I'm working on a project where my end goal is for the two orbiting stars to collide; I have some code from my class that I've been utilizing, and whil...
I am new to the Julia language and trying out docstrings in a VSCode Jupyter notebook """ fibonacci(n) Calculate the Fibonacci sequence up to the...
Pressing ctrl-shift-m in VS Code you can open the "problem" tabs, which display all the problems found for all the open files. is there some way (plu...
I dont know what is happening in this portion of code: Future fnct() { print("inside fnct()"); return Future.delayed(Duration(seconds:4),()=>"hell...
I have come across a web project with many CSS files. However, I noticed that the CSS declarations seem to be written a little bit strangely. Please s...
I am trying to transfer my pandas code into polars but I have a difficulties with duplicating lines (I need it for my pyvista visualizations). In pand...
Here is the question: Define a function lookup_country_iso_codes which returns the 2-digit and 3-digit ISO country code given the name of country, bas...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?