Skip to content

Instantly share code, notes, and snippets.

View heyouli's full-sized avatar

Julia Hofmann heyouli

View GitHub Profile
@heyouli
heyouli / cat.rb
Last active July 26, 2018 11:18
Ruby on Rails
class Cat
attr_reader :color, :breed
attr_accessor :name
def initialize(color, breed)
@color = color
@breed = breed
@hungry = true
end
@heyouli
heyouli / index.html
Last active July 24, 2018 09:43
Julia Hofmann
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Julia Hofmann</title>