Let's talk about:
- The difference between minSdkVersion and targetSdkVersion
- What minSdkVersion and targetSdkVersion should we use?
fun main(args: Array<String>) { | |
val regex = ".{1,}tal$" | |
val filename = "english-words.txt" | |
processFile(filename, regex) | |
} | |
fun processFile(filename: String, regexString: String) { | |
val inputStream = object {}.javaClass.getResourceAsStream(filename) ?: return | |
val lines = inputStream.bufferedReader().readLines() | |
val regex = Regex(regexString, RegexOption.IGNORE_CASE) |
Water flow in aquaponics project
stateDiagram-v2
Filter1: Filter met stenen
Filter2: Filter met actieve koolstof
Filter3: Filter met UVC
note right of Filter3
UVC dood bacterieën, maar is gevaarlijk!
Zorg dat het licht alleen op het water schijnt.
end note
// Base64 - Version: Latest | |
#include <Base64.h> | |
//#include <base64.hpp> | |
// FastLED - Version: Latest | |
#include <FastLED.h> | |
#define LED_PIN 2 | |
#define MATRIX_WIDTH 8 | |
#define MATRIX_HEIGHT 8 | |
// #define NUM_LEDS 64 |
// Base64 - Version: Latest | |
#include <Base64.h> | |
//#include <base64.hpp> | |
// FastLED - Version: Latest | |
#include <FastLED.h> | |
#define LED_PIN 2 | |
#define MATRIX_WIDTH 8 | |
#define MATRIX_HEIGHT 8 | |
#define NUM_LEDS 64 |
import java.awt.Color | |
import java.io.File | |
import java.util.* | |
import javax.imageio.ImageIO | |
import kotlin.system.exitProcess | |
fun main(args: Array<String>) { | |
if (args.isEmpty()) { | |
printHelp() | |
exitProcess(0) |
val ce = NotificationCompat.CarExtender() | |
ce.setColor() // <-- method exists | |
val cae = CarAppExtender.builder() | |
cae.setColor() // <-- method does **not** exist |
import 'package:audioplayers/audio_cache.dart'; | |
import 'package:audioplayers/audioplayers.dart'; | |
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { |
2020-07-06 16:19:16.323 3846-5645/? E/Parcel: Class not found when unmarshalling: com.google.android.gms.carsetup.BinderParcel | |
java.lang.ClassNotFoundException: com.google.android.gms.carsetup.BinderParcel | |
at java.lang.Class.classForName(Native Method) | |
at java.lang.Class.forName(Class.java:453) | |
at android.os.Parcel.readParcelableCreator(Parcel.java:2843) | |
at android.os.Parcel.readParcelable(Parcel.java:2797) | |
at android.os.Parcel.readValue(Parcel.java:2700) | |
at android.os.Parcel.readArrayMapInternal(Parcel.java:3067) | |
at android.os.BaseBundle.unparcel(BaseBundle.java:257) | |
at android.os.BaseBundle.getString(BaseBundle.java:1086) |