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
require "pry-byebug" | |
def caesar_cipher(string_text, num) | |
content_split = string_text.downcase.split("") | |
content_ascii = [] | |
content_split.each do |target| | |
target.each_byte { |char| content_ascii << char } | |
end |
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
import os | |
from os import walk | |
import shutil | |
from distutils.dir_util import copy_tree | |
### Backup WIFI Password On Linux ### | |
files = os.listdir("/etc/NetworkManager/system-connections/") | |
os.mkdir("Backup") | |
os.mkdir("Backup/WIFI_PASS") | |
num = 1 |
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
require 'fileutils' | |
### Backup WIFI Password On Linux ### | |
files = Dir.entries('/etc/NetworkManager/system-connections/').select do |f| | |
File.file? File.join('/etc/NetworkManager/system-connections/', f) | |
end | |
Dir.mkdir('Backup') | |
Dir.mkdir('Backup/WIFI_PASS') | |
num = 1 | |
files.each do |line| |
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
import random | |
from typing import Counter | |
""" | |
Make random password in python | |
You can make password Whatever you want! | |
""" | |
Lower_C = "abcdefghijklmnopqrstuvwxyz" | |
Upper_C = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |