yum install libstdc++*.i686
curl -fL -o "hpacucli-9.20-9.0.i386.rpm" https://downloads.hpe.com/pub/softlib2/software1/pubsw-linux/p414707558/v76503/hpacucli-9.20-9.0.i386.rpm
yum install libstdc++*.i686
rpm -i hpacucli-9.20-9.0.i386.rpm
yum install libstdc++*.i686
curl -fL -o "hpacucli-9.20-9.0.i386.rpm" https://downloads.hpe.com/pub/softlib2/software1/pubsw-linux/p414707558/v76503/hpacucli-9.20-9.0.i386.rpm
yum install libstdc++*.i686
rpm -i hpacucli-9.20-9.0.i386.rpm
vsix-bookmarklet
, create a bookmark in your browser.*.vsix
.name: Dispatch receiver | |
on: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
# Allows you receive the dispatch | |
workflow_dispatch: |
name: CI Workflow | |
on: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
if: "! startsWith(github.event.head_commit.message, 'WIP:')" |
Tested with Safari Version 12.1 (14607.1.40.1.4), running following line in Safari's console did the trick for me: | |
document.getElementById('root')['_reactRootContainer'] | |
._internalRoot.current.child.memoizedProps | |
.children.props.store.getState() | |
A related StackOverflow post: | |
https://stackoverflow.com/questions/59584733/how-do-i-access-the-redux-store-in-safari/68730213#68730213 |
# Install PowerShell | |
sudo snap install powershell --classic | |
# Or refer to following official link for further options. (I followed installation via package repository for Ubuntu 20.04) | |
# https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7.1#installation-via-package-repository---ubuntu-2004 | |
# install NTLM dependency | |
sudo apt install gss-ntlmssp | |
# Start PowerShell | |
sudo pwsh |
#!/bin/bash | |
commands=("man" "pwd" "ls" "whoami" "df" "top") | |
timestamp(){ date +'%Y-%m-%s %H:%M:%S'; } | |
log(){ echo -e "$(timestamp)\t$1\t$(whoami)\t$2" > /var/log/rbash.log; } | |
trycmd() | |
{ | |
# Provide an option to exit the shell | |
if [[ "$ln" == "exit" ]] || [[ "$ln" == "q" ]] | |
then |
:: With custom video file | |
./chrome.exe --use-fake-device-for-media-stream --use-file-for-fake-video-capture=c:\akiyo_qcif.y4m --user-data-dir=C:\tmp | |
:: With default stream | |
./chrome.exe --use-fake-device-for-media-stream --user-data-dir=C:\tmp2 |