Skip to content

Instantly share code, notes, and snippets.

View rossanoua's full-sized avatar

Ruslan Kvashuk rossanoua

  • JobRouter
  • Ukraine
View GitHub Profile
@rossanoua
rossanoua / jenkins.md
Created April 17, 2020 08:13 — forked from wagnerjgoncalves/jenkins.md
Shell Script to install Jenkins at Ubuntu
@rossanoua
rossanoua / Laravel Nova snippets.md
Created April 21, 2019 06:22 — forked from Krato/Laravel Nova snippets.md
A set of snippets I use in Laravel Nova

A set of snippets I use in Laravel Nova

Snippets

Vue,js devtools (Only with manual installation)

cd ./nova 
yarn
mv webpack.mix.js.dist webpack.mix.js
@rossanoua
rossanoua / .bashrc
Created August 23, 2017 14:33 — forked from wzup/.bashrc
alias for Git Bash on Windows
# create a file C:\Users\[user]\.bashrc
# add this content
# add your onw aliases or changes these ones as you like
# to make a dot (.bashrs) file in windows, create a file ".bashrs." (without extention) and save. windows will save it as ".bashrc"
alias ls='ls -alh'
alias cdnginx='cd /c/nginx && ls'
alias cdmcga='cd /c/Users/[user]/sbox/node/mcga && ls'
alias cdfood9='cd /c/Users/[user]/sbox/node/food9 && ls'
alias cdmysql='cd /c/nginx/mysql/bin && ls'
@rossanoua
rossanoua / Install Composer to use MAMP's PHP.md
Last active June 25, 2017 10:50 — forked from kkirsche/Install Composer to use MAMP's PHP.md
How to install Composer globally using MAMP's PHP

##Create an alias to MAMP's PHP installation

To do this, we can simply create an alias for our bash profile. We'll be doing this is nano, though you can do it in vim or a number of other editors as well.

Within the terminal, run:

nano ~/.bash_profile
vim ~/.zshrc

This will open nano with the contents, at the top in a blank line add the following line:

@rossanoua
rossanoua / 0_reuse_code.js
Last active June 3, 2016 12:16
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