Skip to content

Instantly share code, notes, and snippets.

View VladiStep's full-sized avatar

Vladislav Stepanov VladiStep

  • St. Petersburg, Russia
  • 16:05 (UTC +03:00)
View GitHub Profile
@VladiStep
VladiStep / hh.ru_cleanSalaryHelper.js
Last active May 4, 2025 16:27
Помощник hh.ru - показывать зарплату после вычета налога (Россия, рубли)
// ==UserScript==
// @name Помощник hh.ru
// @namespace http://tampermonkey.net/
// @version 2025-05-04
// @description Показывать зарплату после вычета налога.
// @author https://github.com/VladiStep
// @match https://*.hh.ru/vacancy/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=hh.ru
// @grant none
// @run-at document-idle
@VladiStep
VladiStep / center_all_text.jsx
Last active December 19, 2023 21:37
Center text horizontally from all text keyframes in a selected text layer (Adobe After Effects)
function checkIfTextLayerIsSelected() {
var selectedLayers = app.project.activeItem.selectedLayers;
if (selectedLayers.length < 1) {
alert("Please select a text layer", "Error", true);
return false;
} else if (selectedLayers.length > 1) {
alert("Multiple layers selected. Select a single text layer.", "Error", true);
return false;
}
if (selectedLayers[0] instanceof TextLayer) {