“Programming isn't about what you know; it's about what you can figure out.”
– Chris Pine (author of Learn to Program)
-
ePages GmbH
- Hamburg, Germany
-
01:56
(UTC +01:00) - @depoulo
Pinned Loading
-
-
ePages-de/dnd-page-scroll
ePages-de/dnd-page-scroll PublicForked from martindrapeau/jQueryDndPageScroll
Enable scrolling of the page during an HTML5 drag and drop operation
-
Add CSS rules quickly from the brows...
Add CSS rules quickly from the browser JS console. Idea taken from http://davidwalsh.name/add-rules-stylesheets 1(() => {
2var style = document.createElement("style");
3style.appendChild(document.createTextNode(""));
4document.head.appendChild(style);
5var rules = prompt('Paste CSS rules here');
-
The CSS4 contrast adjuster mimicked ...
The CSS4 contrast adjuster mimicked with just custom properties and calc(). Demo: https://codepen.io/depoulo/pen/WLGeQz 1/*
2The CSS4 contrast adjuster mimicked with just custom properties and calc().
3While it's pretty straightforward to mimick the hue, saturation and
4lightness adjusters, color contrast requires some "serious" math.
5Results are not perfect, but very much usable IMHO.
-
Create 100kB of random text
Create 100kB of random text 1# Windows (Git bash)
2dd if=/dev/urandom of=tmp bs=100kB count=1 && base64 tmp > big && rm tmp && cat big > /dev/clipboard && rm big
3# Mac OS
4dd if=/dev/urandom of=tmp bs=100kB count=1 && base64 tmp > big && rm tmp && cat big | pbcopy && rm big
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.