cygwin ssh setup
- login as domain user
- cygwin install w/ openssh package selected
- mkpasswd -d >> /etc/passwd
- mkgroup -d >> /etc/group
- ssh-host-config
- yes to seperation, rename user to cygserver, add as service
- net start sshd
/* | |
- Added logMsg function for use in pre-populating message log | |
HUMANIZED MESSAGES 1.0 | |
idea - http://www.humanized.com/weblog/2006/09/11/monolog_boxes_and_transparent_messages | |
home - http://humanmsg.googlecode.com | |
*/ | |
var humanMsg = { |
{ | |
"_id": "1239167", | |
"_rev": "11-68a92bc722c1b59d080bbf0f0b8315aa", | |
"bib_created": "2005-05-31", | |
"bib_lastupdate": "2010-01-10", | |
"bib_prevupdate": "2010-01-09", | |
"bib_revs": 2889, | |
"lang": "eng", | |
"loc_code": "multi", | |
"mat_code": "a", |
cygwin ssh setup
<?php | |
$locum_lib_dir = '/usr/local/lib/locum'; | |
$bib = "1188529"; | |
require_once($locum_lib_dir . '/locum-client.php'); | |
$then = microtime(); | |
// Data Set repair | |
$locum = new locum_client; | |
$now = microtime(); | |
echo sprintf("Started Locum: %f", $now-$then); |
CREATE TABLE IF NOT EXISTS `sopac_lists` ( | |
`list_id` int(10) unsigned NOT NULL auto_increment, | |
`uid` int(10) unsigned NOT NULL, | |
`title` varchar(128) default NULL, | |
`description` varchar(256) default NULL, | |
`public` tinyint(3) unsigned NOT NULL, | |
PRIMARY KEY (`list_id`), | |
KEY `uid` (`uid`) | |
) |
{ | |
"_id": "db-referenceusa", | |
"lang": "eng", | |
"title": "ReferenceUSA", | |
"notes": [ | |
"Find phone numbers and addresses of people, businesses, and doctors and dentists." | |
], | |
"subjects": [ | |
"Business Directory", | |
"Phone Numbers", |
charset_table = 0..9, a..z, A..Z->a..z,U+2B,U+2032,U+2160->1,U+2161->2,U+2162->3,U+2163->4,U+2164->5,U+2165->6,U+2166->7,U+2167->8,U+2168->9,U+2169->x, \ | |
U+00C0->a, U+00C1->a, U+00C2->a, U+00C3->a, U+00C4->a, U+00C5->a, U+00E0->a, U+00E1->a, U+00E2->a, U+00E3->a, U+00E4->a, U+00E5->a, U+0100->a, U+0101->a, U+0102->a, U+0103->a, U+010300->a, U+0104->a, U+0105->a, U+01CD->a, U+01CE->a, U+01DE->a, U+01DF->a, U+01E0->a, U+01E1->a, U+01FA->a, U+01FB->a, U+0200->a, U+0201->a, U+0202->a, U+0203->a, U+0226->a, U+0227->a, U+023A->a, U+0250->a, U+04D0->a, U+04D1->a, U+1D2C->a, U+1D43->a, U+1D44->a, U+1D8F->a, U+1E00->a, U+1E01->a, U+1E9A->a, U+1EA0->a, U+1EA1->a, U+1EA2->a, U+1EA3->a, U+1EA4->a, U+1EA5->a, U+1EA6->a, U+1EA7->a, U+1EA8->a, U+1EA9->a, U+1EAA->a, U+1EAB->a, U+1EAC->a, U+1EAD->a, U+1EAE->a, U+1EAF->a, U+1EB0->a, U+1EB1->a, U+1EB2->a, U+1EB3->a, U+1EB4->a, U+1EB5->a, U+1EB6->a, U+1EB7->a, U+2090->a, U+2C65->a, \ | |
U+0180->b, U+0181->b, U+0182->b, U+0183->b, U+0243->b, U+0253->b, U+0299->b, U+16D2->b, |
When installing certain gems it complained about xcode files (I only installed command line tools)
give it the path to the command line tools
xcode-select --switch /usr/bin
replace xcrun with bash script to get rid of "failed to exec real xcrun" error
#!/bin/bash
The font search path for GD (bundled with PHP) includes the following directories on Linux and similar systems: | |
/usr/X11R6/lib/X11/fonts/TrueType | |
/usr/X11R6/lib/X11/fonts/truetype | |
/usr/X11R6/lib/X11/fonts/TTF | |
/usr/share/fonts/TrueType |