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
#!/usr/bin/env python3 | |
import os | |
import argparse | |
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
from matplotlib.backends.backend_pdf import PdfPages | |
def csv_to_pdf(csv_file, pdf_file): |
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
(async function() { | |
'use strict'; | |
// Функция для инициализации слушателя клавиш (зависим от раскладки) | |
function initializeKeyListener() { | |
console.log('Initializing key listener...'); | |
document.addEventListener('keydown', async function(event) { | |
console.log(`Key pressed: ${event.key}, Ctrl: ${event.ctrlKey}, Meta: ${event.metaKey}, Alt: ${event.altKey}`); |
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 os | |
import argparse | |
import subprocess | |
from typing import Dict, List, Optional, Tuple, TypedDict | |
class TrackData(TypedDict): | |
track: int | |
title: Optional[str] | |
artist: Optional[str] |
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
@echo on | |
rem Remove Yandex Browser | |
rem Stop Update Service Yandex Browser | |
sc stop "Yandex.Browser Update Service" | |
sc delete "Yandex.Browser Update Service" | |
rem Stop Process | |
taskkill /f /im browser.exe | |
taskkill /f /im service_update.exe |
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
# Original from https://developer.android.com/studio/releases/emulator#emulator_for_arm64_hosts | |
mkdir emu | |
cd emu | |
repo init -u https://android.googlesource.com/platform/manifest -b emu-master-dev --depth=1 | |
repo sync -qcj 24 | |
cd external/qemu | |
pip install absl-py | |
pip install urlfetch | |
# sudo apt-get install crossbuild-essential-arm64 |