Skip to content

Instantly share code, notes, and snippets.

View stychos's full-sized avatar
🐢
...

stychos

🐢
...
View GitHub Profile
@stychos
stychos / grid.css
Last active January 16, 2024 17:51
Simplified pure CSS (almost) drop-in Bootstrap Grid replacement
:root {
--rows-column-count: 4;
--rows-column-gap: 1em;
}
.row {
display: flex;
box-sizing: border-box;
flex-flow: row wrap;
justify-content: flex-start;
; =================================================
; Защищённый реверсивный TCP шелл для Linux x64
; Author: Alan Vivona
; =================================================
global _start
; Номера системных вызовов
syscalls.socket equ 0x29
syscalls.bind equ 0x31
@stychos
stychos / qt5.6.3-msvc2017-openssl.txt
Created January 20, 2019 07:48
Qt 5.6.3 + MSVC 2017 + OpenSSL 1.0.x (WinXP static build support)
0. Install Visual Studio 2017 (Community Edtion or whatever), select "Windows XP support".
1. Download and unpack OpenSSL 1.0.x sources and prepare build. Mind the paths.
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86
set PATH=C:\Jom;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin;%PATH%
set INCLUDE=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include;%INCLUDE%
set LIB=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib;%LIB%
set CL=/D_USING_V110_SDK71_