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
# aws login urls, saves a few clicks when logging in, can be saved in password managers | |
#simple root login: | |
https://signin.aws.amazon.com/signin?client_id=arn:aws:signin:::console/canvas&redirect_uri=https://console.aws.amazon.com | |
#simple root login with with oauth instead of signin (response_type is needed if you use /oauth, it will anyway redirects to /signin): | |
https://signin.aws.amazon.com/oauth?client_id=arn:aws:signin:::console/canvas&response_type=code&redirect_uri=https://console.aws.amazon.com | |
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
// ==UserScript== | |
// @run-at document-start | |
// @name Bing to Google | |
// @namespace https://google.com/ | |
// @description Script that will forward your bing.com searches to Google.com. | |
// @include http://*.bing.com/search?* | |
// @include https://*.bing.com/search?* | |
// @version 1.0 test | |
// @grant none | |
// ==/UserScript== |
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
::clears the screen of this command prompt. | |
cls | |
::doesn't show the commands in this command prompt. | |
@echo off | |
::title of the command prompt, you can replace it to whatever you want. | |
title Pulse | |
::colour of the command prompt, it really looks good in green on black. more here https://www.computerhope.com/color.htm |