This file contains 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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package org.secondstack.db; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.SQLException; |
This file contains 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 io.github.julianjupiter.javafx; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.SQLException; | |
import java.util.logging.Level; | |
import java.util.logging.Logger; | |
/** | |
* Database |
This file contains 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/python | |
import base64 | |
file1=open("pwd.lst","r") | |
file2=open("b64pwds.lst,"w") | |
for line in file1: | |
clear = "administrator:" + str.strip(line) | |
new = base64.encodestring(clear) | |
file2.write(new) |
This file contains 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
0 | |
00 | |
01 | |
02 | |
03 | |
1 | |
1.0 | |
10 | |
100 | |
1000 |
This file contains 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
1. inbstall docker on ubuntu 20.04 | |
# https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04 | |
2. install airflow in docker | |
# https://hub.docker.com/r/puckel/docker-airflow | |
3. work with airflow | |
# https://airflow.apache.org/docs/apache-airflow/stable/start.html | |
4. create a user: | |
airflow users create -r Admin -u admin -e [email protected] -f admin -l user -p test | |
This file contains 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
resolvers: | |
- 1.1.1.1 | |
- 1.0.0.1 | |
- 8.8.8.8 | |
- 8.8.4.4 | |
- 9.9.9.9 | |
- 9.9.9.10 | |
- 77.88.8.8 | |
- 77.88.8.1 | |
- 208.67.222.222 |