Skip to content

Instantly share code, notes, and snippets.

View wmakeev's full-sized avatar
💭
💻

Makeev Vitaliy wmakeev

💭
💻
View GitHub Profile
@wmakeev
wmakeev / typings.js
Last active February 5, 2019 16:30
Type Checking JavaScript Files #typescript #js #typings #jsdoc
// @ts-check
/**
* @typedef {Object} Geometry
* @property {number} w
* @property {number} h
* @property {number} wOffset
* @property {number} hOffset
*/
@wmakeev
wmakeev / README.md
Last active August 16, 2021 06:36
Yandex SpeechKit #yandex #cloud #speechkit

Yandex SpeechKit links

API

Prices

Generate Token yc iam create-token

Convert MP3 to OPUS

@wmakeev
wmakeev / 00_Terraform.md
Last active August 6, 2023 09:51
Terraform #terraform #aws
@wmakeev
wmakeev / 01-import.js
Last active March 4, 2019 21:43
Function arguments validator vision #vision
import validator from 'noname-validator-core'
import dsl from 'noname-validator-dsl'
const { describe, validate } = validator(dsl, __filename)
@wmakeev
wmakeev / README.md
Last active March 23, 2019 00:52
$mol project bootstrap #mol #bootstrap

Install and start dev server

git clone https://github.com/eigenmethod/mam.git ./my-project

cd my-project

npm install
@wmakeev
wmakeev / pipe.sh
Created May 18, 2019 16:19
ImageMagick tips #imagemagick #tips
# 1
convert -resize 1200 <(montage /path/to/file1.jpg /path/to/file2.jpg miff:-) outFile.jpg
# 2
montage /path/to/file1.jpg /path/to/file2.jpg miff:- > convert -resize 1200 - outFile.jpg
@wmakeev
wmakeev / temp-files.js
Last active June 27, 2019 09:20
Create temp files #node #tmp #temp
// https://github.com/benjamingr/tmp-promise
import { file } from 'tmp-promise'
(async () => {
const {fd, path, cleanup} = await file({ postfix: '.bmp' });
// work with file here in fd
cleanup();
})();
@wmakeev
wmakeev / README.md
Last active October 17, 2020 16:37
Java tips #java #maven

Java | Maven

Install

$ brew update && brew install maven
$ mvn --version
@wmakeev
wmakeev / cloudSettings
Last active July 28, 2019 15:34
VSCode #settings
{"lastUpload":"2019-07-28T15:33:58.290Z","extensionVersion":"v3.4.1"}
@wmakeev
wmakeev / ExifTool.md
Last active May 26, 2023 15:31
Linux image utilities setup #ufraw #imagemagick #exiftool