All of the following are commands that you run at your terminal
\curl -sSL https://get.rvm.io | bash -s stable --ruby
gem install jekyll
gem install bundler
.clearfix:after { | |
visibility: hidden; | |
display: block; | |
font-size: 0; | |
content: " "; | |
clear: both; | |
height: 0; | |
} | |
.clearfix { display: inline-block; } | |
/* start commented backslash hack \*/ |
var fibonacci = function(n) { | |
return Array.apply(null, Array(n)) | |
.reduce(function(sequence, value, index) { | |
return sequence.concat((index < 2) ? index : sequence[index - 1] + sequence[index - 2]); | |
}, []); | |
}; |
alias fs="[[ -f Procfile.dev ]] && { foreman start -f Procfile.dev; true; } || foreman start" |
Oh-my-zsh is an extension of the traditional z shell that is extensible via community created plugins (Plugins found here: oh-my-zsh github repo). It is, in my opinion, a breath of fresh air in comparison to the traditional bash shell.
DO THE FOLLOWING IN ORDER
The first step for this install is getting zsh
we will do this via yum. From your terminal:
<!-- Viewport Meta/Description --> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
CREATE TABLE table_name | |
( | |
column_name1 data_type(size), | |
column_name2 data_type(size), | |
column_name3 data_type(size), | |
); |
UPDATE table_name SET column_1='new_column_value', column_2='new_column_value' WHERE Column_Test='Column_value'; |
DELETE FROM table_name WHERE column='column_value'; |
INSERT INTO table_name (column_1, column_2) VALUES ('Value 1','Value 2'); |