Projects under development

As I am constantly looking for new challenges from which I can enhance my skills and specialist knowledge, I have several ongoing projects at the moment. Some of them are developed within a team with a common goal but with different roles and responsibilities,  and some of them on my own,  involving academic, personal or real world scenarios.

Discover more

Pocket Google App Engine – iOS App

Google App Engine (often referred to as GAE) is a platform as a service cloud computing platform for developing and hosting web applications in Google-managed data centres.
Pocket GAE for python aims to provide a quick reference (cheat sheet) for web app developers. It covers topics you have already learned but need a few reminders or guidance on.
*** FEATURES ***
★ Reference based on the latest version of GAE 1.2
★ Covers options for: …

View ProjectOr    App Store

 

Pocket Djago – iOS App

Django is an open source Web 2.0 application framework, written in Python, which follows the model–view–controller architectural pattern.
Pocket Django aims to provide a quick reference (cheat sheet) for django developers. It covers topics you have already learned but need a few reminders or guidance on.
*** FEATURES ***
★ Reference based on the latest version of django 1.4
★ Covers options for: …

View ProjectOr   App Store

 

Culturae Mundi

The Culturae Mundi project – Culturae Mundi means ‘Cultures of the World’ in Latin – is a new programme devised and run by young people and supported by Coventry University and the International Experience and Mobility Service (IEMS). The Culturae Mundi project is devised to celebrate Multiculturalism and Multilingualism on campus and in the city through events.

View Project
 

My name is Robert Varga, a highly accomplished, dynamic and knowledgeable second year BSc Multimedia Computing student with extensive abilities in software development across multiple platforms. I have been able to successfully combine education with work and personal projects showing to be self-motivated, organised and capable of multitasking. Looking to now further develop these skills in software engineering within a placement role. This is my website, it contains all the work that I have done inside and outside university. 

 

 

30
Jan

University programming challenge 1

You are to create an application which stores information about people, along with a ‘task list’. The application’s functionality can be described as follows: The user should be able to store peoples’ names along with several pieces of information about each person (age, telephone number, favourite football team etc.). The precise nature of this information [...]

Continue Reading →
20
Nov

Data Structures – manual stack and queue configuration

A Stack class for storing integers. It uses an internal array  and implements the push, pop and empty operations as methods. The second class, Queue, uses two internal stacks and uses the enqueue, dequeue and empty operations as methods. The Queue class makes use of the Stack class to transform a stack into a queue and [...]

Continue Reading →