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: Namespace | |
metadata: | |
name: pretix | |
--- | |
apiVersion: helm.cattle.io/v1 | |
kind: HelmChart | |
metadata: | |
name: postgresql | |
namespace: pretix |
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/env python3 | |
from enum import Enum | |
import requests | |
import argparse | |
import re | |
from contextlib import closing | |
import secretstorage | |
import time | |
from typing import Any |
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 function checkBoard(board) { | |
const rowsValidity = board.map((row) => | |
checkSingleQueen(row) | |
) | |
const firstRow = board[0]; | |
const columns = getColumnsValidity(firstRow, board); | |
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 Adw from "gi://Adw?version=1"; | |
import Gtk from "gi://Gtk?version=4.0"; | |
import Gdk from "gi://Gdk?version=4.0"; | |
import WebKit from "gi://WebKit"; | |
const application = new Adw.Application({ | |
application_id: "com.github.pojntfx.webviewTransparentDemo", | |
}); | |
application.connect("activate", () => { |
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
javascript:(window.open(window.location,"popup","toolbar=no,menubar=no,resizable=yes,location=no,copyhistory=no")) |
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
chrome-untrusted://terminal/html/terminal.html?command=vmshell&settings_profile=default&args[]=--vm_name%3Dtermina&args[]=--target_container%3Dpenguin |
OlderNewer