Auto Hot Key
213 subscribers
7 files
17 links
Created using ahk with love ❤️

@Lencore
Download Telegram
💬 Хочешь рассказать о своем проекте или поделиться полезным скриптом, библиотекой или сервисом? Напиши @Lencore

💬 Want to tell about own project or share useful script, library or service? Write me @Lencore
😌 sheet.best — облегчаем работу с Гугл таблицами, превращая работу с ними в REST API. У гугла ужасно замудренные протоколы авторизации, а через сервис все просто — открыл доступ к таблице и добавляешь данные через POST запросы. Попробуйте, если ненавидите OAuth так же, как я. Первый месяц — бесплатно 15к запросов, далее 15к за $10, либо 50к за $20.

😌 sheet.best — make work with Google Sheets much easier by transforming it into REST API. Google has awful auth protocols, and it's solved now: just generate link to your sheet and add new data by sending POST requests. Try it if you hate OAuth as much as me xd. Free 15k requests for the first month, then $10 for 15k or $20 for 50k.

Сайт / Site:
https://sheet.best

Документация / Documentation:
https://docs.sheet.best/#welcome

@AutoHotKey
#Service #API
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1
📊 Вычисление среднего отклонения по массиву (стандартная девиация). В основном используется в финансах. Если вы не знаете, для чего он, скорее всего он вам не нужен, но скрипт в любом случае полезный.

📊 Standard deviation calculation for array, Mainly used in finance. If you don't know what it's for, you probably don't need it, but the script is useful anyway.

v1 / v2:

nums := [20.4, 18.0, 1.4, -8.6, -14.4, 3.0, -38.8, 20.9, -4.2, 131.0, -43.2, 4.6]
msgbox Round((StandardDeviation(nums)/100), 2)

StandardDeviation(arr) {
mean := sd2 := 0
for val in arr
mean += val
mean /= arr.Length
for val in arr
sd2 += (val - mean) ** 2
return sqrt(sd2 / arr.Length)
}


Источник / Source:
https://www.autohotkey.com/boards/viewtopic.php?p=560434#p560434

@AutoHotKey
#Script
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1