This file contains hidden or 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
require 'csv' | |
module FlashCardDB | |
def self.parse | |
result = [] | |
CSV.foreach("flashcards.csv") do |row| | |
unless row[0] == "definition" | |
result << {definition: row[0], term: row[1]} | |
end |
This file contains hidden or 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
class Vehicle | |
def initialize(args) | |
@status = :stopped | |
@color = args[:color] | |
@gas_capacity = 10 | |
@gas = 5 | |
end | |
def drive | |
unless needs_gas? |
This file contains hidden or 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
# Typical method definition | |
def multiply_number(integer) | |
puts integer * 2 | |
end | |
# Typical method calls | |
multiply_number(5) # this would print to the console the result of 5 * 2 | |
multiply_number(23) # this would print to the console the result of 23 * 2 |
This file contains hidden or 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
Post.find({}) | |
.sort('-date') | |
.exec(function(err, docs){ | |
console.log(req.session); | |
Category.$where('this.name.length > 0;') | |
.exec(function(err, cats){ | |
Page.find({nav: "true"}, function(err,pages){ | |
res.render('index', {title: 'Clay Whitley | Blog', docs: docs, cats: cats, pages: pages, loggedin: req.session.loggedIn}); | |
}); | |
}); |
This file contains hidden or 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
################################################################################ | |
##################################### | |
# Conky Configuration | |
# Compatible with Gnome2 and OpenBox | |
# Much of this config file was originally created by someone else, but it was so | |
long ago, | |
# I don't know who to give credit to... sorry. | |
# I've modified this a bunch over the years and this seems to be my main Conky s | |
cript for use with larger monitors. | |
# HilltopYodeler | http://www.hilltopyodeler.com/blog | [email protected] |
This file contains hidden or 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
import csv | |
import os | |
import sys | |
import datetime | |
os.chdir("/home/Development/") | |
fileList = os.listdir(".") | |
# fnumber = int(sys.argv[1]) | |
# fname = fileList[fnumber] | |
fname = str(sys.argv[1]) |
NewerOlder