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
# Check Email ID Validity | |
from validate_email import validate_email | |
import sys | |
basename = sys.argv[1] | |
available = [] | |
for email_id in [ basename + '@gmail.com' , basename + '[email protected]']: | |
# print("Verifying Email ID : " + email_id) | |
if len(email_id) > 15: |
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
% Run in Erlang Shell | |
% See initial call, ancestors in process_info | |
ShellPid = self(). | |
PFun = fun() -> Pid = self(), ShellPid ! [Pid,erlang:process_info(Pid)] end. | |
proc_lib:spawn(PFun). |
NewerOlder