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
| error: syntax error, unexpected ';', expecting $end, at /Users/bmartin/.nixpkgs/config.nix:154:4 |
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
| import Graphics.Element exposing (Element, show) | |
| x = 32 | |
| main : Element | |
| main = | |
| show x |
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
| creating build/lib.macosx-10.6-x86_64-3.4 | |
| clang -bundle -undefined dynamic_lookup -L/nix/store/fz3z1wi9fd7817g3ahwycb7fmbha2zn7-zlib-1.2.8/lib -L/nix/store/0qrad6apkhgirznlf55i93d22r3yqagq-bzip2-1.0.6/lib -L/nix/store/3rzjcw9vg1i453cd32v1ds19w3br7m6v-xz-5.2.1/lib -L/nix/store/9kqzyarfk89ha652v4767nji36g1cr6h-gdbm-1.11/lib -L/nix/store/4bjvbg5849yxxzl5qffvfl6j314y84ii-sqlite-3.8.11.1/lib -L/nix/store/a7h84y69fpmdkbckxlhl3ykw0vsaqdlv-db-5.3.28/lib -L/nix/store/ry83izz9wkpwbjkwd6z7z480a5mmsbdq-readline-6.3p08/lib -L/nix/store/8v9hszgn2bcwm5vnpbr0bx57s2cmcwp2-ncurses-5.9/lib -L/nix/store/83za6xpr2jw6s93fxz4n3hf0fqdn6hcd-openssl-1.0.1p/lib -L/nix/store/7cbfds3w0qds0h2c9llh5jqc0gdlp39w-tcl-8.6.4/lib -L/nix/store/qihzvb04rz6jysa44276pz2rnf05gm02-tk-8.6.4/lib -L/nix/store/f1g32249ra0i8g36hzns9washimhycf8-libX11-1.6.3/lib -L/nix/store/dh0cz440qh1w9gljnhikja422z2wl5nj-xproto-7.0.28/lib build/temp.macosx-10.6-x86_64-3.4/greenlet.o -L/nix/store/771g69sp9k5ai8rwlr1yqgnxx1dxgmdn-python3-3.4.3/lib -o build/lib.macosx-10.6-x |
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
| 28 Oct 06:08:15 - [nodemon] clean exit - waiting for changes before restart | |
| 28 Oct 06:08:35 - [nodemon] files triggering change check: web/public/js/src/pages/checkout/checkout.js | |
| 28 Oct 06:08:35 - [nodemon] matched rule: **/Users/bmartin/Work/lumi/lumi-flapjack/web/public/js/src/**/* | |
| 28 Oct 06:08:35 - [nodemon] changes after filters (before/after): 1/1 | |
| 28 Oct 06:08:35 - [nodemon] delaying restart for 1000ms | |
| 28 Oct 06:08:36 - [nodemon] restarting due to changes... | |
| 28 Oct 06:08:36 - [nodemon] web/public/js/src/pages/checkout/checkout.js | |
| 28 Oct 06:08:36 - [nodemon] starting `npm run build:js` | |
| 28 Oct 06:08:36 - [nodemon] child pid: 25502 |
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
| #(" ➊ %* %I *ielm* IELM ⓐⓀ :run on *ielm* utf-8 | %l:%2c %p " 0 1 | |
| (face | |
| (spacemacs-insert-face)) | |
| 1 2 | |
| (face | |
| (spacemacs-insert-face)) | |
| 2 3 | |
| (face | |
| (spacemacs-insert-face)) | |
| 3 4 |
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
| { stdenv, fetchurl, libjpeg, libpng, libmng, lcms1, libtiff, openexr, mesa | |
| , libX11, pkgconfig, darwin }: | |
| stdenv.mkDerivation rec { | |
| name ="libdevil-${version}"; | |
| version = "1.7.8"; | |
| src = fetchurl { | |
| url = "mirror://sourceforge/openil/DevIL-${version}.tar.gz"; |
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
| module Models.Build ( | |
| Build(..) | |
| ) where | |
| import Date exposing (Date(..)) | |
| import Models.Design exposing (Design(..)) | |
| import Models.User exposing (User(..)) |
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
| -- SYNTAX PROBLEM ------------------------- ././web/public/elm/Models/Design.elm | |
| I ran into something unexpected when parsing your code! | |
| 23| , tags: Maybe [String] | |
| ^ | |
| I am looking for one of the following things: | |
| "(" | |
| "{" |
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
| table = db.table('orderItems').filter({'kitId': kit['id']}) | |
| table.replace(lambda row: | |
| r.branch( | |
| row.has_fields('orderedKit'), | |
| row.without('kitId', 'orderedKit').merge({'buildId': row['buildId'], 'orderedBuild': row['orderedKit']}), | |
| row.without('kitId').merge({'buildId': row['buildId']}) | |
| ) | |
| ).run() |
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
| module Test where | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (..) | |
| import StartApp.Simple as StartApp | |
| type Action = Update String |