Skip to content

Instantly share code, notes, and snippets.

View rudiedirkx's full-sized avatar

Rudie Dirkx rudiedirkx

View GitHub Profile
Every 1.0s: php summary.php Wed Feb 18 00:12:37 2015
29 687 projects downloaded.
10 015 of those have a 7.x release.
Parsed 602 modules' dependencies.
167 of those have NO dependencies.
0 projects FAILED to download INFOS.
javascript:
(function() {
WebSocket.sockets || (WebSocket.sockets = []);
var s = WebSocket.prototype.send;
WebSocket.prototype.send = function(data) {
if (!this._oh) {
this._oh = 1;
WebSocket.sockets.push(this);
this.addEventListener('message', function(e) {
console.log('receive', e.data);
(function() {
var _x, _y;
function scroll(video) {
var x = _x / innerWidth;
var dx = 1.1 * (-innerWidth/2*x + innerWidth/4);
video.style.marginLeft = Math.round(Math.max(-innerWidth/4, Math.min(innerWidth/4, dx))) + 'px';
var y = _y / innerHeight;
function getTrace() {
try {
throw new Error;
}
catch (ex) {
var matches = [];
ex.stack.replace(/([^\s]+):(\d+):(\d+)/g, function(all, file, line, column) {
file = file.replace(/^[\s\(]/g, '');
matches.push({"file": file, "line": line, "column": column});
javascript:
alert("domready: " + (performance.timing.domContentLoadedEventEnd - performance.timing.navigationStart) + " ms\nonload: " + (performance.timing.loadEventEnd - performance.timing.navigationStart) + ' ms');
void(0);
<?php
/**
* Wrapper for theme() that takes the override theme name to render this hook in.
*/
function _x_theme($hook, $vars, $override_theme) {
_x_start_theme_override($override_theme);
$return = theme($hook, $vars);
_x_end_theme_override();
.ezhealth-ckeditor-widget,
.ezhealth-ckeditor-widget * {
box-sizing: border-box;
}
.ezhealth-ckeditor-widget {
border: solid 1px #ddd;
}
.ezhealth-ckeditor-widget:after {
content: "";
display: block;
<?php
// Helpers
$space = function($hex) {
return implode(' ', str_split($hex, 2));
};
$debug = function($dec) use ($space) {
echo 'dec: ' . $dec . "\n";
echo 'hex: ' . $space(dec2hex($dec)) . "\n\n";
};
GET /api/user HTTP/1.1
User-Agent: Super ultra fast super HTTP browser
Host: xxxxxx.xx
Accept: */*
HTTP/1.1 200 OK
Date: Sat, 25 Apr 2015 17:52:51 GMT
Content-Length: 62
<?php
/**
* Smartqueue providers ('owners') can do this:
*/
/**
* Implements hook_nodequeue_sqids().
*/
function USER_SMARTQUEUE_nodequeue_sqids($queue) {