Skip to content

Instantly share code, notes, and snippets.

View OmgImAlexis's full-sized avatar
🇹🇼

Alexis Tyler OmgImAlexis

🇹🇼
View GitHub Profile
version: "3"
services:
http_default_server:
image: twistly/default_server
networks:
- internal
deploy:
mode: global
labels:
version: '3.0'
services:
database:
image: postgres:9.5
ports:
- 5432:5432
environment:
- POSTGRES_USER=kong
- POSTGRES_DB=kong
0.0.0.0 {
filter rule {
path .*
search_pattern example.com
replacement {request_host}
}
}
const emitKeyEvents = (obj, path = null) => {
return new Proxy(obj, {
get: (target, key, receiver) => {
if (typeof target[key] === 'object' && target[key] !== null) {
return emitKeyEvents(target[key], path ? `${path}.${key}` : key);
}
return Reflect.get(target, key, receiver);
},
set: (target, key, value, receiver) => {
this.emit(path ? `${path}.${key}` : key, value);
var post_ids = Object.keys(archive_posts);
var postsToSend = [];
var hostname = window.location.hostname;
if (jQuery("#postEditData").val().trim() != "") {
var edit = jQuery("#postEditData").val();
}
for (var i = 0; i < post_ids.length; i++) {
var p = {
iframe.tmblr-iframe.tmblr-iframe--unified-controls.tmblr-iframe--loaded.iframe-controls--desktop {
z-index: 1000000000;
top: 35px;
right: 35px;
}
agenda:worker processDbResult() called with success, checking whether to process job immediately or not +3ms
agenda:worker Agenda.stop called, clearing interval for processJobs() +49ms
agenda:worker Agenda._unlockJobs() +1ms
agenda:worker about to unlock jobs with ids: [] +0ms
agenda:worker successful connection to MongoDB using collection: [agendaJobs] +11ms
agenda:worker init database collection using name [agendaJobs] +1ms
agenda:worker attempting index creation +0ms
agenda:worker index creation success +2ms
agenda:worker job [someJob] defined with following options:
agenda:worker { fn: [Function: jobProcessor],
This file has been truncated, but you can view the full file.
2017-07-04 16:42:49 INFO SEARCHQUEUE-BACKLOG-253695 :: [Torrentz] :: Request failed: 429 Client Error: Too Many Requests for url: https://torrentz2.eu/feed?f=Moonshiners+S04E12
2017-07-04 16:42:50 INFO SEARCHQUEUE-BACKLOG-253695 :: [Torrentz] :: Request failed: 429 Client Error: Too Many Requests for url: https://torrentz2.eu/feed?f=Moonshiners+S04E13
2017-07-04 16:42:50 INFO SEARCHQUEUE-BACKLOG-253695 :: [Torrentz] :: Request failed: 429 Client Error: Too Many Requests for url: https://torrentz2.eu/feed?f=Moonshiners+S04E14
2017-07-04 16:42:50 INFO SEARCHQUEUE-BACKLOG-253695 :: [ilCorsaroNero] :: Performing episode search for Moonshiners
2017-07-04 16:43:02 INFO SEARCHQUEUE-BACKLOG-253695 :: [SkyTorrents] :: Performing episode search for Moonshiners
2017-07-04 16:43:03 INFO SEARCHQUEUE-BACKLOG-253695 :: [SkyTorrents] :: Request failed: 429 Client Error: Too Many Requests for url: https://www.skytorrents.in/rss/all/ed/1/Moonshiners%20S04E01
2017-07-04 16:43:04 INFO SEARCHQUEUE-BACK
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-0"
],
/* eslint-disable camelcase */
const path = require('path');
const webpack = require('webpack');
// Ref: https://hackernoon.com/optimising-your-application-bundle-size-with-webpack-e85b00bab579
module.exports = {
devtool: 'cheap-module-source-map',
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {