TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #61 · 2 апр.

Ранее я уже упоминал о другой фишке из ˍˍfutureˍˍ , это оператор деления. from __future__ import division Суть проста. Раньше сложность типа данных результата поределялась типом самого сложного операнда. Например: int/int => int int/float => float В первом случае оба операнда int, значит и результат будет int. Во втором float более сложный тип, поэтому результат будет float. Если нам требуется получить дробное значение при делении двух int то приходилось форсированно один из операндов конверировать в float. 12/float(5) => float Но с новой "философией" это не требуется. В Python3 "floor division" заменили на "true division" а старый способ теперь работает через оператор "//". >>> 3/2 1.5 >>> 3//2 1 То есть теперь деление int на int даёт float если результат не целое число. В классах теперь доступны методы __floordiv__() и __truediv__() для определения поведения с этими операторами. Данный переход описан в PEP238. #pep#2to3#basic

Резултати

Пронајдени 2 слични објави

Пребарај: #jammer

当前筛选 #jammer清除筛选
GitHub Trends

@githubtrending · Post #15013 · 31.07.2025 г., 13:30

#other#bluetooth#bt#coding#cybersecurity#diy#electronics#esp32#flashing#hacker#hacking#jammer#nrf24#programming The ESP32-BlueJammer is a device that disrupts all wireless signals operating on the 2.4 GHz frequency, including Bluetooth, BLE, WiFi, RC drones, and many smart gadgets. It uses an ESP32 chip combined with nRF24 modules to create noise and send unnecessary packets, effectively jamming these signals within a range of over 30 meters, which can be extended with better antennas or amplifiers. This jammer is intended strictly for educational and security testing purposes to help understand and improve wireless security. It is illegal to use for malicious purposes, so it should be handled responsibly and legally[1][2][3]. https://github.com/EmenstaNougat/ESP32-BlueJammer

GitHub Trends

@githubtrending · Post #15367 · 25.12.2025 г., 13:00

#cplusplus#arduino#ble_jammer#ble_spoof#ble_spoofer#cybersecurity#deauther#esp32#hack#hacktoberfest#jammer#nrf_scanner#nrf24l01#sour_apple nRFBOX is a handheld ESP32-based tool that scans and analyzes the 2.4 GHz band (Wi‑Fi, BLE, etc.), shows signal strength and channel activity, and can run jamming, BLE jamming/spoofing, and Wi‑Fi deauthentication tests for security research and troubleshooting. It combines an ESP32, NRF24 modules, OLED display, battery management, and SD support for firmware and logging, with notes about limited range, device variability, and power limits when using multiple NRF modules. Benefit: you can use it to find crowded channels, diagnose wireless interference, and test network/device resilience in controlled, legal test environments. https://github.com/cifertech/nRFBox