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
/* pinboard.in style to hide private bookmarks, except on hover */ | |
.bookmark.private { | |
opacity: 0; | |
} | |
.bookmark.private:hover { | |
opacity: 1; | |
} |
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
<?php | |
// | |
// The following code exists in the public domain. No warranty is expressed or implied. | |
// | |
/** | |
* Return the priority of the currently-running filter. | |
*/ | |
function current_filter_priority() { |
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
#!/bin/env php | |
<?php | |
// | |
// Save to your path as git-url. | |
// | |
// Display GitHub URLs for your current branch and last commit: | |
// | |
// git url | |
// |
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
while true ; do | |
clear | |
phpunit Atlas/Meteor/WebExportTest.php | |
inotifywait -e modify --exclude '\.swp$' -r ../.. | |
done |
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
/* | |
Title: GitHub Modified | |
Author: Adam Backstrom | |
Description: Additional styles for Marked's GitHub style. | |
*/ | |
@import url("/Applications/Marked.app/Contents/Resources/github.css"); | |
body { | |
font-family: Open Sans; |
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
j k l m n q t u v w x | |
lqqqqqqk | |
x x | |
mqqqqqqj | |
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
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>issue</title> | |
</head> | |
<body> | |
<div id="a"></div> |
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
Index: v_ug_app.sql | |
=================================================================== | |
--- v_ug_app.sql (revision 11548) | |
+++ v_ug_app.sql (working copy) | |
@@ -17,12 +17,14 @@ | |
FROM sarappd s2 | |
WHERE s2.sarappd_pidm = s1.sarappd_pidm | |
AND s2.sarappd_term_code_entry = s1.sarappd_term_code_entry | |
- AND s2.sarappd_apdc_date = | |
- (SELECT MAX(s3.sarappd_apdc_date) |
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>index.phtml</h2> |
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
#!/bin/bash | |
# | |
# modified for use as a callable script | |
# | |
# USAGE | |
# | |
# cleanup.sh [path] [days] | |
# | |
# path is required. days defaults to 14. |