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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | |
<html> | |
<head> | |
<title>Faculty Focus</title> | |
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1" /> | |
<style type="text/css"> | |
<!-- | |
.style2 { | |
color: #000000 | |
} .style3 { |
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
<html> | |
<head> | |
<title>sullenfish.com</title> | |
</head> | |
<body bgcolor="#f5f5f5"> | |
<p><font size="4"> | |
<fieldset>"Sometimes when I'm suffering from writer's block what I like to do is watch a bunch of strangers from above and think about what their lives are probably like. Then, while I'm reloading, I jot down little notes that I can flesh out later."<br /> | |
-Ken Dysland</fieldset></font></p> | |
<hr /> | |
<div align="left"> |
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 | |
$sSessionID = '8675309'; | |
?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> | |
<head> | |
<title>PHP Test</title> | |
</head> | |
<body> | |
<?php |
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
// Copyright 2006-2008 the V8 project authors. All rights reserved. | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions are | |
// met: | |
// | |
// * Redistributions of source code must retain the above copyright | |
// notice, this list of conditions and the following disclaimer. | |
// * Redistributions in binary form must reproduce the above | |
// copyright notice, this list of conditions and the following | |
// disclaimer in the documentation and/or other materials provided |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<title></title> | |
<style type="text/css"></style> | |
<link rel="stylesheet" type="text/css" href="" /> | |
<script type="text/javascript" src=""></script> | |
<script type="text/javascript"></script> | |
</head> | |
<body> |
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
# put this in your bash profile (change the line below if you use .bash_profile) | |
# refresh profile on USR1 signal | |
trap 'eval $(PATH= /usr/libexec/path_helper -s) && source ~/.profile' USR1 | |
# send USR1 signal to all bash instances | |
reload() { | |
ps -xo pid,command | grep ' \-bash' | awk '{print $1}' | while read pid; do | |
kill -USR1 $pid | |
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
Option Explicit | |
Public Sub SavePDF(Optional ExportLocation As String, _ | |
Optional AskForDestination As Boolean = False, _ | |
Optional OpenAfterExport As Boolean = False) | |
' | |
' SavePDF Macro | |
' | |
' GetFolder based on original code from: http://www.mrexcel.com/forum/showthread.php?t=294728 | |
' TrimToChar based on original code from: http://www.cpearson.com/excel/sizestring.htm |
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
# asynch | |
npm -g outdated 2>>(ag --nocolor '^((?!npm http).)*$') | |
# synch | |
{ { npm -g outdated 1>&3 } 2>&1 | ag --nocolor '^((?!npm http).)*$' } 3>&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
/* Based on "Polyfill gray() from CSS Color Level 4 with SASS" | |
* by Lea Verou | |
* with revisions by Chris Eppstein | |
* https://gist.github.com/LeaVerou/9199277 | |
*/ | |
gray(intensity, alpha = 1) | |
rgba(intensity, intensity, intensity, alpha) | |
/* Testing our new function */ |
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
jQuery.expr[":"]["only-text"] = function (elem) { | |
var i = elem.childNodes.length - 1, flag = false; | |
for (; i >= 0; i -= 1){ | |
switch (elem.childNodes[i].nodeType){ | |
case 3: // 3: TEXT_NODE | |
flag = true; | |
break; | |
case 7: // 7: PROCESSING_INSTRUCTION_NODE | |
case 8: // 8: COMMENT_NODE | |
break; |