Skip to content

Instantly share code, notes, and snippets.

View Nevillealee's full-sized avatar
🎯
Focusing

Nev Nevillealee

🎯
Focusing
  • Remote
View GitHub Profile
<!-- Form Fields:
First Name
Last Name
Address
Phone Number
Email Address
Submit -->
<!DOCTYPE html>
<html lang="en" dir="ltr">
@Nevillealee
Nevillealee / Lee_Neville ResumeRuby.html
Last active November 2, 2017 19:06
lee_neville_resume
<p style="margin-bottom: 0in; line-height: 100%;" align="center"><span style="font-size: large;"><strong>Neville Lee</strong></span></p>
<p style="margin-bottom: 0in; line-height: 100%;" align="center"><span style="color: #0563c1;"><u><a href="mailto:nevillealee@gmail.com"><span style="font-size: small;">nevillealee@gmail.com</span></a></u></span> <span style="color: #333333;"><span style="font-family: Helvetica, serif;"><span style="font-size: small;"><span style="background: #f3f3f3;">&bull;657-246-6647 &bull; </span></span></span></span><span style="color: #0563c1;"><u><a href="http://www.github.com/nevillealee"><span style="font-family: Helvetica, serif;"><span style="font-size: small;">www.github.com/nevillealee</span></span></a></u></span></p>
<p style="margin-bottom: 0in; line-height: 100%;" align="center"><span style="color: #0563c1;"><u><a href="https://www.linkedin.com/in/neville-lee-b54a20116/"><span style="font-size: small;">https://www.linkedin.com/in/neville-lee-b54a20116/</span></a></u></span><
@Nevillealee
Nevillealee / lambda_example.rb
Last active August 17, 2017 03:19
Lambda example
class Vehicle
attr_reader :make, :year
def initialize(make, year)
@make =make
@year = year
end
end
turbo911 = Vehicle.new("Porshe", 2017)
grandnational = Vehicle.new("Buick", 1987)