Creating Simple File Templates in Python
I manage hosting for all sites networked within MetaZaku but the servers themselves are unmanaged; thus, I must manually configure all hosting accounts. Administrative tasks such as this become...
View ArticleMySQL Database Creation for Web Hosts on Ubuntu 11.04 using Python
Following up on my recent studies with Python for system administration, I learned to handle database creation through Python. Database creation and MySQL user management are common tasks as a web...
View ArticleHistorical Problems with Closures in JavaScript and Python
A closure is an inner function has access to the variables defined in the environment of its outer function. Closures are necessary features for supporting the functional programming paradigm. They can...
View ArticleConcise Implementation of Minimax through Higher-Order Functions
The Minimax algorithm is the core of several game-playing AI for making decisions on the best move. This algorithm finds the best move for an AI on a two-player, combinatorial game state on games such...
View ArticleIllustrated Decomposition of Combinatorial Game Move Enumeration with Basis...
Partisan, combinatorial games such as Checkers, Chess and Othello are easily implemented on a matrix implemented as a square array; however, the enumeration of feasible game moves on the game board is...
View Article