Skip to content

Instantly share code, notes, and snippets.

View AdnanMoghal's full-sized avatar
💻
Focusing

Adnan Moghal AdnanMoghal

💻
Focusing
View GitHub Profile
@AdnanMoghal
AdnanMoghal / open-pantheon.py
Created July 16, 2019 11:29 — forked from randy3k/open-pantheon.py
open pantheon-terminal in Ubuntu nautilus
# -*- coding: UTF-8 -*-
# From https://github.com/gnunn1/tilix/blob/3f0a3d37f10f6ecfce30deca41636bb13020c2b3/data/nautilus/open-tilix.py
# Example modified for Pantheon Terminal
# Shortcuts Provider was inspired by captain nemo extension
from gettext import gettext, textdomain
from subprocess import PIPE, call
from urllib import unquote
from urlparse import urlparse
@AdnanMoghal
AdnanMoghal / List.md
Created February 12, 2017 07:19 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

@AdnanMoghal
AdnanMoghal / List.md
Created February 12, 2017 07:19 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

@AdnanMoghal
AdnanMoghal / gup-to-webpack.md
Created February 6, 2017 17:41 — forked from rap2hpoutre/gup-to-webpack.md
Laravel 5.4: migrate from gulp to webpack
  • Create a webpack.mix.js file in root directory:
const { mix } = require('laravel-mix');

mix.js('resources/assets/js/app.js', 'public/js')
  .sass('resources/assets/sass/app.scss', 'public/css');
  
/* Optional: uncomment for bootstrap fonts */
// mix.copy('node_modules/bootstrap-sass/assets/fonts/bootstrap/','public/fonts/bootstrap');