Learncado
Learncado

Learncado brings together a vast collection of questions and answers. Expand your knowledge, learn new skills, and find solutions to your queries effortlessly. Enhance your learning experience and save valuable time by exploring our website today.

Resources

  • Questions
  • Question By Tags

Help and support

  • Contact
  • About

  • Geniecourse
  • Jetsodeals
  • Rentcado
  • Dealcado
© 2021-2023 Learncado All Rights Reserved.

Search Results (1850)

Results for How to perform code reviews effectively

December 3rd, 2023
415 status code from from simple graphql-http setup

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...

javascriptnode.jshtmlgraphql
Read more
December 2nd, 2023
Flutter- logistics requires SDK version >=2.12.0 <3.2.2, version solving failed. exit code 1

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...

androidflutterdart
Read more
December 2nd, 2023
In what units the duration values are in this css code?

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 ...

css
Read more
December 2nd, 2023
How to test code that returns external information

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...

c++testing
Read more
December 2nd, 2023
How to test code which returns external information

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...

c++testing
Read more
December 2nd, 2023
Stop the loop after the "code" is posted at the last row - google script

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...

google-apps-scriptgoogle-sheets-api
Read more
December 1st, 2023
how to solve System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.' exception while generating random code?

I'm getting System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.' while generating random numeric string usin...

c#asp.netwebforms
Read more
December 1st, 2023
How can I correctly write code in C language to accept input containing spaces in between and ending with a newline?

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...

cstringarraysstruct
Read more
November 30th, 2023
maui: changing a bound string from code does not update ui unless string is regenerated (mvvm)

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...

c#mauidata-binding
Read more
November 30th, 2023
How to perform a Boolean test on a nested javascript object?

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...

javascript
Read more
November 30th, 2023
Continue to receive the run-time error below in VB Code

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...

excelvbavb.net
Read more
November 30th, 2023
Can and should you observe changes to an ObservedObject from regular Swift code

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...

swiftuiswiftcombine
Read more
November 30th, 2023
How to perform average over months using window function with null values in between?

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,...

pysparkdatabricksspark-window-function
Read more
November 30th, 2023
Error Code: 1241. Operand should contain 1 column(s) when delete duplicate

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) ...

duplicatesmysql-workbenchsql-deletemysql-error-1241delete-operator
Read more
November 30th, 2023
Cannot have immutable borrow of self in one code branch and mutable in another

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...

rust
Read more
November 29th, 2023
Java best practices for writing code that needs to be removed for a release

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...

java
Read more
November 29th, 2023
How does this code work with multiple buffer bound to same target?

I have this webgl code const positionBuffer = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, positionBuffer); gl.bufferData(gl.ARRAY_BUFFER, positi...

webglwebgl2opengl-es-3.0
Read more
November 29th, 2023
How to ensure latest state in async code?

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 ...

javascriptreactjsreact-hooks
Read more
November 28th, 2023
How do I Decrease Orbit Size in My Python Code?

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...

pythonpython-3.xorbital-mechanics
Read more
November 27th, 2023
Julia docstrings not rendered properly to VS Code (via LaTeX?)

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...

visual-studio-codejulialatexjupyterdocstring
Read more
November 29th, 2023
How can I see "problems" in VS Code code for all files- not just the ones opened

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...

visual-studio-code
Read more
November 30th, 2023
async keyword Future<dynamic> problem in flutter/dart . I just want to know how the code is generating an error here below

I dont know what is happening in this portion of code: Future fnct() { print("inside fnct()"); return Future.delayed(Duration(seconds:4),()=>"hell...

androidflutterdartasynchronousfuture
Read more
November 27th, 2023
CSS strange selectors names and long code, is this was built using specific framework?

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...

css
Read more
November 28th, 2023
How to effectively create duplicate rows in polars?

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...

pythonpython-polars
Read more
November 27th, 2023
How could I define a function `lookup_country_iso_codes` which returns the 2-digit and 3-digit ISO country code

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...

pythoniso
Read more

Hot Topic

  • 25881

    How do I undo the most recent local commits in Git?

  • 11618

    How can I remove a specific item from an array in JavaScript?

  • 20343

    How do I delete a Git branch locally and remotely?

  • 7387

    How can I find all files containing a specific text (string) on Linux?

  • 7330

    How to find all files containing specific text (string) on Linux?

  • 7611

    How do I revert a Git repository to a previous commit?

  • 2671

    How do I create an HTML button that acts like a link?

  • 8481

    How do I check out a remote Git branch?