A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$
if your browser aliases it:
~ 108 byte version
protected override void ApplicationStartup(IWindsorContainer container, IPipelines pipelines) | |
{ | |
pipelines.BeforeRequest += (ctx) => | |
{ | |
if (ctx.Request.Session["TempMessage"] != null && !string.IsNullOrEmpty(ctx.Request.Session["TempMessage"] as string)) | |
{ | |
ctx.ViewBag.TempMessage = ctx.Request.Session["TempMessage"]; | |
ctx.ViewBag.TempType = ctx.Request.Session["TempType"]; | |
ctx.Request.Session.DeleteAll(); | |
} |
#!/usr/bin/env coffee | |
fs = require 'fs' | |
# Get the file name that’s passed as the first argument | |
nameOfFile = process.argv.slice(2)[0] | |
# Read the file and convert it from bytes to a string | |
file = fs.readFileSync(nameOfFile).toString() |
@binkmail.com | |
@bobmail.info | |
@chammy.info | |
@devnullmail.com | |
@letthemeatspam.com | |
@mailinater.com | |
@mailinator.net | |
@mailinator2.com | |
@notmailinator.com | |
@reallymymail.com |
<script type="text/javascript"> | |
(function () { | |
"use strict"; | |
// once cached, the css file is stored on the client forever unless | |
// the URL below is changed. Any change will invalidate the cache | |
var css_href = './index_files/web-fonts.css'; | |
// a simple event handler wrapper | |
function on(el, ev, callback) { | |
if (el.addEventListener) { | |
el.addEventListener(ev, callback, false); |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
#From https://github.com/Pestov/essential-gulp-plugins ##HTML&CSS autoprefixer - parse CSS and add vendor prefixes to rules by Can I Use.
gulp-browser-sync - keep multiple browsers & devices in sync when building websites.
gulp-useref - parse build blocks in HTML files to replace references to non-optimized scripts or stylesheets.
gulp-email-design - a workflow for designing and testing HTML email templates.
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\MPC-BE] | |
@=dword:00000001 | |
[HKEY_CURRENT_USER\Software\MPC-BE\Capture] | |
"VidDispName"="@device:pnp:\\\\?\\usb#vid_04ca&pid_7025&mi_00#7&1e983a4a&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\\global" | |
"AudDispName"="" | |
"Country"=dword:00000001 | |
"VidOutput"=dword:00000001 |
var comments = document.querySelectorAll('#comment-list > li'); | |
var commentsList = []; | |
var array = new Uint32Array(comments.length); | |
var randomIds = window.crypto.getRandomValues(array); | |
Array.prototype.forEach.call(comments, function(el, i){ | |
if (el.id) commentsList.push({id: el.id, rand: randomIds[i]}); | |
}); |