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
var edgetest = require('./lib/edge').func(function () {/* | |
using System; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
public class Startup | |
{ | |
public async Task<object> Invoke(object input) | |
{ | |
Func<object, Task<object>> rowCallback = (Func<object, Task<object>>)input; |
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
var edge = require('edge'); | |
var _createReadFileSync = edge.func(function () {/* | |
#r "System.IO.Compression.FileSystem.dll" | |
#r "System.IO.Compression.dll" | |
using System.Collections.Generic; | |
using System.IO.Compression; | |
using System.IO; | |
using System.Text; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>KML Example file</name> | |
<description>Simple markers</description> | |
<Placemark> | |
<name>Marker 1</name> | |
<description>Some stuff to put in the first info window</description> | |
<!-- <Point> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>KML Example file</name> | |
<description>Simple markers</description> | |
<Placemark> | |
<name>Marker 1</name> | |
<description>Some stuff to put in the first info window</description> | |
<!-- <Point> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>Mobile Chapters Map</name> | |
<description><![CDATA[ <h2>Mobile Chapters Map</h2><br><a href="http://mobilechapters.com">http://mobilechapters.com</a>]]></description> | |
<Placemark> | |
<name>Jungfrau, Switzerland</name> | |
<Point> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>Mobile Chapters Map</name> | |
<description><![CDATA[ <a href="http://mobilechapters.com"><img src="http://mobilechapters.com/logo_small.png"/></a> ]]></description> | |
<Placemark> | |
<name>Jungfrau, Switzerland</name> | |
<Point> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>Mobile Chapters Map</name> | |
<description><![CDATA[ <a href="http://mobilechapters.com"><img src="http://mobilechapters.com/images/logo_small.png"/></a> ]]></description> | |
<Placemark> | |
<name>Jungfrau, Switzerland</name> | |
<Point> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://earth.google.com/kml/2.0"> | |
<Document> | |
<name>Mobile Chapters Map</name> | |
<description><![CDATA[ <a href="http://mobilechapters.com"><img src="http://mobilechapters.com/images/logo_small.png"/></a> ]]></description> | |
<Placemark> | |
<name>Jungfrau, Switzerland</name> | |
<description>This is a description</description> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title> - jsFiddle demo</title> | |
<script type='text/javascript' src='/js/lib/dummy.js'></script> | |
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
var edge = require('edge'); // http://tjanczuk.github.io/edge | |
var Rx = require('rx'); // https://github.com/Reactive-Extensions/RxJS | |
var createSubject = edge.func({ | |
source: function () {/* | |
using System.Reactive.Linq; | |
using System.Reactive.Subjects; | |
async (dynamic input) => { | |
var s = new Subject<object>(); |