I hereby claim:
- I am gwpantazes on github.
- I am georgepantazes (https://keybase.io/georgepantazes) on keybase.
- I have a public key ASCwHWJ1S53CCmKo0eXElQYZPsP--akwf93jcm_Hbrqjdgo
To claim this, I am signing this object:
import io.github.bonigarcia.wdm.WebDriverManager; | |
import java.io.IOException; | |
import java.util.Map; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.openqa.selenium.chrome.ChromeOptions; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.openqa.selenium.firefox.FirefoxOptions; | |
/* |
# 100% surefire way to detect a virtual environment: Check for the real_prefix system attribute. | |
echo $(python <<EOF | |
import sys | |
if(hasattr(sys, 'real_prefix')): | |
print("Yes, you are in a virtual environment. (" + getattr(sys, 'real_prefix') + ")") | |
else: | |
print("No, you are not in a virtual environment.") | |
EOF | |
) |
Homebrew build logs for python on macOS 10.14.5 | |
Build date: 2019-06-25 13:09:58 |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.safari.SafariDriver; | |
class SafariBugWorkaround { | |
/** | |
* Delete all the cookies for the current domain. | |
* | |
* <p>Should be used in-place of {@link WebDriver.Options#deleteAllCookies()} until <a | |
* href="">this {@code SafariDriver} bug</a> is fixed. |
package com.example.test; | |
import cucumber.api.java.en.And; | |
import cucumber.api.java.en.Given; | |
import cucumber.api.java.en.Then; | |
import cucumber.api.java.en.When; | |
public class MyStepdefs { | |
@Given("that we're using a scenario outline") |
I hereby claim:
To claim this, I am signing this object:
This guide shows an incremental approach to running a full R project with docker
, from docker installation to creating your own containerized R project.
This guide isn't going to go in-depth on how Docker works. We'll only cover necessary concepts if it's relevant at a particular step. To learn more about Docker, see the Docker Getting Started Overview.
export function getTypesafeEnumArray<T>(enumType: T): T[keyof T][] { | |
return Object.keys(enumType) | |
.filter((key) => isNaN(Number(enumType[key as keyof typeof enumType]))) | |
.map((key) => enumType[key as keyof typeof enumType]); | |
} | |
enum OrdinalEnum { | |
ONE, | |
TWO | |
} |
# Install Bash 4 using homebrew | |
brew install bash | |
# Or build it from source... | |
curl -O http://ftp.gnu.org/gnu/bash/bash-4.2.tar.gz | |
tar xzf bash-4.2.tar.gz | |
cd bash-4.2 | |
./configure --prefix=/usr/local/bin && make && sudo make install | |
# Add the new shell to the list of legit shells |
# Skyrim Vanilla+ Mod List for PS4/PS5 Skyrim Special/Anniversary Edition | |
> Compatible with PS4/PS5 Anniversary Edition | |
Version: v.0.0.1 - Updated on Thu Jan 20 12:26:45 CST 2022 | |
The goal of this mod list is to have an extremely stable vanilla experience with a few nice tweaks, such as patches, loading screens, lighting and graphics, etc. | |
## Mod List Load Order |