Some links to point people to when they misinterpret PATENTS clause or spread false claims.
https://code.facebook.com/license-faq
https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause
| // In Groovy | |
| // collect = "map" | |
| // inject = "reduce" | |
| // | |
| // See http://docs.groovy-lang.org/next/html/documentation/working-with-collections.html for docs | |
| //////////////////////////////////////////////////////////////////////////////// | |
| // Arrays | |
| def myNumbers = [3, 5, 1] |
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Postman | |
| Exec=postman | |
| Icon=/home/USERNAME/Postman/app/resources/app/assets/icon.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Development; |
Some links to point people to when they misinterpret PATENTS clause or spread false claims.
https://code.facebook.com/license-faq
https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause
| # <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
| # |<---- Using a Maximum Of 50 Characters ---->| | |
| # Explain why this change is being made | |
| # |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
| # Provide links or keys to any relevant tickets, articles or other resources | |
| # Example: Github issue #23 |
| #!/bin/sh | |
| read oldrev newrev refname | |
| NULL_SHA1="0000000000000000000000000000000000000000" | |
| revs="" | |
| case $oldrev,$newrev in | |
| *,$NULL_SHA1) # Deleting ref | |
| ;; |
| # | |
| # ~/.bashrc | |
| # | |
| export PATH="/usr/lib/colorgcc/bin/:$PATH:/home/jamie/.gem/ruby/2.1.0/bin" | |
| export CCACHE_PATH="/usr/bin" | |
| export WORKON_HOME=$HOME/.virtualenvs | |
| source /usr/bin/virtualenvwrapper_lazy.sh | |
| VBOX_USB=usbfs | |
| # If not running interactively, don't do anything |
| #!/bin/sh | |
| # Sublime Text 3 Install (last update: Monday 13 March 2017) | |
| # | |
| # No need to download this script, just run it on your terminal: | |
| # | |
| # curl -L git.io/sublimetext | sh | |
| # Detect the architecture |
| #!/bin/bash | |
| function usage { | |
| echo "USAGE: git merge-svn <from> [<to>]" | |
| echo "" | |
| echo " from The branch name to be merged FROM" | |
| echo " to Optional branch name to be merged onto. Default: HEAD" | |
| echo "" | |
| } |