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 |
Visual Studio 2022 | |
Enterprise : | |
VHF9H-NXBBB-638P6-6JHCY-88JWH | |
Professional: | |
TD244-P4NB7-YQ6XK-Y8MMM-YWV2J |
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 |
import android.content.Context; | |
import android.content.pm.PackageInfo; | |
import android.content.pm.PackageManager; | |
import android.content.pm.PackageManager.NameNotFoundException; | |
import android.content.pm.Signature; | |
public class TamperCheck { | |
//we store the hash of the signture for a little more protection | |
private static final String APP_SIGNATURE = "1038C0E34658923C4192E61B16846"; |
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 | |
{ |