This file contains hidden or 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
ВЕСЕЛАЯ МУЗЫКА | |
СПОКОЙНАЯ МУЗЫКА | |
ГРУСТНАЯ МЕЛОДИЯ | |
ЛИРИЧЕСКАЯ МУЗЫКА | |
ДИНАМИЧНАЯ МУЗЫКА | |
ТАИНСТВЕННАЯ МУЗЫКА | |
ТОРЖЕСТВЕННАЯ МУЗЫКА | |
ИНТРИГУЮЩАЯ МУЗЫКА | |
НАПРЯЖЕННАЯ МУЗЫКА | |
ПЕЧАЛЬНАЯ МУЗЫКА |
This file contains hidden or 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
import typing as t | |
from fastapi import Depends, FastAPI, Header, HTTPException | |
from fastapi.security.http import HTTPAuthorizationCredentials, HTTPBearer | |
from pydantic import BaseModel | |
from starlette import status | |
app = FastAPI() | |
# Placeholder for a database containing valid token values |
This file contains hidden or 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
Обход блокировок роскомнадзора без прокси и VPN! | |
Среди пользователей интернета в России, наверное, уже не осталось тех, кто ни разу не задавался вопросом, как возможно обойти блокировки роскомнадзора. Большинство сайтов и гайдов обычно советуют использовать Tor, прокси или VPN. Эти решения, несмотря на свою относительную простоту и очевидность, имеют ряд недостатков: во-первых, VPN или прокси бывают медленными, из-за чего их использование может быть некомфортным. Во-вторых, эти способы обхода зачастую необходимо каждый раз включать и выключать. В-третьих, хороших бесплатных VPN/прокси не так много. | |
Однако существует способ обхода цензуры без использования каких-либо сторонних серверов. Принцип его работы, если объяснять совсем просто, заключается в изменении исходящих запросов к сайтам, позволяющим обойти фильтры DPI большинства российских интернет-провайдеров, ограничивающих доступ к сайтам. | |
Для компьютеров на Windows есть удобная утилита от ValdikSS, называющаяся GoodbyeDPI, ее достаточно установить как |
This file contains hidden or 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
import wave, array | |
# changed from https://stackoverflow.com/a/43163543/699934 | |
def make_stereo(file1, file2, output): | |
ifile1 = wave.open(file1) | |
ifile2 = wave.open(file2) | |
print(ifile1.getparams()) | |
# (1, 2, 44100, 2013900, 'NONE', 'not compressed') | |
(nchannels, sampwidth, framerate, nframes, comptype, compname) = ifile1.getparams() | |
assert ifile1.getparams() == ifile2.getparams() |
This file contains hidden or 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
NVIDIA Driver Version: 450.80.02 CUDA Version: 11.0 | |
This is the PCIE variant of the Nvidia Tesla A100 GPU | |
The PCIE variant is limited to 250W and this limit is visible in the faster algorithms benchmarked | |
Clock speed is also limited on this card, which explains some of the numbers being lower than expected | |
When comparing to the RTX 3090, consider the difference in Power and Clock speed limitation, as well as the use of HBM2e memory instead of GDDR6x | |
A benchmark of the full SMX4 A100 variant will follow as I get access | |
hashcat (v6.1.1) starting in benchmark mode... |
This file contains hidden or 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
# Mutable variable | |
var a = "hello" | |
# Immutable variable | |
let a = "hello" | |
# Specify a type | |
var age: int | |
var name: string |
If you have more you can still use this method (3 accounts per instance)
⚠ This guide is for the app available here: https://desktop.telegram.org/ not the one in the Mac/Windows App Store. For the Mac App Store app this should work: https://gist.github.com/Nachtalb/ec590dc974f6ba4674972d4937b230be/#gistcomment-3611415 ⚠
This file contains hidden or 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
/* Android ssl certificate pinning bypass script for various methods | |
by Maurizio Siddu | |
Run with: | |
frida -U -f <APP_ID> -l frida_multiple_unpinning.js [--no-pause] | |
*/ | |
setTimeout(function() { | |
Java.perform(function() { | |
console.log(''); |
NewerOlder