Some math: \( \del \cdot \vec{B} = 0 \)
Some more math:
x = {-b \pm \sqrt{b^2-4ac} \over 2a}
| Contacts Notes | |
| ============== | |
| Discussions | |
| ----------- | |
| philikon: | |
| - https://groups.google.com/group/mozilla.dev.webapi/browse_thread/thread/4ee893ec78d50bab | |
| - https://groups.google.com/forum/#!topic/mozilla.dev.webapi/O9NvczNs54M/discussion | |
| - Example code: https://github.com/philikon/webcontacts |
| --type-add=js=.jsm,.sjs | |
| --type-add=css=.sass,.less,.scss | |
| --ignore-dir=node_modules | |
| --ignore-dir=log | |
| --ignore-dir=build | |
| --smart-case | |
| --sort-files | |
| --color | |
| --follow | |
| --group |
Some math: \( \del \cdot \vec{B} = 0 \)
Some more math:
x = {-b \pm \sqrt{b^2-4ac} \over 2a}
Make sure you have all the dependencies installed
See the steps on devmo.
| #!/usr/bin/env zsh | |
| # Completions and autoload {{{ | |
| # note - you can get a clean config using compinstall and zsh-newuser-install | |
| zstyle ':completion:*' completer _expand _complete _correct | |
| zstyle ':completion:*' completions 4 | |
| zstyle ':completion:*' glob 1 | |
| zstyle ':completion:*' group-name '' | |
| zstyle ':completion:*' ignore-parents parent pwd |
| [ui] | |
| username = Jed Parsons <jedp@mozilla.com> | |
| [diff] | |
| # git diff is required so binary files don't break | |
| git = 1 | |
| showfunc = True | |
| unified = 8 | |
| [defaults] |
| . $topsrcdir/browser/config/mozconfig | |
| # Define where build files should go. This places them in the directory | |
| # "obj-ff-dbg" under the current source directory | |
| mk_add_options MOZ_OBJDIR=../build_mc | |
| # -s makes builds quieter by default | |
| # -j4 allows 4 tasks to run in parallel. Set the number to be the amount of | |
| # cores in your machine. 4 is a good number. | |
| mk_add_options MOZ_MAKE_FLAGS="-s -j6" |
| # http://koans.heroku.com/en/about_triangle_project_2 | |
| # | |
| # XXX why does the second TriangleError.new cause a syntax error | |
| # in the heroku web app, but not in my irb repl!? | |
| class TriangleError < Exception | |
| end | |
| def triangle(a, b, c) | |
| sides = [a, b, c] |
| # Answer to a ruby koan: | |
| # http://koans.heroku.com/en/about_proxy_object_project | |
| # Project: Create a Proxy Class | |
| # | |
| # In this assignment, create a proxy class (one is started for you | |
| # below). You should be able to initialize the proxy object with any | |
| # object. Any messages sent to the proxy object should be forwarded | |
| # to the target object. As each message is sent, the proxy should | |
| # record the name of the method send. |
| if version < 704 | |
| " if we are somehow running a version lower than 7.4, | |
| " something's wrong, so just stop processing this file. | |
| finish | |
| endif | |
| " auto reload vimrc after edit | |
| autocmd! bufwritepost .vimrc source % | |
| " vi? is it even possible to run original vi anymore? |