this is
a line break
but this is a new paragraph
this is
a line break
but this is a new paragraph
Assuming your target device is /dev/mmcblk0
rustup toolchain install stable
cargo install coreos-installer
// ==UserScript== | |
// @name Highlight Comments: Hacker News | |
// @namespace de.kuschku.highlight-comments.hn | |
// @version 1.0.4 | |
// @include https://news.ycombinator.com/item* | |
// @include https://news.ycombinator.com/reply* | |
// ==/UserScript== | |
function contentScript() { | |
const LOCAL_STORAGE_KEY = "highlight-comments"; |
Schreiben sie in diesem Textfeld oder fügen Sie einen Text ein. Rechtshcreibfehler werden rot markirt, Grammatikfehler werden gelb hervor gehoben und Stilfehler werden, anders wie die anderen Fehler, blau unterstrichen. wussten Sie dass Synonyme per Doppelklick auf ein Wort aufgerufen werden können? Nutzen Sie Rechtschraibprüfungen in allen Lebenslagen, zB. wenn Sie am Donnerstag, dem 13. Mai 2022, einen Basketballkorb in 10 Fuß Höhe montieren möchten.
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
conflicts=$(git status --porcelain | grep UU | cut -d ' ' -f 2) | |
for conflict in $conflicts; do | |
cat $conflict | \ | |
tr '\n' '\r' | \ | |
sed -E 's/<<<<<<< [^\r]*\r((import[^\r]*\r)*)=======\r((import[^\r]*\r)*)>>>>>>> [^\r]*\r/\1\2\3\4/g' | \ | |
tr '\r' '\n' | \ | |
tee $conflict > /dev/null |