This file contains 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 { | |
server_name shopware.dev www.shopware.dev; | |
root /var/www/shopware; | |
## Access and error logs. | |
access_log /var/log/nginx/shopware.dev.log; | |
error_log /var/log/nginx/shopware.dev.log; | |
set $shopware_env 'production'; |
This file contains 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 default_server; | |
listen [::]:80 default_server; | |
root /var/www/html; | |
index index.php index.html index.htm index.nginx-debian.html; | |
server_name server_domain_or_IP; | |
location / { |
This file contains 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
viewmodel_offset_x 2.5; | |
viewmodel_offset_y -2; | |
viewmodel_offset_z -2; | |
viewmodel_fov 54; | |
cl_bobcycle "0.98"; | |
cl_bob_lower_amt "5"; | |
cl_bobamt_vert "0.1"; | |
cl_bobamt_lat "0.12; |
This file contains 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
[2015-10-21 13:18:16,013][WARN ][cluster.service ] [Triathlon] failed to reconnect to node [Triathlon][_FTaUbkoTQ6oQrAtSs0bow][dealertyre1][inet[/5.9.41.123:9300]] | |
org.elasticsearch.transport.ConnectTransportException: [Triathlon][inet[/5.9.41.123:9300]] connect_timeout[30s] | |
at org.elasticsearch.transport.netty.NettyTransport.connectToChannels(NettyTransport.java:825) | |
at org.elasticsearch.transport.netty.NettyTransport.connectToNode(NettyTransport.java:758) | |
at org.elasticsearch.transport.netty.NettyTransport.connectToNode(NettyTransport.java:731) | |
at org.elasticsearch.transport.TransportService.connectToNode(TransportService.java:216) | |
at org.elasticsearch.cluster.service.InternalClusterService$ReconnectToNodes.run(InternalClusterService.java:584) | |
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) | |
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) | |
at java.lang.Thread.run(Threa |
This file contains 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 | |
return array( | |
'es' => | |
array( | |
'enabled' => true, | |
'client' => array( | |
'hosts' => array( | |
'localhost:9200' | |
) | |
) |
This file contains 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
SyntaxError: Unexpected token < | |
at http://localhost/engine/Shopware/Plugins/Community/Core/SwagLicense/Library/ExtJs/ext-all.js,q201510121351.pagespeed.jm.Zm3Sr2TfP8.js:1:5359 | |
at Object.Ext.globalEval (http://localhost/engine/Shopware/Plugins/Community/Core/SwagLicense/Library/ExtJs/ext-all.js,q201510121351.pagespeed.jm.Zm3Sr2TfP8.js:1:5367) | |
at Ext.Ajax.request.success (http://localhost/backend/base?file=bootstrap&loggedIn=1445262582:477:5) | |
at Object.Ext.apply.callback (http://localhost/engine/Shopware/Plugins/Community/Core/SwagLicense/Library/ExtJs/ext-all.js,q201510121351.pagespeed.jm.Zm3Sr2TfP8.js:1:67475) | |
at Ext.define.onComplete (http://localhost/engine/Shopware/Plugins/Community/Core/SwagLicense/Library/ExtJs/ext-all.js,q201510121351.pagespeed.jm.Zm3Sr2TfP8.js:1:422602) | |
at Ext.define.onStateChange (http://localhost/engine/Shopware/Plugins/Community/Core/SwagLicense/Library/ExtJs/ext-all.js,q201510121351.pagespeed.jm.Zm3Sr2TfP8.js:1:422246) | |
at XMLHttpRequest.<anonymous> (http |
This file contains 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
#ifndef APPLICATION_H | |
#define APPLICATION_H | |
#include <iostream> | |
#include <cstdlib> | |
#include <GLFW/glfw3.h> | |
using namespace std; | |
class Application |
This file contains 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
function GW2TESTING(){ | |
var myUrl = "http://www.gw2spidy.com/api/v0.9/json/all-items/*all*"; | |
var jsonData = UrlFetchApp.fetch(myUrl); | |
var jsonString = jsonData.getContentText(); | |
jsonString.replace(/\\n/g, "\\n"); | |
jsonString.replace(/\\'/g, "\\'"); | |
jsonString.replace(/\\"/g, '\\"'); | |
jsonString.replace(/\\&/g, "\\&"); | |
jsonString.replace(/\\r/g, "\\r"); |