This file contains 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
<ul> | |
<li><a href="all">episodes</a></li> | |
<li><a href="https://overcast.fm/itunes933580554">overcast</a></li> | |
<li><a href="https://castro.fm/itunes/933580554">castro</a></li> | |
<li><a href="https://podcasts.apple.com/ca/podcast/limitless-possibility/id933580554">apple podcasts</a></li> | |
<li><a href="https://podcasts.google.com/feed/aHR0cDovL2xpbWl0bGVzc3Bvc3NpYmlsaXR5Lm5ldC9wb2RjYXN0LnJzcw">google podcasts</a></li> | |
<li><a href="podcast.rss">rss feed</a></li> | |
<li><a href="http://twitter.com/limipo_podcast">twitter</a></li> | |
</ul> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>0.995968 0.995968 0.995968 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>Consolas-Bold - 12.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>0.995968 0.995968 0.995968 1</string> |
This file contains 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
DROP TYPE Student; | |
DROP TYPE Person; | |
CREATE OR REPLACE TYPE Person As Object ( | |
firstName VARCHAR2(30), | |
lastName VARCHAR2(30), | |
phoneNumber CHAR(10) | |
) NOT FINAL; | |
/ | |
CREATE OR REPLACE TYPE Student UNDER Person ( |
This file contains 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
(* | |
* StatusChanger - Change status for iChat, Adium and Skype simultaneously | |
* by Luc-Olivier Dumais-Blais | |
*) | |
script statusChanger | |
set statusChosen to choose from list {"Available", "Busy", "Away", "Invisible", "Close apps"} ¬ | |
with title ¬ | |
"Change status on iChat, Adium and Skype" with prompt ¬ | |
"Choose an option : " default items ¬ | |
"Available" OK button name ¬ |