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
# -*- coding: utf-8 -*- | |
# | |
""" | |
https://github.com/RDFLib/pySHACL/issues/240 | |
""" | |
import sys | |
import rdflib | |
import pyshacl |
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
2024-05-14T21:05:13.346+1000 [DEBUG] provider.terraform-provider-azurerm_v3.103.1_x5: Determining which Resource Providers require Registration: timestamp="2024-05-14T21:05:13.345+1000" | |
2024-05-14T21:05:13.346+1000 [DEBUG] provider.terraform-provider-azurerm_v3.103.1_x5: All required Resource Providers are registered: timestamp="2024-05-14T21:05:13.345+1000" | |
azurerm_network_interface_backend_address_pool_association.my_nic_address_pool: Creating... | |
2024-05-14T21:05:13.347+1000 [INFO] Starting apply for azurerm_network_interface_backend_address_pool_association.my_nic_address_pool | |
2024-05-14T21:05:13.348+1000 [DEBUG] azurerm_network_interface_backend_address_pool_association.my_nic_address_pool: applying the planned Create change | |
2024-05-14T21:05:13.348+1000 [INFO] provider.terraform-provider-azurerm_v3.103.1_x5: preparing arguments for Network Interface <-> Load Balancer Backend Address Pool Association creation.: timestamp="2024-05-14T21:05:13.348+1000" | |
2024-05-14T21:05:13.348+1000 [DEBUG] provider.terrafo |
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
locals { | |
location = "Australia East" | |
zones = [1, 2, 3] | |
} | |
resource "azurerm_resource_group" "my_rg" { | |
location = local.location | |
name = "minimal_rg" | |
} | |
resource "azurerm_public_ip" "my_lb_public_ip_address" { |
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
"$schema" = 'https://starship.rs/config-schema.json' | |
format = """ | |
[](color_red)\ | |
$os\ | |
$username\ | |
[](bg:color_yellow fg:color_red)\ | |
$directory\ | |
[](fg:color_yellow bg:color_aqua)\ | |
$git_branch\ |
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
# Do this first, to keep zprofile->zshrc ordering correct | |
if [ -z "$SYSTEM_ZPROFILED_LOADED" ]; then | |
if [ -d /etc/profile.d ]; then | |
for i in /etc/profile.d/*.zsh; do | |
if [ -r $i ]; then | |
. $i | |
fi | |
done | |
unset i | |
fi |
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
# /etc/zsh/zprofile: system-wide .zprofile file for zsh(1). | |
# | |
# This file is sourced only for login shells (i.e. shells | |
# invoked with "-" as the first character of argv[0], and | |
# shells invoked with the -l flag.) | |
# | |
# Global Order: zshenv, zprofile, zshrc, zlogin | |
if [ -d /etc/profile.d ]; then | |
for i in /etc/profile.d/*.zsh; do |
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
local wezterm = require 'wezterm' | |
local config = {} | |
config.front_end = "WebGpu" | |
config.font = wezterm.font 'FantasqueSansMono Nerd Font Mono' | |
config.font_size = 12 | |
config.dpi = 110 | |
;config.color_scheme = 'Builtin Solarized Dark' | |
config.color_scheme = 'Monokai Dark (Gogh)' | |
config.bold_brightens_ansi_colors = "BrightOnly" |
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
# -*- coding: utf-8 -*- | |
""" | |
https://github.com/RDFLib/pySHACL/issues/186 | |
""" | |
import rdflib | |
from pyshacl import validate | |
shacl_file = """{ | |
"@context": { |
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
import rdflib | |
from pyshacl import validate | |
shacl_file = """\ | |
@prefix ex: <urn:ex#> . | |
@prefix sh: <http://www.w3.org/ns/shacl#> . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
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
import rdflib | |
from pyshacl import validate | |
shacl_file = """\ | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix sh: <http://www.w3.org/ns/shacl#> . | |
@prefix ex: <http://example.com/ns#> . |
NewerOlder