Skip to content

Instantly share code, notes, and snippets.

@joaocc
joaocc / index.html
Last active August 29, 2015 14:19 — forked from Fortyseven/index.html
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity Web Player | %UNITY_WEB_NAME%</title>
%UNITY_UNITYOBJECT_DEPENDENCIES%
<script type="text/javascript">
<!--
var unityObjectUrl = "%UNITY_UNITYOBJECT_URL%";
if (document.location.protocol == 'https:')

Fixing npm On Mac OS X for Homebrew Users

If you just want to fix the issue quickly, scroll down to the "solution" section below.

Explanation of the issue

If you're a Mac Homebrew user and you installed node via Homebrew, there is a major philosophical issue with the way Homebrew and NPM work together. If you install node with Homebrew and then try to do npm update npm -g, you will see an error like this:

$ npm update npm -g
#!/bin/bash
#### This script is published by Philipp Klaus <[email protected]>
#### on <http://blog.philippklaus.de/2011/05/ipv6-6in4-tunnel-via-hurricane-electric-tunnelbroker-net-automatic-ip-update-on-mac-os-x/>
#### It is originally by freese60 and modified by limemonkey.
#### Found on <http://www.tunnelbroker.net/forums/index.php?topic=287.0>
### Uncomment this line to debug the script:
#set -x
# run on the VM which will provide the image for the vagrant box
# to save a lot of time and disk space, delete any unwanted snapshots from the VM
# based, almost entirely, on http://www.hurryupandwait.io/blog/in-search-of-a-light-weight-windows-vagrant-box
# rename built-in admin account username and pwd to 'vagrant'
$admin=[adsi]"WinNT://./Administrator,user"
$admin.psbase.rename("vagrant")
$admin.SetPassword("vagrant")
$admin.UserFlags.value = $admin.UserFlags.value -bor 0x10000
$admin.CommitChanges()
@joaocc
joaocc / module--contact--include--service--contact.class.php.diff
Created December 3, 2013 16:38
PHPFox 3.7.2: non-official fix for problem in sending mails as-users (module Contact) by HighSkillz
diff --git a/phpfoxdev/module/contact/include/service/contact.class.php b/phpfoxdev/module/contact/include/service/contact.class.php
index 18ed3c9..f65801f 100644
--- a/com-hsz-dev-aux5/src-www/phpfoxdev/module/contact/include/service/contact.class.php
+++ b/com-hsz-dev-aux5/src-www/phpfoxdev/module/contact/include/service/contact.class.php
@@ -72,6 +72,14 @@ class Contact_Service_Contact extends Phpfox_Service
$sText .= Phpfox::getPhrase('contact.profile') . ': ' . Phpfox::getLib('url')->makeUrl(Phpfox::getUserBy('user_name')) . '<br />';
$sText .= '------------------------------------------------------------<br />';
}
+ else
+ {