Hey, nginx.com
Your sticky-menu
was broked, so I fixed it.
#masthead
is getting yanked from the layout and everything after it gets forced up to fill the 70px gap.
# in kB | |
export MINIMUM_AVAILABLE_MEMORY=1400000 | |
if [ ! -e "${NOTIFICATION_SOUND_PATH}" ]; then | |
export NOTIFICATION_SOUND_PATH="/fun/notification-sound-memory-alarm.mp3"; | |
if [ -z "${NOTIFICATION_SOUND_SOURCE}" ]; then | |
export NOTIFICATION_SOUND_SOURCE="https://proxy.notificationsounds.com/wake-up-tones/gentle-alarm-474/download/file-sounds-928-gentle-alarm.mp3"; | |
fi | |
<div class="loading"></div> |
const https = require('https'); | |
const defaultOptions = { | |
"port": 443, | |
"host": `127.0.0.1`, | |
"method": `GET`, | |
"headers": { | |
"Content-Type": `application/json`, | |
"Accept": `application/json`, | |
} |
version: '3' | |
services: | |
es1: | |
image: | |
"docker.elastic.co/elasticsearch/elasticsearch:7.6.0" | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
environment: | |
- "discovery.type=single-node" |
-- show running queries (pre 9.2) | |
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (>=9.2) | |
SELECT pid, age(clock_timestamp(), query_start), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
var emit = commonjs.socket.emit.bind(commonjs.socket); | |
var onevent = commonjs.socket.onevent; | |
commonjs.socket.onevent = function ( packet ) { | |
var args = packet.data || []; | |
onevent.call(this, packet); // original call | |
packet.data = [ "*" ].concat(args); | |
onevent.call(this, packet); // additional call to catch-all | |
}; | |
commonjs.socket.on("*", function ( event, data ) { |
/** | |
* Custom deep diffing to tell what changes throughout our data transfers | |
* Don't recommend for testing functions or recursively-nested objects (like Backbone collections). | |
* @param item1 <> | |
* @param item2 <> | |
* @param [isReversed] <Boolean> | |
* @returns <Array>(Object*) | |
*/ | |
function deepDiff ( item1, item2, isReversed ) { |
Your sticky-menu
was broked, so I fixed it.
#masthead
is getting yanked from the layout and everything after it gets forced up to fill the 70px gap.