List your aliases in a table like view.
Save list_aliases.sh in your home directory in a bin directory.
Create a file named .aliases in your home directory.
Add all your aliases like this:
alias ..="cd .." # Navigate one directory down| <?php | |
| namespace AppBundle\Service; | |
| use GuzzleHttp\Client; | |
| use Http\Client\Common\HttpMethodsClient; | |
| use Http\Adapter\Guzzle6\Client as GuzzleAdapter; | |
| use Http\Message\MessageFactory\GuzzleMessageFactory; | |
| use OneSignal\Config; | |
| use OneSignal\OneSignal; |
| <?php | |
| /* | |
| * Author: Nick Böcker | |
| * Created: 09.07.2017 | |
| * Homepage: https://nick-hat-boecker.de | |
| */ | |
| class CryptoCoins | |
| { | |
| private $curl; | |
| private $apiBaseUrl = 'https://min-api.cryptocompare.com/data/price'; |
| <?php | |
| // Wir importieren alle nötigen PHP Dateien | |
| require __DIR__.'/alexa-endpoint/autoload.php'; | |
| use MayBeTall\Alexa\Endpoint\Alexa; | |
| use MayBeTall\Alexa\Endpoint\User; | |
| // Damit sind wir bereit auf Alexa-Anfragen zu reagieren | |
| Alexa::init(); |
| lastCommitUrl = !sh -c 'printf "https://github.com/theskyliner/CopyFilepathWithLineNumbers/commit/%s" "$(git rev-parse HEAD)" && echo "\n"' |
| #!/bin/bash | |
| # | |
| # This script is used to update database url entries for wordpress. | |
| # | |
| # © Nick Böcker <https://nick-hat-boecker.de> 2019 | |
| # User input mysql username | |
| read -p "Enter mySQL username [root]: " USER | |
| USER=${USER:-root} |
| <?php | |
| /** | |
| * This script is used to bypass the certificate error of philipps hue api when working with Javascript. | |
| * You have to set an environment variable HUE_API_BASE_URL with the Hue Bridge IP and your hue userid. | |
| * | |
| * Example: https://192.168.0.1/api/hgdjklhKHFJLDSKHLHJFHKWHLwkhljl/lights | |
| */ | |
| class HueApiHelper | |
| { | |
| const METHOD_DELETE = 'DELETE'; |
| { | |
| "completions": | |
| [ | |
| { "trigger": "eslint-disable-line\tDisable rule for this line", "contents": "// eslint-disable-line ${1:rule}" }, | |
| { "trigger": "eslint-disable-next-line\tDisable rule for next line", "contents": "// eslint-disable-next-line ${1:rule}" }, | |
| ] | |
| } |
| import axios from 'axios' | |
| import store from '@/store' | |
| import { getCategoryBookmarks } from '@/helpers/Categories.js' | |
| export const loadBookmarks = async () => { | |
| const response = await axios.get(`${process.env.VUE_APP_API_BASE_URL}/get-all/`) | |
| if (!response || !response.data) { | |
| return [] | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| <style> | |
| @import url(https://db.onlinewebfonts.com/c/9882baf89f6a50439487112cbd8a91dd?family=UA+Cadet); |