Pick one of these approaches
Pick this approach if you want to show the status in the menu bar, like this https://share.getcloudapp.com/9Zu8Ok97
- Install https://github.com/tonsky/AnyBar
- Run it
#!/usr/bin/python3 | |
# Usage: 'backup' alone will back the system up | |
# 'backup ARGS' will run borg with ARGS, configuring repository location, passphrase etc. | |
# e.g., 'backup list ::' will list backups in the repository | |
# Goals: run on RHEL 8's default Python interpreter (3.6) with no non-RHEL packages required | |
# Non-goals: backing up multiple filesystems, any configurability save modifying values set | |
# in code. |
# Extracts QMK `info.json` layout data from kicad pcb | |
# You need to have the `pcbnew` module importable (should be installed when kicad is installed) | |
import re, pcbnew, json | |
from typing import Callable | |
from functools import reduce | |
kicad7 = pcbnew.Version().startswith("7") | |
if kicad7: |
package dev.sebastiano.webviewcompose | |
import android.annotation.SuppressLint | |
import android.content.Context | |
import android.os.Bundle | |
import android.webkit.WebView | |
import android.webkit.WebViewClient | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.background |
import androidx.compose.foundation.layout.BoxWithConstraints | |
import androidx.compose.foundation.layout.BoxWithConstraintsScope | |
import androidx.compose.foundation.text.InlineTextContent | |
import androidx.compose.foundation.text.InternalFoundationTextApi | |
import androidx.compose.foundation.text.TextDelegate | |
import androidx.compose.material.LocalTextStyle | |
import androidx.compose.material.Text | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier |
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c | |
index 2387f50dc8..4448ceae4b 100644 | |
--- a/tmk_core/common/action.c | |
+++ b/tmk_core/common/action.c | |
@@ -51,6 +51,10 @@ int retro_tapping_counter = 0; | |
# include "fauxclicky.h" | |
#endif | |
+#if (BILATERAL_COMBINATIONS + 0) | |
+# include "quantum.h" |
Pick one of these approaches
Pick this approach if you want to show the status in the menu bar, like this https://share.getcloudapp.com/9Zu8Ok97
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
#!/usr/bin/env kotlin | |
@file:DependsOn("com.github.ajalt.clikt:clikt-jvm:3.0.1") | |
import com.github.ajalt.clikt.core.CliktCommand | |
import com.github.ajalt.clikt.core.UsageError | |
import com.github.ajalt.clikt.output.TermUi | |
class App : CliktCommand() { | |
enum class DaemonType { |
;; File has moved over to https://github.com/kaushikgopal/dotfiles/blob/master/.karabiner.edn | |
;; Feel free to raise github issues in that repo, if you have questions/comments/edits |