CARVIEW |
augustl
(August Lilleaas)
- You’re not logged in!
- Login
- Pricing & Signup
- Name
- August Lilleaas
- Website/Blog
- https://august.lilleaas.net
- Company
- Shortcut
- Location
- Oslo, Norway
- Member Since
- Feb 18, 2008 (about 1 year)
Following 0 githubbers and watching 17 repositories view all →
Public Repositories (16)
-
ruby-prowl
Ruby interface to Prowl, https://prowl.weks.net/
Last updated Tue Dec 29 01:42:28 -0800 2009
-
binbin
OS X stuff from my ~/bin
Last updated Sun Dec 27 17:32:14 -0800 2009
-
calendar-logic.js
Unobtrusive calendar logic. Highly experimental.
Last updated Sun Dec 20 14:41:28 -0800 2009
-
time.js
A framework agnostic Javascript utility class, performing time calculations.
Last updated Sun Dec 06 08:36:09 -0800 2009
-
ground_floor
Ligtweight test data factory, inspired by Factory Girl
Last updated Wed Nov 18 02:23:52 -0800 2009
-
kii
A Rails powered wiki with a sensible code base. Very alpha.
Last updated Sun Nov 15 14:23:39 -0800 2009
-
redcloth-with-coderay
Adds CodeRay syntax highlighting to RedCloth, by using a <source> tag. Maintained by k3...
Last updated Sun Nov 15 06:22:49 -0800 2009
-
pml
Experiment/boilerplate
Last updated Sat Nov 14 11:48:29 -0800 2009
-
live-validations
No longer maintained.
Last updated Mon Oct 12 11:59:23 -0700 2009
-
less-for-rails
Plug-and-play for https://lesscss.org/ in Rails apps
Last updated Mon Sep 28 04:05:38 -0700 2009
-
rails_honeypot
Honeypot spam protection for Rails apps
Last updated Wed Aug 12 07:28:20 -0700 2009
-
unobtrusive-google-maps
jQuery plugin. Unobtrusively load interactive Google maps on top of static JPEG Google maps.
Last updated Sat Jun 27 09:22:26 -0700 2009
-
frklr
Because somebody asked me to put this up on Github
Last updated Thu Jun 25 19:40:01 -0700 2009
-
pushmaster
Easy mode handling of github post receive callbacks
Last updated Mon Jun 01 10:57:42 -0700 2009
-
active-record-presenters
Object oriented helpers for Rails/ActiveRecord
Last updated Tue Feb 10 12:23:59 -0800 2009
-
sample-rails-apps
OUTDATED. Probably. At least not maintained.
Last updated Mon Dec 29 12:24:34 -0800 2008
Public Activity 
Unobtrusive calendar logic. Highly experimental.

-
August Lilleaas committed 34d03a7b:
git-walk usage

-
August Lilleaas committed db2385b8:
No autolinking in textile.

-
August Lilleaas committed cf9c79b6:
Updating README

-
August Lilleaas committed d75a3c51:
Adding CHANGELOG
-
August Lilleaas committed 4f26adbc:
firstDayOfWeek is zero indexed for consistency with other languages. For example, in C, 0-6 implies sun-sat and 1-7 implies mon-sun.
-
August Lilleaas committed f54d4774:
A few cleanups.
-
August Lilleaas committed 6b4bef6b:
Using Time.prototype = {} instead of Time.prototype.foo = func(){} a 100 times. Using === where applicable. General lint.
-
August Lilleaas committed 9cad4534:
Adjusting comments and code so that it shows that it's aware of the 1 extra or missing hour from daylight savings swap at 03:00.
One newline after header

-
August Lilleaas committed 459a0b37:
Fixing the wildly inconsistent indentation.

-
August Lilleaas committed 83570af4:
Not creating the first month when the object is initialized. Doing it manually, with createFirstMonth().
-
August Lilleaas committed 67a576da:
dayCallback => dayCreated, for consistency with the other callbacks.
-
August Lilleaas committed c5eef2da:
Adding monthCreated and monthChanged callback.
-
August Lilleaas committed 813f0c77:
Lint and common sense.
-
August Lilleaas committed dbca1749:
Never using that one.
-
August Lilleaas committed e35666ba:
assigning days directly with the function call, instead of hiding it inside the function.
-
August Lilleaas committed 0ec3da0e:
Re-naming "cells" to "days".
-
August Lilleaas committed dc7b78ba:
Simplifying the month stepping code by only storing the index, and making currentMonth a function instead of setting it by hand.
-
August Lilleaas committed 03225c9b:
--reset, so that we don't have to reset manually all the time.
-
August Lilleaas committed 83167445:
What was that doing there?
-
August Lilleaas committed c06d5c96:
Using foo.prototype = {func, func} instead of foo.prototype.foo = func, foo.prototype.bar = func.
-
August Lilleaas committed 74cac840:
Making sure the calendar cell callback is called when creating new month instances by incrementing/decrementing current month.
-
August Lilleaas committed 030b5e5e:
Adding a cellCallback option. The callback is called for each cell. The time instance for that cell is passed to it.
-
August Lilleaas committed eeacb8bc:
Bumping time.js.

-
August Lilleaas committed a535b3be:
I still don't know what's going on with advanceDays(), but at least one more edge case is fixed now.

-
August Lilleaas committed 911279c6:
Testing dayNames.

-
August Lilleaas committed 15b0bf75:
Right, the tests.

-
August Lilleaas committed 91c1ce95:
Spelled wrong

-
August Lilleaas committed 72d06608:
Moving docs from README to wiki.

-
August Lilleaas committed b7a3fd11:
Making setters chainable (someDate.day(5).month(4) etc).
-
August Lilleaas committed f40bcc80:
Adding weekOfCurrentMonth().
-
August Lilleaas committed 6ee6f3eb:
Setting firstDayOfWeek to 1 in tearDown, in case of failed tests.
-
August Lilleaas committed 2f2989f9:
Replacing qunit with jsTestDriver.
-
August Lilleaas committed 6c9ce671:
Adding a basic toString, for debugging.