This file contains 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
Introduction to CSS3 Animations | |
===================== | |
**CSS3 came with a lot of handy features that changed the website styling dramaticaly, one of those is animations. There is a [specification][1] for the animation module since a couple of years now. Before CSS3, animating any element in your web page wasn't an easy task. Some of the techniques you might used in the past are Flash animations, animated GIFs, or using some JavaScript library that have animation techniques like JQuery.** | |
In this tutorial I will introduce you to how to use transitions, transforms, and animations by creating some simple examples. | |
---------- | |
CSS3 Transitions |
This file contains 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
Getting started with Ruby on Rails | |
===================== | |
#Contents | |
- What is Ruby | |
- RubyGems | |
- Ruby Version Manager (RVM) | |
- Ruby Installation | |
- Windows |
This file contains 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
#! /usr/bin/ruby | |
def euler_1(n) | |
numbers = [] | |
sum = 0 | |
(0..n).each do | |
n -= 1 | |
numbers << n if n % 3 == 0 or n % 5 == 0 | |
end |
This file contains 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
#! /usr/bin/ruby | |
def euler_2(n) | |
f = 0 | |
l= 1 | |
numbers = [] | |
i = 0 | |
while i <= n | |
i = f + l |
This file contains 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
#! /usr/bin/ruby | |
def prime? n | |
(2..(n-1)).each { |x| return false if n % x == 0 } | |
true | |
end | |
def euler_3(n) | |
i = 2 | |
numbers = [] |
This file contains 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
Vim for Rails | |
===================== | |
---------- | |
Contents | |
--------- |
This file contains 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
Vim for Rails | |
===================== | |
---------- | |
## Contents | |
- Introduction to Vim |
This file contains 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
Vim for Rails | |
===================== | |
---------- | |
## Contents | |
- Introduction to Vim |
This file contains 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
Vim for Rails | |
===================== | |
---------- | |
## Contents | |
- Introduction to Vim |
This file contains 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
Vim for Rails | |
===================== | |
---------- | |
### Brief history of Vi and Vim | |
Before the appearance of the famous operating system UNIX, the text editor “ed” appeared, which was written by Ken Thompson in 1971. ed is regarded as one of the oldest text editors ever, and it is also regarded as the first to implement the concept of Regular Expressions. |
OlderNewer