tfga
tfga
Idea: follow Elm's lead and use `>>` and `>>` and `
I'd like to propose a new util: `foreach_i`. ## Motivation You know how JS's [`Array.map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#syntax) also passes the element index as a 2nd parameter to the function? ```js > ['a',...
I'd like to propose a new `join` util. The idea is simple: it calls `foreach(str)` before calling `str.join`. So, whenever you have something like ```python | foreach(str) | ', '.join...
``` no selection => [|]() # `|` marks where the cursor should move to selection => [$selection](|) ```
Let's say you want to pipe some value `a` through 3 functions `f1`, `f2`, `f3`, in that order. How would you do it? Well, you can do it the "normal"...
`readme.txt` talks about command-line options: ``` Release Purpose: ---------------- -- For v.0.9.9.0.2 Add the ability to specify domain, port, and even username and password on the command line ``` but...
I'd like to be able to reference environment variables in `server.cfg`. E.g.: ``` PARENT_PROXY:$PARENT_PROXY PARENT_PROXY_PORT:$PARENT_PROXY_PORT ``` In my case, this configuration is used by both NTLMaps and another script. If...
Hi, Here's what I get in the console: ``` events.js:141 throw er; // Unhandled 'error' event ^ Error: spawn /usr/local/lib/node_modules/elm-server/node_modules/elm/Elm-Platform/0.17.1/.cabal-sandbox/bin/elm-make ENOENT at exports._errnoException (util.js:860:11) at Process.ChildProcess._handle.onexit (internal/child_process.js:178:32) at onErrorNT (internal/child_process.js:344:16)...
This is what ends up being generated in `js/index.js`: ``` js App..svnEntries = require('./components/.svn/entries'); App..svnAllWcprops = require('./components/.svn/all-wcprops'); App..svnEntries = require('./controllers/.svn/entries'); App..svnAllWcprops = require('./controllers/.svn/all-wcprops'); App..svnEntries = require('./models/.svn/entries'); App..svnAllWcprops = require('./models/.svn/all-wcprops'); App..svnEntries...