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
Compiling Viewdo v0.0.1 (file:///home/ralpht/homework/viewdo/rust) | |
/home/ralpht/homework/viewdo/rust/src/main.rs:10:27: 10:31 error: Expected a generator argument name, either: `api`, `profile`, `version`, `generator`, or `extensions`. | |
/home/ralpht/homework/viewdo/rust/src/main.rs:10 generate_gl_bindings!("gl", "core", "2.0", "static") | |
^~~~ | |
error: aborting due to previous error | |
Could not compile `Viewdo`. |
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
/* | |
* This application will attempt to start a cook mode on the upper oven. If | |
* remote control is disabled on the oven, an error is printed and the user | |
* is asked to press the remote enable button on the range. Once remote | |
* control is enabled, the cook mode is started. | |
* | |
* Copyright (c) 2014 General Electric | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by |
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
ralpht@darkstar:~/home/oven/node_modules/green-bean$ sudo node cook-orig.js | |
range version: 0.5.2.0 | |
send wifi enable message | |
oven configuration changed: 40 | |
upper oven current state changed: 0 | |
upper oven cook mode changed: { mode: 0, | |
cookTemperature: 0, | |
cookHours: 0, | |
cookMinutes: 0, | |
probeTemperature: 0, |
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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#section { | |
width: 420px; | |
height: 630px; | |
border: 5px solid rgb(204, 204, 204); |
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
# Hack to implement per-directory history. If you run the same commands in the same directories, | |
# then why not have a separate history for each directory? | |
HISTBASE=~/.bash_directory_hist | |
LASTHIST= | |
_hash() { | |
echo "$@" | sha512sum | cut -f1 -d' ' | |
} |
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
diff --git a/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp b/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp | |
index 1d8ad6a..d56bb11 100644 | |
--- a/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp | |
+++ b/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp | |
@@ -149,14 +149,18 @@ static Region computeNonFastScrollableRegion(Frame* frame, const IntPoint& frame | |
} | |
#if ENABLE(TOUCH_EVENT_TRACKING) | |
-static void accumulateRendererTouchEventTargetRects(Vector<IntRect>& rects, const RenderObject* renderer) | |
+static void accumulateRendererTouchEventTargetRects(Vector<IntRect>& rects, const RenderObject* renderer, IntRect container) | |
{ |