This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>New Message!</h2> | |
<p>Priority:</p> | |
<%=@priority%> | |
<p> | |
<%= image_tag attachments['image.jpg'].url %> | |
</p> | |
<p> | |
<%=@description%> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Contact</h1> | |
<%= form_tag("/send_to", :method=>'post', :multipart => true) do %> | |
<p> | |
Subject:<br /> | |
<%= text_field_tag "subject" %> | |
</p> | |
<p> | |
Priority: <br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gst-launch-0.10 playbin2 uri=rtsp://v1.cache6.c.youtube.com/CiILENy73wIaGQngicUMXOqJOxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import pygst | |
pygst.require("0.10") | |
import gst, pygtk, gtk | |
import sys | |
class Main(object): | |
def __init__(self): | |
self.multimedia_file="" | |
# Create the GUI | |
self.win = gtk.Window() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gtk | |
class Podcaster(gtk.Window): | |
def __init__(self): | |
super(Podcaster, self).__init__() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygtk | |
pygtk.require('2.0') | |
import gtk | |
import os | |
class Podcaster: | |
wTree = None |
NewerOlder