Skip to content

Instantly share code, notes, and snippets.

View larsbergstrom's full-sized avatar

Lars Bergstrom larsbergstrom

View GitHub Profile
@larsbergstrom
larsbergstrom / teleport errors
Created June 17, 2020 14:58
teleport errors
Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”). content.js:21:460436
A-Frame Version: https://github.com/MozillaReality/aframe index.js:84
three Version: https://github.com/MozillaReality/three.js index.js:85
WebVR Polyfill Version: ^0.10.10 index.js:86
core:schema:warn Default value `null` does not match type `string` in component `media-loader` 3 browser.js:111
core:schema:warn Default value `null` does not match type `string` in component `camera-focus-button` browser.js:111
core:schema:warn Default value `null` does not match type `string` in component `emit-scene-event-on-remove` browser.js:111
core:schema:warn Default value `[object Object]` does not match type `string` in component `pen` browser.js:111
core:schema:warn Default value `[object Object]` does not match type `string` in component `pen-laser` 3 browser.js:111
@larsbergstrom
larsbergstrom / delete week gcal
Created January 24, 2020 13:32
Delete a week in gcal
function cleanup()
{
var fromDate = new Date(2017,11,12,0,0,0);
var toDate = new Date(2017,11,16,0,0,0);
var calendarName = 'Mozilla';
var calendar = CalendarApp.getCalendarsByName(calendarName)[0];
var events = calendar.getEvents(fromDate, toDate);
for(var i=0; i<events.length;i++){
var ev = events[i];
// Each value can be set independently meaning you can change resolution without changing FPS and vice versa
// we default to(1024x1024 @ 60fps w/ 5000000 bitrate (5Mbps) in the absence of setprops
adb shell setprop debug.oculus.capture.width 1920
adb shell setprop debug.oculus.capture.height 1080
adb shell setprop debug.oculus.capture.fps 30
adb shell setprop debug.oculus.capture.bitrate 10000000
// You probably want to change the FOV to match the 1080p resolution as well:
adb shell setprop debug.oculus.eyeFovDown 39
adb shell setprop debug.oculus.eyeFovUp 38
adb shell setprop debug.oculus.eyeFovOutward 50
At a high level, not very hard to lift and put in servo (despite not touching in 2 years)
Nicely asynchronous
Depends a bit on XPCOM threading stuff, but most of the explicit stuff is non-XPCOM
May want to pull in or not, as needed
abstraction boundray is between media decoder and HTMLMediaelement
it's teh main-thread media state stuff
that communicates with the HTMLMediaElement
the decoder is then async with the state machine on its own thread
and the decoder itself has async links with all the platform stuff
which is all under it
Compiling servo v0.0.1 (file:///run/shm/tmp/servo/components/servo)
error: linking with `cc` failed: exit code: 1
note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/home/ubuntu/.servo/rust/2016-01-31/rustc-nightly-x86_64-unknown-linux-gnu/rustc/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/run/shm/tmp/servo/target/debug/servo.0.o" "-o" "/run/shm/tmp/servo/target/debug/servo" "-Wl,--gc-sections" "-pie" "-nodefaultlibs" "-L" "/run/shm/tmp/servo/target/debug" "-L" "/run/shm/tmp/servo/target/debug/deps" "-L" "/run/shm/tmp/servo/target/debug/build/angle-ee9dc8911de0d6f3/out" "-L" "/run/shm/tmp/servo/target/debug/build/azure-619033e514f5eadc/out" "-L" "/usr/lib/x86_64-linux-gnu" "-L" "/run/shm/tmp/servo/target/debug/build/harfbuzz-sys-14497f51d6b45da3/out/lib" "-L" "/run/shm/tmp/servo/target/debug/build/hbs-pow-sys-cf8ae81d4cf55502/out/_build/lib" "-L" "/run/shm/tmp/servo/target/debug/build/js-b63ddf1f18d33225/out" "-L" "/usr/lib/x86_64-linux-gnu" "-L" "/run/shm/tmp/servo/target/debug/build/miniz-sys-
Compiling servo v0.0.1 (file:///run/shm/tmp/servo/components/servo)
error: linking with `cc` failed: exit code: 1
note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/home/ubuntu/.servo/rust/2016-01-31/rustc-nightly-x86_64-unknown-linux-gnu/rustc/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/run/shm/tmp/servo/target/debug/servo.0.o" "-o" "/run/shm/tmp/servo/target/debug/servo" "-Wl,--gc-sections" "-pie" "-nodefaultlibs" "-L" "/run/shm/tmp/servo/target/debug" "-L" "/run/shm/tmp/servo/target/debug/deps" "-L" "/run/shm/tmp/servo/target/debug/build/angle-ee9dc8911de0d6f3/out" "-L" "/run/shm/tmp/servo/target/debug/build/azure-619033e514f5eadc/out" "-L" "/usr/lib/x86_64-linux-gnu" "-L" "/run/shm/tmp/servo/target/debug/build/harfbuzz-sys-14497f51d6b45da3/out/lib" "-L" "/run/shm/tmp/servo/target/debug/build/hbs-pow-sys-cf8ae81d4cf55502/out/_build/lib" "-L" "/run/shm/tmp/servo/target/debug/build/js-b63ddf1f18d33225/out" "-L" "/usr/lib/x86_64-linux-gnu" "-L" "/run/shm/tmp/servo/target/debug/build/miniz-sys-
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for x86_64-pc-linux-gnu
Reading makefiles...
Reading makefile `makefile.cargo'...
Updating goal targets....
@larsbergstrom
larsbergstrom / gist:615fec7313452d0dd480
Created June 26, 2015 05:29
Debugging Servo exercise
The goal of this exercise is to see how to debug a `panic` in Servo (the equivalent of an uncaught exception in C++).
First, run Servo and see the crash in Google Maps by doing:
./mach run -d https://maps.google.com
To run the debugger, we need to call it directly (use lldb below on OSX but gdb in its place on Linux):
lldb target/debug/servo https://maps.google.com
Set a breakpoint on the `rust_panic` function, which is what is called when a panic occurs in Rust:
b rust_panic
# agenda
- painting tiles in parallel
- per-tile display lists
- avoid painting
- omtc

# per-tile display lists
@larsbergstrom
larsbergstrom / Instructions
Last active August 29, 2015 14:23
Servo Layout Exercise
Reproduce a failing CSS test locally:
./mach test-css tests/wpt/css-tests/css21_dev/html4/background-color-088.htm --log-raw out.log
Open in the Gecko reftest analyzer to see the failure graphically:
http://hoppipolla.co.uk/410/reftest-analyser-structured.xhtml
(click on the test name, then mouse over the squares to see the different pixels, though it should be pretty obvious in this case).
Looking at the file and the spec (http://www.w3.org/TR/CSS2/syndata.html#value-def-color), what is the likely problem?
Extra exercise: