Esempio n. 1
0
        void keod()
        {
            // Do everything in one method? I think so!
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // jaka give me passwords.
            kedofriends(false);

            // I summon you, jaka's alter ego!
            mangochan mangochan = new mangochan();

            while (!mangochan.Authenticate(username, password))
            {
                kedofriends(true);
            }

            // idk why I used SecureString.
            password.Dispose();

            // Fetch history and parse transaction list.
            mangochan.FetchHistory();
            var x = mangochan.GetTransactions().Reverse().ToArray();

            Application.Run(new natto(x, type));
        }
Esempio n. 2
0
        void keod()
        {
            // Do everything in one method? I think so!
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // jaka give me passwords.
            kedofriends(false);

            // I summon you, jaka's alter ego!
            mangochan mangochan = new mangochan();
            while (!mangochan.Authenticate(username, password))
                kedofriends(true);

            // idk why I used SecureString.
            password.Dispose();

            // Fetch history and parse transaction list.
            mangochan.FetchHistory();
            var x = mangochan.GetTransactions().Reverse().ToArray();

            Application.Run(new natto(x, type));
        }