This file contains 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
(defun rk/tide-start-server-process (node-executable tsserverjs) | |
"" | |
(let* ((tramp-p (tramp-tramp-file-p tsserverjs)) | |
(tsserverjs (if tramp-p | |
(tramp-file-name-unquote-localname | |
(tramp-dissect-file-name tsserverjs)) | |
tsserverjs)) | |
(process (if tramp-p | |
(start-file-process "tsserver" buf | |
"bash" "--login" "-c" |
This file contains 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
/*global require, __dirname*/ | |
let fs = require("fs"), | |
path = require("path"), | |
x = require("child_process").execSync; | |
if (!fs.existsSync("babel-node.js")) { | |
console.log("Donwloading babel-standalone"); | |
x("curl -k https://wzrd.in/standalone/babel-standalone > babel-node.js", {stdio: "inherit"}); | |
} |
This file contains 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
/*global require, __dirname*/ | |
let fs = require("fs"), | |
path = require("path"), | |
files = [ | |
require.resolve("babel-standalone/babel.js"), | |
require.resolve("systemjs/dist/system.src.js"), | |
require.resolve("lively.modules/dist/lively.modules.js"), | |
require.resolve("lively-system-interface/dist/lively-system-interface-only-local.js"), |
This file contains 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
// ==UserScript== | |
// @name spiegel no ad-blocker | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description removes no-ad-blocker popups and makes spiegel plus readable | |
// @author You | |
// @match http://www.spiegel.de/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
onMouseWheel(evt) { | |
var scrollTarget = evt.targetMorphs.find(ea => ea.isClip()); | |
if (this !== scrollTarget) return; | |
var {deltaY, deltaX} = evt.domEvt, | |
magnX = Math.abs(deltaX), | |
magnY = Math.abs(deltaY); | |
// This dance here is to avoid "overscroll", i.e. you scroll a clip morph | |
// and it reaches it's boundary. Normally the clip morphs up the scene graph |
This file contains 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
/* | |
rk 2017-09-14 | |
exported from https://github.com/tsayen/dom-to-image/releases/tag/2.6.0 | |
*/ | |
/*global HTMLCanvasElement,Element,HTMLTextAreaElement,HTMLInputElement,SVGElement,SVGRectElement,XMLSerializer,Image,XMLHttpRequest,FileReader,CSSRule,HTMLImageElement*/ |
This file contains 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
export function extractHTMLFromTextMorph(textMorph, range) { | |
// let html = extractHTMLFromTextMorph(this, this.selection); | |
evt.domEvt.clipboardData.setData("text/html", textLayerNode.outerHTML); | |
let node = textMorph.env.renderer.getNodeForMorph(textMorph), | |
textLength = this.document.stringSize, | |
firstLineNode = node.querySelector(".newtext-text-layer.actual"), | |
// _ = console.log(`START, looking for ${textMorph.positionToIndex(range.start)}`), | |
start = findNodeWithOffsetAt(textMorph.positionToIndex(range.start), firstLineNode, undefined, textLength, false), |
This file contains 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> | |
<title>first-mate-web</title> | |
</head> | |
<body> | |
<h2>expected</h2> | |
<pre> | |
[ { value: 'var', scopes: [ 'source.js', 'storage.type.var.js' ] }, |
This file contains 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
/*global require, before, after, beforeEach, afterEach, describe, it*/ | |
import { expect } from "mocha-es6"; | |
import { fork } from "child_process" | |
if (System.get("@system-env").node) { | |
describe("bootstrap", function() { | |
this.timeout(5000); | |
This file contains 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
/*global System, beforeEach, afterEach, describe, it*/ | |
import { expect } from "mocha-es6"; | |
import { removeDir, removeFile, createFiles, writeFile, modifyFile, readFile, inspect as i } from "./helpers.js"; | |
import { registerPackage } from "../src/packages.js"; | |
import { getSystem, removeSystem, printSystemConfig } from "../src/system.js"; | |
import { bundle } from "../src/bundling.js"; | |
var testDir = System.normalizeSync("lively.modules/tests/"); |