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
/* | |
* cwrx.c - ncurses morse decoder for Linux | |
* | |
* Copyright (c) 2011 - 2025 Jakob Flierl <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
* |
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
/* Tic tac toe in C. */ | |
#include <stdio.h> | |
#define P printf | |
enum { X = 'X', O = 'O', N = '\0', C = 'C' }; | |
static char ck(char b[9]) { | |
int i, w[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 3, 6, | |
1, 4, 7, 2, 5, 8, 0, 4, 8, 2, 4, 6}; | |
for (i = 0; i < 24; i += 3) { | |
if (b[w[i + 0]] == X && b[w[i + 1]] == X && b[w[i + 2]] == X) return X; | |
if (b[w[i + 0]] == O && b[w[i + 1]] == O && b[w[i + 2]] == O) return O; |
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
# Simple Makefile for building LaTeX PDF with xelatex | |
VCF = contacts.vcf | |
TEX = contacts.tex | |
PDF = contacts.pdf | |
PL = vcf2latex.pl | |
all: $(PDF) | |
$(TEX): $(VCF) $(PL) |
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
#!/usr/bin/perl -w | |
use strict; | |
use Net::SSH2; | |
my $alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
sub brute { | |
my $cmd = shift; |
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
diff --git a/.config b/.config | |
index c7188ac..569621f 100644 | |
--- a/.config | |
+++ b/.config | |
@@ -1601,6 +1601,13 @@ CONFIG_BT_MRVL=m | |
CONFIG_BT_MRVL_SDIO=m | |
CONFIG_BT_ATH3K=m | |
CONFIG_BT_WILINK=m | |
+CONFIG_DECT=m | |
+CONFIG_DECT_DEBUG=y |
OlderNewer