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
| { | |
| "title": "Direct Language Switch", | |
| "rules": [ | |
| { | |
| "description": "Ctrl+Space → прямое переключение EN/RU", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "conditions": [ | |
| { |
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
| {"version":1,"resource":"file:///Users/kaspi2/Work/mobile/components/product/masterProduct/MasterProductForm/MasterProductFormImages.vue","entries":[{"id":"iL8Q.vue","source":"searchReplace.source","timestamp":1741250748437},{"id":"uNUZ.vue","source":"searchReplace.source","timestamp":1741251253132}]} |
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
| Сетевые технологии | |
| Программирование | |
| Научно-популярное | |
| Информационная безопасность | |
| Карьера в IT-индустрии | |
| Искусственный интеллект | |
| DIY или Сделай сам | |
| Python | |
| Машинное обучение | |
| Производство и разработка электроники |
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 script is used to create a merge request from develop to testing or testing to production | |
| * Usage: node scripts/release.js [testing|production] | |
| * Example: node scripts/release.js testing | |
| * Example: node scripts/release.js production | |
| * Note: This script is only for windows, mac and linux | |
| */ | |
| import { execSync, spawn } from 'child_process'; | |
| import os from 'os'; |
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
| // git push or git push --set-upstream current branch | |
| import { execSync } from 'child_process'; | |
| const output = execSync('git branch').toString().trim(); | |
| const CURRENT_BRANCH = output.match(/^\* (.+)$/m)[1]; | |
| execSync(`git push --set-upstream origin ${CURRENT_BRANCH}`); |
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
| #!/bin/bash | |
| # find it here: https://gitlab.com/[organization name]/[repository name]/edit inside the "General project settings" tab | |
| PROJECT_ID="1234567890" | |
| # find it here: https://gitlab.com/profile/personal_access_tokens | |
| TOKEN="qwertyuiopasdfghjklzxcvbnm1234567890" | |
| GITLAB_URL="https://gitlab.com" | |
| # The initial values of the parameters of the request |