Create a openVPN server on Google Cloud Platform to connect to your Google Cloud network using openVPN and/or to route your internet traffic through the VPN (Road Warrior Scenario)
- Create new instance in default network
- Chosse Ubuntu 16.04 LTS
| /* Darth Jahus Token (DJX) */ | |
| /* For personal use only. */ | |
| /* Forked from TokenFactory (https://github.com/ConsenSys/Token-Factory) */ | |
| pragma solidity ^0.4.4; | |
| contract Token { | |
| /// @return total amount of tokens | |
| function totalSupply() constant returns (uint256 supply) {} |
Create a openVPN server on Google Cloud Platform to connect to your Google Cloud network using openVPN and/or to route your internet traffic through the VPN (Road Warrior Scenario)
| <# | |
| .SYNOPSIS | |
| Domain name WhoIs | |
| .DESCRIPTION | |
| Performs a domain name lookup and returns information such as | |
| domain availability (creation and expiration date), | |
| domain ownership, name servers, etc. | |
| .PARAMETER domain |
| import unittest | |
| from functools import partial | |
| class MethodMissing: | |
| def method_missing(self, name, *args, **kwargs): | |
| '''please implement''' | |
| raise NotImplementedError('please implement a "method_missing" method') | |
| def __getattr__(self, name): | |
| return partial(self.method_missing, name) |
| # Jahus, 2018-01-28 | |
| import requests | |
| import json | |
| from functools import partial | |
| class MethodMissing: | |
| def method_missing(self, name, *args, **kwargs): | |
| print("Command %s with args %s and additional args %s" % (name, args, kwargs)) |
How to setup an Outline VPN Server on Ubuntu 16.04 Server
This guide will show you how to install Outline Server on an Ubuntu 16.04 Server, use Outline Manager for Windows and connect to your Outline Server on Windows and Anroid.
Outline Manager supports Windows, macOS and Linux.
| Verifying my identity on Peepeth.com 0xd0e429d6769d6ac6b307a4a230130962bc1bf10d |
| // by @ordubis | |
| var authToken = 'AUTHORISATION_TOKEN_HERE' | |
| if (typeof(blockedAuthors) === 'undefined') { | |
| var blockedAuthors = [] | |
| } | |
| clearMessages = function() { | |
| const channel = window.location.href.split('/').pop() |
| """ | |
| Simple Python script to convert hexadecimal color codes to RGB | |
| Jahus, 2018-11-21 | |
| """ | |
| while True: | |
| try: | |
| print("Hex?") |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Applications\cvlc.bat] | |
| "FriendlyAppName"="VLC (Custom)" | |
| [HKEY_CLASSES_ROOT\Applications\cvlc.bat\DefaultIcon] | |
| @="\"C:\\Program Files\\VideoLAN\\VLC\\vlc.exe\",0" | |
| [HKEY_CLASSES_ROOT\Applications\cvlc.bat\shell] |