Skip to content

Instantly share code, notes, and snippets.

View yeehaa123's full-sized avatar

Jan Hein Hoogstad yeehaa123

View GitHub Profile
# Solution for Challenge: P1: Enumerables. Started 2013-06-25T21:26:00+00:00
#
# Objective 1
#
# Array#map iterates through an array, transforms the elements, and returns a new array
# Array#inject combines all arrays from an array onto one return value by performing an operation a mathematical operation. The inject corresponds to the base value that you use for further operations. You inject this into the array. Another name for this enumerable method is reduce
# Array#select filter an array and returns a new one
# yield method yields control and uses the output of a bloc
#
class Array
require 'minitest/spec'
require 'minitest/autorun'
describe Integer do
describe "#in_words" do
it "should return four for 4" do
4.in_words.must_equal "four"
end
it "should return twenty seven for 27" do
require 'minitest/spec'
require 'minitest/autorun'
describe Integer do
describe "#in_words" do
it "should return four for 4" do
4.in_words.must_equal "four"
end
it "should return twenty seven for 27" do
class Board
attr_reader :size
attr_accessor :board
def initialize(size)
@size ||= size
@board ||= clear
end
def clear
require 'matrix'
class Sudoku
attr_reader :board
def initialize(string)
@board = self.create_board(string)
end
def create_board(string)
array = string.split('').map(&:to_i)
class Student
attr_accessor :scores, :first_name
def initialize(input_student) #Use named arguments!
@first_name = input_student[:first_name]
@scores = input_student[:scores]
end
def average
scores.inject(:+).to_f / scores.length
set -g prefix C-a
unbind C-b

Vision

Students and scholars in the humanities generally rely on prefabricated tools to guide and instruct their learning and research. We are reluctant to engage with technology through coding. This remains a major distinction between the humanities and the sciences. The sciences design, create and maintain their own digital research environments and tools, while the humanities make do with prefabricated, and often inappropriate, tools.

At the moment, there are no broadly available academic programming courses aimed at humanities scholars. For various reasons, however, coding skills are needed now more than ever, and even more so in the future:

  1. Knowledge of programming helps students and researchers to understand the various technologically mediated objects that they are studying.

  2. Developing custom tools, rather than using ready-made ones, can improve the actual practice of humanities research as well as (the quantity and quality) of its output.

Jan Hein Hoogstad

Profile

Assistant Professor in Cultural Analysis with a passion for learning, research, and technology, and a drive to change all three of them.

Skills

Higher Education, Curriculum Development, Human Resource Management, Process Management, Philosopy, Cultural Analysis, Web Development, Career Counseling, Coaching, Behaviour Driven Development, Media Theory, Desktop Publishing and Front-End Design.

Jan Hein Hoogstad

Alt text

Jan Hein Hoogstad is an Assistant Professor in Cultural Analysis and Comparative Literature at the University of Amsterdam. This summer he was a coach and teaching assistant at Dev Bootcamp in San Francisco. In 2008, Jan Hein was a visiting professor at the University of Minnesota, Minneapolis and a research fellow at the Jan van Eyck Academy in Maastricht. He studied philosophy and media studies at the University of Utrecht and the Humboldt University in Berlin.

Marijn Koolen

Alt text