Python Web Reloader

I’m currently writing a python script to analyse web servers for connectivity. Due to various issues I have encountered whilst running this and other sites such as DDOS attacks and Mysql failing due to lack of memory. So far it probes a given site to see if it is active. If it detects connectivity it […]

Read More

Connecting to Microsoft Access Database using Python

Source Code -> import pypyodbc # Create connection – make sure you change the file paths accordingly con = pypyodbc.connect(‘DRIVER={Microsoft Access Driver (*.mdb)};UID=admin;UserCommitSync=Yes;Threads=3;SafeTransactions=0;PageTimeout=5;MaxScanRows=8;MaxBufferSize=2048;FIL={MS Access};DriverId=25;DefaultDir=C:/Users/Rob/Documents/py_sql_tutorial;DBQ=C:/Users/Rob/Documents/py_sql_tutorial/Database1.mdb;’) cursor = con.cursor() cursor.execute(“SELECT customer_table.password FROM customer_table”) for row in cursor.fetchall(): print(row) con.close()

Read More

Real Time Rendering Assignment

Real Time Rendering Techniques Modeling the castle First and foremost to begin the project a suitable scene was designed using Auto Cad and modeled using the 3DS Max software package. When modeling any scene it is essential that everything is to scale and each element is proportional to another. This was the reasoning behind using […]

Read More

Summer's Here!

Just handed in my last piece of coursework for my third year in University, what a momentous occasion! Update to follow detailing what I’ve been up to in my last term here in The University of South Wales. Now all I have left to do is complete exams in Concurrent & Parallel Programming and Artificial […]

Read More