sa-key-size = 4096
authenticator = webroot
webroot-path = /home/certbot
renew-hook = /home/certbot/renew-hook.sh
post-hook = /home/certbot/post-hook.sh
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
3fec | |
<?xml version="1.0"?> | |
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="https://webapi.allegro.pl/service.php" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="service" targetNamespace="https://webapi.allegro.pl/service.php"><types><xsd:schema targetNamespace="https://webapi.allegro.pl/service.php" elementFormDefault="qualified" attributeFormDefault="unqualified"><xsd:complexType name="PackageInfoStruct"><xsd:all><xsd:element name="operatorId" type="xsd:int"/><xsd:element name="packageId" type="xsd:string"/><xsd:element name="operatorName" type="xsd:string" minOccurs="0"/></xsd:all></xsd:complexType><xsd:complexType name="ArrayOfPackageinfostruct"><xsd:sequence><xsd:element name="item" type="tns:PackageInfoStruct" minOccurs="0" maxOccurs="unbounded"/></xsd:sequence></xsd:complexType><xsd:element name="DoAddPackageInfoToPostBuyFormRequ |
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
#This file is automatically generated. | |
# Hand-editing this file is not recommended. | |
network0.name = "Bridged [ens6f1]" | |
network0.device = "vmnet0" | |
network1.name = "HostOnly" | |
network1.device = "vmnet1" | |
network2.name = "NAT" | |
network2.device = "vmnet8" | |
network3.name = "Bridged [ens6f0.39]" |
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
#!/usr/bin/perl | |
=pod | |
=encoding utf8 | |
=head1 AUTHOR | |
Paweł Feruś <[email protected]> |
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 | |
use Illuminate\Database\Eloquent\Relations\HasOneOrMany; | |
use Illuminate\Database\Eloquent\Relations\BelongsTo; | |
trait OrderThroughRelationTrait { | |
/** | |
* Add an "order by" clause to the query and handles relations if specified. | |
* |
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
--- FopServlet.java.org 2010-07-12 21:34:45.000000000 +0200 | |
+++ FopServlet.java 2011-04-06 19:00:01.639060332 +0200 | |
@@ -44,6 +44,10 @@ import org.apache.fop.apps.Fop; | |
import org.apache.fop.apps.FopFactory; | |
import org.apache.fop.apps.MimeConstants; | |
+import org.xml.sax.SAXException; | |
+import org.apache.commons.logging.Log; | |
+import org.apache.commons.logging.LogFactory; | |
+ |
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
#!/usr/bin/perl | |
package customHttpClient; | |
use base qw(Thrift::HttpClient); | |
sub setCustomHeader { | |
my $self = shift; | |
push @{$self->{'customHeaders'}},[@_]; | |
} |
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
isLoggedIn().then(main); // run main() when user logged in | |
let jsonrpc = new JSONRPC(); // JSONRPC client, Promise based | |
function isLoggedIn() { | |
return jsonrpc.call('User.isLoggedIn').catch(showLoginForm); | |
} | |
function logIn(args) { | |
return jsonrpc.call('User.logIn', args).catch(showLoginForm); |
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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use threads; | |
use threads::shared; | |
use Thread::Queue; | |
use JSON::XS; | |
use Net::Ping; | |
use Data::Dumper; |