This file has been truncated, but you can view the full file.
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
>JQ765563.1 Human coronavirus NL63 strain NL63/DEN/2009/9, complete genome | |
ACTTTGTGTCTACTCCTCTCAACTAAACGAAATTTTTCTAGTGCTGTCATTTGTTATGGCAGTCCTAGTG | |
TAATTGAAATTTCGTCAAGTTTGTAAACTGGTTAGGCAAGTGTTGTATTTTCTGTGTTTAAGCACTGGTG | |
GTTCTGTCCACTAGTGCACACATTGATACTTAAGTGGTGTTCTGTCACTGCTTATTGTGGAAGCAACGTT | |
CTGTCGTTGTGGAAACCAATAACTGCTAACCATGTTTTACAATCAAGTGACACTTGCTGTTGCAAGTGAT | |
TCGGAAATTTCAGGTTTTGGTTTTGCCATTCCTTCTGTAGCCGTTCGCGCTTATAGCGAAGCCGCTGCAC | |
AAGGTTTTCAGGCATGCCGCTTTGTTGCTTTTGGCTTACAGGATTGTGTAACCGGTATTAATGATGACGA | |
TTATGTCATTGCATTGACTGGTACTAATCAGCTTTGTGCCAAAATTTTACTTTTTTCTGATAGACCTCTT | |
AATTTGCGAGGTTGGCTCATTTTTTCTAACAGCAATTATGTTCTTCAGGACTTTGATGTTGTTTTTGGCC | |
ATGGTGCAGGAAGTGTGGTTTTTGTGGATAAGTATATGTGTGGTTTTGATGGTAAACCTGTGTTACCTAA |
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 bash | |
echo ">>>>>>>BY JOHN MELODY<<<<<<<<<" | |
echo ">>> 正在下载 <<< " | |
sleep 2 | |
sudo apt install apache2 | |
sudo ufw app list | |
sudo ufw allow 'Apache' | |
# sudo ufw status | |
wget https://github.com/coturn/coturn/archive/4.5.1.3.tar.gz |
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
#include <iostream> | |
#include <ctime> | |
using namespace std; | |
string crackPassword(string pass); | |
long long int attempt; | |
clock_t start_t, end_t; | |
int main(){ | |
string password; |
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
sudo apt-get install libmicrohttpd-dev | |
sudo apt-get install libjansson-dev | |
sudo apt-get install libssl-dev | |
sudo apt-get install libsrtp-dev | |
sudo apt-get install libsofia-sip-ua-dev | |
sudo apt-get install libglib2.0-dev | |
sudo apt-get install libopus-dev | |
sudo apt-get install libogg-dev | |
sudo apt-get install libcurl4-openssl-dev | |
sudo apt-get install liblua5.3-dev |
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
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int i, x; | |
char str[100]; | |
cout << "Please enter a String: \t"; |
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
import "package:encrypt/encrypt.dart"; | |
import "dart:convert"; | |
class _encryption { | |
static int theKeyLength = 32; | |
static int theLengthOfInitialisationVector = 16; | |
static var key = Key.fromLength(theKeyLength); | |
static var iv = IV.fromLength(theLengthOfInitialisationVector); | |
static var AESENCRYPTOR = Encrypter(AES(key)); |
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
import "dart:convert"; | |
import "dart:io"; | |
class base64encoder { | |
void encode_text(String textInput) { | |
List encodedText = utf8.encode(textInput); | |
String theBaseStr = base64.encode(encodedText); | |
print(theBaseStr); | |
} |
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
package Encryption.model | |
import java.util.* | |
import javax.crypto.Cipher | |
import javax.crypto.spec.IvParameterSpec | |
import javax.crypto.spec.SecretKeySpec | |
fun main(args: Array<String>) { | |
Crypto_암호.aesDecrypt("이것은문자열입니다", | |
"GgfIf7TQoL2NWJ1kZCyfm9i0di78nU6a") |
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
import UIKit | |
class ViewController: UIViewController, UINavigationControllerDelegate, UIImagePickerControllerDelegate { | |
@IBOutlet weak var ImageDisplay: UIImageView! | |
@IBOutlet weak var CameraButton: UIButton! | |
@IBOutlet weak var LibraryButton: UIButton! | |
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
=============== | |
//main.dart | |
import 'package:flutter/material.dart'; | |
import './chat.dart'; | |
void main() { | |
runApp(ChatApp()); | |
} |