Skip to content

Instantly share code, notes, and snippets.

View Tolerant's full-sized avatar
🎯
Focusing

Alexandr Tolerant

🎯
Focusing
View GitHub Profile
@Tolerant
Tolerant / image.sh
Last active January 9, 2020 03:44
Оптимизация изображений
https://habr.com/ru/post/482820/#comment_21096120
.resize-animation-stopper * {
animation: none !important;
transition: none !important;
}
@Tolerant
Tolerant / scanner.ino
Last active January 26, 2019 17:16
I2C scanner
// Robo India Tutorial
// Digital Input and Output on LED
// Hardware: NodeMCU
// scanner. Scanning ...
// 23:13:22.263 -> Found address: 39 (0x27)
// Done.
// 23:13:22.298 -> Found 1 device(s).
// Ref- Nick Gammon http://www.gammon.com.au/forum/?id=10896
@Tolerant
Tolerant / WebSocketClientSocketIO.ino
Last active April 9, 2024 02:47
TinyGSM: Web Socket Client for Socket.io
/**************************************************************
* WebSocketClient SocketIO
* TinyGSM Getting Started guide:
* http://tiny.cc/tiny-gsm-readme
*
**************************************************************/
// Select your modem:
#define TINY_GSM_MODEM_SIM800
// #define TINY_GSM_MODEM_SIM808
@Tolerant
Tolerant / convert_guid_to_hex_string.sql
Created May 3, 2018 11:17
Convert 1с guid to HEX string
SELECT TOP 10
CONVERT(UNIQUEIDENTIFIER, CONVERT(BINARY(16), Fld)) AS guid
FROM [DATABASE]..[Info]
ORDER BY _Period DESC;