Skip to content

Instantly share code, notes, and snippets.

View Aroueterra's full-sized avatar
⚔️
Typing slowly

Avan Aroueterra Aroueterra

⚔️
Typing slowly
  • Gensokyo
View GitHub Profile
@Aroueterra
Aroueterra / Build Failed
Created January 27, 2021 13:11
mergeSplitAssets
Could not determine the dependencies of task ':app:mergeSplitsAssets'.
> Could not resolve all task dependencies for configuration ':app:splitsRuntimeClasspath'.
> Could not resolve project :opencv-lib.
Required by:
project :app
> No matching variant of project :opencv-lib was found. The consumer was configured to find a runtime of a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'splits', attribute 'org.jetbrains.kotlin.platform.type' with value 'androidJvm' but:
- Variant 'debugApiElements' capability Notable_OPENCV:opencv-lib:unspecified:
- Incompatible because this component declares an API of a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug' and the consumer needed a runtime of a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'splits'
- Other compatible attribute:
- Doesn't say anything
barline
clef-C1
clef-C2
clef-C3
clef-C4
clef-C5
clef-F3
clef-F4
clef-F5
clef-G1
@Aroueterra
Aroueterra / sync error
Created March 1, 2021 05:31
Timed out
2021-03-01 13:05:52.202 6311-6311/? E/.android.gms.u: Not starting debugger since process cannot load the jdwp agent.
2021-03-01 13:05:53.720 6382-6382/? E/s.messaging:rc: Not starting debugger since process cannot load the jdwp agent.
2021-03-01 13:05:54.682 6382-6398/? E/s.messaging:rc: The String#value field is not present on Android versions >= 6.0
2021-03-01 13:05:55.683 2271-2608/? E/BluetoothAdapter: Bluetooth binder is null
2021-03-01 13:06:02.506 1862-1875/? E/memtrack: Couldn't load memtrack module
2021-03-01 13:06:05.516 1862-1875/? E/system_server: No package ID 7f found for ID 0x7f0802a0.
2021-03-01 13:06:05.516 1862-1875/? E/system_server: No package ID 7f found for ID 0x7f13056c.
2021-03-01 13:06:06.042 4955-6293/? E/CarrierServices: [361] iez.getFile: File not found.: /data/user/0/com.google.android.apps.messaging/files/httpft_pending (No such file or directory)
java.io.FileInputStream.open0(Native Method)
java.io.FileInputStream.open(FileInputStream.java:231)
.acr "anya sched 3-20-21"
```ml
MON TUES WED THU FRI
08:00 - 09:00 - - PE3 THESIS
09:00 - 11:00 - THESIS CISCO - -
11:00 - 13:00 - - ELEC 2 - -
13:00 - 15:00 CISCO CS048 -
15:00 - 17:00 - - RIZAL -
17:00 - 19:00 - IMGPROC - IMGPROC
import java.util.Scanner;
import java.util.ArrayList;
public class museum {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
ArrayList<Integer> cost = new ArrayList<Integer>();
int age=-1;
while(age != 0){
System.out.println("How old are you?");
class TestClass {
private String color;
public TestClass(String c) {
color = c;
}
// In getter, returnColor should return String
public void returnColor() {
return color;
}
// No return statement error (setter should actually be void) + newColor should not be a method call
class TestClass {
private String color;
public TestClass(String c) {
color = c;
}
public String returnColor() {
return color;
}
public void changeColor(String newColor) {
color = newColor;
//add class definitions below this line
import java.text.DecimalFormat;
import java.math.RoundingMode;
class Song{
private String artist;
private String title;
private String album;
private int playCount;
private static final Double PAY_RATE = 0.001;
private Double moneyEarned;
//add class definitions below this line
import java.util.*;
class Watch {
private String manufacturer;
private String model;
private int diameter;
private int waterResistance;
private String material;
public Watch(String m, String mo, int d, int w, String ma){
manufacturer = m.toLowerCase();
//add class definitions below this line
class Atm {
private double money;
public double getMoney(){
return money;
}
public void deposit(double s){
Double v = Double.valueOf(s);
if(v>=0){
money += v;