View discord-streamkit-funny-maze.css
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
* { | |
margin:0; | |
padding:0; | |
} | |
html, body, div#app-mount, div#app-mount>div, .voice-container, .voice-container .voice-states, .voice-container .voice-states .voice-state { | |
display: block !important; | |
position: absolute!important; | |
top:0;bottom:0;left:0;right:0; | |
/* Размеры исходного изображения */ | |
width: 800px!important; |
View rutube-chat-overlay.css
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
/* Made by Paul von Lecter */ | |
/* https://paulvonlecter.name/ */ | |
body { | |
background:transparent!important; | |
text-shadow:0 0 1em #000; | |
overflow-y: hidden; | |
} | |
div { | |
background-color: transparent!important; | |
} |
View bitmask.php
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 | |
// source data | |
$source = array( | |
false, | |
true, | |
true, | |
false, | |
true, | |
true, | |
false, |
View get-post-functions.cs
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
private static string POST(string Url, string Data) { | |
System.Net.WebRequest req = System.Net.WebRequest.Create(Url); | |
req.Method = "POST"; | |
req.Timeout = 100000; | |
req.ContentType = "application/x-www-form-urlencoded"; | |
// Кодировка указывается в зависимости от кодировки клиента | |
byte[] sentData = Encoding.GetEncoding(1251).GetBytes(Data); | |
req.ContentLength = sentData.Length; | |
System.IO.Stream sendStream = req.GetRequestStream(); | |
sendStream.Write(sentData, 0, sentData.Length); |