This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this will need name-spacing so we don't over-write any partner / VLE CSS, suggestion, `kp--padding-around-sm`. | |
////////// | |
// Some Helper Classes | |
///////// | |
// around | |
// this goes around the whole thing | |
.padding-around-sm { | |
padding: 5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> | |
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> | |
<!-- <link rel="stylesheet" href="./css/mCustomScrollbar.css"/> --> | |
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js"></script> | |
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/fontawesome.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Sub notify_orderConfirmSend() | |
Const sUrl As String = "http://tomra.lnx.warwick.ac.uk/api/send/order-confirm" | |
Dim oRequest As WinHttp.WinHttpRequest | |
Dim sResult As String | |
On Error GoTo Err_notify_orderConfirmSend | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dubai | |
* https://angel.co/dubai/jobs | |
* https://www.glassdoor.co.uk/Job/dubai-jobs-SRCH_IL.0,5_IC2204498.htm | |
* https://dubai.dubizzle.com/jobs/information-technology/ | |
* https://jobsindubai.com/job_list.asp?job_cat_id=25 | |
* http://www.indeed.ae/jobs?q=UI+Agencies&l=Dubai | |
## Extra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before_script: | |
- curl -s https://getcomposer.org/installer | php | |
# etc... | |
stages: | |
- test | |
- deploy | |
job_aliveonly: | |
stage: test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: centos7 | |
before_script: | |
- php -v | |
- curl -s https://getcomposer.org/installer | php | |
- cp ./config/pst.gitlabci.php ./config/pst.php | |
- cp ./.env.gitlabci ./.env | |
- php composer.phar install --prefer-dist --quiet | |
- php composer.phar dump-autoload --quiet | |
- php artisan key:generate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vi ~/.bash_profile | |
# Add it, then close the Terminal window and re-open | |
# thanks me later | |
# Cmd + K (Command + K / Apple + K / Super + K) | |
clearbig() { | |
clear; | |
printf '\e[3J'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FeatureContext extends MinkContext implements Context, SnippetAcceptingContext | |
{ | |
/** | |
* @When I listen for the event :event | |
*/ | |
public function iListenForTheEvent($event) | |
{ | |
$redis = Redis::connection(); | |
$redis->set('eventHeard', false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit out homestead settings | |
homestead edit | |
# Enter your details, https://blackfire.io/account/credentials | |
# See re-provision your homestead box | |
vagrant global-status | |
vagrant provision ???? # << this is the id of the homestead instance you have running, from global-status | |
# So far this didn't work so carry on... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ScoringTest extends TestCase | |
{ | |
/** | |
* Some Grades | |
*/ | |
public static function all_grades_provider() | |
{ | |
return [ | |
[100.00], | |
[50.00], |
NewerOlder