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-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "helm_release.magicentry" references: [kubernetes_namespace.magicentry (expand)] | |
2024-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/helm\"]" references: [] | |
2024-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "kubernetes_manifest.cm_client_issuer (expand)" references: [helm_release.cert_manager (expand) kubernetes_manifest.cm_client_ca (expand)] | |
2024-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "helm_release.ingress_nginx (expand)" references: [] | |
2024-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "local.domains (expand)" references: [var.domain var.domain] | |
2024-06-29T17:35:22.787+0300 [DEBUG] ReferenceTransformer: "module.invidious_ingress.output.host_list (expand)" references: [module.invidious_ingress.local.partial (expand) module.invidious_ingress.var.fqdn (expand)] | |
2024-06-29T17:35:22.788+0300 [DEBUG] pruneUnusedNodes: kubernetes_manifest.cm_letsencrypt_issuer (expand) is n |
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
# irm https://gist.github.com/dzervas/1455ace739c9871d1dcd06693d8ee874/raw | iex | |
#Bypass Execution Policy | |
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force | |
#Install boxstarter | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')); Get-Boxstarter -Force | |
#Disable UAC | |
Disable-UAC |
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
# WARNING: Please lower max Z speed to 30mm/s and max XY speeds to 50mm/s. | |
# Tinker more, maybe it needs to go slower! | |
# Pcb2GCode settings | |
metric=true | |
metricoutput=true | |
zero-start=true | |
zsafe=4 | |
zchange=5 | |
milling-overlap=10% |
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
// Enumerates all Java classes & methods in a nice way | |
var enumer = {}; | |
enumer.exclude = [ "size" ]; | |
filter = filter || function(obj, prop) { return true; }; | |
enumer.enumer = function(filter) { | |
return { | |
onMatch: function(obj) { |
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 getopt = require('getopt') | |
local utils = require('utils') | |
local function main(args) | |
key = 0x00000000 | |
byte = 0x04 | |
data = 0x00000000 | |
for o, a in getopt.getopt(args, 'k:b:d:') do | |
if o == 'k' then key = tonumber(a, 16) end |
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
#!/usr/bin/env python3 | |
import sys | |
# Usage: python efood_pinata.py 5 5 5 3 | |
items = sys.argv[1:] | |
total = 0 | |
discountp = 0 | |
for i in items: | |
total += float(i) |
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
FROM alpine | |
MAINTAINER Dimitris Zervas <[email protected]> | |
RUN apk add --update --no-cache bash curl gnupg && mkdir /caddy | |
RUN curl https://getcaddy.com | bash -s personal | |
WORKDIR /caddy | |
EXPOSE 80 443 2015 | |
VOLUME [ "/caddy" ] |
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
\s+(?:-([a-zA-Z0-9])(?:\s[\w,.<>\[\]]+)?)?,?\s+(?:--([a-z-]+)(?:\s[\w,.<>\[\]:]+)?)?\s+([A-Z][\w \(\)\/,.<>'-;\"]+) |
NewerOlder