Skip to content

Instantly share code, notes, and snippets.

View alincc's full-sized avatar

Alin Capitanescu alincc

View GitHub Profile
@alincc
alincc / osx_install.sh
Created June 24, 2018 12:16 — forked from t-io/osx_install.sh
Install most of my Apps with homebrew & cask
#!/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)"
@alincc
alincc / nginx.conf
Created April 20, 2018 10:35 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
# /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;
@alincc
alincc / sample.txt
Created April 27, 2017 08:50
VirtualBox clone snapshot using command line in Windows
# 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
@alincc
alincc / ImageTools.es6
Created April 1, 2017 08:59 — forked from dcollien/ImageTools.es6
Resize Images in the Browser
let hasBlobConstructor = typeof(Blob) !== 'undefined' && (function () {
try {
return Boolean(new Blob());
} catch (e) {
return false;
}
}());
let hasArrayBufferViewSupport = hasBlobConstructor && typeof(Uint8Array) !== 'undefined' && (function () {
try {
@alincc
alincc / gist:e5f3bae176b37c963cd440f7c718fe3e
Created January 19, 2017 16:38 — forked from AndrewSoltes/gist:4106317
set up kdiff3 with git
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
@alincc
alincc / FileService.java
Created June 23, 2016 12:09
Save file to folder
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());
@alincc
alincc / GulpFile.js
Created May 27, 2016 22:32 — forked from dhoko/GulpFile.js
Minimal setup for Gulp and Angular
'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');
@alincc
alincc / Gulpfile.js
Created May 27, 2016 22:32 — forked from Dpblandin/Gulpfile.js
Gulpfile [Laravel, Angular]
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');
@alincc
alincc / gist:91011198c41594da964c8685b7d80c3a
Created May 27, 2016 08:45 — forked from ScottGuymer/gist:9910569
angular directive to format a number in an input
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) {