My first tie - a set on Flickr
Posted: June 12th, 2009 | Author: Tim | Filed under: Uncategorized | Tags: tie | No Comments »Here is where I am so far…
Here is where I am so far…
Binaerpilot is the music for the discerning ear.
Vectorized Image [High quality and Simplified]: Download SVG
This is my first try at screen printing! This does not show how i did the emulsion, which was trial and error in the sun until i bought a $12 250 watt work lamp and then it came out crispy as rice cakes. there is slight unevenness of color as the whole thing started to move, but the detail is there!
So a friend asked me to make her a stencil. I was dubious at first because people are often boring and have lame ideas. But, to my surprise she only said, “I Like music, wings and pianos”. I didn’t see anything I could do with pianos off hand but she did like the the end design! w00t!
I need to remember to keep the white cut outs so i can do it on dark backgrounds. What do you think?
This was a line drawing I did a while ago and had cut into a stencil. What do you think?
On Thursday March 5th I submitted an inquiry on a custom stencil to Stencils Online. Within an hour Jessica had responded with an email following up on my quote. One thing I wanted was to get my stencil before Saturday if possible. She advised that proof would probably beĀ returned by noon the next day and to order overnight shipping. And then I was surprised to receive my proof that afternoon. A few emails later it was ready and shipped the next day! I got my stencil at 9:00am on Saturday and it was perfect! With clean edges and no warping!
So this is a Thank You for Stencils Online. Your service is excellent and prices are fair. Keep it up!
Just finished making a batch of this stencil for the party Saturday! Come on by if you want one!
I’m running django-trunk (currently 1.1 pre-alpha SVN-9820) and I noticed that the “change password”, “logout” for the admin, and the “change password” for the models inheriting the User class are all using relative urls. So I whipped this up to fix it.
urlpatterns = patterns('',
####
(r'^admin/', include(admin.site.urls)),
)
legacy_urls = (
(r'(?<P>\S+)/admin/password_change/$', '/admin/password_change/'),
(r'(?<P>\S+)/admin/logout/$', '/admin/logout/'),
(r'^admin/subscribers/subscriber/(?P<id>\d+)/password/$', '/admin/auth/user/%(id)s/password/'),
)
for urltuple in legacy_urls:
oldurl, newurl = urltuple
urlpatterns = patterns('',
(oldurl, 'django.views.generic.simple.redirect_to', {'url': newurl})
) + urlpatterns
Most of the code is from http://news.e-scribe.com/290, with a slight modification. Now it is prepending the oldurl to urlpatterns because in this case, admin.site.urls was being matched first.
Hope this helps someone out!
[edited Tue March 3, 2009 saw that my live version was different from the posted version]