This file contains 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
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |
<%*
videoUrl = await tp.system.prompt("URL del vídeo de YouTube");
async function getVideoData() {
const videoId = videoUrl.substring(32);
const apiKey = 'YOUR_API_KEY';
const url = `https://www.googleapis.com/youtube/v3/videos?part=snippet&id=${videoId}&key=${apiKey}`;
try {
<%*
videoUrl = await tp.system.prompt("URL del vídeo de YouTube");
async function getVideoData() {
const videoId = videoUrl.substring(32);
const apiKey = 'YOUR_API_KEY';
const url = `https://www.googleapis.com/youtube/v3/videos?part=snippet&id=${videoId}&key=${apiKey}`;
try {
<%*
videoUrl = await tp.system.prompt("URL del vídeo de YouTube");
async function getVideoData() {
const videoId = videoUrl.substring(32);
const apiKey = 'YOUR_API_KEY';
const url = `https://www.googleapis.com/youtube/v3/videos?part=snippet&id=${videoId}&key=${apiKey}`;
try {
This file contains 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
<# | |
.SYNOPSIS | |
Script to Initialize my custom powershell setup. | |
.DESCRIPTION | |
Script uses scoop, winget and chocolatey to install some applications | |
to be ready to work. | |
Creation inspired by the script created by Mike Pruett | |
.NOTES |
This file contains 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
<keymap version="1" name="Mac OS X 10.5+ - Ruben" parent="$default"> | |
<action id="$Delete"> | |
<keyboard-shortcut first-keystroke="delete" /> | |
<keyboard-shortcut first-keystroke="back_space" /> | |
<keyboard-shortcut first-keystroke="ctrl back_space" /> | |
</action> | |
<action id="$Undo"> | |
<keyboard-shortcut first-keystroke="ctrl z" /> | |
</action> | |
<action id="ActivateBookmarksToolWindow"> |