Skip to content

Instantly share code, notes, and snippets.

const cdk = require("@aws-cdk/core");
const ec2 = require("@aws-cdk/aws-ec2");
const iam = require("@aws-cdk/aws-iam");
const ecs = require("@aws-cdk/aws-ecs");
const path = require("path");
const ecs_patterns = require("@aws-cdk/aws-ecs-patterns");
// Stack properties - what region to deploy to
const props = {
env: {
<template>
<div class="grid">
<div class="column-headings">
<div class="column" v-for="column in columns">
{{column.name}}
<a v-if="column.sortable === true"><i class="fa fa-caret-down"></i></a>
</div>
</div>
<div class="grid-rows">
<div class="grid-row" v-for="row in data">
@srhise
srhise / serviceworker.js
Last active December 8, 2015 03:30
serviceworker
/* in main.js it is successfully registering
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('js/serviceWorker.js').then(function(reg) {
// registration worked
console.log('Registration succeeded. Scope is ' + reg.scope);
}).catch(function(error) {
// registration failed
console.log('Registration failed with ' + error);
});
@srhise
srhise / remove non empty directory
Created September 9, 2014 13:57
SSH - Remove non empty directory
rm -rf <folder-name>
@srhise
srhise / SSH Upload
Last active August 29, 2015 14:06
Upload file via SSH
scp file-name.tar.gz user@xx.x.x.xx:/var/www
# param'd'#
mysql -h {hostname} -u {username}
# example #
mysql -h localhost -u root
# Edit PHP.INI
cd /etc/php5/apache2
sudo vi php.ini
# Restart Apache
sudo service apache2 restart
@srhise
srhise / GruntFile-moduleexports.js
Created January 30, 2014 01:03
Grunt module.exports
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('default', [ 'concat:css', 'cssmin:css', 'concat:js', 'uglify:js' ]);
@srhise
srhise / Gruntfile.js
Created January 30, 2014 01:00
Simple Grunt Setup (2 Files)
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
css: {
src: [
'css/*'
],
dest: 'combined.css'
},