##Simple AJAX example
- New request
- Callback
- Open
- Send
/* Clearfix */ | |
.parent-object:after { | |
content: ""; | |
display: table; | |
clear: both; | |
} |
<div class="table-wrapper"> | |
<div> | |
<table border="0" class="pricing-table-a"> | |
<tbody> | |
<tr><th> </th><th>Medical</th><th>Cancellation</th><th>Winter Sports Equipment</th><th>Piste Closure</th><th>Price<sup>(1)</sup></th></tr> | |
<tr class="highlight"> | |
<td>Columbus Direct</td> | |
<td>£10 million</td> | |
<td>£3,000</td> | |
<td>£400</td> |
/////////////////////////////////////////////////////////////////////////////////////////////// | |
// Width float mixin | |
/////////////////////////////////////////////////////////////////////////////////////////////// | |
@mixin float($width) { | |
width: $width; | |
float: left; | |
display: block; | |
clear: none; | |
} |
//////////////////////////////////////////////////////////////////////////////////// | |
// Require | |
//////////////////////////////////////////////////////////////////////////////////// | |
var gulp = require('gulp'), | |
prefix = require('gulp-autoprefixer'), | |
notify = require('gulp-notify'), | |
browserSync = require('browser-sync'), | |
reload = browserSync.reload, | |
sass = require('gulp-ruby-sass'), |
##Simple AJAX example
{ | |
"name": "basic", | |
"version": "1.0.0", | |
"description": "Basic", | |
"scripts": { | |
"py3": "python -m http.server 7777", | |
"py2": "python -m SimpleHTTPServer", | |
"build": "touch index.html favicon.ico style.css app.js && npm run dev && atom ." | |
} | |
} |
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
alias ls='ls -GFh' |
{ | |
"workbench.iconTheme": "vscode-icons", | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"editor.tabSize": 4, | |
"files.autoSave": "off", | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.formatOnPaste": true, | |
"editor.detectIndentation": false, |
#!/bin/bash | |
protected_branch='develop' | |
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,') | |
if [ $protected_branch = $current_branch ] | |
then | |
read -p "You're about to commit to develop, is that really a world that you want to live in? [y|n] " -n 1 -r < /dev/tty | |
echo | |
if echo $REPLY | grep -E '^[Yy]$' > /dev/null |
[ | |
{ | |
"key": "ctrl+shift+`", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, |