Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
//* Script: Customizable spawn loadouts for regular and donator players | |
//* Author: Wardog | |
//* Donate: https://wrdg.net/donate | |
//* | |
//* Notes: Creates a directory in the Server Profile folder called SpawnLoadout. You can change these files in | |
//* in real time, without restarting the server to take effect. | |
//* | |
//* ./SpawnLoadout/CommonItems.txt = items spawned between both donators and regulars | |
//* ./SpawnLoadout/Regular.txt = loadout for regular players | |
//* ./SpawnLoadout/Donators/STEAMIDHERE.txt = directory where steam id files go for donators; loadouts for donators |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
@use "sass:map"; | |
$border-radius-default-value: 0.625rem!default; | |
$border-radius-top-left-value: $border-radius-default-value!default; | |
$border-radius-top-right-value: $border-radius-default-value!default; | |
$border-radius-bottom-left-value: $border-radius-default-value!default; | |
$border-radius-bottom-right-value: $border-radius-default-value!default; | |
$border-radius: ( | |
top-left: $border-radius-top-left-value, | |
top-right: $border-radius-top-right-value, |
const Asyncer = (function(){ | |
function asyncWorkerRunner(worker){ | |
if(worker.result.isWaiting()){ | |
worker.result.setPending(); | |
try{ | |
worker.workerFunction(function(resultData){ | |
worker.result.setSuccessResult(resultData); | |
}, ); | |
}catch(exceptionData){ | |
worker.result.setErrorResult(exceptionData); |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
int getline(char *s, int n){ | |
int c; | |
char *t=s; | |
while(n-- > 0 && (c=getchar())!=EOF && c!='\n') *t++ = c; | |
*t='\0'; |
const async = require('async'); | |
class demoClass { | |
constructor(con) { | |
this.constantVariable = con; | |
const that = this; | |
this.q = async.queue(function(input, cb){ | |
that.processFunc(input, cb); | |
//vagy that.processFunc.apply(that, arguments); | |
}, 1); |
<?php | |
set_error_handler(function(){ | |
$backtrace = debug_backtrace(0); | |
$backtrace[2]["args"][0][0] = 7; | |
$backtrace[2]["args"][0][1] = 5; | |
$backtrace[2]["args"][0][2] = 3; | |
}); | |
$test = [4,3,2]; |
/* Compatible with Bootstrap 3 and 4 */ | |
body.modal-open > :not(.modal) { | |
-webkit-filter: blur(1px); | |
-moz-filter: blur(1px); | |
-o-filter: blur(1px); | |
-ms-filter: blur(1px); | |
filter: blur(1px); | |
} |