repo string | commit string | message string | diff string |
|---|---|---|---|
mortenberg80/minimal_ircbot | 1ee3c3e869afc879488982e47ea1d4765ec8b781 | removed unused string import | diff --git a/minimal_bot.py b/minimal_bot.py
index 89d89fa..d8d6c6b 100644
--- a/minimal_bot.py
+++ b/minimal_bot.py
@@ -1,44 +1,43 @@
# -*- coding: utf-8 -*-
# Based on the O'Reilly example at http://oreilly.com/pub/h/1968
import sys
import socket
-import string
import subprocess
import config
readbuffer=''... |
mortenberg80/minimal_ircbot | de21f9fb4313db4e09d9ad457a1879c3e3d6ef4f | added initial gitignore file | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..536343c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.pyc
+*.swp
+local_config.py
|
mortenberg80/minimal_ircbot | 5c40ec1366ab9dde3b89f477c45ff7c1b636d538 | added import of local_config settings | diff --git a/config.py b/config.py
index fc8e8ac..859b9b1 100644
--- a/config.py
+++ b/config.py
@@ -1,7 +1,11 @@
-HOST='irc.homelien.no'
-PORT=6667
-NICK='myNick'
-IDENT='pybot'
-REALNAME='I am'
+HOST = 'irc.homelien.no'
+PORT = 6667
+NICK = 'mynick'
+IDENT = 'pybot'
+REALNAME = 'I am'
+CHANNEL = '#mychannel'
-CHANN... |
mortenberg80/minimal_ircbot | ba435f749c2c656dfe4200fb90a0045e2db5e984 | rewrote the parser to get entire incoming message and a bit more object oriented | diff --git a/minimal_bot.py b/minimal_bot.py
index 6c4e082..89d89fa 100644
--- a/minimal_bot.py
+++ b/minimal_bot.py
@@ -1,44 +1,44 @@
# -*- coding: utf-8 -*-
+# Based on the O'Reilly example at http://oreilly.com/pub/h/1968
import sys
import socket
import string
import subprocess
import config
readbuffer=''... |
mortenberg80/minimal_ircbot | 6fc0aa35ec94bc72b357bfa91b8db760d4641614 | initial import | diff --git a/config.py b/config.py
new file mode 100644
index 0000000..fc8e8ac
--- /dev/null
+++ b/config.py
@@ -0,0 +1,7 @@
+HOST='irc.homelien.no'
+PORT=6667
+NICK='myNick'
+IDENT='pybot'
+REALNAME='I am'
+
+CHANNEL='#mychannel'
diff --git a/minimal_bot.py b/minimal_bot.py
new file mode 100644
index 0000000..6c4e082
... |
LupineDev/lupine_crypto | 9e7df261e0749ec2246c6cbfab4eca96aac124c8 | forgot licesnse in README.rdoc | diff --git a/README.rdoc b/README.rdoc
index 933c03a..7f8d56c 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,21 +1,21 @@
= lupine_crypto
Ruby implementation of some classic encryption algorithms.
== Current Encryption Algorithms
* Ceasar Cipher (the "Hellow World" of encryption)
Hopefully there will be m... |
LupineDev/lupine_crypto | 7fa1196c0105084debaf09719660f10bd2c835a9 | Ignore vim swapfiles | diff --git a/.gitignore b/.gitignore
index 2288186..ee0d9ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,42 +1,47 @@
# rcov generated
coverage
# rdoc generated
rdoc
# yard generated
doc
.yardoc
# bundler
.bundle
# jeweler generated
pkg
+# ignore vim swapfiles
+*.swp
+*.swo
+*.swn
+
# Have editor... |
LupineDev/lupine_crypto | d3c6c733d32c8860a073e5492492da92630c1bff | Minor tweaks to rdoc, license, and lib/* | diff --git a/LICENSE.txt b/LICENSE.txt
index 45d8019..aec4a84 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,20 +1,20 @@
-Copyright (c) 2010 LupineDev
+Copyright (c) 2010 Christopher Sass
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation fil... |
LupineDev/lupine_crypto | 087f823e86c3ac4bb23bd8f4b6da056a34c8e483 | Basic naked gem skeleton via jeweler | diff --git a/.document b/.document
new file mode 100644
index 0000000..3d618dd
--- /dev/null
+++ b/.document
@@ -0,0 +1,5 @@
+lib/**/*.rb
+bin/*
+-
+features/**/*.feature
+LICENSE.txt
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2288186
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,42 @@
+# rco... |
LupineDev/lupine_crypto | 1a08b023e343c93e1687e8d2974d1903b9830947 | Ceasar you can encrypt/and decrypt withthe ceasar cipher now | diff --git a/README b/README
index bb5104c..bada500 100644
--- a/README
+++ b/README
@@ -1,3 +1,14 @@
This project will contain ruby implementations of various encryption algorithms.
Starting with the kiddie ciphers...
+
+Ceaser cipher has been implemented
+
+Example
+require "lib/ceasar.rb"
+
+ceasar = Ceasar.new
... |
LupineDev/lupine_crypto | efc85be2b62a710198548326b3a300c123ee536e | Began implementing ceasar cipher, broken | diff --git a/README b/README
index ac2f1ac..bb5104c 100644
--- a/README
+++ b/README
@@ -1 +1,3 @@
This project will contain ruby implementations of various encryption algorithms.
+
+Starting with the kiddie ciphers...
diff --git a/dev_file.rb b/dev_file.rb
new file mode 100644
index 0000000..7a6b992
--- /dev/null
+++... |
actsasflinn/cache-contrib | d3f97fa0457dc3b72e9d342ad423cb69de60926d | add reset for Passenger cache fork | diff --git a/lib/active_support/cache/memcached_store.rb b/lib/active_support/cache/memcached_store.rb
index 2902466..52965e8 100644
--- a/lib/active_support/cache/memcached_store.rb
+++ b/lib/active_support/cache/memcached_store.rb
@@ -1,95 +1,99 @@
require 'memcached'
module ActiveSupport
module Cache
cla... |
actsasflinn/cache-contrib | 9fe8602630ff753592b0f1328c1438c69ed844f5 | add local cache strategy | diff --git a/lib/active_support/cache/memcached_store.rb b/lib/active_support/cache/memcached_store.rb
index c1c4c0f..2902466 100644
--- a/lib/active_support/cache/memcached_store.rb
+++ b/lib/active_support/cache/memcached_store.rb
@@ -1,94 +1,95 @@
require 'memcached'
module ActiveSupport
module Cache
cla... |
actsasflinn/cache-contrib | bf5b91b402227d695962e55bee741d0afc7908b2 | fix for default expire | diff --git a/lib/active_support/cache/patches/default_expires_in.rb b/lib/active_support/cache/patches/default_expires_in.rb
index 1fa4099..1394cb0 100644
--- a/lib/active_support/cache/patches/default_expires_in.rb
+++ b/lib/active_support/cache/patches/default_expires_in.rb
@@ -1,17 +1,17 @@
module ActiveSupport
... |
actsasflinn/cache-contrib | c0ee99b711c762d2f352656e6b2c79828374a9fa | add memcached session store | diff --git a/lib/action_controller/session/memcached_store.rb b/lib/action_controller/session/memcached_store.rb
new file mode 100644
index 0000000..93bbcf3
--- /dev/null
+++ b/lib/action_controller/session/memcached_store.rb
@@ -0,0 +1,51 @@
+begin
+ require_library_or_gem 'memcached'
+
+ module ActionController
+ ... |
actsasflinn/cache-contrib | d86d3d3a1df9efcedc5ddd252e3318d2c0ccb49e | try to load memcache before trying to patch | diff --git a/init.rb b/init.rb
index 119b5bb..7955261 100644
--- a/init.rb
+++ b/init.rb
@@ -1,30 +1,35 @@
# Fixes for memcache
-require 'memcache/make_cache_key_with_underscore'
-require 'memcache/timeout'
+begin
+ require 'memcache'
+ require 'memcache/make_cache_key_with_underscore'
+ require 'memcache/timeout'
... |
actsasflinn/cache-contrib | a60ea82bf7585e60a4133950f8c24949ac25bd54 | resolve namespace issue | diff --git a/init.rb b/init.rb
index aaa6de7..119b5bb 100644
--- a/init.rb
+++ b/init.rb
@@ -1,30 +1,30 @@
# Fixes for memcache
require 'memcache/make_cache_key_with_underscore'
require 'memcache/timeout'
# Add a default expires_in value for cache stores that use it
require 'active_support/cache/patches/default_... |
actsasflinn/cache-contrib | 30ebdcef0aec2216d53f5eec757a14159fa20215 | initial import, extracted from github.com/actsasflinn/snippy | diff --git a/README b/README
new file mode 100644
index 0000000..c69b34f
--- /dev/null
+++ b/README
@@ -0,0 +1,7 @@
+= CacheContrib
+
+A collection of patches and extensions for dealing with caching for use with Rails.
+
+== License
+
+Unless otherwise noted the files are pubic domain.
\ No newline at end of file
diff... |
smith/namespacedotjs | a28da387ceaf36f86a339803fd850c58fdf27779 | Fixed IE loading | diff --git a/Namespace.js b/Namespace.js
index 0fb2848..faf1c56 100644
--- a/Namespace.js
+++ b/Namespace.js
@@ -1,498 +1,500 @@
/*
Script: Namespace.js
Namespace utility
Copyright:
Copyright (c) 2009 Maxime Bouroumeau-Fuseau
License:
MIT-style license.
Version:
1.1
*/
/*jslint evil : true */
... |
smith/namespacedotjs | 356cc77d26a1d314f69d0fd357d9c2886fbecbae | JSLint fixes | diff --git a/Namespace.js b/Namespace.js
index 7f93d23..0fb2848 100644
--- a/Namespace.js
+++ b/Namespace.js
@@ -1,485 +1,498 @@
/*
Script: Namespace.js
Namespace utility
Copyright:
Copyright (c) 2009 Maxime Bouroumeau-Fuseau
License:
MIT-style license.
Version:
1.1
*/
+
+/*jslint evil : true */
+... |
smith/namespacedotjs | 2fbfe8e53bf2581521f20085523cdfae7446d6b1 | Added eval | diff --git a/Namespace.js b/Namespace.js
index 06068ee..7f93d23 100644
--- a/Namespace.js
+++ b/Namespace.js
@@ -1,478 +1,485 @@
/*
Script: Namespace.js
Namespace utility
Copyright:
Copyright (c) 2009 Maxime Bouroumeau-Fuseau
License:
MIT-style license.
Version:
1.1
*/
var Namespace = (function()... |
smith/namespacedotjs | 007dc1cc5b929d54b24e988dbd9efe4d6ca6c3ee | Added include test | diff --git a/test/unit/fixtures/a.js b/test/unit/fixtures/a.js
new file mode 100644
index 0000000..948ec99
--- /dev/null
+++ b/test/unit/fixtures/a.js
@@ -0,0 +1 @@
+a = {};
diff --git a/test/unit/index.html b/test/unit/index.html
index 19be29f..40dd91c 100644
--- a/test/unit/index.html
+++ b/test/unit/index.html
@@ -1... |
smith/namespacedotjs | 8071495307fba396eec063ec5a8a24cfb4cf3d71 | Added tests | diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..feda09d
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "vendor/jsunittest"]
+ path = vendor/jsunittest
+ url = git://github.com/drnic/jsunittest.git
diff --git a/test/assets/jsunittest.js b/test/assets/jsunittest.js
new file mode 10... |
smith/namespacedotjs | 1d688b7d079d1f47284e889052c1648b421acdd7 | Added provide method | diff --git a/Namespace.js b/Namespace.js
index 8e29a22..a4362dd 100644
--- a/Namespace.js
+++ b/Namespace.js
@@ -1,447 +1,467 @@
/*
Script: Namespace.js
Namespace utility
Copyright:
Copyright (c) 2009 Maxime Bouroumeau-Fuseau
License:
MIT-style license.
Version:
1.0
*/
var Namespace = (function()... |
smith/namespacedotjs | 8567e993a56a10df0824c80086427b8ac9ab7879 | missing documentation and added include event | diff --git a/Namespace.js b/Namespace.js
index 9880413..d66cc89 100644
--- a/Namespace.js
+++ b/Namespace.js
@@ -1,431 +1,439 @@
/*
Script: Namespace.js
Namespace utility
Copyright:
Copyright (c) 2009 Maxime Bouroumeau-Fuseau
License:
MIT-style license.
Version:
1.0
*/
var Namespace = (function()... |
smith/namespacedotjs | a64c08aafe64fa34aa1fbc156d6dcd27acf9cad6 | first release | diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..a8e01b0
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,24 @@
+NAMESPACE.JS
+
+The MIT License
+
+Copyright (c) 2009 Maxime Bouroumeau-Fuseau
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associ... |
openstreetmap/shp2osm | bfe015a390f3363ff919c0e6ff1b653f1d5bc4bf | Improve GDAL installation information. | diff --git a/polyshp2osm.py b/polyshp2osm.py
index de63c27..e502039 100644
--- a/polyshp2osm.py
+++ b/polyshp2osm.py
@@ -1,397 +1,408 @@
#!/usr/bin/python
"""
This script is designed to act as assistance in converting shapefiles
to OpenStreetMap data. This file is optimized and tested with MassGIS
shapefiles, co... |
openstreetmap/shp2osm | 34a73eb0d321e388b25f12676d0f960581e09907 | more cleanup. | diff --git a/polyshp2osm.py b/polyshp2osm.py
index 3368617..de63c27 100644
--- a/polyshp2osm.py
+++ b/polyshp2osm.py
@@ -1,366 +1,397 @@
#!/usr/bin/python
"""
This script is designed to act as assistance in converting shapefiles
to OpenStreetMap data. This file is optimized and tested with MassGIS
shapefiles, co... |
openstreetmap/shp2osm | 1be049626b76c5c60c93216166aa49442777a127 | Add polygon-shape-to-osm tool to SVN. Developed as part of http://wiki.openstreetmap.org/wiki/MassGis_Layer_Openspace . | diff --git a/polyshp2osm.py b/polyshp2osm.py
new file mode 100644
index 0000000..3368617
--- /dev/null
+++ b/polyshp2osm.py
@@ -0,0 +1,366 @@
+#!/usr/bin/python
+
+"""
+This script is designed to act as assistance in converting shapefiles
+to OpenStreetMap data. This file is optimized and tested with MassGIS
+shapefile... |
openstreetmap/shp2osm | b97ef763e0e102116e180bfac6bfb36dc454a6ea | Shapefile to OSM converter | diff --git a/shp2osm.pl b/shp2osm.pl
new file mode 100644
index 0000000..86f888f
--- /dev/null
+++ b/shp2osm.pl
@@ -0,0 +1,167 @@
+# Copyright (c) 2006 Gabriel Ebner <ge@gabrielebner.at>
+# updated in 2008 by Tobias Wendorff <tobias.wendorff@uni-dortmund.de>
+# HTML-Entities based on ideas of Hermann Schwärzler
+# G... |
agilejoe/cruiseviewer | 15367e3ea57fddc2cb38114d8cb14e79e5326f67 | add loading text. change text color outside success or fail divs. | diff --git a/index.html b/index.html
index 46a5dfd..f37504b 100644
--- a/index.html
+++ b/index.html
@@ -1,14 +1,14 @@
<html>
<head>
<meta http-equiv="refresh" content="60" >
<sc... |
agilejoe/cruiseviewer | 7809667ab2ea578d4cc4995b7094363150302dab | add note that this only works in Safari browser, currently | diff --git a/README.textile b/README.textile
index 8b00ea2..cd1c1cf 100644
--- a/README.textile
+++ b/README.textile
@@ -1,11 +1,13 @@
h1. CruiseViewer
jQuery version of BigVisible Cruise
+currently, only works in Safari browser.
+
<hr/>
Authors:
Jason Meridth "(armmer)":http://github.com/armmer
Joe Oca... |
agilejoe/cruiseviewer | d1b7e1f8f3c91156f30477e9c96c2bc488978cd4 | remove jfeed plugin, change success color to 007200 | diff --git a/index.html b/index.html
index cbdeae5..46a5dfd 100644
--- a/index.html
+++ b/index.html
@@ -1,15 +1,14 @@
<html>
<head>
<meta http-equiv="refresh" content="60" >
<sc... |
agilejoe/cruiseviewer | 2a7baf260ae4eb85abaf486a8d7347118d25c8d2 | fix readme, separate project blocks | diff --git a/README.textile b/README.textile
index 5aa8536..8b00ea2 100644
--- a/README.textile
+++ b/README.textile
@@ -1,12 +1,11 @@
h1. CruiseViewer
jQuery version of BigVisible Cruise
-
-== <hr/> ==
+<hr/>
Authors:
-Jason Meridth "armmer":http://github.com/armmer
+Jason Meridth "(armmer)":http://github.c... |
agilejoe/cruiseviewer | 5bc4ab3af5db1a133e4c125bbd3b9bd185a8f0f3 | add to the README | diff --git a/README.rdoc b/README.rdoc
index e44c8aa..189411f 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,3 +1,12 @@
= CruiseViewer
jQuery version of BigVisible Cruise
+
+
+==<hr/>==
+
+Authors:
+
+Jason Meridth "armmer":http://github.com/armmer
+
+Joe Ocampo "joeocampo":http://github.com/joeocampo
|
agilejoe/cruiseviewer | 643b4c93cd51c320a6de77eb9f0425b145281f40 | parse XmlStatusReport.aspx and display successful and failed builds | diff --git a/index.html b/index.html
index be3aa0a..cbdeae5 100644
--- a/index.html
+++ b/index.html
@@ -1,23 +1,15 @@
<html>
- <head>
+ <head> ... |
agilejoe/cruiseviewer | 1796b926f5d122074c4488bd5952c764324916e1 | stable commit reading the status of a remote rss feed | diff --git a/index.html b/index.html
new file mode 100644
index 0000000..be3aa0a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,23 @@
+<html>
+ <head>
+ <script type="text/javascript" src="js/... |
mintchaos/mint_django_utils | 6c984556961c3f51aa012765ca3ce4e80168313f | Getting a setup.py so I can play nice with pip. Whee! | diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..692057b
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,24 @@
+from distutils.core import setup
+
+setup(
+ name = "mint_django_utils",
+ version = "0.0.10",
+ url = 'http://github.com/mintchaos/mint_django_utils',
+ license = 'BSD',
+ descrip... |
mintchaos/mint_django_utils | f326fe223c78b8e9c798214a7515ccab93e7610a | Skipping over key errors to make it not blow up on empty fields. | diff --git a/utils.py b/utils.py
index afb5faa..2dddf9b 100644
--- a/utils.py
+++ b/utils.py
@@ -1,20 +1,23 @@
from django import forms
from django.forms.util import ErrorList
def clean_unique_for_date(self, field, date_field='pub_date'):
model = self.Meta.model
if date_field in self.cleaned_data:
- ... |
mintchaos/mint_django_utils | a5e6e56bf08bf6ae1ba1cecf53afc2bfad5346c7 | Adding some tests and a comparison filter. | diff --git a/templatetags/comparison.py b/templatetags/comparison.py
index ccd1b4b..3ea14f6 100644
--- a/templatetags/comparison.py
+++ b/templatetags/comparison.py
@@ -1,68 +1,100 @@
+import unittest
from django.template import Library
from django.template.defaultfilters import lower
register = Library()
@regi... |
mintchaos/mint_django_utils | ec2fcffa82afe2a4c74d39679f9c3adf488d4075 | Corrected the line number in the module docs. | diff --git a/templatetags/urls.py b/templatetags/urls.py
index 705f18e..c007060 100644
--- a/templatetags/urls.py
+++ b/templatetags/urls.py
@@ -1,110 +1,110 @@
"""
-This is a hack to get around a defeciency in django's URL tag. Line 19 is the
+This is a hack to get around a defeciency in django's URL tag. Line 25 is... |
mintchaos/mint_django_utils | 2e640bd153358b06874395e0c04b7b9ba76d1065 | A simple docstring for load_templatetags() | diff --git a/templatetags/__init__.py b/templatetags/__init__.py
index d19a908..092d155 100644
--- a/templatetags/__init__.py
+++ b/templatetags/__init__.py
@@ -1,29 +1,33 @@
# from http://www.djangosnippets.org/snippets/342/ by miracle2k
def load_templatetags():
+ """
+ To use this put a `TEMPLATE_TAGS = ()` t... |
mintchaos/mint_django_utils | 6416de0440e2ca6246e3da8b7fc3a44a4196fd4e | Removed some commented out pdb | diff --git a/utils.py b/utils.py
index f48dea7..afb5faa 100644
--- a/utils.py
+++ b/utils.py
@@ -1,21 +1,20 @@
from django import forms
from django.forms.util import ErrorList
def clean_unique_for_date(self, field, date_field='pub_date'):
model = self.Meta.model
if date_field in self.cleaned_data:
... |
mintchaos/mint_django_utils | c2800a0ef24256c228a4cd67db8b313f832e1c33 | Adding miracle2k's auto templatetag loader. | diff --git a/templatetags/__init__.py b/templatetags/__init__.py
index e69de29..d19a908 100644
--- a/templatetags/__init__.py
+++ b/templatetags/__init__.py
@@ -0,0 +1,29 @@
+# from http://www.djangosnippets.org/snippets/342/ by miracle2k
+def load_templatetags():
+ from django.conf import settings
+ from django.... |
mintchaos/mint_django_utils | 0d9e64eff073e74ee5ce05875ee4e490e6c5cad2 | Three cheers for forking django! :( | diff --git a/templatetags/urls.py b/templatetags/urls.py
new file mode 100644
index 0000000..705f18e
--- /dev/null
+++ b/templatetags/urls.py
@@ -0,0 +1,110 @@
+"""
+This is a hack to get around a defeciency in django's URL tag. Line 19 is the
+only added line.
+"""
+
+from django.conf import settings
+from django.tem... |
mintchaos/mint_django_utils | c0c14a1745c8d6a9c85fb7796acb94ff2d5f5cd1 | A genericized clean helper to make up for unique_for_date not working yet. :-/ | diff --git a/utils.py b/utils.py
new file mode 100644
index 0000000..f48dea7
--- /dev/null
+++ b/utils.py
@@ -0,0 +1,21 @@
+from django import forms
+from django.forms.util import ErrorList
+
+def clean_unique_for_date(self, field, date_field='pub_date'):
+ model = self.Meta.model
+ if date_field in self.clea... |
mintchaos/mint_django_utils | ce1adddf58f2e7bd245d52760c9699303ba90def | added a shortcuts.py | diff --git a/shortcuts.py b/shortcuts.py
new file mode 100644
index 0000000..3d3591c
--- /dev/null
+++ b/shortcuts.py
@@ -0,0 +1,6 @@
+from django.shortcuts import render_to_response as django_render_to_response
+from django.template import RequestContext
+
+def render_to_response(req, *args, **kwargs):
+ kwargs['co... |
mintchaos/mint_django_utils | b6b2c5732f0713da4a2881f86ef6e6612c92c0d2 | added attribution to capture as | diff --git a/templatetags/capture.py b/templatetags/capture.py
index 24735da..4eee2d8 100644
--- a/templatetags/capture.py
+++ b/templatetags/capture.py
@@ -1,23 +1,25 @@
+# my personal "fork" of http://www.djangosnippets.org/snippets/545/
+
from django import template
register = template.Library()
@register.tag... |
arian/DirectAdminApi | 1a18151240e32b0497c36a044c3542402c1332a8 | Add a demo for emails + improve some PHPDocs | diff --git a/Source/DA/Emails.php b/Source/DA/Emails.php
index 50ce78b..6951cb7 100644
--- a/Source/DA/Emails.php
+++ b/Source/DA/Emails.php
@@ -1,133 +1,133 @@
<?php
/**
* http://www.directadmin.com/api.html#email
*/
include_once dirname(__FILE__) . '/Api.php';
class DA_Emails extends DA_Api {
/**
... |
arian/DirectAdminApi | 3a219ed0bd2c9248a85bf0f2988301d5719f5893 | Fix a PHP Notice of an undefined index in HTTPSocket | diff --git a/Source/HTTPSocket.php b/Source/HTTPSocket.php
index c340c2d..0540bcd 100644
--- a/Source/HTTPSocket.php
+++ b/Source/HTTPSocket.php
@@ -1,435 +1,435 @@
<?php
/**
* Socket communication class.
*
* Originally designed for use with DirectAdmin's API, this class will fill any HTTP socket need.
*
... |
arian/DirectAdminApi | a2aebf77afc0b79a8bee61616af93249e884c135 | Fix the DA_Emails::fetch method | diff --git a/Source/DA/Emails.php b/Source/DA/Emails.php
index f3a9ace..50ce78b 100644
--- a/Source/DA/Emails.php
+++ b/Source/DA/Emails.php
@@ -1,138 +1,133 @@
<?php
/**
* http://www.directadmin.com/api.html#email
*/
include_once dirname(__FILE__) . '/Api.php';
class DA_Emails extends DA_Api {
/**
... |
arian/DirectAdminApi | ce7744146d16540079867643f7eddcb1d7f02014 | Add the possibility to set the default Socket and Domain for every instance of DA_Api with static properties | diff --git a/Source/DA/Api.php b/Source/DA/Api.php
index f713e1e..4ddf6f4 100644
--- a/Source/DA/Api.php
+++ b/Source/DA/Api.php
@@ -1,41 +1,61 @@
<?php
include_once dirname(__FILE__) . '/../HTTPSocket.php';
abstract class DA_Api {
/**
* @var HTTPSocket
*/
protected $sock;
/**
* The default do... |
arian/DirectAdminApi | 86eba6324c2862d332378924aaf1391f124fe079 | Replace deprecated split for explode in HTTPSocket.php | diff --git a/Source/HTTPSocket.php b/Source/HTTPSocket.php
index 86901af..1ae3bbc 100644
--- a/Source/HTTPSocket.php
+++ b/Source/HTTPSocket.php
@@ -1,435 +1,435 @@
<?php
/**
* Socket communication class.
*
* Originally designed for use with DirectAdmin's API, this class will fill any HTTP socket need.
*
... |
arian/DirectAdminApi | 27ce1a4b89baa87ae06fb7778aad59728cf792a9 | Fix exception path | diff --git a/Source/DA/Api.php b/Source/DA/Api.php
index cfb73b3..41db684 100644
--- a/Source/DA/Api.php
+++ b/Source/DA/Api.php
@@ -1,41 +1,41 @@
<?php
include_once 'HTTPSocket.php';
abstract class DA_API {
/**
* @var HTTPSocket
*/
protected $sock;
/**
* The default domain
* @var string
... |
arian/DirectAdminApi | c35d18b06026c76b715e378888d3385c05319be7 | Fix fetchQuotas method | diff --git a/Source/DA/Api.php b/Source/DA/Api.php
index bce3526..cfb73b3 100644
--- a/Source/DA/Api.php
+++ b/Source/DA/Api.php
@@ -1,42 +1,41 @@
<?php
include_once 'HTTPSocket.php';
abstract class DA_API {
-
+
/**
* @var HTTPSocket
*/
protected $sock;
-
+
/**
* The default domain
* @var str... |
arian/DirectAdminApi | 1d58484837de78361babed9da7e0d0b2aa8b2772 | Restructure and verify that the data is correct | diff --git a/Source/DA_API.php b/Source/DA/Api.php
similarity index 100%
rename from Source/DA_API.php
rename to Source/DA/Api.php
diff --git a/Source/DA_Autoresponders.php b/Source/DA/Autoresponders.php
similarity index 91%
rename from Source/DA_Autoresponders.php
rename to Source/DA/Autoresponders.php
index e3239ca..... |
arian/DirectAdminApi | 089395462412a3221525b33bb2c0b9ef6a76f345 | Change the README.md a little | diff --git a/README.md b/README.md
index f808245..dd57a33 100644
--- a/README.md
+++ b/README.md
@@ -1,85 +1,86 @@
PHP Direct Admin API
====================
This is a set of classes to communicate with Direct Admin (DA)
via the Direct Admin API to configurate some things in
for your webserver without login in t... |
arian/DirectAdminApi | 47931653a356e2e4db1ce78cb24b4ab007508489 | Change the README.md header | diff --git a/README.md b/README.md
index 1601276..f808245 100644
--- a/README.md
+++ b/README.md
@@ -1,84 +1,85 @@
-==== PHP Direct Admin API ====
+PHP Direct Admin API
+====================
This is a set of classes to communicate with Direct Admin (DA)
via the Direct Admin API to configurate some things in
for y... |
arian/DirectAdminApi | c4b6e6210255d07afa2d5b1f515cc2f1769ae911 | fist commit | diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1601276
--- /dev/null
+++ b/README.md
@@ -0,0 +1,84 @@
+==== PHP Direct Admin API ====
+
+This is a set of classes to communicate with Direct Admin (DA)
+via the Direct Admin API to configurate some things in
+for your webserver without login in to... |
modgeosys/delayed_job | 0e89b243ed58a68b4c8993caa4d231aaacb73e8c | IDW-specific initial commit. | diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..c111b33
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.gem
diff --git a/MIT-LICENSE b/MIT-LICENSE
new file mode 100755
index 0000000..926fda1
--- /dev/null
+++ b/MIT-LICENSE
@@ -0,0 +1,20 @@
+Copyright (c) 2005 Tobias Luetke
+
+Permission is here... |
ideamonk/Spoj-Rank-Tracker | 0315ccbffa589a1387bfe6fa9eb2bbf91ccc5151 | added some bound checks and alerts... i find it crappy, this code really needs some love | diff --git a/build.sh b/build.sh
index 3ae4f29..f5eb364 100644
Binary files a/build.sh and b/build.sh differ
diff --git a/content/options.xul b/content/options.xul
index 16c1590..62aded9 100644
--- a/content/options.xul
+++ b/content/options.xul
@@ -1,23 +1,23 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://... |
ideamonk/Spoj-Rank-Tracker | 44e3dd0aea4673d64091267ae8adf5212a34bf6a | added a little invisible minutes validator | diff --git a/content/overlay.js b/content/overlay.js
index f02b45e..8ca9c8b 100644
--- a/content/overlay.js
+++ b/content/overlay.js
@@ -1,157 +1,160 @@
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
*... |
ideamonk/Spoj-Rank-Tracker | a24c9b7a31b0ad264a00389cb0a25af94469fb09 | added description to readme | diff --git a/readme.txt b/readme.txt
index 249329f..b334f69 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,21 +1,38 @@
+SPOJ Rank Tracker helps you keep a track of your live rank and points you score,
+in a way it keeps you motivated. There are more than 47,000 programmers that
+compete on SPOJ, the ranks are under co... |
ideamonk/Spoj-Rank-Tracker | dc220c057badb3a83d18090197813363b68d5980 | putting it on github | diff --git a/build.sh b/build.sh
new file mode 100644
index 0000000..3ae4f29
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,128 @@
+#!/bin/bash
+# build.sh -- builds JAR and XPI files for mozilla extensions
+# by Nickolay Ponomarev <asqueella@gmail.com>
+# (original version based on Nathan Yergler's build script)
+# Most ... |
timoxley/Components | c11a818ed8ff64a664a7fd3a4748aecba8a21e67 | Renamed packages, cleaned up function names and comments | diff --git a/src/au/com/origo/utilities/Utils.as b/src/au/com/origo/utilities/Utils.as
deleted file mode 100644
index d6b6ed5..0000000
--- a/src/au/com/origo/utilities/Utils.as
+++ /dev/null
@@ -1,97 +0,0 @@
-package au.com.origo.utilities
-{
- public class Utils
- {
- import flash.utils.getQualifiedClassName;
- ... |
timoxley/Components | b1f2136d1e3ea7c493e9036904789bb3a02909a7 | Cleaned up trace statements | diff --git a/src/au/com/origo/components/Console.as b/src/au/com/origo/components/Console.as
index ee39885..201a091 100644
--- a/src/au/com/origo/components/Console.as
+++ b/src/au/com/origo/components/Console.as
@@ -1,64 +1,63 @@
package au.com.origo.components {
import au.com.origo.components.interfaces.IMess... |
timoxley/Components | 891142b7eac8669afed13c378e1fa67aaccf5eac | Improved skin behaviour | diff --git a/src/au/com/origo/components/skins/ConsoleSkin.mxml b/src/au/com/origo/components/skins/ConsoleSkin.mxml
index 4099f30..5d58b8a 100644
--- a/src/au/com/origo/components/skins/ConsoleSkin.mxml
+++ b/src/au/com/origo/components/skins/ConsoleSkin.mxml
@@ -1,147 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>... |
timoxley/Components | b4ecfbdfa4190acfe9e9710fde034ea310a4fe23 | Added Console and Utilities | diff --git a/assets/clear.png b/assets/clear.png
new file mode 100644
index 0000000..fdc6aaa
Binary files /dev/null and b/assets/clear.png differ
diff --git a/src/FlexUnitApplication.mxml b/src/FlexUnitApplication.mxml
new file mode 100644
index 0000000..14031e7
--- /dev/null
+++ b/src/FlexUnitApplication.mxml
@@ -0,0 ... |
timoxley/Components | 4c4e42c262d3d60ea19604877874ba12126e837c | Added EditableLabel component | diff --git a/README.textile b/README.textile
index d7ef754..08683ba 100644
--- a/README.textile
+++ b/README.textile
@@ -1,3 +1,6 @@
-h1. EditableLabel
+h1. Flex Components
+
+
+h3. EditableLabel
Flex control. Extends Text Input so that it appears as a label until given focus.
diff --git a/src/au/com/origo/component... |
flextao/inflector | 087f786e4e0e0627457eac5b747dd94865ebc249 | added a simple README | diff --git a/README.rdoc b/README.rdoc
new file mode 100644
index 0000000..095c96f
--- /dev/null
+++ b/README.rdoc
@@ -0,0 +1,22 @@
+
+= inflector
+
+Inflector is a Java port of the excellent Inflector class in ruby's ActiveSupport library. Forked from jactiveresource: jactiveresource.org
+
+The methods ported:
+
+ si... |
flextao/inflector | bdc6edf9860017c938dcd01fad8d248b59c1a2c6 | packaged Inflector which is ported from rails from jactiveresource | diff --git a/.classpath b/.classpath
new file mode 100644
index 0000000..cd3540a
--- /dev/null
+++ b/.classpath
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="src" path="test"/>
+ <classpathentry kind="con" path="org.eclipse.jdt... |
todeus/tcc | b4ffc5aeade4edc9a0e2fc519f64f68457bd79b0 | ÐадеÑÑÑ Ð¿ÑокаÑÐ¸Ñ Ð½Ð° заÑÐµÑ ;) | diff --git a/parser.cpp b/parser.cpp
index 4d492f0..e66703b 100755
--- a/parser.cpp
+++ b/parser.cpp
@@ -1,427 +1,427 @@
#include <iostream>
#include "parser.h"
#include "scanner.h"
#include "node.h"
Parser::Parser(Scanner *scan)
{
s = scan;
- s->next();
- obj = ParseState();
+
+ obj = ParseBlock(... |
todeus/tcc | bf04e9aae100960351ceefa90e6fe321bc610ced | СÑÑÐ¾Ð¸Ñ Ð´ÐµÑево Ð´Ð»Ñ FOR | diff --git a/node.cpp b/node.cpp
index 852c27e..66af681 100755
--- a/node.cpp
+++ b/node.cpp
@@ -1,306 +1,355 @@
#include <iostream>
#include <sstream>
#include "node.h"
using namespace std;
void SynNode::print(int n)
{
}
SynNode::SynNode()
{
}
SynNode::~SynNode()
{
}
SynExpr::SynExpr()
{
}
Syn... |
todeus/tcc | 051c83941a8f737127a16170581afdacf6f1022c | СÑÑÐ¾Ð¸Ñ Ð´ÐµÑево Ð´Ð»Ñ DO .. WHILE ÐÑпÑÐ°Ð²Ð»ÐµÐ½Ñ Ð½ÐµÐºÐ¾ÑоÑÑе оÑибки | diff --git a/KA.h b/KA.h
old mode 100644
new mode 100755
diff --git a/Makefile b/Makefile
old mode 100644
new mode 100755
diff --git a/README b/README
old mode 100644
new mode 100755
diff --git a/main.cpp b/main.cpp
index 26f55b2..b553fe7 100755
--- a/main.cpp
+++ b/main.cpp
@@ -1,63 +1,65 @@
#include <iostream>
#inc... |
todeus/tcc | 28784c4621e85ee492ecf32377910740b2213c09 | ÐаÑÑÐ¸Ñ Ð»ÑбÑе ÑÑнкÑии. | diff --git a/main.cpp b/main.cpp
old mode 100644
new mode 100755
index 4b19799..26f55b2
--- a/main.cpp
+++ b/main.cpp
@@ -1,60 +1,63 @@
#include <iostream>
#include <fstream>
#include "scanner.h"
#include "parser.h"
using namespace std;
int main(int argc, char* argv[])
{
if(argc==1)
{
st... |
todeus/tcc | b1f94997c4dd571c89bd83670a1e629a9dd7d85a | СÑÑÐ¾Ð¸Ñ Ð´ÐµÑево IF ... ELSE | diff --git a/node.cpp b/node.cpp
index 92ac7c8..17baf09 100644
--- a/node.cpp
+++ b/node.cpp
@@ -1,163 +1,201 @@
#include <iostream>
#include <sstream>
#include "node.h"
using namespace std;
void SynNode::print(int n)
{
}
SynNode::SynNode()
{
}
SynNode::~SynNode()
{
}
SynExpr::SynExpr()
{
}
Syn... |
todeus/tcc | a3f3243b7a2b78261cff0c8861c92c488dd9a3fc | СÑÑÐ¾Ð¸Ñ Ð´ÐµÑево Ð´Ð»Ñ Ð±Ð»Ð¾ÐºÐ° {...} ÐÑпÑÐ°Ð²Ð»ÐµÐ½Ñ Ð¼ÐµÐ»ÐºÐ¸Ðµ коÑÑки | diff --git a/main.cpp b/main.cpp
index 35bb061..4b19799 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,57 +1,60 @@
#include <iostream>
#include <fstream>
#include "scanner.h"
#include "parser.h"
using namespace std;
int main(int argc, char* argv[])
{
if(argc==1)
{
std::cout << "*************... |
todeus/tcc | 94222426fb76b9e0600f1c27afcea46ab049c7fd | СÑÑÐ¾Ð¸Ñ Ð´ÐµÑево Ð´Ð»Ñ while | diff --git a/node.cpp b/node.cpp
index c609653..c4b4c41 100644
--- a/node.cpp
+++ b/node.cpp
@@ -1,95 +1,142 @@
#include <iostream>
#include <sstream>
#include "node.h"
using namespace std;
+void SynNode::print(int n)
+{
+}
+
SynExpr::SynExpr()
{
left = 0;
right = 0;
}
-int SynExpr::print(int n)
-{... |
todeus/tcc | a2efb535387939f3a33e6fc72acb01a9c08d7aca | ÐÑоде как ÑепеÑÑ Ð¿Ð°ÑÑÐ¸Ñ while, деÑево пока не ÑÑÑоиÑ, но Ñ
оÑÑ Ð¾Ñибок не вÑдаеÑ. :) | diff --git a/main.cpp b/main.cpp
index e50c9e3..35bb061 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,57 +1,57 @@
#include <iostream>
#include <fstream>
#include "scanner.h"
#include "parser.h"
using namespace std;
int main(int argc, char* argv[])
{
if(argc==1)
{
std::cout << "*************... |
todeus/tcc | b3d4fb22835b119cb4cc460e990a5e2bf54fbf6b | еÑе Ñаз =) | diff --git a/node.cpp b/node.cpp
index 8b5bf4c..0c1b332 100644
--- a/node.cpp
+++ b/node.cpp
@@ -1,86 +1,88 @@
#include <iostream>
#include <sstream>
#include "node.h"
using namespace std;
SynExpr::SynExpr()
{
left = 0;
right = 0;
}
int SynExpr::print(int n)
{
cout << "[" << token.getSource(... |
todeus/tcc | ea208ad00194a2b0c113fb308c18fb35bd041499 | ÐÑÑомежÑÑоÑнÑй ÐºÐ¾Ð¼Ð¼Ñ | diff --git a/node.cpp b/node.cpp
index aee0792..8b5bf4c 100644
--- a/node.cpp
+++ b/node.cpp
@@ -1,75 +1,86 @@
#include <iostream>
#include <sstream>
#include "node.h"
using namespace std;
SynExpr::SynExpr()
{
left = 0;
right = 0;
}
int SynExpr::print(int n)
{
- //cout << "1" << endl;
cou... |
todeus/tcc | c1b79c1ac159bf8eb4eb4b6caf52b47be9f2b8dc | ÐаÑÑÑÑÑÑ Ð¾Ð¿ÐµÑаÑии Ñ Ð¾Ð´Ð½Ð¸Ð¼ паÑамеÑÑом. ÐÑпÑавлена оÑибка Ñ ÑелоÑиÑленнÑм делением. ТепеÑÑ Ð¾Ð½Ð¾ Ñоже паÑÑиÑÑÑ. :) | diff --git a/Makefile b/Makefile
index 587d116..2ac406b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,229 +1,229 @@
#############################################################################
# Makefile for building: tcc
-# Generated by qmake (2.01a) (Qt 4.5.3) on: ?? ????. 18 00:17:49 2010
+# Generated by qmake (2.01... |
todeus/tcc | d0b57b18ab44424569af83a1b567719b8b367aaa | ÐÑе бинаÑнÑе опеÑаÑии ÑепеÑÑ Ð¿Ð°ÑÑÑÑÑÑ... | diff --git a/Makefile b/Makefile
index d02d2a5..587d116 100644
--- a/Makefile
+++ b/Makefile
@@ -1,229 +1,229 @@
#############################################################################
# Makefile for building: tcc
-# Generated by qmake (2.01a) (Qt 4.5.3) on: ?? ????. 18 15:11:57 2010
+# Generated by qmake (2.01... |
mattscilipoti/mattscilipoti.github.io | eb34f42c9b22eb6d28723c39ec147210ac6fc8e2 | Replace old jekyl site with redirect to who-am-i page | diff --git a/.rvmrc b/.rvmrc
deleted file mode 100644
index f0d9c29..0000000
--- a/.rvmrc
+++ /dev/null
@@ -1 +0,0 @@
-rvm use ree@blog
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index a82b70c..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,5 +0,0 @@
-# A sample Gemfile
-source "http://rubygems.org"
-
-gem 'jek... |
mattscilipoti/mattscilipoti.github.io | cef968443ee9f6ba68db958f1ba208cae2eea365 | Complete cancan/InheritedRes post. | diff --git a/_posts/2010-10-07-can-can-and-inherited_resources.textile b/_posts/2010-10-07-can-can-and-inherited_resources.textile
index a737119..ca69db4 100644
--- a/_posts/2010-10-07-can-can-and-inherited_resources.textile
+++ b/_posts/2010-10-07-can-can-and-inherited_resources.textile
@@ -1,57 +1,78 @@
---
layout:... |
mattscilipoti/mattscilipoti.github.io | d7a9a1d3dbb2cccbe510da32ee0ae0102c8b9514 | Use minimal-github.gilesb.com | diff --git a/css/screen.css b/css/screen.css
index ec73fde..9f5d7c3 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -1,227 +1,234 @@
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
... |
mattscilipoti/mattscilipoti.github.io | 9badf3a9858f068ee796e40d2979c0965a266d38 | Sort repos by name. | diff --git a/_layouts/default.html b/_layouts/default.html
index 2bc76f7..3989891 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,132 +1,141 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/... |
mattscilipoti/mattscilipoti.github.io | 34b16b47945a06d8b5ba0af8304c279f5cb59cbd | Yuck. Cucumber resources/tips marginally better. | diff --git a/index.html b/index.html
index fec5b40..0150198 100644
--- a/index.html
+++ b/index.html
@@ -1,36 +1,38 @@
---
layout: default
title: Matt Scilipoti
---
<div id="home">
<h2>Blog Posts</h2>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</sp... |
mattscilipoti/mattscilipoti.github.io | d772efa795cfb7e7d1c110956e9d0d6f2ae38777 | add draft: Cancan and InheritedResources | diff --git a/_posts/2010-10-07-can-can-and-inherited_resources.textile b/_posts/2010-10-07-can-can-and-inherited_resources.textile
new file mode 100644
index 0000000..a737119
--- /dev/null
+++ b/_posts/2010-10-07-can-can-and-inherited_resources.textile
@@ -0,0 +1,57 @@
+---
+layout: post
+title: Cancan, Inherited Resou... |
mattscilipoti/mattscilipoti.github.io | f2c48432e8828e4a025a6d5693a4f6871bd34cfc | Add cucumber resources | diff --git a/index.html b/index.html
index 4db1f74..fec5b40 100644
--- a/index.html
+++ b/index.html
@@ -1,27 +1,36 @@
---
layout: default
title: Matt Scilipoti
---
<div id="home">
<h2>Blog Posts</h2>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</sp... |
mattscilipoti/mattscilipoti.github.io | 07c7064715c4a0f14acf58fa72c261dc593d6591 | css: remove fixed width | diff --git a/css/screen.css b/css/screen.css
index 647a899..ec73fde 100644
--- a/css/screen.css
+++ b/css/screen.css
@@ -1,221 +1,227 @@
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
... |
mattscilipoti/mattscilipoti.github.io | a7c125d76c39b772ae1e5254d386748067ad4950 | Add google site verification. | diff --git a/_layouts/default.html b/_layouts/default.html
index 85ae021..2bc76f7 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,131 +1,132 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/... |
mattscilipoti/mattscilipoti.github.io | 474484c8b0d369758d380a72370f4ecdbcd04281 | Add google analytics to page. | diff --git a/_layouts/default.html b/_layouts/default.html
index ebe3323..85ae021 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,117 +1,131 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/... |
mattscilipoti/mattscilipoti.github.io | b76dbb714d20f93db8c05f778af84a1ad274ab87 | New post: moonshine and rails3 | diff --git a/_posts/2010-09-23-railsmachine-powns-moonshine.textile b/_posts/2010-09-23-railsmachine-powns-moonshine.textile
new file mode 100644
index 0000000..61b1cf2
--- /dev/null
+++ b/_posts/2010-09-23-railsmachine-powns-moonshine.textile
@@ -0,0 +1,24 @@
+---
+layout: post
+title: Moonshine hearts Rails3 (and Bun... |
mattscilipoti/mattscilipoti.github.io | 7abd5dc34327ca37dfa56d5e8eadc9af1a8ef429 | Add RVM to title. | diff --git a/_posts/2010-09-17-bundler@global.md b/_posts/2010-09-17-bundler@global.md
index f388deb..3c41299 100644
--- a/_posts/2010-09-17-bundler@global.md
+++ b/_posts/2010-09-17-bundler@global.md
@@ -1,72 +1,72 @@
---
layout: post
-title: Embracing the Global Gemset
+title: Embracing RVM's Global Gemset
categor... |
mattscilipoti/mattscilipoti.github.io | cda7e59e90a697ad63bac14a2f3f4448017fbd38 | Publish: bundler@global | diff --git a/_posts/2010-09-17-bundler@global.md b/_posts/2010-09-17-bundler@global.md
index f36b230..f388deb 100644
--- a/_posts/2010-09-17-bundler@global.md
+++ b/_posts/2010-09-17-bundler@global.md
@@ -1,15 +1,72 @@
---
layout: post
title: Embracing the Global Gemset
categories:
- ruby
- rvm
-published: false
... |
mattscilipoti/mattscilipoti.github.io | cbb8c3a243bb7a56db27bfc6eb52b857c4af771f | Github pages lost my format. | diff --git a/_posts/2010-09-17-jekyll-categories.md b/_posts/2010-09-17-jekyll-categories.md
index 5e1d289..fc545cc 100644
--- a/_posts/2010-09-17-jekyll-categories.md
+++ b/_posts/2010-09-17-jekyll-categories.md
@@ -1,77 +1,81 @@
---
layout: post
title: Categories for your GitHub Pages (Jekyll)
categories:
- code... |
mattscilipoti/mattscilipoti.github.io | c3f1e0869f89e71689ab8452211b304cbbdb1a2e | New draft bunlder@global | diff --git a/_posts/2010-09-17-bundler@global.md b/_posts/2010-09-17-bundler@global.md
new file mode 100644
index 0000000..f36b230
--- /dev/null
+++ b/_posts/2010-09-17-bundler@global.md
@@ -0,0 +1,15 @@
+---
+layout: post
+title: Embracing the Global Gemset
+categories:
+- ruby
+- rvm
+published: false
+---
+
+{{ page... |
mattscilipoti/mattscilipoti.github.io | 56a131cdb2ed60557146145054bd0885dbf9266d | We have categories. | diff --git a/_includes/category_page.textile b/_includes/category_page.textile
new file mode 100644
index 0000000..0f880cc
--- /dev/null
+++ b/_includes/category_page.textile
@@ -0,0 +1,5 @@
+<ul id="archive">
+ {% for post in category_posts %}
+ <li><a href="{{ post.url }}">{{ post.title }}</a><abbr>{{ post.date |... |
mattscilipoti/mattscilipoti.github.io | 33b93155365715d1130124d45cf77e232eefb52c | Uses rdiscount | diff --git a/blog.thor b/blog.thor
index 2758eea..c570d49 100644
--- a/blog.thor
+++ b/blog.thor
@@ -1,9 +1,15 @@
class Blog < Thor
desc "starts a server", "Starts a server on port:4000, automatically refreshes as site is changed"
def server
- cmd = 'jekyll --pygments --server --auto'
+ cmd = 'jekyll --... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.