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 { | |
background-color: red; | |
min-height:100px; | |
} | |
.element { |
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 { | |
background-color: red; | |
} | |
.left { | |
float: left;; |
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 { |
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; | |
} |
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; |
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(){ |
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(){ |
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"); |
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; | |
} |
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 |
OlderNewer