Skip to main content

Questions tagged [implementation]

Deals with various issues of implementation.

1 vote
1 answer
62 views

How to insert literals in a colon definition?

I wrote a Forth interpreter for the J1 CPU, which I am now porting to Z80. In the new version, a colon word is a list of addresses to be called by the interpreter. My problem is how to insert literals ...
Candid Moe's user avatar
0 votes
0 answers
39 views

Binary Search in Java personalized implementation not working properly

Why is my code not working though I've tried dry running it 1000 times, but still I'm not able to find my doubt, maybe I'm short of the knowledge which will help me find the mistake, can anybody help ...
Shruti Kumari's user avatar
0 votes
0 answers
73 views

How to store and use list of interface implementations in C#?

I would like to make a quick way of registering HangFire jobs. They all implement IJob interface (which contains Task Run()). Problem is I can't get the list to accept the models created that way. ...
SuperMenthol's user avatar
2 votes
1 answer
52 views

How to Transform a 2D Array In-Place Without Using an Additional Array in C#?

I’m trying to shift the elements of a 2D array to the right and down by one position without using an additional temporary array. Here’s the current implementation using a temporary array: public ...
Gyo's user avatar
  • 27
0 votes
0 answers
46 views

How to implement a gantt chart

Hello i want to integrate a combined CPU scheduling gantt chart, Here is my code without a gantt chart (this works perfectly, but still no gantt chart): #include <iostream> #include <fstream&...
chae's user avatar
  • 11
1 vote
1 answer
57 views

Could not resolve all files for configuration ':compileClasspath' (build.gradle)

I am currently working on a Java project (jdk-18.0.2.1; Gradle DSL: Groovy; Gradle Distribution: Wrapper; Gradle version 8.5) and want to use the following repositories and dependencies repositories { ...
PHILGamer999's user avatar
0 votes
0 answers
22 views

how to implement riverpod(with code generator) to code

Im very new to flutter. Now im tring to make my original app and I want it to have riverpod system. The first thing I faced is Google signIn, I want to use riverpod to use google SignIn. This is my ...
Rafa's user avatar
  • 1
0 votes
0 answers
62 views

T-SQL ENCRYPTBYPASSPHRASE key derivation procedure [duplicate]

ENCRYPTBYPASSPHRASE in T-SQL takes a passphrase as a parameter. I'm wanting to encrypt some data in the same way outside of SQL server, in such a way as said data may be decrypted using the ...
Jayden's user avatar
  • 2,718
0 votes
1 answer
105 views

how do i implement " implementation 'com.google.mlkit:barcode-scanning:17.2.0' " in the new gradle 8.4 as it seems to be in different format

hi i am fairly new to android studios, i was following a tutorial on scanning qr code, the first step requires me to add "implementation 'com.google.mlkit:barcode-scanning:17.2.0' into my ...
programmer's user avatar
0 votes
0 answers
44 views

IntelliJ not detecting gradle implementation project

I have this gradle project with 4 subprojects inside. I use one of them as a library for the other 3. I can do a gradle build just fine, but IntelliJ doesn't detect it: Unresolved imports My root ...
ZimZim's user avatar
  • 1
0 votes
2 answers
31 views

i Want to add the the action bar using getSupportActionBar() but it throws an Null pointer exception

Theese are the code package com.example.lee; public class Activity_Cricket extends AppCompatActivity { Button button; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(...
Balaji Kumar's user avatar
0 votes
1 answer
126 views

Missing implementation (but help message says I have implemented it)

I'm writing a tonic middleware to load application state into a gRPC handler, and I cannot get my app to serve with the middleware layer I've double-checked the types and looked at many examples and I ...
tcmoore's user avatar
  • 1,160
0 votes
1 answer
680 views

Why can't I add implementations in Android Studio Iguana?

I have just downloaded the latest version of Android Studio, the Iguana - 2023.2.1, but when I open my build.gradle(:app), it shows like this. It doesn't look like the implementation I am going to ...
Amelia's user avatar
  • 29
0 votes
1 answer
130 views

How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO

I am currently trying to use SetDisplayConfig from winuser.h to immediately apply a "Preserve aspect ratio" display scaling mode for the active display mode, but I can't seem to get the ...
Jonathan Miller's user avatar

15 30 50 per page
1
2 3 4 5
147