Create openssl.cnf
and add:
openssl_conf = default_conf
[ default_conf ]
ssl_conf = ssl_sect
[ssl_sect]
system_default = system_default_sect
Create openssl.cnf
and add:
openssl_conf = default_conf
[ default_conf ]
ssl_conf = ssl_sect
[ssl_sect]
system_default = system_default_sect
import random | |
import sys | |
def main(names): | |
random.shuffle(names) | |
print('\033[93m' + 'Team 1: ' + ', '.join(names[:(len(names) // 2)]) + '\n\033[92mTeam 2: ' + ', '.join(names[(len(names) // 2):]) + '\033[0m') | |
if __name__ == '__main__': | |
main(sys.argv[1:]) |
<?xml version="1.0" encoding="UTF-8"?> | |
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:xdt="http://www.w3.org/2005/xpath-datatypes" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:svg="http://www.w3.org/2000/svg"> | |
<fo:layout-master-set> | |
<fo:simple-page-master master-name="default-page" page-height="8.2604in" page-width="11.6875in" margin-left="0.7in" margin-right="0.7in"> | |
<fo:region-body margin-top="0.75in" margin-bottom="0.75in"/> | |
<fo:region-before extent="0.75in"/> | |
<fo:region-after extent="0.75in"/> | |
</fo:simple-page-master> | |
</fo:layout-master-set> | |
<fo:page-sequence master-reference="default-page" format="1" initial-page-number="1"> |
<reporting> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-pmd-plugin</artifactId> | |
<version>3.7</version> | |
<configuration> | |
<sourceEncoding>utf-8</sourceEncoding> | |
<language>java</language> | |
<verbose>true</verbose> |
import random | |
import sys | |
def main(names): | |
random.shuffle(names) | |
print '\033[93m' + 'Team 1: ' + ', '.join(names[:(len(names) / 2)]) + '\n\033[92mTeam 2: ' + ', '.join(names[(len(names) / 2):]) + '\033[0m' | |
if __name__ == '__main__': | |
main(sys.argv[1:]) |
private int compare(String vx, String vy) | |
{ | |
String[] vxL = vx.split("\\."); | |
String[] vyL = vy.split("\\."); | |
final int xSize = vxL.length, ySize = vyL.length, size = Math.max(xSize, ySize); | |
Integer iVx, iVy; | |
int i, diff; |
<VirtualHost *:80> | |
ServerAdmin admin@admin.com | |
DocumentRoot "__LARAVEL_PUBLIC_DIR__" | |
ServerName dev | |
ErrorLog "logs/dev-error.log" | |
CustomLog "logs/dev-access.log" common | |
<Directory "__LARAVEL_PUBLIC_DIR__"> | |
Options Indexes FollowSymLinks | |
AllowOverride All |
<code_scheme name="CleanCode"> | |
<codeStyleSettings language="CSS"> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> | |
</indentOptions> | |
</codeStyleSettings> | |
<codeStyleSettings language="HTML"> | |
<option name="RIGHT_MARGIN" value="500"/> | |
<indentOptions> | |
<option name="USE_TAB_CHARACTER" value="true"/> |
zeljic@ironhills:~/dev/lizzard $ conan install --build=missing | |
Requirements | |
zlib/1.2.8@lasote/stable | |
Packages | |
zlib/1.2.8@lasote/stable:5111d9c5cf2ac03a5fd63ec5f9092e3da8fdbe78 | |
Installing requirements | |
zlib/1.2.8@lasote/stable: Installing package 5111d9c5cf2ac03a5fd63ec5f9092e3da8fdbe78 | |
zlib/1.2.8@lasote/stable: Package not installed |