Skip to content

Instantly share code, notes, and snippets.

View majedbojan's full-sized avatar
We turn coffee into code

MaJeD BoJaN majedbojan

We turn coffee into code
View GitHub Profile
@majedbojan
majedbojan / install.sh
Last active July 16, 2020 08:20 — forked from mhmdAljefri/install.sh
Setup Ubuntu Server with Ngnix + MySQL + Redis + Git + RVM + Ruby 2.4.0 + Ruby On Rails
#!/bin/sh
# ngix + required packages
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install curl git-core nginx build-essential tcl8.5 -y
# mysql
# sudo apt-get install libmysqlclient-dev mysql-server
@majedbojan
majedbojan / _alerts.html.erb
Created February 24, 2020 14:21 — forked from ali-sheiba/_alerts.html.erb
Setup Rails 6 with bootstrap
# app/views/shared/_alerts.html.erb
<% flash.each do |key, value| %>
<div class="alert alert-<%= alert_style(key) %>"><%= value %></div>
<% end %>