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
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: traefik-web-ui | |
namespace: kube-system | |
spec: | |
selector: | |
k8s-app: traefik-ingress-lb | |
ports: |
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
set $mod Mod4 | |
set $alt Mod1 | |
font pango:monospace, Fontawesome 9 | |
#font pango:Source Code Pro, Fontawesome 9 | |
#font pango:scientifica, Fontawesome 9 | |
#font pango:xft:scientifica:size=8 | |
floating_modifier $mod | |
bindsym $alt+Tab workspace next |
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
export EDITOR=nano | |
export ZSH="/home/roman/.oh-my-zsh" | |
ZSH_THEME="agnoster" | |
plugins=( | |
git | |
shrink-path | |
z | |
) | |
source $ZSH/oh-my-zsh.sh | |
prompt_dir(){ |
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
//const ogham = require('ogham'); | |
let test = { | |
individual: { | |
' ': { | |
char: ' ', | |
code: 5760 | |
}, | |
b: { | |
char: 'ᚁ', | |
code: 5761 |
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
import net.automatalib.automata.fsa.impl.compact.CompactDFA; | |
import net.automatalib.util.automata.Automata; | |
import net.automatalib.util.automata.builders.AutomatonBuilders; | |
import net.automatalib.visualization.Visualization; | |
import net.automatalib.words.Alphabet; | |
import net.automatalib.words.Word; | |
import net.automatalib.words.impl.Alphabets; | |
import java.util.*; | |
public final class RPNICompleteProof { |
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
FILE=$1 | |
if [ -z $1 ]; then | |
echo "ERROR: First input parameter must be the file!" | |
exit | |
fi | |
COMMANDS="$(grep -E -o '\\[a-zA-Z]+' $1 | sed 's/\\/\\show\\/g')" | |
HEADER="$(sed '/\\begin{document}/q' $1)" | |
echo $HEADER >> temp.tex | |
echo $COMMANDS >> temp.tex | |
echo '\end{document}' >> temp.tex |
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
import org.jsoup.Jsoup; | |
import org.jsoup.nodes.Document; | |
import org.jsoup.nodes.Element; | |
import org.jsoup.select.Elements; | |
import java.io.File; | |
import java.nio.charset.StandardCharsets; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.util.*; |
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
//SNAKE | |
#include "lcd.h" | |
#include "util.h" | |
#include "os_input.h" | |
#include "os_core.h" | |
#include "os_scheduler.h" | |
#include "os_memory.h" | |
#include "keyb_processor.h" |
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
// ==UserScript== | |
// @name Telegram - Full Sized Windows | |
// @namespace http://userstyles.org | |
// @description Telegram has a very stupid restricted layout. This removes all width restrictions | |
// @author Roman Karwacik | |
// @run-at document-idle | |
// @match https://web.telegram.org/* | |
// @version 1 | |
// ==/UserScript== | |
(function() { |