Skip to content

Instantly share code, notes, and snippets.

View Adsidera's full-sized avatar

Anna Costalonga Adsidera

  • Hasso-Plattner-Institut
  • Berlin, Germany
  • 11:21 (UTC +02:00)
  • LinkedIn in/adsidera
View GitHub Profile
array1 = %w{ a b c}
array2 = %w{ b c d}
puts array1.select {|num| array2.include? num }
@Adsidera
Adsidera / second_cat.rb
Created October 14, 2015 15:19
Exercise 25
class Pet
attr_reader :color, :breed
attr_accessor :name
def initialize(color, breed)
@color = color
@breed = breed
@hungry= true
end
def feed(food)
@Adsidera
Adsidera / cat.rb
Created October 14, 2015 14:54
Exercise 24
class Cat
attr_reader :color, :breed
attr_accessor :name
def initialize(color, breed)
@color = color
@breed = breed
@hungry= true
end
@Adsidera
Adsidera / fav.foods.rb
Created October 10, 2015 10:18
Fav.foods.rb
def fav_foods
food_array = []
3.times do
puts "Name a favorite food"
food_array<< gets.chomp #shovel operator - takes the user inputs with gets.chomp and makes them elements of the array food_array#
end
puts "Your favorite foods are #{food_array.join(",")}"
food_array.each do |food|
puts "I like #{food} too!"
end
@Adsidera
Adsidera / Program2.rb
Created October 5, 2015 18:28
Exercise 22 - THe other 3 programs in Ruby
if (5+5==10)
puts "this is true"
else
puts "this is false"
end
@Adsidera
Adsidera / Program2.rb
Created October 5, 2015 18:25
Exercise 22 - the other 3 Programs in Ruby
if (5+5==10)
puts "this is true"
else
puts "this is false"
end
@Adsidera
Adsidera / Program.rb
Created October 5, 2015 18:15
My first Ruby code
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "Hello" + " " + name
end
greeting
@Adsidera
Adsidera / exercise20.js
Created September 8, 2015 18:26
Exercise 20
//*My first Code starts Here*//
var myProjects = [ { title: "First Project", pic: "img/Innenansichten.JPG" },
{ title: "Second Project", pic: "img/aruroralia.jpg" },
{ title: "Third Project", pic: "img/orfanelle.jpg" } ];
/* Hidden Navbar */
$(document).ready(function () {
@Adsidera
Adsidera / exercise19.html
Created September 6, 2015 18:33
Exercise 19
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<!--SCRIPTS-->
<!-- Adobe Fonts Script -->
<script src="http://use.edgefonts.net/cabin:n4,i4,n7,i7,n5,i5,n6,i6:all.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<!--SCRIPTS-->
<!-- Adobe Fonts Script -->
<script src="http://use.edgefonts.net/cabin:n4,i4,n7,i7,n5,i5,n6,i6:all.js"></script>
<!-- Twitter Button Script -->
<script>
!function(d,s,id)