####lsauer.com
###Overview of all chrome:// pages.
- List by calling
chrome://about/ - Following is a direct dump from the 'about' page for reference
###List of Pages as per v20.xxx
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | |
| http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.gordondickens.sample</groupId> | |
| <artifactId>sample-parent</artifactId> | |
| <version>1.0.0</version> | |
| <packaging>pom</packaging> |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
####lsauer.com
###Overview of all chrome:// pages.
chrome://about/###List of Pages as per v20.xxx
| # A bunch of the stuff above relies on this, especially the aliases. | |
| [user] | |
| # you probably want to change this bit. | |
| name = isaacs | |
| email = [email protected] | |
| signingkey = 0x6C481CF6 | |
| [alias] | |
| ci = commit | |
| st = status | |
| br = branch |
| /* | |
| * Copyright 2002-2012 the original author or authors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| /* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ | |
| /** | |
| * This program will demonstrate how to use "aes128-cbc". | |
| * | |
| */ | |
| import com.jcraft.jsch.*; | |
| import java.awt.*; | |
| import javax.swing.*; | |
| public class AES{ |
| // Add a getElementsByClassName function if the browser doesn't have one | |
| // Limitation: only works with one class name | |
| // Copyright: Eike Send http://eike.se/nd | |
| // License: MIT License | |
| if (!document.getElementsByClassName) { | |
| document.getElementsByClassName = function(search) { | |
| var d = document, elements, pattern, i, results = []; | |
| if (d.querySelectorAll) { // IE8 | |
| return d.querySelectorAll("." + search); |
| #!/usr/bin/env ruby | |
| # code2png - Render code to an image on OS X | |
| # Peter Cooper (@peterc) | |
| # MIT license | |
| # | |
| # code2png converts source code into a PNG graphic | |
| # (with syntax coloring, if you want). Ideal for | |
| # Kindle document production, RSS feeds, etc. | |
| # |
| function Gauge(placeholderName, configuration) | |
| { | |
| this.placeholderName = placeholderName; | |
| var self = this; // for internal d3 functions | |
| this.configure = function(configuration) | |
| { | |
| this.config = configuration; | |
| Table of names of MemoryManagerMXBean and MemoryPoolMXBean instances under | |
| different GC algorithms in Oracle HotSpot VM. Memory managers list the pools | |
| they manage in square brackets; memory pools show their maximum sizes for -Xmx200M setting. | |
| $ java -version | |
| java version "1.6.0_24" | |
| Java(TM) SE Runtime Environment (build 1.6.0_24-b07) | |
| Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode) | |
| SerialGC: |