I hereby claim:
- I am vladikoff on github.
- I am vladikoff (https://keybase.io/vladikoff) on keybase.
- I have a public key whose fingerprint is D900 37A6 7C3F 81BD 9E22 E18B 3E96 1DCC FC49 EA09
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"bundle": { | |
"profile": "{\"email\":\"testtestmigrate@mockmyid.com\",\"uid\":\"9f7f22f9b51941a3b428657cf8f50df2\",\"amrValues\":[\"pwd\",\"email\"],\"avatarDefault\":true,\"avatar\":\"https:\\/\\/firefoxusercontent.com\\/00000000000000000000000000000000\",\"twoFactorAuthentication\":false,\"locale\":\"en-US,en;q=0.5\"}", | |
"state": "{\"certificate\":\"eyJhbGciOiJSUzI1NiJ9.eyJwdWJsaWMta2V5Ijp7InEiOiJjMGZiZmUxOTcyMzM4NzY2Y2Q1NzcyMzQzYTkxNGVjNWZiMWE2NWExIiwieSI6ImNhYTI3YzQ3ODRlNDRkYmU0MDZjZmQ5NWU1ZDY5NmIyM2RiMWIxYWFmYzdkOGEzZGVhODNiMGQ3ZjZmYzQ5NWYxNGNjZTk1NjZlZDA1MTlmOWRkNzVmODY5MTg3MDMzZTViMDA0Mzk1YTMxMDAzMTFkOTZjMmYwNWE1ZTI5ZDRjMjMxNmI4OTEwZmJmNWMzYzk2MWEyNDRmZmE4OTdiN2NkYTdjN2VhMDA0YTZlMGYyMjRmMmUwYzFlYWQwYzI5ZDk4NmZmNDNmYjJlNmZlNmI0NjZjN2VmNmUzOWQ2YTc0ZDQ4N2IzZTVkNWJhYTY3YjExOWViZmVjNGNmNDBiM2EiLCJwIjoiZjZmNGYwNjBjZThmODYxODQyNGQ5OWJiMzg2OGE1YmY5Yzc1OWFjNTk2ZjY0NjUwMzQxNzJiOGNlYWNlOTQ5YjliNjAyNzJhZmIxNzhmODY0ZTUzMGUzZmI4OGJiZjQ5ZDAyZjNhNjMwY2M0MTJkMjhhYmNiNjBjMWJkMWE0MjM1ZDk2OTA1YmQ0MGMzOW |
#!/usr/bin/env sh | |
# Generate an AUTHORS file based on the output of git shortlog. It uses ABC | |
# order, strips out leading spaces and numbers, then filters out specific | |
# authors. | |
git shortlog -se \ | |
| perl -spe 's/^\s+\d+\s+//' \ | |
| sed -e '/^CommitSyncScript.*$/d' \ | |
> AUTHORS |
(not a tutorial for the innards, just the environment)
If you need help or have questions about any of this, please ask on #servo
on irc.mozilla.org
.
WebRender is written in the Rust programming language. There are a number of great resources for learning Rust, but you probably want to start with "The Book" and perhaps work through Rust by Example.
This document assumes that you have your preferred way of cloning git
repositories from github
, and that you have your platform's native compiler toolchain installed (e.g., Visual Studio 2015 on Windows).
Saved from Archive.org, Date: May 14, 2010 Author: Jesse Webb
Our development machines here at Point2 are not standardized; we have a mixture of Windows XP, 7, and Mac OSX/Unix computers. I find myself constantly switching back and forth between command prompt interfaces when pair programming. As a result, I catch myself using “ls” to list a directories contents regardless of what system I am on. I am currently using a Windows XP machine for my developer box and I wanted to setup an alias to the “ls” command to actually perform a “dir”. Here is how I accomplished it…
There is a command available in a Window’s shell that let’s you “alias” command to whatever you please: DOSKey. It allows you to create “macros” to execute one or more other commands with a custom nam
/* | |
* This file is part of Adblock Plus <http://adblockplus.org/>, | |
* Copyright (C) 2006-2014 Eyeo GmbH | |
* | |
* Adblock Plus is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License version 3 as | |
* published by the Free Software Foundation. | |
* | |
* Adblock Plus is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
angular.module('itemServices', ['ngResource']) | |
.factory('Item', ['$resource', | |
function ($resource) { | |
return $resource('items/:id', | |
{id: '@id'}, | |
{ | |
query: { | |
isArray: true, | |
method: 'GET', | |
params: {}, |
I hereby claim:
To claim this, I am signing this object:
* { | |
font-family: Consolas, monospace!important; | |
} | |
body { | |
background: white; | |
font-size: 11px; | |
} | |
.bz_group_visibility_section { |