http://theoatmeal.com/ http://xkcd.com/ http://thedailywtf.com/ http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fpbfcomics.com%2Ffeed%2Ffeed.xml http://oglaf.com/latest/ http://this-plt-life.tumblr.com/ http://bradcolbow.com/ http://gunshowcomic.com http://wumocomicstrip.com/strip/rss http://invisiblebread.com
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
server { | |
listen *:80; | |
listen [::]:80; | |
server_name test.dev; | |
return 301 https://$http_host$request_uri; | |
} | |
server { | |
listen *:443 ssl; |
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
outer = original | |
inner = inner a | |
in template = inner a | |
inner = inner b | |
in template = inner b | |
outer = original |
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
/root.crt | |
/root.key | |
/root.srl | |
/*.crt | |
/*.csr | |
/*.key | |
/*.packed.pem | |
/*.fullchain |
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
.channels_list_holder ul li.mention a, .channels_list_holder ul li.unread:not(.muted_channel) a { | |
font-weight: 600; | |
color: #EEE; | |
} | |
/* remove unread count badge */ | |
.unread_highlight { | |
display: none; | |
} |
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
.diff.line.declaration { | |
opacity: 1; | |
} | |
.diff.line.declaration .line.content .after-indent { | |
font-size: 100%; | |
} |
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
diff --git a/app/config/config.neon b/app/config/config.neon | |
index 9ad1d56..bae44d1 100644 | |
--- a/app/config/config.neon | |
+++ b/app/config/config.neon | |
@@ -37,6 +37,13 @@ parameters: | |
gm: | |
executable: gm # defaults to executable in path | |
+ nextras: | |
+ migrations: |
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
pg_available_extensions | |
(pg_trgm,1.1,"text similarity measurement and index searching based on trigrams") | |
(pgcrypto,1.1,"cryptographic functions") | |
(chkpass,1.0,"data type for auto-encrypted passwords") | |
(test_shm_mq,1.0,"Test code for shared memory message queues") | |
(earthdistance,1.0,"calculate great-circle distances on the surface of the Earth") | |
(plpgsql,1.0,"PL/pgSQL procedural language") | |
(intarray,1.0,"functions, operators, and index support for 1-D arrays of integers") | |
(postgis_tiger_geocoder,2.1.5,"PostGIS tiger geocoder and reverse geocoder") |
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
<?php | |
namespace App\FastCGI; | |
use App\Services\RouterFactory; | |
use Kdyby; | |
use Nette\Application\Application; | |
use Nette\Application\IPresenterFactory; | |
use Nette\Application\IRouter; | |
use Nette\Application\Routers\RouteList; |