Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| { | |
| "title": "Mac OSX Style Shortcuts for RDP sessions. Translates OSX shortcuts to PC equivalent", | |
| "maintainers": [ | |
| "varp" | |
| ], | |
| "rules": [ | |
| { | |
| "description": "Mac OSX RDP: Home key to the beginning of the sentence (Command + Left)", | |
| "manipulators": [ | |
| { |
| # Uninstall current version you want to downgrade | |
| brew cask uninstall <PackageName> | |
| # Edit Cask file | |
| brew cask edit <PackageName> | |
| # e.g. Vagrant | |
| brew cask edit vagrant | |
| ``` | |
| cask 'vagrant' do |
TL;DR
Install Postgres 10, and then:
sudo pg_dropcluster 10 main --stop
sudo pg_upgradecluster 9.6 main
sudo pg_dropcluster 9.6 main| #!/bin/bash | |
| # | |
| # Usage: | |
| # ./make_certs.sh test.example.com | |
| # | |
| # The required input to make_certs.sh is the path to your pfx file without the .pfx prefix | |
| # | |
| # test.example.com.key | |
| # test.example.com.crt (includes ca-certs) |
| os: linux | |
| node_js: '12' | |
| sudo: required | |
| env: DISPLAY=':99.0' | |
| dist: trusty | |
| addons: | |
| apt: | |
| update: true | |
| sources: | |
| - google-chrome |
| #!/usr/bin/env bash | |
| # https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
| # https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
| # https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
| # https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
| # https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
| # https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` |
| <?php | |
| /** | |
| * page full capture for https://github.com/facebook/php-webdriver | |
| * | |
| * @param RemoteWebDriver $driver | |
| * @param string $screenshot_name capture save path | |
| * @throws Exception | |
| */ | |
| public function takeFullScreenshot($driver, $screenshot_name) |