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
{ | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"description": "Double Left Shift to Capslock", | |
"manipulators": [ | |
{ | |
"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
// search-dsl.ts | |
// | |
// A detailed description can be found at | |
// https://www.claudiu-ivan.com/writing/search-dsl/ | |
// | |
// ====================== | |
// Core Types | |
// ====================== |
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 node | |
/** | |
* @file translate-docs.js | |
* @description A script to translate markdown files from one language to another using OpenAI's GPT model. | |
* @usage node translate-docs.js --directoryPath=<path> --sourceLanguage=<language> --targetLanguage=<language> | |
* @license MIT | |
*/ | |
const fs = require('fs').promises; |