Есть онлайн заказ. Калькулятор не работает, но есть файл с ценами, можно расчитать
Нет онлайн заказа. Есть цены.
Есть онлайн заказ. Калькулятор не работает, но есть файл с ценами, можно расчитать
Нет онлайн заказа. Есть цены.
package main | |
import ( | |
"github.com/prometheus/client_golang/prometheus" | |
"log" | |
"net/http" | |
"github.com/prometheus/client_golang/prometheus/promhttp" | |
) |
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/cloudflare/cloudflare-go" | |
"log" | |
"os" | |
) |
server "nomad-client" { | |
config { | |
packages "yum" { | |
additional_sources = [ | |
"epel-releases", | |
"https://download.docker.com/linux/centos/docker-ce.repo" | |
] | |
} | |
services "systemctl" {} |
package main | |
import ( | |
"flag" | |
"io" | |
"log" | |
"net" | |
"net/http" | |
"strings" | |
) |
#!/usr/bin/env bash | |
# Check if at least two arguments are provided (Alpine version and one package) | |
if [ "$#" -lt 2 ]; then | |
echo "Usage: $0 <alpine_version> <package1> [package2 ...]" | |
exit 1 | |
fi | |
alpine_version=$1 | |
shift |
#!/usr/bin/env bash | |
local command_text="$*" | |
command_output=$(eval "$command_text" 2>&1) | |
command_status=$? | |
echo "$command_output" | |
# Check if the command failed | |
if [ $command_status -ne 0 ]; then | |
print "===================================" | |
print "Explaining the error with aichat..." |
#!/bin/bash | |
# Function: aidir | |
# Description: | |
# This function analyzes the project code in a given directory by recursively | |
# finding all files and processing them. It skips directories specified in the | |
# environment variable AIDIR_SKIP. If AIDIR_SKIP is not set, no directories are skipped. | |
# The function concatenates the content of text/source files into a single string | |
# and saves it to ~/.aidir. Then, it starts a REPL session with aichat, using the | |
# concatenated content as input. |
[ | |
{ | |
"name": "Composer", | |
"ring": "adopt", | |
"quadrant": "tools", | |
"isNew": "TRUE", | |
"description": "Although the idea of dependency management ..." | |
}, | |
{ | |
"name": "Canary builds", |