View cylinder.obj
This file contains 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
# File produced by Open Asset Import Library (http://www.assimp.sf.net) | |
# (assimp v5.0.3029775719) | |
mtllib $blobfile.mtl | |
# 34 vertex positions | |
v 1 0 0 | |
v 0.9238795 0 0.38268346 | |
v 0.9238795 1 0.38268346 | |
v 1 1 0 |
View lspci -vv
This file contains 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
00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09) | |
Subsystem: Intel Corporation Device 2054 | |
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- | |
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx- | |
Latency: 0 | |
Capabilities: <access denied> | |
Kernel driver in use: hsw_uncore | |
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller]) | |
Subsystem: Intel Corporation Device 2054 |
View udevadm info --export-db
This file contains 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
P: /devices/LNXSYSTM:00 | |
E: DEVPATH=/devices/LNXSYSTM:00 | |
E: MODALIAS=acpi:LNXSYSTM: | |
E: SUBSYSTEM=acpi | |
P: /devices/LNXSYSTM:00/ICV0A12:00 | |
E: DEVPATH=/devices/LNXSYSTM:00/ICV0A12:00 | |
E: ID_VENDOR_FROM_DATABASE=Inside Contactless | |
E: MODALIAS=acpi:ICV0A12: | |
E: SUBSYSTEM=acpi |
View application.css
This file contains 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
.done { | |
opacity: 0.5; | |
text-decoration: line-through; | |
} |
View caught.js
This file contains 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
var domain = require("domain"); | |
var d = domain.create(); | |
d.on("error", function() { | |
console.log("domain caught"); | |
}); | |
d.run(function() { | |
throw new Error("foo"); |
View nodeinternaldomain
This file contains 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
var Benchmark = require('benchmark'); | |
var fs = require("fs"); | |
var domain = require("domain"); | |
var d = domain.create().on('error', function(err){ console.log("Caught" + err); process.exit();}) | |
var j_ = 10000000; | |
function intensive(){ |
View trycatchwithexternaldomain
This file contains 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
var Benchmark = require('benchmark'); | |
var fs = require("fs"); | |
var domain = require("domain"); | |
var d = domain.create().on('error', function(err){ console.log("Caught" + err); process.exit();}) | |
var j_ = 10000000; | |
function intensive(){ |
View trycatchperformance
This file contains 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
var Benchmark = require('benchmark'); | |
var fs = require("fs"); | |
var j_ = 10000000; | |
function intensive(){ | |
var s = 0; | |
for (var i = 0; i < j_; i++) s = i; |
View dabblet.css
This file contains 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
/** | |
* Expanding Text Box | |
*/ | |
#parent { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
margin-left: 50px; | |
margin-right: 50px; | |
} |
View dabblet.css
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.container { | |
height: 20px; | |
background-color: red; | |
overflow: hidden; | |
} | |
.left { |
NewerOlder