Month: December 2015

  • Pinboard 的誠意

    Billing screw-up

    Hello there,

    Thanks for your recent $95 renewal of archiving! I am very grateful for your trust in Pinboard.

    However, I made a coding mistake on the new Stripe billing page, and instead of being billed for the correct amount ($95), your card was billed for $0.95.

    I’ve refunded this payment, and I’m afraid you’ll have to visit https://pinboard.in/renew at your convenience, and make the charge one more time. I have added three months to your archiving as an apology for my sloppy coding.

    Kind wishes,

    Maciej
    (Pinboard leader)

  • ProxyChains-NG and OS X El Capitan System Integrity Protection System Integrity Protection

    Apple introduces System Integrity Protection (SIP) as a security feature for OS X El Capitan (10.11), which prevent ProxyChains-NG working as before, you have to disable SIP to make it work:

    1. Reboot your Mac into Recovery Mode by pressing command-R
    2. Open Terminal and type csrutil enable --without debug:
    $ csrutil enable --without debug
    $ csrutil: requesting an unsupported configuration. This is likely to break in the future and leave your machine in an unknown state.
    $ Successfully enabled System Integrity Protection. Please restart the machine for the changes to take effect.
    

    Just ignore the warnings and then restart your Mac.

  • Use nvm for all users

    From Digital Ocean

    This is very tricky and you should rerun this command every time you upgrade your node version:

    n=$(which node);n=${n%/bin/node}; chmod -R 755 $n/bin/*; sudo cp -r $n/{bin,lib,share} /usr/local

    Better solutions are welcome.