http://docs.aws.amazon.com/AmazonVPC/latest/GettingStartedGuide/GetStarted.html
phpMyAdmin
| Type | Protocol | Port Range | Destination |
|---|---|---|---|
| SSH | TCP | 22 | 0.0.0.0/0 |
| spring: | |
| kafka: | |
| bootstrap-servers: <BOOTSTRAP_SERVER_URL> | |
| properties: | |
| security: | |
| protocol: SASL_SSL | |
| sasl: | |
| jaas: | |
| config: org.apache.kafka.common.security.plain.PlainLoginModule required username='<CLUSTER_API_KEY>' password='<CLUSTER_API_SECRET>'; | |
| mechanism: PLAIN |
| import requests | |
| import subprocess | |
| import json | |
| import sys | |
| import threading | |
| import time | |
| from Queue import Queue | |
| import urllib3 | |
| import urllib3.contrib.pyopenssl |
| import android.content.Context; | |
| import android.content.pm.ApplicationInfo; | |
| import android.content.pm.PackageInfo; | |
| public class InstallerCheck{ | |
| private static final String PLAY_STORE_APP_ID = "com.google.android"; | |
| public static boolean verifyInstaller(final Context context) { |
| The html page: | |
| <div class="app-page" data-page="blah"> | |
| <div class="app-topbar"> | |
| <div class="app-title">Blah</div> | |
| </div> | |
| <div class="app-content"> | |
| <ul id="somelist" class="app-list"> | |
| <li class="app-button" data-target="sometarget">Foo</li> | |
| </ul> |
http://docs.aws.amazon.com/AmazonVPC/latest/GettingStartedGuide/GetStarted.html
phpMyAdmin
| Type | Protocol | Port Range | Destination |
|---|---|---|---|
| SSH | TCP | 22 | 0.0.0.0/0 |
| /* | |
| * Copyright 2013 Scott Alexander-Bown | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| using UnityEngine; | |
| using System.Collections; | |
| public class DragAndDrop : MonoBehaviour | |
| { | |
| private bool _mouseState; | |
| public GameObject Target; | |
| public Vector3 screenSpace; | |
| public Vector3 offset; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication1 | |
| { | |
| class Program | |
| { |
| using UnityEngine; | |
| using System.Collections; | |
| public class MeshPixelTools : MonoBehaviour { | |
| // Use this for initialization | |
| void Start () { | |
| } | |