From 22ca6f0ce2843b106996d6df20012d8aee139e70 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 22 Mar 2011 21:52:38 -0400 Subject: [PATCH] sed -i s/\"/\'/g projects/* && rm print()s in pub* This fixes a bug introduced in commit f9f5098 that broke the frontpage. The problem was that the method used to force the project page to show up searches for class='notes' but they were ""s in error. It's kind of a crude method in the first place, but it works. The print statement in ./publish_projects was from debugging a while ago and served no purpose. --- projects/drawcss.html | 12 ++++++------ projects/i_like_pandora.html | 12 ++++++------ projects/peepshow.html | 16 ++++++++-------- projects/readoo.html | 8 ++++---- projects/repthis.html | 12 ++++++------ projects/youtube_backup.html | 12 ++++++------ publish_projects.py | 1 - 7 files changed, 36 insertions(+), 37 deletions(-) diff --git a/projects/drawcss.html b/projects/drawcss.html index e5f8bdd..dcabc0c 100644 --- a/projects/drawcss.html +++ b/projects/drawcss.html @@ -1,17 +1,17 @@ -
-

drawcss

writing markup for website wireframes +
+

drawcss

writing markup for website wireframes always seemed silly.

this is a tool to draw them (it's not done).

- check + check out the invisible elements this page is built on.

then get the + 'http://github.com/nospampleasemam/drawcss'>the code.
diff --git a/projects/i_like_pandora.html b/projects/i_like_pandora.html index 0a615cc..597ffec 100644 --- a/projects/i_like_pandora.html +++ b/projects/i_like_pandora.html @@ -1,8 +1,8 @@ -
-

i_like_pandora

searches - youtube for what you - like on pandora.
+
+

i_like_pandora

searches + youtube for what you + like on pandora.

then it downloads the first video.
@@ -11,7 +11,7 @@

the code is free (as in freedom), here.
+ 'http://github.com/nospampleasemam/i_like_pandora'>here.
diff --git a/projects/peepshow.html b/projects/peepshow.html index 08156c5..a306b61 100644 --- a/projects/peepshow.html +++ b/projects/peepshow.html @@ -1,16 +1,16 @@ -
-

foxy-addons/

+
+

foxy-addons/

-

peepshow

a +

peepshow

a firefox + 'http://www.mozilla.com/en-US/products/download.html'>firefox addon, to load linked images inline (like on reddit).
+ 'http://reddit.com/r/pics'>reddit).

here's the repo + 'http://github.com/nospampleasemam/peepshow/'>repo for the source code.
diff --git a/projects/readoo.html b/projects/readoo.html index 1c1919c..46b32f5 100644 --- a/projects/readoo.html +++ b/projects/readoo.html @@ -1,13 +1,13 @@ -
-

readoo

helps +
+

readoo

helps you find search keywords to target.

it reads your IIS logs, and finds successful keywords worth focusing on.

it's not done yet! here's the source + 'http://github.com/nospampleasemam/readoo'>source code.
diff --git a/projects/repthis.html b/projects/repthis.html index c395d49..919365f 100644 --- a/projects/repthis.html +++ b/projects/repthis.html @@ -1,17 +1,17 @@ -
- 3D printing is a form of additive +
+ 3D printing is a form of additive manufacturing technology where a three dimensional object is created by successive layers of material. [1]:http://en.wikipedia.org/wiki/3D_printing
+ 'http://repthis.info/'>http://en.wikipedia.org/wiki/3D_printing

- reprap is a free + reprap is a free desktop 3D printer capable of printing plastic objects.

- repthis.info is the + repthis.info is the account of a friend and I learning to build our own.

diff --git a/projects/youtube_backup.html b/projects/youtube_backup.html index 8f7767e..9526722 100644 --- a/projects/youtube_backup.html +++ b/projects/youtube_backup.html @@ -1,16 +1,16 @@ -
+
-

youtube_backup

backs - up all the youtube +

youtube_backup

backs + up all the youtube videos in a users favorites list.

this is my fork of the original + 'https://github.com/hagnas/youtube_backup'>original youtube_backup which adds asynchronous alerts after successful downloads.

it's written in python.
+ 'http://www.python.org/'>python.
diff --git a/publish_projects.py b/publish_projects.py index 7e5535c..da77e39 100755 --- a/publish_projects.py +++ b/publish_projects.py @@ -11,7 +11,6 @@ domain = config.get('database', 'domain') user = config.get('database', 'user') password = config.get('database', 'password').replace('"', '') database = config.get('database', 'database') -print domain, user, password, database cursor = db.connect(domain, user, password, database).cursor() notes = os.listdir('projects') -- 2.30.2