Call this python script with python parse.py
to get the diagram for the current diagram or with python parse.py "./directory"
to get it for ./directory
.
" ============================================================================== | |
" Name: One Half Dark | |
" Author: Son A. Pham <[email protected]> | |
" Url: https://github.com/sonph/onehalf | |
" License: The MIT License (MIT) | |
" | |
" A dark vim color scheme based on Atom's One. See github.com/sonph/onehalf | |
" for installation instructions, a light color scheme, versions for other | |
" editors/terminals, and a matching theme for vim-airline. | |
" ============================================================================== |
` Ctrl + a Go to the beginning of the line (Home) Ctrl + e Go to the End of the line (End) Ctrl + p Previous command (Up arrow) Ctrl + n Next command (Down arrow) Alt + b Back (left) one word Alt + f Forward (right) one word Ctrl + f Forward one character
"pactl set-sink-volume @DEFAULT_SINK@ -1000" | |
XF86AudioLowerVolume | |
"pactl set-sink-volume @DEFAULT_SINK@ +1000" | |
XF86AudioRaiseVolume | |
"playerctl play-pause" | |
m:0x0 + c:208 | |
XF86AudioPlay | |
"playerctl play-pause" | |
m:0x0 + c:209 | |
XF86AudioPause |
import { WikiDocument } from '@/classes/Document.js' | |
import { encodeUnicode } from '@/services/helpers/dataFormatter' | |
const FIRST_DOCUMENT = { | |
document: { | |
approval_state: false, | |
data: 'This is the first document.', | |
id: 'as9hd98ktp7g3', | |
namespace: ':FirstNamespace', | |
rid: 'as98dfgy', |
These are the results of a rather long backtest for all coins listed on binance that are tradable to BTC. The first three strategies are cut off, as my terminal buffer was too small to hold all data. All strategies are taken from the freqtrade strategy repository and are not adapted in any way.
Some of the more important options are:
{
"max_open_trades": 20,
[Unit] | |
Description=Node Exporter | |
[Service] | |
User=node_exporter | |
EnvironmentFile=/etc/sysconfig/node_exporter | |
ExecStart=/opt/node_exporter/node_exporter $OPTIONS | |
[Install] | |
WantedBy=multi-user.target |
local copyJSONPath = function() | |
local ts_utils = require 'nvim-treesitter.ts_utils' | |
local result = {}; | |
local node = ts_utils.get_node_at_cursor() | |
while node do | |
if tostring(node) == '<node pair>' then | |
local key_node = node:named_child(0):named_child(0) | |
table.insert(result, 1, ts_utils.get_node_text(key_node)[1]) | |
end | |
node = node:parent() |
Kleines script um alle Folgen des Podcast UFOs zu fetchen.
Benutze die uids dann in einem iOS Shortcut, welcher die JSON holt, ein random item aus items
auswählt und dies URI öffnet.
Das öffnet dann Spotify :D
Der shortcut: https://www.icloud.com/shortcuts/9a51226503d14c8a8a61dba9645bf4b3
Klar, geht bestimmt wenn man die url in fetchEpisodes
anpasst