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
function lifePathNumber(dateOfBirth) { | |
let arr = dateOfBirth.split("-"); | |
let sum = []; | |
const reducer = (accumulator, currentValue) => accumulator + currentValue; | |
for (i = 0; i < arr.length; i++) { | |
for (j = 0; j <= arr[i].length; j++) { | |
if (arr[i][j] == undefined) { | |
arr[i][j] = 0; | |
} else { | |
sum.push(parseInt(arr[i][j])); |
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
const alpha = Array.from(Array(26)).map((e, i) => i + 65); | |
const alphabet = alpha.map((x) => String.fromCharCode(x)); | |
console.log(alphabet); |
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
word = "hello world what is up?"; | |
function capitalize(words) { | |
let word = words.split(" "); | |
let capital = []; | |
for (i = 0; i < word.length; i++) { | |
capital.push(word[i].charAt(0).toUpperCase() + word[i].slice(1)); | |
} | |
return capital.join(" "); | |
} |
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
from webbot import Browser | |
from pynput.keyboard import Key, Controller | |
import time | |
username = input('Username: ') | |
dictionary = input('Choose Dictionary: ') | |
file = open(f'{dictionary}.txt', 'r') | |
bruteforce = [] | |
for line in file: | |
line = line.strip() |
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
var fs = require("fs"); | |
var text = fs.readFileSync("data.txt").toString("utf-8"); | |
var arrayText = text.split("\r\n"); | |
console.log(arrayText); |
NewerOlder