- E V E R Y O N E ' S C O N N E C T E D
- https://FreeBSD_Desktop_Server.dot.com
- https://Ubuntu_Touch_Linux_Mobile_Real.Now
- https://To_know_your_sin_is_to_have_no.sin
- https://Can_you_live.forever?
This file contains 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
<?php | |
return array ( | |
'exception_handling' => | |
array ( | |
'value' => | |
array ( | |
'debug' => true, | |
'handled_errors_types' => 4437, | |
'exception_errors_types' => 4437, | |
'ignore_silence' => false, |
This file contains 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
AddHandler fcgid-script .php .phtml .html .htm | |
FCGIWrapper /var/www/php-bin-php74/u0811566/php .php | |
FCGIWrapper /var/www/php-bin-php74/u0811566/php .phtml | |
FCGIWrapper /var/www/php-bin-php74/u0811566/php .html | |
FCGIWrapper /var/www/php-bin-php74/u0811566/php .htm |
This file contains 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 <vector> | |
template <typename T> | |
auto printBinary(T decimalNumber) -> void | |
{ | |
std::vector<T> result; | |
auto buffer = std::move(decimalNumber); | |
auto intermediateResult = std::move(decimalNumber); | |
if (buffer < 0) |
This file contains 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 <fcntl.h> | |
int main() | |
{ | |
mode_t perms = S_IRWXU; | |
int fd = open("log", O_CREAT | O_EXCL, perms); | |
if (fd >= 0) { | |
std::cout << "[OK] CreateFileA\n"; | |
} else { |
This file contains 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 mat = Material("sprites/stalker_cop/ani_explo") | |
function EFFECT:Init(data) | |
local origin = data:GetOrigin() | |
local angles = data:GetAngles() | |
self.Time = 0 | |
self.Data = data | |
ParticleEffect("cop_rgd_explosion", origin, angles) |
This file contains 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
AddCSLuaFile() | |
function EFFECT:Init(data) | |
local ent = data:GetEntity() | |
local att = data:GetAttachment() | |
local origin = self:GetTracerShootPos2(data:GetOrigin(), ent, att) - data:GetNormal() * 20 | |
local emitter = ParticleEmitter(origin) | |
local particle = emitter:Add("weapons/stalker_cop/muzzleflash_x", origin) |
This file contains 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
AddCSLuaFile() | |
function EFFECT:Init(data) | |
local ent = data:GetEntity() | |
local att = data:GetAttachment() | |
local origin = self:GetTracerShootPos2(data:GetOrigin(), ent, att) - data:GetNormal() * 20 | |
local emitter = ParticleEmitter(origin) | |
local rollDelta = (math.random() - math.random()) * 2 |
This file contains 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
AddCSLuaFile() | |
function EFFECT:Init(data) | |
local ent = data:GetEntity() | |
local att = data:GetAttachment() | |
local origin = self:GetTracerShootPos2(data:GetOrigin(), ent, att) - data:GetNormal() * 16 | |
local emitter = ParticleEmitter(origin) | |
local particle = emitter:Add("particle/particle_smokegrenade", origin) |
This file contains 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 PLUGIN = PLUGIN | |
PLUGIN.name = "Area" | |
PLUGIN.author = "Black Tea" | |
PLUGIN.desc = "Allows you to set area." | |
PLUGIN.areaTable = PLUGIN.areaTable or {} | |
nut.area = nut.area or {} | |
ALWAYS_RAISED["nut_areahelper"] = true | |
nut.config.add("areaFontSize", 26, "The size of the font of Area Display.", | |
function(oldValue, newValue) |
This file contains 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
function CleanAnomalies() | |
local anomtable = { | |
"electra_anomaly", | |
"electra_anomaly_type2", | |
"kometa_kisel", | |
"kometa_electra", | |
"gazirovka_anomaly", | |
"jarka", | |
"tramplin_anomaly", | |
"kisel_anomaly", |
OlderNewer