Skip to content

Instantly share code, notes, and snippets.

View aliselcuk's full-sized avatar
💭
Reshaping

Ali Selcuk aliselcuk

💭
Reshaping
  • superV
  • Istanbul
View GitHub Profile
@aliselcuk
aliselcuk / nginx.conf
Last active March 5, 2019 20:47 — 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
@aliselcuk
aliselcuk / configure-macos.sh
Created September 12, 2018 21:09 — forked from paulcalabro/configure-macos.sh
Script to install everything onto a new Mac
# Install command line developer tools
xcode-select --install
# Install Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Reset brew
brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup
# Install HTTPIE
@aliselcuk
aliselcuk / prep-ncv-env.sh
Created April 22, 2018 23:47 — forked from kevyworks/prep-ncv-env.sh
Prepare Dev Machine for: Node Composer & Laravel Valet
# install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# update brew
brew update
# should be added by homebrew installation?
sudo chown -R `whoami`:admin /usr/local/opt
# Node Version Manager
@aliselcuk
aliselcuk / timer_helpers.php
Created April 7, 2018 22:46 — forked from calebporzio/timer_helpers.php
A simple helper function and macro for timing php scripts and eloquent queries
<?php
// Helper function.
if (! function_exists('timer')) {
function timer($expression)
{
$start = microtime(true);
if ($expression instanceof Closure) {
$expression();