Skip to content

Instantly share code, notes, and snippets.

View merciless's full-sized avatar
🌚
zzz

Egor Golubev merciless

🌚
zzz
  • Vladivostok
View GitHub Profile
@merciless
merciless / alt-aug.ahk
Last active September 7, 2023 15:33
AHK Scripties
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
F12::Suspend
Esc::ExitApp
CopyToClipboard()
{
@merciless
merciless / .editorconfig
Last active October 16, 2020 06:07
ESLint, Prettier, Vetur + VSCode
# editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
@merciless
merciless / style.css
Created September 23, 2020 03:52
Container for web
section {
padding: 0 15px;
}
@media (min-width: 575.98px){
section {
padding: 0 calc(50% - 270px);
}
}
package main
import (
"database/sql"
"net/http"
)
type myHandler struct {
mux map[string]func(http.ResponseWriter, *http.Request)
db *sql.DB
@merciless
merciless / main.cpp
Created April 2, 2019 12:55
Алгоритм Дейкстры [работает не верно]
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
class Dijkstra {
public:
const int MAX = 1000000;
int vertices;
@merciless
merciless / main.cpp
Created March 20, 2019 22:40
Транзитивное замыкание
#include "iostream"
using namespace std;
int main() {
int n;
cin >> n;
int val;
bool matrix[100][100]{};
@import "fonts"
@import "libs"
@import "vars"
*
-webkit-box-sizing: border-box
-moz-box-sizing: border-box
box-sizing: border-box
&:before, &:after
-webkit-box-sizing: border-box
---- Minecraft Crash Report ----
WARNING: coremods are present:
AppleCore (AppleCore-mc1.12.2-3.1.3.jar)
ForgelinPlugin (Forgelin-1.7.4.jar)
BedPatch (bedpatch-2.2-1.12.2.jar)
CTMCorePlugin (CTM-MC1.12-0.3.0.15.jar)
RandomPatches (randompatches-1.12.2-1.4.1.0.jar)
ColytraLoadingPlugin (colytra-1.12.2-1.0.4.3.jar)
OpenModsCorePlugin (OpenModsLib-1.12.2-0.11.5.jar)