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
#!/bin/sh | |
# If you would like to do some extra provisioning you may | |
# add any commands you wish to this file and they will | |
# be run after the Homestead machine is provisioned. | |
# | |
# If you have user-specific configurations you would like | |
# to apply, you may also create user-customizations.sh, | |
# which will be run after this script. |
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
{ | |
"name": "clubwien-template-vue", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"serve": "vue-cli-service serve --open", | |
"build": "vue-cli-service build", | |
"eslint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .", | |
"test": "mochapack --mode development --webpack-config webpack.config.development.js --require test/setup.js test/**/*.spec.js", | |
"build:prod": "vue-cli-service build --modern --mode production" |
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
curl https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.jscroll.min.js | shasum -b -a 256 | awk '{print $1}' | xxd -r -p | base64 |
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
#!/bin/bash | |
grep -n -C 5 "SC_OPTIONS" -r vendor/typo3/cms |
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
import Vue from 'vue' | |
// This variable will hold the reference to | |
// document's click handler | |
let handleOutsideClick | |
Vue.directive('closable', { | |
bind (el, binding, vnode) { | |
// Here's the click/touchstart handler | |
// (it is registered below) |
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
delete from myTable where id in(SELECT id FROM (SELECT id, from_unixtime(crdate, '%Y') from myTable WHERE pid = 2203 and from_unixtime(crdate, '%Y') = 2018) mail) |
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
docker-machine ip default |
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
version: '2' | |
services: | |
jenkins: | |
image: 'jenkins/jenkins:lts' | |
labels: | |
kompose.service.type: nodeport | |
ports: | |
- '80:8080' | |
- '443:8443' | |
- '50000:50000' |
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
require('es6-promise').polyfill(); | |
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var uglify = require('gulp-uglify'); | |
var jshint = require('gulp-jshint'); |
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
#vagrant homestead | |
https://medium.com/@eaimanshoshi/i-am-going-to-write-down-step-by-step-procedure-to-setup-homestead-for-laravel-5-2-17491a423aa | |
#vagrant issue fix _Inaccessible_ | |
https://www.virtualbox.org/ticket/12205#comment:8 |
NewerOlder