TODO: Write a project description
TODO: Describe the installation process
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>jQuery Practice</title> | |
| </head> | |
| <body> | |
| <div id="content"> | |
| <div class="entry"> | |
| <h1>You Won't Believe What Happens When You Click This Link</h1> | |
| <a href="#">Click me!</a> |
| // 1: how could you rewrite the following to make it shorter? | |
| if (foo) { | |
| bar.doSomething(el); | |
| } else { | |
| bar.doSomethingElse(el); | |
| } | |
| ### Keybase proof | |
| I hereby claim: | |
| * I am Borgaard on github. | |
| * I am whygaard (https://keybase.io/whygaard) on keybase. | |
| * I have a public key whose fingerprint is 1700 907E BF38 6DB1 330E 1040 EC0E 8912 E09F 6854 | |
| To claim this, I am signing this object: |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <gmp.h> | |
| char * polynomial="-74101463560860539810482394216134472786413399/404009590666424903383979388988167534591844018460526499864038804741201731572423877094984692537474105135297393596654648304117684895744000000000000000000000*x^99 + 1786563401621773217421750502452955853226339781/1943688752347061390850759947022111850270039951356484879070977067483444756705819339975871373032521468004867185688372878439054154137600000000000000000000*x^98 - 27321291157050372775340569532625689973429185264741/12024094960310264981666053243695462339042976739896622019763059664916718201560234437350734896948634081407660523709959770955883479040000000000000000000000*x^97 + 4936870031754926645682423836151042176171669450909/1336493173680525187613977630110369004256312194947800263402124063124652591386915768177479078216982141485276408003996973457735680000000000000000000000*x^96 - 24473118674386691114350902920738421254018653211816783/55093218603941649400531744530105211175454647 |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <html> | |
| <body> | |
| <div id="chat-window"></div> | |
| <div id="chat-form"> | |
| <form id="formy"> | |
| <textarea name="chat-entry" id="chat-entry" cols="30" rows="2"></textarea> | |
| <input type="submit" value="ChatzOr"></input> | |
| </form> | |
| </div> |
| <html> | |
| <style> | |
| .timeColor { | |
| color: gray; | |
| margin-right: 5px; | |
| } | |
| .userColor { | |
| color: orange; | |
| margin-right: 5px; | |
| } |
| dropbox alternative |
Go to the postgres documentation:
http://postgresapp.com/documentation/cli-tools.html
cd ~
open .bash_profile (if you're using zshell, use open .zshrc instead.)
Add this to the last line of your .bash_profile or .zshrc file:
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin
rails new postgres_app --database=postgresql