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
Refreshing buffer ‘magit: OpenSource’... | |
magit-insert-error-header 2e-06 | |
magit-insert-diff-filter-header 0.03445 !! | |
magit-insert-head-branch-header 0.045016 !! | |
magit-insert-upstream-branch-header 0.042379 !! | |
magit-insert-push-branch-header 3.2e-05 | |
magit-insert-tags-header 2.7329790000000003 !! | |
magit-insert-status-headers 2.880756 !! | |
magit-insert-merge-log 0.019903 ! | |
magit-insert-rebase-sequence 9.6e-05 |
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
;;; ---------------------------------------------------------------------------- | |
;;; | |
;;; gyrussk.3a - Gyruss 8039 sound cpu2 rom | |
;;; | |
;;; If you ever wondered how the percussion samples are generated in the arcade | |
;;; version of Gyruss. | |
;;; | |
;;; Builds with SB-Cross Assembler 3. | |
;;; | |
;;; % sbasm audio2.asm |
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
module top_module( | |
input clk, | |
input load, | |
input [255:0] data, | |
output [255:0] q); | |
function bit[3:0] inc(input int x); | |
return x + 1; | |
endfunction |
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
# Five formative games | |
Space Invaders (Atari 2600) | |
--------------------------- | |
The game and system that got me interested in computers. My father's best friend had an Atari 2600 system and I was | |
about 5 or 6 years old. I don't remember exactly when, but it was approx. '80-'81. | |
The Bard's Tale (Apple ][) | |
-------------------------- |
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
/* 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/. */ | |
#![allow(non_snake_case)] | |
use std::{ | |
cell::UnsafeCell, | |
sync::atomic::{AtomicUsize, Ordering::SeqCst}, | |
}; |
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
0:02.19 INFO Checking for ssltunnel processes... | |
0:02.22 INFO Checking for xpcshell processes... | |
0:02.25 SUITE_START: mochitest-plain - running 1 tests | |
0:02.25 INFO Running manifest: dom/tests/mochitest/general/mochitest.ini | |
pk12util: PKCS12 IMPORT SUCCESSFUL | |
0:02.54 INFO MochitestServer : launching [u'/home/djg/Mozilla/obj-ff-dbg.noindex/dist/bin/xpcshell', '-g', u'/home/djg/Mozilla/obj-ff-dbg.noindex/dist/bin', '-f', u'/home/djg/Mozilla/obj-ff-dbg.noindex/dist/bin/components/httpd.js', '-e', "const _PROFILE_PATH = '/tmp/tmpgIcAQ6.mozrunner'; const _SERVER_PORT = '8888'; const _SERVER_ADDR = '127.0.0.1'; const _TEST_PREFIX = undefined; const _DISPLAY_RESULTS = true;", '-f', '/home/djg/Mozilla/obj-ff-dbg.noindex/_tests/testing/mochitest/server.js'] | |
0:02.54 INFO runtests.py | Server pid: 1441114 | |
0:02.56 INFO runtests.py | Websocket server pid: 1441117 | |
0:02.58 INFO runtests.py | SSL tunnel pid: 1441120 | |
0:02.94 INFO runtests.py | Running with scheme: http |
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
<html> | |
<head> | |
<style> | |
table { | |
display: inline-grid; | |
grid: auto / repeat(32, 1fr); | |
width: 100%; | |
border-collapse: collapse; | |
font-family: "Arial"; | |
font-style: normal; |
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
/* Horrible task system - task stealing */ | |
#include <atomic> | |
#include <condition_variable> | |
#include <deque> | |
#include <functional> | |
#include <mutex> | |
#include <thread> | |
#include <vector> | |
using namespace std; |
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
/* Horrible task system - queue per thread */ | |
#include <atomic> | |
#include <condition_variable> | |
#include <deque> | |
#include <functional> | |
#include <mutex> | |
#include <thread> | |
#include <vector> | |
using namespace std; |
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
/* Horrible task system */ | |
#include <condition_variable> | |
#include <deque> | |
#include <functional> | |
#include <mutex> | |
#include <thread> | |
#include <vector> | |
using namespace std; |
NewerOlder