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.
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
#!/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 |
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 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"; |
Assuming your target device is /dev/mmcblk0
- Find latest fedora release https://builds.coreos.fedoraproject.org/browser?stream=stable&arch=aarch64
- Install Rust
rustup toolchain install stable
- Install coreos-installer
cargo install coreos-installer
this is
a line break
but this is a new paragraph
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
#!/bin/bash | |
declare -A tags | |
clear_message() { | |
start=0 | |
source="" | |
fragment="" | |
tags=() |
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
#!/bin/bash | |
declare -A fileinfo | |
# Resets the fileinfo map | |
fileinfo_reset() { | |
fileinfo[year]="0000" | |
fileinfo[month]="00" | |
fileinfo[day]="00" | |
fileinfo[hour]="00" |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "Prometheus", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"limit": 100, |
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="app_name">QuasselDroid</string> | |
<string name="connection_service_title">Verbindungsdienst</string> | |
<string name="connection_service_description">Hält eine Verbindung zum Core, um Benachrichtigungen und die Übertragung von Nachrichten zu ermöglichen</string> | |
<string name="label_buffer_name">Chatname</string> | |
<string name="label_cancel">Abbrechen</string> | |
<string name="label_close">Schließen</string> |
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 java.io.FileDescriptor; | |
import java.io.IOException; | |
import java.nio.ByteBuffer; | |
import java.nio.channels.FileChannel; | |
import java.nio.charset.StandardCharsets; | |
import java.nio.file.Paths; | |
import java.nio.file.StandardOpenOption; | |
public class Jes { |
NewerOlder