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 | |
echo Install all AppStore Apps at first! | |
# no solution to automate AppStore installs | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
echo Install and Set San Francisco as System Font | |
ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
# /etc/nginx/conf.d/site.conf | |
# Site (port 80 -> 9090) | |
server { | |
listen 80; # Listen on port 80 for IPv4 requests | |
server_name localhost; | |
access_log /var/log/nginx/site_access.log; | |
error_log /var/log/nginx/site_error.log; |
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
# Find UUID of the snapshot | |
"c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" list hdds | grep MACHINE_NAME | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{45e0b604-0b3f-4612-9d3f-fa7107d59dc2}.vmdk | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c99ddf7-83ed-4110-83ff-76d68b59fc30}.vmdk | |
Location: C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c7e01f1-bced-4746-bf2a-cde5ec44e718}.vmdk | |
# Clone snapshot to a different folder | |
# This will create a .vdi (virtual disk | |
"c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" clonehd C:\Users\user\VirtualBox VMs\MACHINE_NAME\Snapshots/{3c7e01f1-bced-4746-bf2a-cde5ec44e718}.vmdk D:\thedisk-full.vdi |
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
let hasBlobConstructor = typeof(Blob) !== 'undefined' && (function () { | |
try { | |
return Boolean(new Blob()); | |
} catch (e) { | |
return false; | |
} | |
}()); | |
let hasArrayBufferViewSupport = hasBlobConstructor && typeof(Uint8Array) !== 'undefined' && (function () { | |
try { |
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
git config --global merge.tool kdiff3 | |
git config --global mergetool.keepBackup false | |
#on windows | |
git config --global mergetool.kdiff3.path 'G:\win\KDiff3\kdiff3.exe' | |
#remove backups option in kdiff3 settings |
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
public class FileService { | |
private static final Logger logger = Logger.getLogger(FileService.class); | |
@Override | |
public boolean uploadFile(MultipartFile file, FileInfo fileInfo) { | |
// Find folder to save the file | |
String fileDir = PropertiesUtil.getProperty("file.dir"); | |
// Create file | |
File f = new File(fileDir + fileInfo.getFileName()); |
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
'use strict'; | |
var gulp = require('gulp'), | |
uglify = require('gulp-uglify'), | |
ngAnnotate = require('gulp-ng-annotate'), | |
concat = require('gulp-concat'), | |
rename = require('gulp-rename'), | |
sourcemaps = require('gulp-sourcemaps'); | |
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 gulp = require('gulp'); | |
var sequence = require('run-sequence'); | |
var es = require('event-stream'); | |
var clean = require('gulp-clean'); | |
var htmlReplace = require('gulp-html-replace'); | |
var inject = require('gulp-inject'); | |
var compass = require('gulp-compass'); | |
var minifyCSS = require('gulp-minify-css'); | |
var ngAnnotate = require('gulp-ng-annotate'); | |
var uglify = require('gulp-uglify'); |
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 common = angular.module('common', []); | |
/** allows numbers to be displayed from a model value with the correct decimal rounding */ | |
common.directive('inputCurrency', function ($filter, $locale) { | |
return { | |
terminal: true, | |
restrict: 'A', | |
require: '?ngModel', | |
link: function (scope, element, attrs, ngModel) { |