Skip to content

Instantly share code, notes, and snippets.

Error running mach:
['clean-cargo-cache']
The error occurred in the implementation of the invoked mach command.
This should never occur and is likely a bug in the implementation of that
command. Consider filing a bug for this issue.
If filing a bug, please include the full output of mach, including this error
@pyfisch
pyfisch / dl.txt
Last active January 21, 2018 15:36
// Display List from Epoch(1)
((0, 1), (600, 400), [
(
item: PushStackingContext((
stacking_context: (
scroll_policy: Scrollable,
transform: None,
transform_style: Flat,
perspective: None,
mix_blend_mode: Normal,
@pyfisch
pyfisch / awwy
Created January 25, 2018 23:33
http://www.arewewebyet.org/ display list dump
This file has been truncated, but you can view the full file.
// Display List from Epoch(0)
((0, 1), (1024, 1967.5834), [
(
item: PushStackingContext((
stacking_context: (
scroll_policy: Scrollable,
transform: None,
transform_style: Flat,
perspective: None,
mix_blend_mode: Normal,
{"thread": "MainThread", "level": "DEBUG", "pid": 11830, "component": "vcs", "source": "web-platform-tests", "time": 1537217745292, "action": "log", "message": "git rev-parse --show-toplevel"}
{"thread": "MainThread", "level": "DEBUG", "pid": 11830, "component": "vcs", "source": "web-platform-tests", "time": 1537217745295, "action": "log", "message": "git rev-parse --show-cdup"}
{"thread": "MainThread", "level": "DEBUG", "pid": 11830, "component": "vcs", "source": "web-platform-tests", "time": 1537217745299, "action": "log", "message": "git rev-parse HEAD"}
{"source": "web-platform-tests", "thread": "MainThread", "time": 1537217750089, "action": "log", "message": "Using 4 client processes", "level": "INFO", "pid": 11830}
{"thread": "MainThread", "level": "INFO", "pid": 11852, "source": "web-platform-tests", "time": 1537217750659, "action": "log", "message": "Starting http server on 127.0.0.1:8000"}
{"thread": "MainThread", "level": "INFO", "pid": 11854, "source": "web-platform-tests", "time": 1537217750670, "
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! Builds display lists from flows and fragments.
//!
//! Other browser engines sometimes call this "painting", but it is more accurately called display
//! list building, as the actual painting does not happen here—only deciding *what* we're going to
//! paint.
@pyfisch
pyfisch / script.py
Created December 1, 2018 16:09
Wikidata FischBot Task 6
import logging
import pywikibot
import csv
site = pywikibot.Site('wikidata', 'wikidata')
def load_data():
with open('data.csv', newline='') as csvfile:
return list(csv.DictReader(csvfile))
@pyfisch
pyfisch / query
Last active December 9, 2018 21:08
SELECT ?item ?itemLabel WHERE {
?item wdt:P31 wd:Q5 .
?article schema:about ?item .
?article schema:isPartOf <https://hu.wikipedia.org/>.
?item rdfs:label ?itemLabel.
FILTER((LANG(?itemLabel)) = "hu")
FILTER(REGEX(?itemLabel, "\\(.*\\)$"))
}
SELECT ?item ?version ?itemLabel ?itemDesc WHERE {
@pyfisch
pyfisch / README.md
Created February 2, 2019 17:14
SCRIPT-8
@pyfisch
pyfisch / README.md
Created February 2, 2019 17:59
SCRIPT-8
@pyfisch
pyfisch / README.md
Created February 2, 2019 18:47
SCRIPT-8