View .eslintrc
This file contains 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
{ | |
"plugins": [ | |
"react", | |
"prettier" | |
], | |
"extends": [ | |
"airbnb", | |
"react-app", | |
"prettier" | |
], |
View webpack.mix.js
This file contains 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
var mix = require('laravel-mix'); | |
var glob = require("glob-all"); | |
var PurgecssPlugin = require("purgecss-webpack-plugin"); | |
isProduction = (process.env.NODE_ENV === 'production' || process.argv.includes('-p')); | |
class TailwindExtractor { | |
static extract(content) { | |
return content.match(/[A-z0-9-:\/]+/g); | |
} |
View App.vue
This file contains 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
<template> | |
<div id="app"> | |
<img class="logo" src="./assets/logo.png"> | |
<Hello></Hello> | |
<Messages></Messages> | |
</div> | |
</template> | |
<script> | |
import Hello from './components/Hello' |
View Messages.vue
This file contains 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
<template> | |
<div> | |
<input type="text" placeholder="Enter message" v-model="newMessage"> | |
<button type="submit" @click="tryAddMessage">Add message</button> | |
<ul> | |
<li v-for="message in messages"> | |
<span>{{ message.text }}</span> | |
<span @click="tryRemoveMessage(message)">x</span> | |
</li> | |
</ul> |
View App.js
This file contains 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
// App.js | |
<template> | |
<div id="app"> | |
<Messages></Messages> | |
</div> | |
</template> | |
<script> | |
import Messages from './components/Messages' | |
import store from './vuex/store' |
View gist:2540c379e8c339df1c0d
This file contains 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
Template.profile.onCreated(function () { | |
this.subscribe('profile', Router.current().params.username) | |
}) | |
Template.profile.events({ | |
'click .follow-me': function (event, template) { | |
console.log(template.data) // null | |
//Meteor.call('follow', this.user._id); | |
} | |
}); |
View gist:6cb8390dfbc2d2ef1ed3
This file contains 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
Template.todo.onCreated(function() { | |
var template = this; | |
template.limit = new ReactiveVar(5); | |
}); | |
Template.todo.rendered = function () { | |
var template = this; | |
Vue.use(window['vue-validator']); |
View gist:81dd87a1efcc973457d9
This file contains 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
SwipeStationHub git:(master) ssh -vvv swipestationhub-node-01.clockhosting.com | |
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 | |
debug1: Reading configuration data /Users/niall/.ssh/config | |
debug1: /Users/niall/.ssh/config line 61: Applying options for * | |
debug1: Reading configuration data /etc/ssh_config | |
debug1: /etc/ssh_config line 20: Applying options for * | |
debug2: ssh_connect: needpriv 0 | |
debug1: Connecting to swipestationhub-node-01.clockhosting.com [81.29.68.189] port 22. | |
debug1: Connection established. | |
debug3: Incorrect RSA1 identifier |
View gist:36f90c78cf90d50afa03
This file contains 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
- var image = article.images.getImage('Teaser Landscape Big') | |
img(src=image.getUrl('9:4', 860), alt=image.properties.name) |
View SassMeister-input.scss
This file contains 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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
// vars | |
$darkBlue: #002c42; | |
$lightBlue: #1160a5; | |
// Essentially a function |
NewerOlder