I'm starting to compile a list of domains that are purely crap recruiter emails. At some point, I'll make this a filter to just delete them all together.
workbridgeassociates.com
vtrit.com
jsgeeks.com
questgroups.com
| $county = new Element\Select('county'); | |
| $county->setLabel('County') | |
| ->setValueOptions( | |
| array( | |
| 'Aberdeenshire' => 'Aberdeenshire', | |
| 'Angus/Forfarshire' => 'Angus/Forfarshire', | |
| 'Argyllshire' => 'Argyllshire', | |
| 'Ayrshire' => 'Ayrshire', | |
| 'Banffshire' => 'Banffshire', | |
| 'Bedfordshire' => 'Bedfordshire', |
| #!/bin/bash | |
| declare -a OPENCMS_SERVICES=('mysqld' 'tomcat6' 'nginx'); | |
| check_health() { | |
| for service in ${OPENCMS_SERVICES[@]} | |
| do | |
| if [ -z "$(ps ax | grep -v grep | grep $service)" ] | |
| then | |
| echo "$service is NOT RUNNING..." | |
| make_service_run $service |
| core = 6.x | |
| api = 2 | |
| projects[drupal][type] = core | |
| projects[] = cck | |
| projects[] = context | |
| projects[] = features | |
| projects[] = filefield | |
| projects[] = views | |
| projects[] = fserver |
| #!/bin/bash | |
| while read line | |
| do | |
| brew install "$line" | |
| done < /Volumes/External/work-brew |
| /* | |
| Localizable.strings | |
| RBLChecker | |
| Created by Nick Pack on 12/05/2013. | |
| Copyright (c) 2013 Nick Pack. All rights reserved. | |
| */ | |
| /* No comment provided by engineer. */ | |
| "An error was encountered when checking" = "チェックするときにエラーが発生しました"; |
| NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; | |
| [dateFormat setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"]; |
| sudo cp /private/etc/php.ini.default /private/etc/php.ini | |
| sudo php /usr/lib/php/install-pear-nozlib.phar | |
| pear config-set php_ini /private/etc/php.ini | |
| pecl config-set php_ini /private/etc/php.ini |