- Regular expressions define a set of strings called the Language
- If a string matches the regular expression, it's in the language set
- There are only three operations (because math strives to be minimal)
- Concatenation - "a concatenated with b" is just
ab
- Or - written
a|b
. In most regex libraries - Klenee Star - zero or more of the expression it's applied to; written
a*
- Concatenation - "a concatenated with b" is just
This file contains 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
////////////////////////////////////////////// | |
// // | |
// MathClass: // | |
// version = 0.01 planning // | |
// modified = 08/09/2010 // | |
// license = GPL // | |
// // | |
////////////////////////////////////////////// | |
TODO: |
This file contains 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
[Desktop Entry] | |
Name=vim | |
Comment=Edit text files | |
Exec=vim %U | |
Terminal=true | |
Type=Application | |
MimeType=text/plain; | |
Actions=new-window;new-document; | |
Keywords=Text;Editor;Plaintext;Write; | |
Icon=gvim |
This file contains 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
" Optional plugin manager see: https://github.com/junegunn/vim-plug | |
" Do this first so we can overwrite anything it does after | |
"call plug#begin('~/.vim/plugged') | |
" Automatically source .local.vimrc files in directories you open | |
"Plug 'thinca/vim-localrc' | |
"call plug#end() | |
set title " Set terminal title | |
set mouse=a " Turn on mouse support | |
set undolevels=1000 |
This file contains 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 src/mumble/DirectSound.cpp src/mumble/DirectSound.cpp | |
index fb2b1d10..238fd853 100644 | |
--- src/mumble/DirectSound.cpp | |
+++ src/mumble/DirectSound.cpp | |
@@ -115,7 +115,7 @@ static BOOL CALLBACK DSEnumProc(LPGUID lpGUID, const WCHAR* lpszDesc, | |
const QList<audioDevice> DXAudioOutputRegistrar::getDeviceChoices() { | |
QList<dsDevice> qlOutput; | |
- qlOutput << dsDevice(DXAudioOutput::tr("Default DirectSound Voice Output"), DSDEVID_DefaultVoicePlayback); | |
+ qlOutput << dsDevice(DXAudioOutput::tr("Default DirectSound Voice Output"), DSDEVID_DefaultPlayback); |
This file contains 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
/*?sr/bin/env go run "$0" "$@"; exit $? #*/ | |
// This is actually not a shebang, the first line is both valid shell script and valid go code | |
// Just run: chmod +x pass.go; ./pass.go | |
package main | |
import ( | |
"bufio" | |
"crypto/sha256" | |
"encoding/base64" | |
"fmt" |
This file contains 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
#include <sys/procctl.h> | |
#include <stdio.h> | |
#include <err.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
#include <pthread.h> | |
void child_handler(int signal) { | |
printf("Child got signal: %d\n", signal); |
This file contains 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
// Copyright 2024 Andy Kallmeyer <[email protected]> | |
// Model provided under the CC BY-SA 4.0 License | |
// https://creativecommons.org/licenses/by-sa/4.0/ | |
// | |
// If you would like to re-use parts of this code instead of creating a | |
// variation of the whole model, I am providing the code snippets under the | |
// MIT License https://mit-license.org | |
// | |
// If you make a pill filler from this please use the CC BY-SA 4.0 License. |
This file contains 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
cd vaultwarden.git | |
LATEST=`git tag --sort=version:refname | tail -1` | |
CURRENT=`git describe --exact-match --tags` | |
if [ "$LATEST" != "$CURRENT" ]; then | |
echo "Update from $CURRENT to $LATEST available." | |
git fetch --tags | |
git checkout $LATEST | |
cd .. | |
OUTPUT=`./recompile.sh` |
OlderNewer