brew install mkcert
mkcert -install
GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.
It's great for beginners. Then it turns into a mess.
<?php | |
class FileReader | |
{ | |
private $filenames; | |
public function __construct($input) | |
{ | |
if (is_file($input)) { | |
$this->filenames = [ $input ]; | |
} elseif (is_dir($input)) { |
import integers.*; | |
public interface Matrix<N extends _N, M extends _N> { | |
public double getElementAt(int x, int y); | |
public void setElementAt(int x, int y, double value); | |
public int numRows(); | |
public int numCols(); | |
public default String asString() { | |
final String nl = System.getProperty("line.separator"); |
from ftplib import FTP
from datetime import datetime
start = datetime.now()
ftp = FTP('your-ftp-domain-or-ip')
ftp.login('your-username','your-password')
# Get All Files
files = ftp.nlst()
#!/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` |