Skip to content

Instantly share code, notes, and snippets.

lexers:
ABNF
aliases: abnf
filenames: *.abnf
mimetypes: text/x-abnf
ANTLR
aliases: antlr
APL
aliases: apl
filenames: *.apl
==> Continue building openage-git ? [Y/n]
==> -------------------------------------
==>
==> Building and installing package
==> Making package: openage-git v0.3.0.r986.g87f68683-1 (Fri Sep 1 16:34:48 CEST 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning openage git repo...
[2017-08-31 22:01:38] request.INFO: Matched route "bookmarklet". {"route":"bookmarklet","route_parameters":{"_controller":"Wallabag\\CoreBundle\\Controller\\EntryController::addEntryViaBookmarkletAction","_route":"bookmarklet"},"request_uri":"https://wallabag.linux4tw.de/bookmarklet?url=http%3A%2F%2Fedition.cnn.com%2Fstyle%2Farticle%2Fafrica-e-commerce-fashion%2Findex.html","method":"GET"} []
[2017-08-31 22:01:38] security.DEBUG: Read existing security token from the session. {"key":"_security_secured_area"} []
[2017-08-31 22:01:38] security.DEBUG: User was reloaded from a user provider. {"username":"strubbl","provider":"Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider"} []
[2017-08-31 22:01:38] app.DEBUG: Restricted access config enabled? {"enabled":0} []
[2017-08-31 22:01:38] graby.DEBUG: Graby is ready to fetch [] []
[2017-08-31 22:01:38] graby.DEBUG: . looking for site config for edition.cnn.com in primary folder {"host":"edition.cnn.com"} []
[2017-08-31 22:01:38] graby.DEBUG: ... found site
$ curl -Lv https://hueniverse.com/oauth-2-0-and-the-road-to-hell-8eec45921529
* Trying 52.1.119.170...
* TCP_NODELAY set
* Connected to hueniverse.com (52.1.119.170) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: none
[2017-05-09 23:21:30] graby.DEBUG: Graby is ready to fetch [] []
[2017-05-09 23:21:30] graby.DEBUG: . looking for site config for hueniverse.com in primary folder {"host":"hueniverse.com"} []
[2017-05-09 23:21:30] graby.DEBUG: Appending site config settings from global.txt [] []
[2017-05-09 23:21:30] graby.DEBUG: . looking for site config for global in primary folder {"host":"global"} []
[2017-05-09 23:21:30] graby.DEBUG: ... found site config global.txt {"host":"global.txt"} []
[2017-05-09 23:21:30] graby.DEBUG: Cached site config with key: hueniverse.com {"key":"hueniverse.com"} []
[2017-05-09 23:21:30] graby.DEBUG: . looking for site config for global in primary folder {"host":"global"} []
[2017-05-09 23:21:30] graby.DEBUG: ... found site config global.txt {"host":"global.txt"} []
[2017-05-09 23:21:30] graby.DEBUG: Appending site config settings from global.txt [] []
[2017-05-09 23:21:30] graby.DEBUG: Cached site config with key: global {"key":"global"} []
@Strubbl
Strubbl / fix.md
Last active January 30, 2017 19:33 — forked from nicosomb/fix.md
Fix for wallabag 2.2 and SQLite

After upgrading wallabag to 2.2, if you use SQLite for database, you may have a blank page or an internal server error (error 500). It can be due to migrations which failed.

The migrations which failed are migrations which try to create new columns on tables.

To fix this problem, please execute these commands on your webserver:

    php bin/console doctrine:migration:execute 20161024212538 -e=prod
    php bin/console doctrine:migration:execute 20161106113822 -e=prod
@Strubbl
Strubbl / version.json
Last active August 29, 2015 14:14
just another Cordova before_compile hook, to use app version from config.xml in your app
{
"version" : {
"MAJOR" : "0",
"MINOR" : "1",
"PATCH" : "0"
}
}
@Strubbl
Strubbl / PKGBUILD
Last active August 29, 2015 14:06
xdcc-grabscher.pkgbuild
# Maintainer: Scott Campbell <@.com>
_pkgname=xdcc-grabscher
_solution=XG.sln
pkgname=$_pkgname-git
pkgver=3.2.0.0.r8.392e95e
pkgrel=1
pkgdesc="A XDCC download client."
arch=('i686' 'x86_64')
@Strubbl
Strubbl / config_sites.py
Created September 11, 2014 16:56
manual_rss'en
['OwncloudChangelog', 'http://owncloud.org/changelog/', '<body.*</body>', ['ignore string']],
['OSBNBlogs', 'http://osbn.de/alleblogs/', '<body.*</body>', ['ignore string']],
['AutosecPublications', 'http://www.autosec.org/publications.html', '<div id="content">.*</div>\s+<div id="footer">', ['ignore strings']],
['FacebookPlanB', 'https://www.facebook.com/pages/PlanB-die-bar/200016836750562', '<code class="hidden_elem" id="u_0_1j">.*</code>', ['ignore strings']],
@Strubbl
Strubbl / share-disk.service
Last active August 29, 2015 14:05
systemd service unit for mounting a dm-crypt device
[Unit]
Description=Mount share disk when available
After=cryptsetup.target
ConditionPathExists=/dev/sda
ConditionPathIsDirectory=/media/share
ConditionFileIsExecutable=/usr/bin/cryptsetup
ConditionFileIsExecutable=/usr/bin/mount
ConditionFileNotEmpty=/etc/keys/share.key
[Service]