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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: busybox | |
labels: | |
app: busybox | |
spec: | |
containers: | |
- image: busybox | |
command: |
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
find . -type f -name "*.cs" | xargs -I {} bash -c "iconv -f utf-8 -t utf-16 {} &>/dev/null || echo {}" | xargs -I {} bash -c "iconv -f WINDOWS-1252 -t UTF-8 {} -o {}" |
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
/* | |
- OSX: ~/Library/Application\ Support/Franz/recipes/whatsapp/darkmode.css | |
- Windows: %appdata%/Franz/recipes/whatsapp/darkmode.css | |
- Linux: ~/.config/Franz/recipes/whatsapp/darkmode.css | |
*/ | |
/* ==UserStyle== | |
@name WhatsApp by Mew |
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
#!/bin/sh | |
# https://docs.docker.com/engine/installation/linux/ubuntu/#install-using-the-repository | |
sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 | grep [email protected] || exit 1 | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get install -y docker-ce | |
sudo docker run --rm hello-world | |
sudo groupadd docker |
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
private void PostgresNotification(object sender, NpgsqlNotificationEventArgs e) | |
{ | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); | |
Console.WriteLine("HELLO"); |
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
using System.Drawing; | |
using System.Threading.Tasks; | |
using Colorful; | |
using Console = System.Console; | |
namespace Demo | |
{ | |
class Program | |
{ | |
private static bool _isRunning = true; |