This file contains 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
/Users/vincentlandgraf [vincentlandgraf] $ sass --watch styles/components/ styles/layout/:public/stylesheets/ --trace | |
/Users/vincentlandgraf/.rvm/gems/ruby-1.9.2-head/gems/haml-3.0.13/bin/../lib/haml/exec.rb:400:in `watch_or_update': File styles/layout/:public/stylesheets/ doesn't exist. (RuntimeError) | |
Did you mean: sass --watch styles/components/:styles/layout/:public/stylesheets/ | |
from /Users/vincentlandgraf/.rvm/gems/ruby-1.9.2-head/gems/haml-3.0.13/bin/../lib/haml/exec.rb:350:in `process_result' | |
from /Users/vincentlandgraf/.rvm/gems/ruby-1.9.2-head/gems/haml-3.0.13/bin/../lib/haml/exec.rb:42:in `parse' | |
from /Users/vincentlandgraf/.rvm/gems/ruby-1.9.2-head/gems/haml-3.0.13/bin/../lib/haml/exec.rb:22:in `parse!' | |
from /Users/vincentlandgraf/.rvm/gems/ruby-1.9.2-head/gems/haml-3.0.13/bin/sass:8 | |
from /usr/bin/sass:19:in `load' | |
from /usr/bin/sass:19 |
This file contains 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
webcal://ecoline.oh-kalender.de/ics/Deutschland.ics |
This file contains 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 "time" | |
class Commit | |
attr_accessor :revision, :author, :time, :lines, :comment | |
end | |
# parse input arguments | |
from = ARGV.shift.to_i | |
to = ARGV.shift.to_i |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css" media="screen"> | |
* { | |
overflow: hidden; | |
font-family: "Helvetica Neue"; | |
cursor: pointer; | |
text-selection: none; | |
} |
This file contains 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
# Maintainer: Vincent Landgraf <vilandgr+github(at)googlemail(dot)com> | |
pkgname=istatd | |
pkgver=0.5.7 | |
pkgrel=2 | |
pkgdesc="Serving statistics to the iStat iPhone application from Linux, Solaris and FreeBSD." | |
url="https://github.com/tiwilliam/istatd" | |
arch=('x86_64' 'i686') | |
license=('MIT') | |
depends=('libxml2') | |
optdepends=() |
This file contains 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
#include <iostream> | |
template <typename MsgType> | |
class Greeting { | |
private: | |
MsgType m_pre; | |
MsgType m_post; | |
public: | |
Greeting(MsgType pre) |
This file contains 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
# | |
# PROVISIONING OF JRUBY BASED DEPLOYMENTS | |
# | |
# Copyright (c) 2012 Vincent Landgraf | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
This file contains 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
#!/usr/bin/env ruby | |
require "rubygems" | |
require "istat" | |
require "logger" | |
logger = Logger.new(STDOUT) | |
class Istat::Client | |
attr_accessor :passwd | |
end |
This file contains 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
# Job, Desc, Interval, Tick, updated_at | |
class Job | |
attr_reader :name | |
attr_accessor :task, :working | |
def initialize(name, interval, offset) | |
@name = name | |
@interval = interval | |
@offset = offset |
This file contains 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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'json' | |
require 'fileutils' | |
require 'net/smtp' | |
require 'net/https' | |
require 'uri' | |
BACKUP_DIR='/srv/git/repositories' |
OlderNewer