Before you do anything, perform a factory reset.
Lens: Manual
White bal: AT1
Arch Linux is both lightweight and highly customizable, and is the perfect distro for creating a kiosk using the low-powered RasPi 2. Full details about Arch Linux on the RasPi 2 can be found on the [Official Arch Linux ARM wiki] (https://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2).
Getting started
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Test App</title> | |
| </head> | |
| <style> | |
| html, body { | |
| height: 100%; |
To render a component:
electron server.js --html "<x-app></x-app>" --scripts ./entry-pointWhere --html is the HTML that you want to render and --scripts is the entry point that will be loaded prior to rendering the HTML. The entry point should contain all your component definitions that you need for the HTML to be rendered.
I recently had several days of extremely frustrating experiences with service workers. Here are a few things I've since learned which would have made my life much easier but which isn't particularly obvious from most of the blog posts and videos I've seen.
I'll add to this list over time – suggested additions welcome in the comments or via twitter.com/rich_harris.
Chrome 51 has some pretty wild behaviour related to console.log in service workers. Canary doesn't, and it has a load of really good service worker related stuff in devtools.
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
| export default [ | |
| "Reticulating splines...", | |
| "Generating witty dialog...", | |
| "Swapping time and space...", | |
| "Spinning violently around the y-axis...", | |
| "Tokenizing real life...", | |
| "Bending the spoon...", | |
| "Filtering morale...", | |
| "Don't think of purple hippos...", | |
| "We need a new fuse...", |
| /* Text smoothing */ | |
| body { | |
| font-family: Camphor, Open Sans, Segoe UI, sans-serif; | |
| text-rendering: optimizeLegibility; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| /* Nice hover effect | |
| button:hover { |
| > via https://raspberrypi.stackexchange.com/questions/311/how-do-i-backup-my-raspberry-pi | |
| With gzip, to save a substantial amount of space: | |
| sudo dd if=/dev/rdiskx bs=1m | gzip > /Users/tmorrow/Documents/rpi0-arch.gz | |
| And, to copy the image back onto the SD: | |
| gzip -dc /path/to/backup.gz | sudo dd of=/dev/rdiskx bs=1m |