Pipe-table generated by tabulate and rendered by Github:
item | qty |
---|---|
spam | 42 |
eggs | 451 |
bacon | 0 |
Pipe-table generated by tabulate and rendered by Github:
item | qty |
---|---|
spam | 42 |
eggs | 451 |
bacon | 0 |
See
/* | |
An implementation of the n-body benchmark for Arduino clones. | |
Expected output with TIME_STEPS = 50000000: | |
-0.169075164 | |
-0.169059907 | |
# time: ... | |
N-body benchmark (Java7 #2 1 Core): |
"""This script demonstrates the overhead of using SyncManager vs Value. | |
Output: | |
C double: 8.782e-07 sec per assignment | |
C struct: 8.795e-07 sec per assignment | |
Python class: 3.346e-07 sec per assignment | |
AutoProxy: 2.985e-05 sec per assignment | |
Method calls on AutoProxy seem to be two orders of magnitude slower. |
/* | |
An implementation of the n-body benchmark for Intel Galileo (Arduino clone) | |
Expected output with TIME_STEPS = 50000000: | |
-0.169075164 | |
-0.169059907 | |
# time: ... | |
Performance of Intel Galileo vs desktop CPUs: |
;;; ipython.el --- Adds support for IPython to python-mode.el | |
;; Copyright (C) 2002, 2003, 2004, 2005 Alexander Schmolck | |
;; Author: Alexander Schmolck | |
;; Keywords: ipython python languages oop | |
;; URL: http://ipython.org | |
;; Compatibility: Emacs21, XEmacs21 | |
;; Version: 0.11 | |
;; FIXME: #$@! INPUT RING |
{-# LANGUAGE FunctionalDependencies, FlexibleInstances #-} | |
module HasHeadFD where | |
import qualified Data.Text as T | |
import qualified Data.ByteString.Char8 as BSC | |
class HasHeadFD c e | c -> e where |
{-# LANGUAGE MultiParamTypeClasses, TypeFamilies, FlexibleInstances #-} | |
module HasHead where | |
import qualified Data.Text as T | |
import qualified Data.ByteString.Char8 as BSC | |
-- Usage example |