Using default Bootstrap 3.0, here's a short CSS snippet to style your login form.
A Pen by Ace Subido on CodePen.
/* Solarized Palette - http://ethanschoonover.com/solarized --------- | |
lightgray : #819090; | |
gray : #708284; | |
mediumgray : #536870; | |
darkgray : #475B62; | |
darkblue : #0A2933; | |
darkerblue : #042029; | |
paleryellow : #FCF4DC; | |
paleyellow : #EAE3CB; | |
yellow : #A57706; |
sudo rm -r /opt/LightTable /usr/bin/lighttable #remove a program lighttable | |
sudo apt-get upgrade | |
whereis <command> - This will give you the directory of the command | |
ssh-add -l - Check what keys you have | |
pwd - Shows you what directory you’re in | |
/usr/local/google/home/keeganb | |
rm <filename> - delete a file | |
Rmdir <directory> to remove folder | |
Mv - Move? | |
Copying |
Javac *.java // compile all java files |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Bootstrap CDN</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Bootstrap core CSS --> | |
<link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" media="screen"> |
python -V // shows 2.7.6 | |
python3 -V // shows 3.4.0 | |
django-admin.py version // 1.10.dev20160420170647 |
Type vimtutor into terminal for a “how to” guide | |
Try playing VIM Adventures, search for it in Google | |
Helpful Link | |
http://www.cs.colostate.edu/helpdocs/vi.html | |
:q - Quit Editing | |
:q! - Quit without questioning it | |
*u - Undo/redo | |
dw - deletes word starting with the letter where the cursor sits | |
*o - add new line and enter text |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.8.3/nv.d3.min.js"></script> | |
<script src="https://rawgit.com/enplore/nvd3-charts/master/gauge.js"></script> | |
<script src="https://rawgit.com/enplore/nvd3-charts/master/gaugeChart.js"></script> | |
<div id="gauge-chart"> | |
<svg></svg> | |
</div> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<style type="text/css" src="gauge.css"> | |
.chart-gauge | |
{ | |
width: 400px; | |
margin: 100px auto | |
} |
Using default Bootstrap 3.0, here's a short CSS snippet to style your login form.
A Pen by Ace Subido on CodePen.
-- login to my local MySql server | |
mysql -u root -p | |
-- password: | |
SHOW databases; | |
CREATE DATABASE db_name; | |
USE db_name; | |
SHOW tables; | |
CREATE TABLE table_name ( | |
id int(10) NOT NULL AUTO_INCREMENT, | |
foreign_key_id int(10), |