Enroll macOS Beta Seed without profile installation
$ sudo /System/Library/PrivateFrameworks/Seeding.framework/Versions/A/Resources/seedutil
usage: seedutil enroll SEED_PROGRAM
seedutil unenroll
seedutil current
More details - http://blog.gbaman.info/?p=791
For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).
1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt file dtoverlay=dwc2 on a new line, then save the file.
3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh in the SD card as well. By default SSH i
| #!/bin/bash | |
| # update_gfwlist.sh | |
| # Author : VincentSit | |
| # Copyright (c) http://xuexuefeng.com | |
| # | |
| # Example usage | |
| # | |
| # ./whatever-you-name-this.sh | |
| # | |
| # Task Scheduling (Optional) |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| # Build arguments for the gn build | |
| # You can set these with `gn args out/Default` | |
| # ( and they're stored in src/out/Default/args.gn ) | |
| # See "gn args out/Default --list" for available build arguments | |
| # component build, because people love it | |
| is_component_build = true | |
| # release build, because its faster | |
| is_debug = true |
| module.exports = (grunt) -> | |
| # load all grunt tasks | |
| require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks) | |
| # configurable paths | |
| buildProperties = { | |
| app: 'target/js', | |
| dist: 'target/coffee/js', | |
| sling_url: grunt.option('sling_url') || 'http://localhost:8080/content/js', | |
| sling_username: grunt.option('sling_username') || 'admin', |
| import Fiddler; | |
| class Handlers { | |
| static var injectJs = "<script>alert('I see you enjoy YouTube.')</script>"; | |
| static var hostList = new HostList("*.youtube.com"); | |
| static function OnBeforeResponse(oSession : Session) { | |
| // Filter to only HTML documents and on the domains we want | |
| if (hostList.ContainsHost(oSession.hostname) && oSession.oResponse.headers.ExistsAndContains("Content-Type", "text/html")) { | |
| oSession.utilDecodeResponse(); |