grep.app search preview dialog
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
| export const urlMapping = { | |
| // MT Studio | |
| "https://help.inten.to/hc/en-us/categories/360003100099-Intento-MT-Studio": | |
| "https://help.inten.to/section/intento-mt-studio", | |
| "https://help.inten.to/hc/en-us/sections/4413578103442-Evaluation-Projects": | |
| "https://help.inten.to/section/evaluation-projects", | |
| "https://help.inten.to/hc/en-us/articles/4749773136924-Data-Cleaning": | |
| "https://help.inten.to/article/mt-studio-data-cleaning", | |
| "https://help.inten.to/hc/en-us/articles/360020905319-Train-Custom-Models-With-MT-Studio": |
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
| import path from "node:path"; | |
| import fs from "node:fs"; | |
| import { GraphQLClient, gql } from "graphql-request"; | |
| import { marked } from "marked"; | |
| type HelpCenterArticle = { | |
| id: string; | |
| title: string; | |
| description: string; | |
| contentHtml: string; |
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
| alias: Voice PE - Pause TV when Voice PE Listening | |
| description: "In order to improve voice command recognition, pause any media players playing in the background while listening for a command." | |
| triggers: | |
| - trigger: state | |
| entity_id: | |
| - assist_satellite.home_assistant_voice_090de2_assist_satellite # Voice PE Satellite entity | |
| to: listening | |
| conditions: | |
| - condition: not | |
| 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
| console.log('TEST FROM REMOTE SRC') |
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
| /* Box sizing rules */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| } | |
| /* Prevent font size inflation */ | |
| html { |
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
| " vim: et sw=2 sts=2 | |
| " Plugin: https://github.com/segeljakt/vim-silicon | |
| " Description: Create beautiful images of source code. | |
| " Maintainer: Klas Segeljakt <http://github.com/segeljakt> | |
| " | |
| " Update: Slightly modified to always copy to clipboard and never write image to disk - ndom91 | |
| if exists('s:autoloaded') | finish | el | let s:autoloaded = v:true | en |
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
| export default { | |
| mapMap: { | |
| 'CA': 'π¨π¦', | |
| 'BR': 'π§π·', | |
| 'US': 'πΊπΈ', | |
| 'JP': 'π―π΅', | |
| 'UK': 'π¬π§', | |
| 'FR': 'π«π·', | |
| }, | |
| async fetch(request, env, ctx) { |
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
| { | |
| "name": "app", | |
| "version": "0.0.1", | |
| "description": "", | |
| "main": "index.js", | |
| "author": "", | |
| "scripts": { | |
| "prepare": "npx simple-git-hooks" | |
| }, | |
| "type": "module", |
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 bash | |
| # | |
| # ndom91 - 23.02.2023 | |
| # Based off of: https://github.com/ory/docs/blob/cef92348c250b06efdf65de0ce6c3721147a718c/code-examples/migrate-to-ory/0-get-auth0-user-data.sh | |
| # Management API Tokens: https://manage.auth0.com/dashboard/eu/checkly/apis/management/explorer | |
| # Auth0 API /users-exports docs: https://auth0.com/docs/api/management/v2#!/Jobs/post_users_exports | |
| GREEN='\033[0;32m' | |
| BLUE='\033[0;34m' | |
| BRED='\033[1;31m' |
NewerOlder