Skip to content

Instantly share code, notes, and snippets.

View abrhambas01's full-sized avatar
🎯
I'm busy with my freelance projects :'( Sorry github

Ai.B abrhambas01

🎯
I'm busy with my freelance projects :'( Sorry github
  • CEBU,PH
View GitHub Profile
@abrhambas01
abrhambas01 / steps_i've_made.md
Last active March 29, 2020 18:13
Previous steps that I've done to the app ( Laravel 5.5)

I am on version Laravel 5.5

  • I added this in the bottom part of the .env file
MIX_APP_URL="${APP_URL}"
  • I issued in the terminal
php artisan config:cache
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master
@abrhambas01
abrhambas01 / brew.txt
Created November 11, 2018 13:42
Running brew globally
test -d ~/.linuxbrew && PATH="$HOME/.linuxbrew/bin:$HOME/.linuxbrew/sbin:$PATH"
test -d /home/linuxbrew/.linuxbrew && PATH="/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:$PATH"
test -r ~/.bash_profile && echo "export PATH='$(brew --prefix)/bin:$(brew --prefix)/sbin'":'"$PATH"' >>~/.bash_profile
echo "export PATH='$(brew --prefix)/bin:$(brew --prefix)/sbin'":'"$PATH"' >>~/.profile
@abrhambas01
abrhambas01 / Setting Up Laravel Dev Environment In Linux.md
Last active November 10, 2018 03:49
How to set up laravel development environment in UNIX Based systems like Linux / Mac

Setting Up with Linux ( I'm using SOLUS ) A linux distro

  1. First install LinuxBrew derived from Homebrew

http://linuxbrew.sh/

that is the website

  1. Then install php, composer and npm from there.
  2. Just use laravel-valet ?
@abrhambas01
abrhambas01 / main.scss
Created July 28, 2017 03:43
Customized Style with laravel-mix and bulma css
Main scss file
// fonts
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab');
@import "node_modules/bulma/sass/utilities/initial-variables.sass";
@import 'var.scss';
@import 'node_modules/bulma/bulma.sass';
@abrhambas01
abrhambas01 / 0_reuse_code.js
Created June 27, 2017 05:23
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
var webpack = require('webpack')
var path = require('path')
module.exports = {
entry : "./src/app.js",
output :
{
path : path.resolve(__dirname,'./dist/js'),
filename : 'bundle.js'
},