This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| foo = Foo() | |
| L = ['foo', 'bar', 'naga', 'nooch', 'pooch', 'smooch'] | |
| for i, item in L: | |
| foo.i = item |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Fri, 02 Mar 2012 09:39:06 GMT] [error] [<0.22819.3>] OS Process Error <0.23376.3> :: {os_process_error, | |
| {exit_status,133}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| make[3]: `couchdb' is up to date. | |
| /bin/sh: /usr/local/bin/help2man: /opt/local/bin/perl: bad interpreter: No such file or directory | |
| chmod +x couchdb | |
| make[2]: *** [couchdb.1] Error 126 | |
| make[2]: *** Waiting for unfinished jobs.... | |
| make[1]: *** [all-recursive] Error 1 | |
| make: *** [all] Error 2 | |
| Error: #<BuildError: Failed executing: make > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asdasd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| viewmodel_fov "65.000000" | |
| viewmodel_offset_x "2" | |
| viewmodel_offset_y "1" | |
| viewmodel_offset_z "-1.5" | |
| cl_righthand "0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| viewname = new Object(); | |
| viewname = query |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ?startkey=%5B%221000%22%2C%222012-04-02%22%5D&endkey=%5B%221000%22%2C%222012-04-02%22%5D | |
| ?startkey=[1000,2012-04-02]&endkey=[1000,2012-04-02] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function (doc) { | |
| if (doc.kennitala) { | |
| emit(doc.kennitala); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function show_cost() { | |
| $("div#laun").empty(); | |
| $db.view("Siggi/by_counter", { | |
| success: function(data) { | |
| for (i in data.rows) { | |
| id = data.rows[i].id; | |
| ssl = data.rows[i].key; | |
| wage = 1000; | |
| hours = data.rows[i].value; | |
| hours = hours.toString().split(',') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function show_cost() { | |
| $("div#laun").empty(); | |
| $db.view("Siggi/by_counter", { | |
| success: function(data) { | |
| for (i in data.rows) { | |
| id = data.rows[i].id; | |
| ssl = data.rows[i].key; | |
| wage = 1000; | |
| hours = data.rows[i].value; | |
| hours = hours.toString().split(','); |
OlderNewer