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
| grammar CsExpression; | |
| options { | |
| language=CSharp3; | |
| TokenLabelType=CommonToken; | |
| output=AST; | |
| ASTLabelType=CommonTree; | |
| } | |
| @lexer::namespace{ExpressionParser} |
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
| #!/bin/bash | |
| ## Install ISPConfig3 on Ubuntu 16.04 64Bits | |
| ## Author: Nilton OS blog.linuxpro.com.br | |
| ## Updated: Seti the Dragon - chibi.pl | |
| ## old: http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html | |
| ## old: http://www.howtoforge.com/perfect-server-ubuntu-14.04-apache2-php-mysql-pureftpd-bind-dovecot-ispconfig-3-p2 | |
| ## | |
| ## new: https://www.howtoforge.com/tutorial/perfect-server-ubuntu-16.04-with-apache-php-myqsl-pureftpd-bind-postfix-doveot-and-ispconfig/ | |
| apt-get update | |
| c_default="\e[37m" |
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
| #!/usr/bin/env python | |
| import sys | |
| import gmpy | |
| import curve25519 | |
| from struct import pack | |
| from hashlib import sha256 | |
| from binascii import hexlify, unhexlify |