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
<template> | |
<div id="hot-preview"> | |
<HotTable :root="root" :settings="hotSettings"></HotTable> | |
</div> | |
</template> | |
<script> | |
let HotTable = null | |
if (process.BROWSER_BUILD) { | |
HotTable = require('vue-handsontable-official') |
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
<template> | |
<no-ssr placeholder="Loading..."> | |
<div :id="this.root"></div> | |
</no-ssr> | |
</template> | |
<script> | |
import Handsontable from 'handsontable'; | |
import SettingsMapper from './settingsMapper'; | |
import { |
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
sbt run | |
[info] Loading project definition from /opt/sunshinehk_admin/test/filesystem/project | |
[info] Set current project to filesystem (in build file:/opt/sunshinehk_admin/test/filesystem/) | |
[success] Total time: 1 s, completed Sep 18, 2015 6:42:35 PM | |
[root@iZ9477n4ybaZ filesystem]# sbt run | |
[info] Loading project definition from /opt/sunshinehk_admin/test/filesystem/project | |
[info] Set current project to filesystem (in build file:/opt/sunshinehk_admin/test/filesystem/) | |
[info] Running com.sunshinehk.OssFileSystem | |
[info] Is read only false | |
[error] Sep 18, 2015 6:42:46 PM co.paralleluniverse.javafs.FuseFileSystemProvider beforeMount |
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
[root@iZ9477n4ybaZ filesystem]# sbt run | |
[info] Loading project definition from /opt/sunshinehk_admin/test/filesystem/project | |
[info] Set current project to filesystem (in build file:/opt/sunshinehk_admin/test/filesystem/) | |
[info] Running com.sunshinehk.OssFileSystem | |
[info] Is read only false | |
[error] Sep 18, 2015 5:23:45 PM co.paralleluniverse.javafs.FuseFileSystemProvider beforeMount | |
[error] INFO: [/memfs/test1] Method succeeded. | |
[error] Sep 18, 2015 5:23:45 PM co.paralleluniverse.javafs.FuseFileSystemProvider getName | |
[error] INFO: Method succeeded. Result: EightFileSystem with MemoryFS:memoryfsTest | |
[error] Sep 18, 2015 5:23:45 PM co.paralleluniverse.javafs.FuseFileSystemProvider getOptions |
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
package sjs_paper | |
import org.scalajs.dom._ | |
import scala.scalajs.js | |
import scala.scalajs.js.UndefOr | |
import scala.scalajs.js.annotation.JSName | |
import Point.origin |
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
import java.io.FileOutputStream | |
import javax.script.{ScriptContext, SimpleScriptContext, ScriptEngineManager} | |
import com.tinkerpop.gremlin.process.Traverser | |
import com.tinkerpop.gremlin.process.traversers.SimpleTraverser | |
import com.tinkerpop.gremlin.scala.{ScalaGraph, GremlinScala} | |
import com.tinkerpop.gremlin.structure.io.kryo.KryoWriter | |
import org.dynjs.Config | |
import org.dynjs.runtime.DynJS | |
import org.scalatest._ |
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
orsamac:jdk8 orsa$ make | |
Building OpenJDK for target 'default' in configuration 'macosx-x86_64-normal-server-release' | |
## Starting langtools | |
Compiling 2 files for BUILD_TOOLS | |
Compiling 31 properties into resource bundles | |
Compiling 777 files for BUILD_BOOTSTRAP_LANGTOOLS | |
Creating langtools/dist/bootstrap/lib/javac.jar | |
Updating langtools/dist/lib/src.zip | |
Compiling 780 files for BUILD_FULL_JAVAC |
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
var fs = require('fs'); | |
var page = require('webpage').create(); | |
// page.settings.userAgent = 'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25'; | |
page.settings.userAgent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36'; | |
page.settings.webSecurityEnabled = false; | |
page.settings.localToRemoteUrlAccessEnabled = true; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>fileTypes</key> | |
<array> | |
<string>hs</string> | |
</array> | |
<key>keyEquivalent</key> | |
<string>^~H</string> |