This is a document that captures instructions for installing and configuring my primary [Oh My Zsh][1] plugins.
- [Zsh][2] is installed
- [Oh My Zsh][1] is installed
SKU,Name,Size,Price,Category | |
829580,countdown nz beef rump steak grass fed,per kg,24.9,meat-poultry/beef/steak | |
963001,silver fern farms nz beef flat iron steaks,null,11.5,meat-poultry/beef/steak | |
795755,countdown nz beef sirloin steak porterhouse grass fed large tray,per kg,25.9,meat-poultry/beef/steak | |
795598,countdown nz beef cross cut blade steak grass fed medium tray,per kg,24.6,meat-poultry/beef/steak | |
795766,countdown scotch fillet rib eye steak small tray,per kg,40.9,meat-poultry/beef/steak | |
795700,countdown nz beef blade steak grass fed medium tray,per kg,25.9,meat-poultry/beef/steak | |
795757,countdown scotch fillet rib eye steak large tray,per kg,40.5,meat-poultry/beef/steak | |
840776,countdown nz beef sirloin steak porterhouse whole grass fed,per kg,24.9,meat-poultry/beef/steak | |
795763,countdown nz beef bbq steak tenderised marinated grass fed,per kg,26.9,meat-poultry/beef/steak |
{ | |
"products": { | |
"items": [ | |
{ | |
"type": "Product", | |
"name": "countdown lamb leg frozen bone in", | |
"barcode": "0235318000002", | |
"variety": "frozen bone in", | |
"brand": "countdown", | |
"slug": "countdown-lamb-leg-frozen-bone-in", |
import axios, { | |
AxiosInstance, | |
AxiosRequestConfig, | |
AxiosResponse, | |
Method, | |
} from "axios"; | |
import Cookies from "js-cookie"; | |
import qs from "qs"; | |
export interface Authentication { |
name: Continuous deploy | |
on: | |
push: | |
branches: [master] | |
jobs: | |
serverless-deploy: | |
runs-on: ubuntu-latest |
byte[] ReadFile(string FileName) | |
{ | |
Byte[] resutl = new Byte[1024]; | |
StreamReader x = new Streamreader("c:\test.txt"); | |
try{ | |
x.Read(results, 64); | |
}catch(Exception e) | |
{ | |
//Do nothing |
const pactProvider = require('...'); | |
module.exports = function steps() { | |
this.Given(/^That a user accesses arrives at our amazing app’s homepage$/, () => { | |
pactProvider.addInteraction({ | |
state: 'querying a movie api service', | |
uponReceiving: 'a request to search for a given movie', | |
withRequest: { | |
method: 'GET', | |
path: '/', |
os: linux | |
node_js: '7' | |
sudo: required | |
env: DISPLAY=':99.0' | |
dist: trusty | |
addons: | |
apt: | |
sources: | |
- google-chrome | |
packages: |
; Remap Right Windows Key to Alt | |
RWin::RAlt | |
; Remap Right Alt to Ctrl | |
RAlt::RCtrl | |
; Remap Right Alt + Space to Ctrl + Space | |
RAlt & Space::Send ^{Space} |
.flex-grid { | |
display: flex; | |
box-sizing: border-box; | |
padding-top: 10px; | |
width: calc(100% - 20px); | |
margin: 0 auto; | |
} | |
.flex-grid:last-of-type { | |
padding-bottom: 10px; |