This file contains hidden or 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
export MESA_GL_VERSION_OVERRIDE=4.0 | |
export MESA_GLSL_VERSION_OVERRIDE=400 |
This file contains hidden or 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 LANSCAPE_WIDTH = 480 | |
it('should handle portrait screen orientation', () => { | |
csstate.rule('.pagination', { width: LANSCAPE_WIDTH + 'px' }); | |
expect(document.body.clientWIdth).to.be.below(LANSCAPE_WIDTH); | |
}); |
This file contains hidden or 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 PORTRAIT_WIDTH = 320 | |
it('should handle portrait screen orientation', () => { | |
csstate.rule('.pagination', { width: PORTRAIT_WIDTH + 'px' }); | |
expect(document.body.clientWIdth).to.be.below(PORTRAIT_WIDTH); | |
}); |
This file contains hidden or 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
beforeEach(() => { | |
cst.rule(defaultRules); // Load default rules | |
}); | |
afterEach(() => { | |
cst.exit(); // Remove entire stylesheet | |
}); |
This file contains hidden or 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 | |
of | |
to | |
and | |
a | |
in | |
is | |
it | |
you | |
that |
This file contains hidden or 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 str = 'class ಠ_ಠ extends Array {constructor(j = "a", ...c) {const q = (({u: e}) => {return { [`s${c}`]: Symbol(j) };})({});super(j, q, ...c);}}' + | |
'new Promise((f) => {const a = function* (){return "\u{20BB7}".match(/./u)[0].length === 2 || true;};for (let vre of a()) {' + | |
'const [uw, as, he, re] = [new Set(), new WeakSet(), new Map(), new WeakMap()];break;}f(new Proxy({}, {get: (han, h) => h in han ? han[h] ' + | |
': "42".repeat(0o10)}));}).then(bi => new ಠ_ಠ(bi.rd));'; | |
try { | |
eval(str); | |
} catch(e) { | |
alert('Your browser does not support ES6!') | |
} |
This file contains hidden or 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
{ | |
"nochar": [ | |
[ 1, 1, 1, 1, 1, 1, 1 ], | |
[ 1, 1, 0, 0, 0, 1, 1 ], | |
[ 1, 0, 1, 0, 1, 0, 1 ], | |
[ 1, 0, 0, 1, 0, 0, 1 ], | |
[ 1, 0, 1, 0, 1, 0, 1 ], | |
[ 1, 1, 0, 0, 0, 1, 1 ], | |
[ 1, 1, 1, 1, 1, 1, 1 ] | |
], |
This file contains hidden or 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
https://i.imgur.com/3GOp3Hn.jpg | |
http://i.imgur.com/UmCSIGv.png | |
http://imgur.com/a/2LK5o | |
https://raw.githubusercontent.com/papungag/dotfiles/master/awesome/.config/awesome/themes/ergo/wall.jpg | |
http://i.imgur.com/pTD3Ww4.jpg | |
http://i.imgur.com/dKiUMLT.jpg | |
http://i.imgur.com/K9ojNHn.jpg | |
http://i.imgur.com/x2Zh6eR.png | |
http://imgur.com/a/E3myU |
This file contains hidden or 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
Object.getOwnPropertyDescriptors = function getOwnPropertyDescriptors(obj) { | |
var descriptors = {}; | |
for (var prop in obj) { | |
if (obj.hasOwnProperty(prop)) { | |
descriptors[prop] = Object.getOwnPropertyDescriptor(obj, prop); | |
} | |
} | |
return descriptors; | |
}; |