Place these files in your vim bin/ folder. Most likely one of the following:
C:\Program Files\vim\bin
C:\Program Files (x86)\vim\bin
| @echo off | |
| SET DIR=%~dp0% | |
| start %DIR%..\lib\atom.0.0.0.1\tools\atom.exe %* |
| <?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
| <feed xml:base="https://my-feed.cloudapp.net/api/v2/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom"> | |
| <title type="text">FindPackagesById</title> | |
| <id>https://my-feed.cloudapp.net/api/v2/FindPackagesById</id> | |
| <updated>2014-05-13T14:55:03Z</updated> | |
| <author> | |
| <name /> | |
| </author> | |
| <link rel="self" title="FindPackagesById" href="FindPackagesById" /> | |
| </feed> |
| var http = require('http'); | |
| var responseHandler = function(response) { | |
| if (response.headers.location) { | |
| http.get(response.headers.location, responseHandler); | |
| // If I leave this off, the node process takes ~45 seconds to exit. | |
| // Presumably it's waiting for a listener to attach to the stream | |
| response.on('data', function() {}); | |
| } else { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="/q.js"></script> | |
| <script src="/lodash.js"></script> | |
| <script> | |
| function makePromise(val) { | |
| var deferred = Q.defer(); | |
| deferred.resolve(val); | |
| return deferred.promise; |
| mkdir build | |
| taskkill /F /im mimic.exe | |
| copy /b bin\node-webkit\* build | |
| pushd source | |
| del ..\build\mimic.nw |
Place these files in your vim bin/ folder. Most likely one of the following:
C:\Program Files\vim\bin
C:\Program Files (x86)\vim\bin
| function* fib() { | |
| var a = 0; | |
| var b = 1; | |
| while(true) { | |
| yield a; | |
| b = a+b; | |
| a = b-a; | |
| } | |
| } |
| /* | |
| Repeating Web client | |
| This sketch connects to a a web server and makes a request | |
| using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or | |
| the Adafruit Ethernet shield, either one will work, as long as it's got | |
| a Wiznet Ethernet module on board. | |
| This example uses DNS, by assigning the Ethernet client with a MAC address, | |
| IP address, and DNS address. |
| /* | |
| Repeating Web client | |
| This sketch connects to a a web server and makes a request | |
| using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or | |
| the Adafruit Ethernet shield, either one will work, as long as it's got | |
| a Wiznet Ethernet module on board. | |
| This example uses DNS, by assigning the Ethernet client with a MAC address, | |
| IP address, and DNS address. |
| var paths = require('./paths'); | |
| gulp.task('lint', function() { | |
| gulp.src(paths.app.concat(paths.test)) | |
| .pipe(lint()); | |
| }); | |
| gulp.task('minify', function() { | |
| gulp.src(paths.app) | |
| .pipe(minify()); |