-
Arch Linux - FS#50069 - [gnome-terminal] gnome-terminal cannot be opened after a few uses. -
GNOME - #769094 - gnome-session --version pushes environment to dbus-daemon -
GNOME - #775063 - Saved WiFi not shown in History panel when there are multiple saved WiFi with the same SSID. -
libinput - #99447 - Tap timeout seems too low -
systemd - #3856 - systemctl show changes -
Chromium - #218382 - hterm: IME's don't work - Chromium - #738172 - hterm: when using the virtual keyboard, cursor/input state is not tracked correctly
- ~~[Chromium - #79722 - Will Chromium use GTK3 instead of G
I hereby claim:
- I am lixiaoyan on github.
- I am intptr (https://keybase.io/intptr) on keybase.
- I have a public key ASCL90YO--HG1KnhpfiEbbEF0dI9gaxehWZ49_i-oZI-cwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
"use strict"; | |
require("core-js"); | |
require("whatwg-fetch"); | |
require("dom4"); | |
var _loglevel = require("loglevel"); |
I hereby claim:
- I am lixiaoyan on github.
- I am intptr (https://keybase.io/intptr) on keybase.
- I have a public key ASAQ6yhcgH8PKz5QG8myH2S-1uIKEC_0XOE3UU6m1QvYJwo
To claim this, I am signing this object:
I hereby claim:
- I am lixiaoyan on github.
- I am intptr (https://keybase.io/intptr) on keybase.
- I have a public key whose fingerprint is 11D7 FE21 1B61 6A71 6FC7 2639 D7C5 1B87 2CBC 130C
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
{block:Description} | |
<meta name="description" content="{MetaDescription}" /> | |
{/block:Description} | |
<link rel="alternate" type="application/rss+xml" href="{RSS}" /> | |
<title>{Title}</title> | |
<script src="//use.edgefonts.net/cooper-black-std.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//来自 http://wiki.ecmascript.org/doku.php?id=harmony:extended_object_api | |
Object.getPropertyDescriptor = function(subject, name) { | |
var pd = Object.getOwnPropertyDescriptor(subject, name); | |
var proto = Object.getPrototypeOf(subject); | |
while (pd === undefined && proto !== null) { | |
pd = Object.getOwnPropertyDescriptor(proto, name); | |
proto = Object.getPrototypeOf(proto); | |
} | |
return pd; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
name: Mandelbrot set | |
coder: gameloftyou | |
version: v1.0.0 | |
--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Mandelbrot Set</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
import sys | |
import time | |
import traceback | |
class Color: | |
BLACK = 0 | |
RED = 1 | |
GREEN = 2 |