Skip to content

Instantly share code, notes, and snippets.

@031nna
031nna / running-selenium.md
Last active June 5, 2018 17:12 — forked from aczietlow/selenium-php-webdriver-cheatsheet.md
Cheat sheet for using php webdriver (facebook/webdriver). https://goo.gl/L7wskn
use `xvfb-run java -Dwebdriver.chrome.driver=/home/vagrant/sites/millenium-testsuite/bin/drivers/chromedriver -jar bin/server/selenium-server-standalone-3.12.0.jar` or
`xvfb-run java -Dwebdriver.gecko.driver=/home/vagrant/sites/millenium-testsuite/bin/drivers/geckodriver -jar bin/server/selenium-server-standalone-3.12.0.jar
` to avoid issues in phantomjs
download link for selenium-server-standalone-3.12.0.jar: https://goo.gl/tbd1NS
start phantomjs server node_modules/.bin/phantomjs --webdriver=8001 or use selenium server java -jar bin/server/selenium-server-standalone-3.12.0.jar
or use  xvfb-run phantomjs --webdriver=8001  or phantomjs -platform offscreen --webdriver=8001
@031nna
031nna / gist:022dad52620b1742d9d23160d1738dfa
Created November 10, 2017 17:40 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@031nna
031nna / homestead.yaml.linux
Last active August 30, 2019 16:50
homestead yaml files for windows OS and BSD
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
@031nna
031nna / laravel-notes.md
Last active November 16, 2020 09:11
Common laravel commands

##laravel

logging in laravel

tail -n0 -F storage/logs/laravel.log add use Log; above the class then use Log::info('check this var =' . $var);

install laravel composer create-project laravel/laravel laravelapp

@031nna
031nna / git-shortcuts.md
Last active September 16, 2018 17:41
quick git shortcuts
@031nna
031nna / mysql.md
Created May 11, 2018 19:25
mysql commands

Prompt for password:

mysql -u <username> -p <databasename> < <filename.sql> Enter password directly (not secure):

mysql -u <username> -p<PlainPassword> <databasename> < <filename.sql> Example:

mysql -u root -p wp_users &lt; wp_users.sql
@031nna
031nna / atom-editor-offscreen-fix-windows.md
Created May 14, 2018 14:34
Fix atom editor displaying offscreen in windows
Solution:

I just found a solution to my problem. The atom window was rendered outside any screen >coordinates. I did the following steps to solve it:

Alt + Tab to choose the atom window
Alt + Space to open the context menu
Press 'm' to select move
Press any arrow key once
@031nna
031nna / install.sh
Created May 29, 2018 04:06 — forked from ziadoz/install.sh
Install Chrome, ChromeDriver and Selenium on Ubuntu 16.04
#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`
@031nna
031nna / countries.php
Created June 14, 2018 19:32 — forked from JeffreyWay/countries.php
Country Names + Codes
[
"United States" => "us",
"Afghanistan" => "af",
"Albania" => "al",
"Algeria" => "dz",
"American Samoa" => "as",
"Andorra" => "ad",
"Angola" => "ad",
"Anguilla" => "ai",
"Antarctica" => "aq",
@031nna
031nna / setup_mailcatcher.sh
Last active July 21, 2018 02:32 — forked from shark0der/setup_mailcatcher.sh
Mailcatcher installation script for Ubuntu 16.04 (14.04 commands commented out)
#!/bin/bash
# Install dependencies
# older ubuntus
#apt-get install build-essential libsqlite3-dev ruby1.9.1-dev
# xenial
sudo apt install build-essential libsqlite3-dev ruby-dev
# Install the gem
sudo gem install mailcatcher --no-ri --no-rdoc