Skip to content

Instantly share code, notes, and snippets.

View sparkle666's full-sized avatar
😎
Learning more...

Sixtus Anyanwu sparkle666

😎
Learning more...
View GitHub Profile
@sparkle666
sparkle666 / README.md
Last active August 28, 2023 03:36 — forked from dhondta/README.md
Tinyscript tool for getting IP locations from an email (EML file)

Get Email Origin

This Tinyscript-based allows to load an email and to parse the receivers, indicating where the found IP addesses originate from.

This can be installed using:

$ pip install ipaddress mail_parser maxminddb-geolite2 tinyscript
$ tsm install get-email-origin
@sparkle666
sparkle666 / typescript-crash.ts
Created June 3, 2022 05:08 — forked from bradtraversy/typescript-crash.ts
Basic intro to TypeScript (From YouTube Crash Course)
// Basic Types
let id: number = 5
let company: string = 'Traversy Media'
let isPublished: boolean = true
let x: any = 'Hello'
let ids: number[] = [1, 2, 3, 4, 5]
let arr: any[] = [1, true, 'Hello']
// Tuple