sudo apt-get updatesudo apt-get install -y libssl1.0.0 opensslopenssl version -aand confirm the "built on" date is >= 2014-04-07sudo lsof -n | grep ssl | grep DELand restart all listed services.
Repeat #4 until no results are returned.
| #!/usr/bin/env bash | |
| if [ -n "$1" ] | |
| then | |
| if grep "ide.mac.useNativeClipboard=" "$1"/Contents/bin/idea.properties > /dev/null | |
| then | |
| if grep "ide.mac.useNativeClipboard=false" "$1"/Contents/bin/idea.properties > /dev/null | |
| then | |
| echo "ide.mac.useNativeClipboard=false found -> change to true" |
| curl --data "room_id=99999" --data "from=EEWebsiteBot" --data-urlencode "message=Event Espresso staging servers (beta and dev) have been deployed to" --data "message_format=text" --data "notify=1" --data "color=purple" https://api.hipchat.com/v1/rooms/message?auth_token=obsfucated_api_token | |
| ##So the room_id corresponds to what room you want the notifications go to and the auth token is the api key you generate via the group admin in HipChat (web). |
| { | |
| "word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?" | |
| } |
| #!/bin/bash | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxDrv.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxNetFlt.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxNetAdp.kext" | |
| sudo kextload -r "/Library/Extensions/" "/Library/Extensions/VBoxUSB.kext" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # Use PHP 5.4 | |
| apt_repository "php54" do | |
| uri "http://ppa.launchpad.net/ondrej/php5/ubuntu" | |
| distribution node['lsb']['codename'] | |
| components ["main"] | |
| keyserver "keyserver.ubuntu.com" | |
| key "E5267A6C" | |
| end |
| name "sshserver" | |
| description "Configures SSH and enables SFTP" | |
| run_list( | |
| "recipe[openssl::default]", | |
| "recipe[openssh]", | |
| ) | |
| default_attributes( | |
| "openssh" => { | |
| "server" => { | |
| "subsystem" => "sftp /usr/lib/openssh/sftp-server" # path for Ubuntu; ymmv |
| This playbook has been removed as it is now very outdated. |
| #!/bin/bash | |
| INNOBACKUP="/root/percona-xtrabackup/innobackupex" | |
| INNOBACKUP_OPTIONS="--defaults-file=/etc/my.cnf --ibbackup=/root/percona-xtrabackup/mysql-5.5/storage/innobase/xtrabackup/xtrabackup_innodb55 --parallel=4 --user=root --password=XXXXXXX" | |
| BACKUPDIR="/var/sqlbackup/" | |
| S3BUCKET="db_backup" | |
| echo "Removing old local backups" | |
| cd $BACKUPDIR |