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> | |
<head> | |
<title></title> | |
<link rel="stylesheet" href="chosen/chosen.css"/> | |
<style> | |
select { | |
width: 200px; | |
} | |
</style> |
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
<style> | |
.designers .container { | |
position: fixed; | |
width: 100%; | |
} | |
</style> | |
<div class="designers"> | |
<a>designers</a> | |
<div class="container"> |
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
https://my.vmware.com/group/vmware/evalcenter?p=free-esxi5&source=dwnp |
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
/** | |
* preset Telerik's RadComboBox based on URL fragment parameters | |
* | |
* This function will autorun at startup. it requires Telerik and jQuery to be installed. | |
* It listens to the URL Fragment, ex: 'http://example.com/page?unimportant=stuff#greeting=hello%20world' would produce {greeting: "hello world"} | |
* It presently watches for 2 values, "search" and "category", and is separated similarly to the query line, i.e. = and & | |
* category IS case sensitive and space sensitive. Spaces __can__ be in the form of ' ' but __should__ be in the form of '%20' URL encoded | |
* | |
* @author Rhett Lowe <[email protected]> | |
* @param {Object} $ The windows jQuery object |
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
/** | |
* Created by rhett on 7/9/15. | |
*/ | |
var encrypt = function (message, pass, shift) { | |
var alpha = shiftAlpha(shift); | |
message = message.toUpperCase().split(''); | |
pass = pass.toUpperCase().replace(/\s/g, '').split('').map(function (i) { |
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
/** | |
* Created by rhett on 7/7/15. | |
*/ | |
var permutation = function (col){ | |
if (col.length <= 1) { | |
return col; | |
} else if (col.length === 2) { | |
return [ |
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
<div id="faqs"> | |
<div id="faqs-toc"></div> | |
<div id="faqs-questions"> | |
<section> | |
<h2>General Rules</h2> | |
<div class="question"> | |
<h3>Question one goes here</h3> | |
<p>the answer goes here</p><a>[href="#"] citation goes here</a> | |
</div> | |
<div class="question"> |
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
$ cat /Users/rhett/Projects/uci-node-ldap/npm-debug.log | |
0 info it worked if it ends with ok | |
1 verbose cli [ 'node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli 'git+ssh://github.oit.uci.edu:education/node-ldap.git' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 silly cache add args [ 'git+ssh://github.oit.uci.edu:education/node-ldap.git', null ] |
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
$ npm install dtrace-provider --verbose | |
npm info it worked if it ends with ok | |
npm verb cli [ 'node', | |
npm verb cli '/usr/local/bin/npm', | |
npm verb cli 'install', | |
npm verb cli 'dtrace-provider', | |
npm verb cli '--verbose' ] | |
npm info using [email protected] | |
npm info using [email protected] | |
npm verb install initial load of /Users/rhett/Projects/kim-processing/package.json |
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
$ npm install | |
> [email protected] install /home/rhett/services/to-csv/node_modules/restify/node_modules/dtrace-provider | |
> node scripts/install.js | |
> [email protected] install /home/rhett/services/to-csv/node_modules/mmmagic | |
> node-gyp rebuild |
OlderNewer