Skip to content

Instantly share code, notes, and snippets.

View Aziz-JH's full-sized avatar
🐝
(งツ)ว

Julian Haslinger Aziz-JH

🐝
(งツ)ว
View GitHub Profile
@LoveAndHappiness
LoveAndHappiness / gulpfile.js
Last active September 24, 2016 23:13
Laravel+Polymer Gulpfile
var elixir = require('laravel-elixir');
var gulp = require('gulp');
var vulcanize = require('gulp-vulcanize');
// npm install --save-dev browser-sync gulp-vulcanize vulcanize
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
@tgienger
tgienger / overwolf.windows.js
Last active November 26, 2015 14:08
Wrapped Overwolf's overwolf.windows methods in promises for use in ES6/7
export function getCurrentWindow() {
return new Promise((resolve, reject) => {
overwolf.windows.getCurrentWindow(res => {
resolve(res);
});
});
}
export function obtainDeclaredWindow(win) {
return new Promise((resolve, reject) => {
@suvozy
suvozy / Setup.md
Last active December 28, 2022 07:43
Setup AWS EC2 and RDS (php5.5, apache2.4, mysql5.5, phpmyadmin)
@barryvdh
barryvdh / _ide_helper.php
Last active May 6, 2024 07:45
Laravel IDE Helper for Netbeans / PhpStorm / Sublime Text 2 CodeIntel, generated using https://github.com/barryvdh/laravel-ide-helper
<?php
/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.5.13 on 2017-09-28.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @see https://github.com/barryvdh/laravel-ide-helper
*/
namespace {
exit("This file should not be included, only analyzed by your IDE");
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream