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
#create & deploy lamp droplet | |
#login via ssh as root | |
#initial setup (ref: http://library.linode.com/getting-started#sph_logging-in-for-the-first-time) | |
# update /etc/hosts (to "thalassophobia.surrealroad.com") | |
nano /etc/hosts | |
# |
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
// usage | |
var forumURL = 'http://forums.com'; | |
$('#discourse-latest-container').getDiscourseTopics(forumURL, 'latest'); | |
// fetch discourse items | |
(function($) { | |
jQuery.fn.getDiscourseTopics = function (url, page) { | |
// load forum topics | |
if($(this).exists()) { | |
$this = $(this); |
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
1. File > New… | |
2. Download Ubuntu Free | |
3. Set parallels user password | |
4. Install Parallels Tools / Restart | |
5. `sudo apt-get update` | |
6. `sudo apt-get install apache2` | |
7. `sudo apt-get install mysql-server` | |
8. `sudo apt-get install php5 libapache2-mod-php5` | |
9. Test browsing to http://localhost or http://parallels-ip-address | |
10. `sudo apt-get install openssh-server` |
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
// get paragraphs | |
"/FinalDraft/Content/Paragraph" | |
// paragraph text | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/Text" | |
// scene summary | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/SceneProperties/Summary/Paragraph/Text" | |
// paragraph type |
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
// clips | |
"//clip" | |
// shot-take | |
"//clip[" & $clipIndex & "]/logginginfo/shottake" | |
// scene | |
"//clip[" & $clipIndex & "]/logginginfo/scene" | |
// default angle |
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
# http://stackoverflow.com/a/25847006/262455 | |
# If there are only directories and regular files, you can do something like this: | |
cd "$src" | |
find . -type d -print0 | ( cd "$dst" ; xargs -0 mkdir -p ) | |
find . -type f -print0 | ( cd "$dst" ; xargs -0 touch ) |
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
# https://forums.plex.tv/index.php/topic/127360-this-package-does-not-contain-a-digital-signature/#entry763580 | |
mkdir PlexMediaServer-0.9.11.7.803-87d0708-x86 | |
cd PlexMediaServer-0.9.11.7.803-87d0708-x86 | |
tar xvzf ../PlexMediaServer-0.9.11.7.803-87d0708-x86.spk | |
perl -pi -e 's/evansport/evansport avoton/g' INFO | |
tar -zcvf ../PlexMediaServer-0.9.11.7.803-87d0708-x86_atom.spk * |
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
# using sed | |
sed $'s/\\\r/\\\n/g' $FILE | |
# using tr | |
tr "\r" "\n" < "$FILE" |
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
=begin | |
Find pages a field is used on | |
1. Edit the last line in the following script to reference the | |
appropriate field & entity | |
2. Paste the whole thing into the Ruby console for the site in | |
question | |
=end |
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
<?php | |
echo "<pre>"; print_r($wp_query->query_vars); echo "</pre>"; | |
?> |
OlderNewer