The B-52s vs. Jimmy McGriff – Loveworm

a funk pop mashup

contains:

The B-52s “Love Shack”, ℗+© 1989 curtacy Warner Music Group
Jimmy McGriff “The Worm”, ℗+© 1968 curtacy of Solid State Records

Released by: Tasmo Tapes 2000
Release date: Jan 1, 2005

Veröffentlicht in Music, Soundcloud, selfmade | Getagged , , , | Kommentieren

ChucK [=>]

ChucK is a strongly-timed, concurrent, and On-the-fly Audio Programming Language.

ChucK vs. TextMate

A Bundle to edit ChucK files in the TextMate editor is created at Github.

to install it execute in Terminal:

cd ~/Library/Application\ Support/TextMate/Bundles \
git clone git://github.com/tasmo/ChucK.tmbundle.git ChucK.tmbundle

vim

Vim is a highly configurable text editor built to enable efficient text editing.
It is an improved version of the vi editor distributed with most UNIX systems.

ChucK vs. vim

For .ck syntax highlighting in vim you will need vim.ck.
A file opened in vim you can add to an already running ChucK by typing in vim:

:r! chuck + %

to have a shorter command* in vim, add to your ~/.vimrc:

cnoreabbrev CH r! chuck + %

and

:CH

will do it

*(adopted from the Vim Tips Wiki)

Veröffentlicht in coding | Getagged , , , | Kommentieren

New Tumblr theme variable transformation: URLEncoded for Facebook Like Button

staff:

You can now prefix any theme variable with “URLEncoded” to output a URL encoded string. This should make it easier to integrate third-party widgets like Digg, or Facebook’s new Like Button.

<a href="http://digg.com/submit?url={URLEncodedPermalink}">Digg</a>

The code for the new Facebook feature in my custom Tumblr theme:

In the <HEAD> element I use the following Meta data:

<meta property="og:title" content="{PostTitle}{/block:PostTitle}{block:PostSummary}{PostSummary}{/block:PostSummary}" />
<meta property="og:site_name" content="{Title}" />
<meta property="og:image" content="{PortraitURL-128}" />

and in <BODY>:

<!-- FACEBOOK LIKE BUTTON -->
<iframe src="http://www.facebook.com/plugins/like.php?href={URLEncodedPermalink}&amp;layout=standard&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=arial&amp;colorscheme=evil" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:px"></iframe>
<!-- END FACEBOOK LIKE BUTTON -->
Veröffentlicht in blogging | Getagged , , , | Kommentieren