This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun LabelledCheckBox( | |
checked: Boolean, | |
onCheckedChange: ((Boolean) -> Unit), | |
label: String, | |
modifier: Modifier = Modifier | |
) { | |
Row( | |
verticalAlignment = Alignment.CenterVertically, | |
modifier = modifier |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
readdirSync("./events/").forEach((file) => { | |
const events = readdirSync("./events/").filter((file) => | |
file.endsWith(".js") | |
); | |
for (let file of events) { | |
let pull = require(`../events/${file}`); | |
if (pull.name) { | |
client.events.set(pull.name, pull); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lsusb -v 2> /dev/null | grep -e "Apple Inc" -A 2 |