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
#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() | |
{ |
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
# 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 |
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
section { | |
padding: 0 15px; | |
} | |
@media (min-width: 575.98px){ | |
section { | |
padding: 0 calc(50% - 270px); | |
} | |
} |
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
package main | |
import ( | |
"database/sql" | |
"net/http" | |
) | |
type myHandler struct { | |
mux map[string]func(http.ResponseWriter, *http.Request) | |
db *sql.DB |
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
#include <iostream> | |
#include <algorithm> | |
#include <vector> | |
using namespace std; | |
class Dijkstra { | |
public: | |
const int MAX = 1000000; | |
int vertices; |
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
#include "iostream" | |
using namespace std; | |
int main() { | |
int n; | |
cin >> n; | |
int val; | |
bool matrix[100][100]{}; |
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
@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 |
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 ---- | |
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) |