Skip to content

Instantly share code, notes, and snippets.

Public Statement about the Apple Developer Program License Agreement

I'm about to agree to the Apple Developer Program License Agreement. I wasn't planning to make a public statement about it, until I read section 9.4:

9.4 Press Releases and Other Publicity

You may not issue any press releases or make any other public statements regarding this Agreement, its terms and conditions, or the relationship of the parties without Apple’s express prior written approval, which may be withheld at Apple’s discretion.

So if I ever want to make a public statement about this agreement, I guess I better do it now, because I won't be allowed to do this after I agree to its terms.

@ad510
ad510 / curriculum_plan.md
Created January 30, 2016 00:35
markdownfmt outputs
  • HTML
    • HTML Tags
    • HTML Attributes
    • Parent/child sibling
  • CSS
    • CSS Selectors
    • CSS Cascade
  • DOM Manipulation
    • On ____ callbacks
  • A web framework (React, Angular, Backbone, etc)
@ad510
ad510 / install_git_on_parallel.sh
Created April 25, 2012 07:17
shell script to install Git on USC parallel computers without root permissions
# note that this file needs execute permissions to run, which can be done by running "chmod u+rwx ./install_git_on_parallel.sh" (without quotes)
# this script based on:
# http://joemaller.com/908/how-to-install-git-on-a-shared-host/
# http://stackoverflow.com/questions/9500898/compiler-error-msgfmt-command-not-found-when-compiling-git-on-a-shared-hosting
# update $PATH
echo "# the following line added by install_git_on_parallel.sh" >> ~/.bashrc
echo "export PATH=$HOME/opt/bin:$PATH" >> ~/.bashrc
. ~/.bashrc