This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.video_contain { | |
position: absolute; | |
top: -50%; | |
left: -50%; | |
width: 200%; | |
height: 200%; | |
} | |
video { | |
position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#JAVASCRIPT NOTES | |
This is for you to reference when doing homework --- this will contain it all! | |
**Table of Contents** | |
[TOC] | |
###data types | |
``` | |
// variables (user 'var') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###Guessing game | |
```ruby | |
puts"pick an integer number 1...100 and keep it in your head" | |
puts "NO TROLLOLLOLLOLLOLLOLLOLLOing" | |
puts "continue... ( press enter)" | |
gets | |
top = 1000 | |
bottom = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXERCISES | |
##while while while | |
first let's do some stuff with while loops and counters | |
####one | |
make a while loop that runs 3 times -- printing some text each time -- then stops running. (you'll need to use a counter) | |
####two |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GTA Gameplan | |
## Version 1 | |
- **map:** one dimensional, strings | |
- **items:** strings | |
- **user:** the user has an inventory and a current location. the inventory is an array of items. the location is a simple string. | |
- **actions:** the user has some basic actions... for instance: | |
- **take:** take an item from the world and move it to user's inventory | |
- **move:** move to a different location on the map | |
- **status:** prints out users inventory and current location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GTA Gameplan | |
## Version 1 | |
- **map:** one dimensional, strings | |
- **items:** strings | |
- **user:** the user has an inventory and a current location. the inventory is an array of items. the location is a simple string. | |
- **actions:** the user has some basic actions... for instance: | |
- **take:** take an item from the world and move it to user's inventory | |
- **move:** move to a different location on the map | |
- **status:** prints out users inventory and current location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GTA Gameplan | |
## Version 1 | |
- **map:** one dimensional, strings | |
- **items:** strings | |
- **user:** the user has an inventory and a current location. the inventory is an array of items. the location is a simple string. | |
- **actions:** the user has some basic actions... for instance: | |
- **take:** take an item from the world and move it to user's inventory | |
- **move:** move to a different location on the map | |
- **status:** prints out users inventory and current location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTES | |
[TOC] | |
##STRINGS | |
```ruby | |
"strings look like this." | |
``` | |
###index reference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>NOTES</title> | |
<link rel="stylesheet" href="https://stackedit.io/res-min/themes/base.css" /> | |
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> | |
</head> | |
<body><div class="container"><h1 id="notes">NOTES</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
"required | |
Bundle 'gmarik/vundle' | |
Bundle 'vim-scripts/YankRing.vim' | |
Bundle 'mileszs/ack.vim' | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'loremipsum' |
NewerOlder