- Основний чат - неструктурована стіна тексту
- Мото-чат - туди вже виселили розмови про автомобілі/мотоцикли
- Діскорд - має окремий канал синхронізований з основним чатом
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
func escapeRune(c rune) rune { | |
if uint(c) < 0x20 { | |
return '_' | |
} | |
switch c { | |
case ';', '\n', '"', '\\': | |
return '_' | |
default: | |
return c | |
} |
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
% ansible-playbook test.yml | |
[WARNING]: Host file not found: .../homebrew/etc/ansible/hosts | |
[WARNING]: provided hosts list is empty, only localhost is available | |
PLAY [Fuck this shit] ********************************************************** | |
TASK [setup] ******************************************************************* | |
ok: [localhost] |
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/sh | |
if [ $# != 2 ]; then | |
echo "Usage: $0 path/to/application.app [on|off|default]" >&2 | |
exit 1 | |
fi | |
app="$1" | |
cmd="$2" |
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
/* | |
Copyright 2019 Max Ignatenko | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |
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
---- Minecraft Crash Report ---- | |
// Uh... Did I do that? | |
Time: 2019-12-09 22:14:59 GMT | |
Description: Ticking entity | |
java.lang.NoClassDefFoundError: net/tardis/mod/client/models/exteriors/IExteriorModel | |
at java.lang.Class.getDeclaredMethods0(Native Method) | |
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) | |
at java.lang.Class.privateGetMethodRecursive(Class.java:3048) |
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
local component = require("component") | |
local shell = require("shell") | |
local serialization = require("serialization") | |
local usageString = [[Automatic compactor for Refined Storage. | |
This computer needs to be connected to at least one Refined Storage component. | |
This program will query for crafting patterns and quantities of their inputs, | |
and schedule corresponding crafting tasks. | |
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
BOARD := arduino:megaavr:nona4809:mode=off | |
PORT ?= $(wildcard /dev/cu.usbmodem*) | |
.PHONY: all upload build format | |
all: build | |
format: | |
clang-format -i $$(find . -name \*.cpp -o -name \*.ino -o -name \*.h) |
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
BOARD := arduino:megaavr:nona4809:mode=off | |
PORT ?= $(wildcard /dev/cu.usbmodem*) | |
.PHONY: all upload build format | |
all: build | |
format: | |
clang-format -i $$(find . -name \*.cpp -o -name \*.ino -o -name \*.h) |
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
services: | |
postgres: | |
image: postgres:alpine | |
restart: unless-stopped | |
healthcheck: | |
test: pg_isready -h localhost -U $$POSTGRES_USER | |
interval: 2s | |
timeout: 5s | |
retries: 10 | |
volumes: |
OlderNewer